﻿:root {
    --red: #EB1700; /* DoorDash red */
    --ink: #1f2937;
    --ink-2: #374151;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #ffffff;
    --bg-alt: #f7f7f8;
    --radius: 16px;
    --shadow: 0 1px 3px rgba(16,24,40,.06),0 10px 25px rgba(16,24,40,.0);
    --max: 1600px;
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    color: var(--ink);
    background: #fff
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px
}

.h-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0px;
}

.left {
    display: flex;
    align-items: center;
    gap: 14px
}

.icon-btn {
    appearance: none;
    border: 0;
    background: transparent;
    width: 24px;
    height: 24px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    cursor: pointer;
}

    .icon-btn:hover {
        background: rgba(0,0,0,.04)
    }

.hamburger, .chev {
    width: 18px;
    height: 18px
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-weight: 800;
    letter-spacing: -0.045em;
    font-size: 1.05rem;
    text-decoration: none;
    margin:0 0; 
}

a.logo {
    text-decoration: none;
}

.logo img {
    height: 32px;
    display: block
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px
}

    .nav a {
        font-weight: 600;
        color: #111827;
        text-decoration: none;
        letter-spacing: -0.045em;
        font-size: 0.85em;
    }

        .nav a.sign {
            opacity: .85
        }

        .nav a.signup {
            padding: 6px 10px;
            border: 0px solid var(--line);
            border-radius: 15px;
            background-color: #028d18;
            color: #ffffff;
        }

/* Breadcrumbs */
.crumbs {
    font-size: 14px;
    color: #6b7280;
    padding: 14px 0
}

    .crumbs a {
        color: #6b7280;
        text-decoration: none
    }

    .crumbs .sep {
        margin: 0 6px;
        opacity: .5
    }
