@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
    --rose-50: #fff8f2;
    --rose-100: #f8ede3;
    --rose-200: #f0dcc8;
    --rose-500: #d4b07b;
    --rose-600: #bb9563;
    --rose-700: #7d5a37;
    --rose-900: #191211;
    --ink: #3c2a22;
    --white: #ffffff;
    --shadow-soft: 0 22px 55px rgba(70, 40, 35, 0.14);
    --shadow-card: 0 18px 36px rgba(58, 31, 27, 0.15);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 246, 238, 0.94), transparent 30%),
        linear-gradient(180deg, #fffbf6 0%, #f4e8dc 100%);
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
}

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - 32px), 1180px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 22px;
    border: 1px solid rgba(245, 224, 196, 0.9);
    border-radius: 24px;
    background: rgba(255, 248, 241, 0.84);
    backdrop-filter: blur(7px);
    box-shadow: 0 10px 24px rgba(73, 45, 40, 0.1);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(18, 12, 11, 0.94);
    box-shadow: 0 16px 32px rgba(32, 19, 18, 0.24);
}

.logo img,
.navbar > img {
    height: 86px;
    width: auto;
    object-fit: contain;
}

nav {
    flex: 1;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
    list-style: none;
}

nav a {
    color: var(--rose-700);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 16px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

nav a:hover,
nav a:focus-visible {
    background: rgba(182, 123, 113, 0.14);
    transform: translateY(-1px);
}

.navbar.scrolled nav a {
    color: var(--white);
}

.navbar.scrolled nav a:hover,
.navbar.scrolled nav a:focus-visible {
    background: rgba(255, 255, 255, 0.14);
}

.background {
    min-height: 100svh;
    padding: 150px 0 88px;
    background:
        radial-gradient(circle at top, rgba(244, 220, 189, 0.18), transparent 36%),
        linear-gradient(180deg, #2b1b18 0%, #120d0c 100%);
}

.small-container {
    width: min(calc(100% - 32px), 1180px);
    margin: 0 auto;
}

.checkout-header {
    text-align: center;
    margin-bottom: 28px;
}

.checkout-header p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212, 176, 123, 0.14);
    color: rgba(245, 224, 196, 0.96);
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.row {
    display: grid;
    grid-template-columns: minmax(280px, 0.94fr) minmax(320px, 1.06fr);
    gap: 32px;
    align-items: start;
}

.col-2,
.details-section {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.col-2 {
    background: linear-gradient(180deg, rgba(255, 245, 242, 0.95), rgba(240, 220, 214, 0.95));
    padding: 26px;
}

.col-2 img {
    width: 100%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.55);
}

.details-section {
    background: rgba(255, 250, 248, 0.95);
    padding: 34px;
}

.details-section h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.6rem);
    line-height: 0.9;
    color: var(--rose-700);
    font-weight: 600;
}

.details-section h4 {
    margin-top: 12px;
    color: var(--rose-700);
    font-size: 1.15rem;
}

.details-section > p,
.pickup-section p {
    color: #6a5550;
    font-size: 1.15rem;
}

.disclaimer {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(182, 123, 113, 0.18);
    border-radius: 18px;
    background: rgba(182, 123, 113, 0.08);
    color: var(--rose-600);
    font-size: 0.9rem;
}

.shipping-section,
.delivery-section,
.pickup-section {
    margin-top: 22px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(182, 123, 113, 0.12);
    box-shadow: var(--shadow-card);
}

.delivery-section,
.pickup-section {
    margin-top: 18px;
}

.details-section label {
    display: block;
    margin: 14px 0 8px;
    color: var(--rose-700);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
}

.details-section input,
.details-section select,
.details-section textarea {
    width: 100%;
    border: 1px solid rgba(148, 92, 85, 0.18);
    border-radius: 16px;
    background: #fffdfc;
    padding: 14px 16px;
    color: var(--ink);
    font-family: 'Poppins', sans-serif;
    font-size: 0.98rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.details-section textarea {
    min-height: 120px;
    resize: vertical;
}

.details-section input:focus,
.details-section select:focus,
.details-section textarea:focus {
    outline: none;
    border-color: rgba(148, 92, 85, 0.46);
    box-shadow: 0 0 0 4px rgba(182, 123, 113, 0.14);
    transform: translateY(-1px);
}

.checkout-button {
    margin-top: 20px;
}

#checkoutBtn {
    width: 100%;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, #d9b480 0%, #b98c58 100%);
    color: var(--white);
    padding: 15px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(55, 33, 25, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

#checkoutBtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 24px rgba(120, 72, 67, 0.22);
    filter: brightness(1.02);
}

.footer {
    padding-top: 72px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 24%),
        linear-gradient(180deg, #1e1412 0%, #0d0908 100%);
}

.footer .container {
    width: min(calc(100% - 32px), 1180px);
}

.footer .row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-col-1,
.footer-col-2,
.footer-col-3 {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 246, 235, 0.08);
    border: 1px solid rgba(233, 203, 158, 0.18);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.footer h3 {
    margin-bottom: 12px;
    color: #f2d3a4;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer p {
    color: rgba(249, 232, 209, 0.9);
    font-size: 1.05rem;
}

.footer-col-2 {
    text-align: center;
}

.footer-col-2 img {
    width: 150px;
    margin: 0 auto 14px;
}

.footer-col-3 {
    text-align: right;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 176, 123, 0.12);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: rgba(212, 176, 123, 0.24);
}

.social-icons img {
    width: 28px;
    height: 28px;
}

.bottom-bar {
    margin-top: 28px;
    padding: 18px 16px 26px;
    text-align: center;
    color: rgba(245, 224, 196, 0.78);
}

@media (max-width: 960px) {
    .row,
    .footer .row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .navbar {
        top: 12px;
        width: calc(100% - 20px);
        padding: 14px 16px;
        border-radius: 28px;
    }

    .navbar > img {
        display: none;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    nav a {
        padding: 8px 12px;
        font-size: 0.92rem;
    }

    .logo img {
        height: 66px;
    }

    .background {
        padding-top: 136px;
    }

    .details-section,
    .shipping-section,
    .delivery-section,
    .pickup-section,
    .footer-col-1,
    .footer-col-2,
    .footer-col-3 {
        padding: 22px;
    }

    .footer-col-3,
    .footer-col-2 {
        text-align: left;
    }

    .social-icons {
        justify-content: flex-start;
    }
}


