:root {
    --cream: #f7e4da;
    --cream-soft: #fbf0e9;
    --white: #ffffff;
    --ink: #201b17;
    --ink-soft: #6b615a;
    --line: #e9ddd1;
    --line-soft: #f0e5da;
    --orange: #d97a46;
    --orange-dark: #bd6636;
    --orange-tint: #f3d9c7;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --shadow-card:
        0 1px 2px rgba(32, 27, 23, 0.04),
        0 12px 28px -18px rgba(32, 27, 23, 0.22);
    --display: "Plus Jakarta Sans", system-ui, sans-serif;
    --body: "Inter", system-ui, sans-serif;
    --script: "Caveat", cursive;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
button {
    font-family: inherit;
    cursor: pointer;
}
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}
h1,
h2,
h3,
h4 {
    font-family: var(--display);
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.01em;
    color: var(--ink);
}
p {
    margin: 0;
    line-height: 1.65;
    color: var(--ink-soft);
}
.eyebrow {
    font-family: var(--display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-dark);
    display: block;
    margin-bottom: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.94rem;
    border: 1.5px solid transparent;
    transition:
        transform 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
    white-space: nowrap;
}
.btn:focus-visible {
    outline: 2.5px solid var(--orange-dark);
    outline-offset: 3px;
}
.btn-primary {
    background: var(--orange);
    color: #fff;
    width: 100%;
    justify-content: center;
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: default;
    transform: none;
}
.btn-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.btn-outline:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-1px);
}
.btn-link {
    background: none;
    border: none;
    padding: 0;
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--orange-dark);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line-soft);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}
.logo {
    font-family: var(--script);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.18s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.has-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}
.has-dropdown button {
    background: none;
    border: none;
    font-family: var(--display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 0;
}
.has-dropdown svg {
    transition: transform 0.18s ease;
}
.has-dropdown.open svg {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    min-width: 210px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}
.has-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 500;
}
.dropdown-menu a::after {
    display: none;
}
.dropdown-menu a:hover {
    background: var(--cream-soft);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-actions .current-page {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--orange-dark);
    padding: 12px 6px;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 6px;
}
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .header-actions .btn-outline,
    .header-actions .current-page {
        display: none;
    }
}
.mobile-panel {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 0 32px 22px;
    border-bottom: 1px solid var(--line-soft);
}
.mobile-panel.open {
    display: flex;
}
.mobile-panel a,
.mobile-panel button.mp-link {
    padding: 12px 4px;
    font-family: var(--display);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    text-align: left;
    width: 100%;
}
.mobile-panel .btn {
    margin-top: 14px;
    justify-content: center;
}

section {
    padding: 0;
}
.page-hero {
    background: var(--cream);
    padding: 56px 0 48px;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}
.page-hero p {
    max-width: 520px;
    margin: 16px auto 0;
    font-size: 1.02rem;
}

.order-section {
    padding: 72px 0 96px;
}
.order-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 32px;
    align-items: start;
}
/* Keep form left / summary right on wide screens regardless of source order */
@media (min-width: 901px) {
    .form-card {
        grid-column: 1;
        grid-row: 1;
    }
    .summary-wrap {
        grid-column: 2;
        grid-row: 1;
    }
}
/* On narrow screens, stack summary (with quantity) above the form so users
     see quantity + price before reaching the Submit order button */
@media (max-width: 900px) {
    .order-grid {
        display: flex;
        flex-direction: column;
    }
    .form-card {
        order: 2;
    }
    .summary-wrap {
        order: 1;
    }
}

/* Form card */
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-card);
}
.form-card h2 {
    font-size: 1.35rem;
    margin-bottom: 6px;
}
.form-card > p.sub {
    margin-bottom: 28px;
}
.fieldset-label {
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin: 26px 0 16px;
    display: block;
}
.fieldset-label:first-of-type {
    margin-top: 0;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 18px;
}
.field label {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.86rem;
    color: var(--ink);
}
.field input,
.field select,
.field textarea {
    font-family: var(--body);
    font-size: 0.95rem;
    padding: 12px 15px;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: var(--cream-soft);
    color: var(--ink);
    transition:
        border-color 0.18s ease,
        background 0.18s ease;
    width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
}
.field textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--body);
}
.field.full {
    grid-column: 1/-1;
}
.radio-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.radio-chip {
    position: relative;
}
.radio-chip input {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}
.radio-chip span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 0.86rem;
    font-weight: 600;
    font-family: var(--display);
    color: var(--ink-soft);
    transition: all 0.18s ease;
}
.radio-chip input:checked + span {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
}
.radio-chip input:focus-visible + span {
    outline: 2.5px solid var(--orange-dark);
    outline-offset: 2px;
}
.form-note {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin-top: 14px;
}
.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    background: #f1f7ee;
    border: 1px solid #cfe3c4;
    color: #3a6b2a;
    padding: 16px 18px;
    border-radius: 14px;
    margin-top: 22px;
    font-size: 0.92rem;
}
.form-success.show {
    display: flex;
}
@media (max-width: 560px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Summary card */
.summary-card {
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: sticky;
    top: 110px;
}
.summary-product {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.summary-product img {
    width: 74px;
    height: 74px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
}
.summary-product h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}
.summary-product p {
    font-size: 0.84rem;
}
.qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}
.qty-label {
    font-family: var(--display);
    font-weight: 600;
    font-size: 0.92rem;
}
.qty-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-pill);
    background: #fff;
}
.qty-stepper button {
    background: none;
    border: none;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 600;
}
.qty-stepper button:hover {
    color: var(--orange-dark);
}
.qty-stepper span {
    width: 30px;
    text-align: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: 0.95rem;
}
.price-rows {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-bottom: 1px solid var(--line);
}
.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.price-row.total {
    padding-top: 12px;
    border-top: 1px dashed var(--line);
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink);
}
.summary-foot {
    padding-top: 22px;
}
.bulk-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: var(--orange-tint);
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--orange-dark);
}
.bulk-note svg {
    flex-shrink: 0;
    margin-top: 1px;
}
.price-disclaimer {
    font-size: 0.72rem;
    color: var(--ink-soft);
    margin-top: 14px;
    line-height: 1.5;
}

/* trust row */
.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 28px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
}
.trust-item svg {
    color: var(--orange-dark);
    flex-shrink: 0;
}
.trust-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink);
    font-family: var(--display);
}
@media (max-width: 820px) {
    .trust-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .summary-card {
        position: static;
    }
    .form-card {
        padding: 30px 24px;
    }
}

footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 56px 0 30px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 28px;
    padding-bottom: 36px;
}
.footer-nav {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}
.footer-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink-soft);
}
.footer-nav a:hover {
    color: var(--ink);
}
.social-row {
    display: flex;
    gap: 12px;
}
.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    transition: all 0.18s ease;
}
.social-row a:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.disclaimer {
    border-top: 1px solid var(--line-soft);
    padding: 26px 0;
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 900px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid var(--line-soft);
    padding-top: 22px;
    font-size: 0.82rem;
    color: var(--ink-soft);
}
.legal-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}
.legal-links a:hover {
    color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
@media (max-width: 600px) {
    .wrap {
        padding: 0 20px;
    }
    .order-section {
        padding: 48px 0 72px;
    }
}