:root {
    /* Color Palette */
    --clr-bg-main: #fdfbf7;
    /* Very soft beige/off-white */
    --clr-text-main: #2d2d2d;
    --clr-text-light: #6b6b6b;
    --clr-primary: #e6b8b8;
    /* Muted pink */

    /* Soft Pastel Palette for Series */
    --clr-pastel-beige: #f4ece1;
    --clr-pastel-pink: #f7e1e6;
    --clr-pastel-blue: #e1eff6;

    --clr-dark: #1a1a1a;
    --clr-white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-max: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-main);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-center {
    text-align: center;
}

/* Utilities */
.subtitle {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

.btn-primary:hover {
    background-color: #333;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--clr-dark);
    color: var(--clr-dark);
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.btn-primary-soft {
    background-color: #e6b8b8;
    /* Muted pink */
    color: var(--clr-white);
}

.btn-primary-soft:hover {
    background-color: #d6a8a8;
}

.btn-primary-blue {
    background-color: #9cbcdb;
    /* Muted blue */
    color: var(--clr-white);
}

.btn-primary-blue:hover {
    background-color: #8caccc;
}

.btn-outline-dark {
    border: 1px solid var(--clr-dark);
    color: var(--clr-dark);
}

.btn-dark {
    background-color: var(--clr-dark);
    color: var(--clr-white);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.logo p {
    font-size: 0.5rem;
    letter-spacing: 1.5px;
    color: var(--clr-text-light);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text-main);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-primary);
}

.nav-links a.active {
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--clr-dark);
}


/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background-color: var(--clr-white);
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    display: flex;
    flex-direction: column;
    z-index: 200;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.5rem;
    font-weight: 400;
    color: var(--clr-text-main);
    font-size: 0.85rem;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--clr-bg-main);
    color: var(--clr-primary);
}

.nav-icons {

    display: flex;
    gap: 1rem;
    align-items: center;
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--clr-dark);
    color: white;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background-image: radial-gradient(circle at right center, rgba(230, 184, 184, 0.15), transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-content .title {
    font-size: 5rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    color: var(--clr-dark);
}

.hero-content .description {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 400px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-xl);
}

.features-row {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--clr-text-light);
}

.feature-icon {
    color: var(--clr-dark);
}

/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    min-height: 480px;
    transform: scale(1.05);
    transform-origin: center center;
    background-color: #f0ece6;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    min-height: 480px;
    display: block;
}

/* Slide Prev / Next Buttons */
.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    color: var(--clr-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: background 0.2s ease, transform 0.2s ease;
}

.slide-btn:hover {
    background: var(--clr-white);
    transform: translateY(-50%) scale(1.1);
}

.slide-prev { left: 12px; }
.slide-next { right: 12px; }

/* Slide Dots */
.slide-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 10;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
}

.slide-dot.active {
    background: var(--clr-white);
    transform: scale(1.3);
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background-color: var(--clr-white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-content .title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-content .divider {
    width: 50px;
    height: 2px;
    background-color: var(--clr-primary);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--clr-text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Series Section */
.series {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-header .title {
    font-size: 2.5rem;
}

.heart-icon {
    color: var(--clr-primary);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.series-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.series-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.bg-beige {
    background-color: var(--clr-pastel-beige);
}

.bg-pink {
    background-color: var(--clr-pastel-pink);
}

.bg-blue {
    background-color: var(--clr-pastel-blue);
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.card-content h3 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.card-content .tagline {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    min-height: 40px;
}

.features-list {
    margin-bottom: 2rem;
}

.features-list li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-image {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.card-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Lifestyle Section */
.lifestyle {
    padding: var(--spacing-xl) 0;
    background-color: var(--clr-white);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.moment-card {
    border-radius: var(--radius-md);
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.moment-card:hover {
    transform: scale(1.02);
}

.moment-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 40%);
}

.moment-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 0;
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    flex: 1;
}

.testimonial-card {
    background-color: var(--clr-white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.stars {
    color: #e6b8b8;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review {
    font-size: 0.95rem;
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-text-light);
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--clr-dark);
    color: var(--clr-white);
}

/* Promo Banner */
.promo {
    padding: 2rem 0 var(--spacing-xl);
}

.promo-banner {
    background-color: var(--clr-pastel-pink);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    padding: 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.promo-image {
    width: 250px;
    height: 250px;
    position: absolute;
    left: 2rem;
    bottom: -2rem;
    border-radius: 50%;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    margin-left: 250px;
    flex: 1;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.promo-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.promo-timer {
    display: flex;
    gap: 1rem;
}

.time-block {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.time-block .number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.time-block .label {
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Benefits Strip */
.benefits-strip {
    background-color: var(--clr-white);
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    color: var(--clr-text-light);
}

.benefit-text h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
}

.benefit-text p {
    font-size: 0.75rem;
    color: var(--clr-text-light);
}

/* Footer */
.footer {
    background-color: var(--clr-white);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.footer-logo p {
    font-size: 0.5rem;
    letter-spacing: 1.5px;
    color: var(--clr-text-light);
}

.brand-desc {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin: 1rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--clr-dark);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

.footer-col ul a:hover {
    color: var(--clr-dark);
}

.newsletter-col p {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid var(--clr-dark);
    padding-bottom: 5px;
}

.newsletter-form input {
    border: none;
    outline: none;
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.85rem;
}

.newsletter-form button {
    background: none;
    border: none;
    cursor: pointer;
}

.footer-bottom {
    font-size: 0.75rem;
    color: var(--clr-text-light);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        order: 2;
        text-align: center;
    }

    .hero-image {
        order: 1;
    }

    .hero-content .description {
        margin: 0 auto var(--spacing-md);
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-row {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .series-grid {
        grid-template-columns: 1fr;
    }

    .lifestyle-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-cards {
        grid-template-columns: 1fr;
    }

    .promo-banner {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .promo-image {
        position: static;
        margin: 0 auto 2rem;
    }

    .promo-content {
        margin-left: 0;
    }

    .promo-timer {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content .title {
        font-size: 3.5rem;
    }

    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   CHECKOUT MODAL
═══════════════════════════════════════════════ */
.checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 20, 20, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.checkout-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.checkout-modal {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    max-width: 860px;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.22);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #fdf6f4;
}

.checkout-overlay.open .checkout-modal {
    transform: translateY(0) scale(1);
}

/* ── Left Panel ── */
.checkout-left {
    background: linear-gradient(140deg, #fdf0ec 0%, #fce8e4 100%);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.checkout-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c08080;
    font-weight: 600;
    font-family: var(--font-body);
}

.checkout-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1.15;
    color: #b06060;
    font-weight: 600;
}

.checkout-sub {
    font-size: 0.88rem;
    color: #9a7070;
    line-height: 1.7;
    max-width: 280px;
}

.checkout-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.checkout-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(192, 128, 128, 0.2);
    color: #c08080;
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 500;
}

/* ── Right Panel ── */
.checkout-right {
    background: #ffffff;
    padding: 2.2rem 2rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    max-height: 85vh;
}

/* Custom Scrollbar for Right Panel */
.checkout-right::-webkit-scrollbar {
    width: 6px;
}
.checkout-right::-webkit-scrollbar-track {
    background: #fdf6f4;
    border-radius: 10px;
}
.checkout-right::-webkit-scrollbar-thumb {
    background: #d08080;
    border-radius: 10px;
}
.checkout-right::-webkit-scrollbar-thumb:hover {
    background: #b06060;
}

.checkout-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: #f7f7f7;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: background 0.2s ease;
}

.checkout-close:hover {
    background: #fee2e2;
    color: #c00;
}

/* Order Header */
.order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.order-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d2d2d;
}

.order-badge {
    background: #fce8e8;
    color: #c08080;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* Order Items */
.order-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #faf8f8;
    border-radius: 14px;
    padding: 0.9rem 1rem;
}

.order-item-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #f4e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 3px;
}

.order-item-price {
    font-size: 0.8rem;
    color: #a07070;
}

/* Quantity Control */
.qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e8d8d8;
    border-radius: 50px;
    padding: 4px 8px;
    background: #fff;
}

.qty-btn {
    width: 22px;
    height: 22px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    color: #b08080;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    font-weight: 600;
}

.qty-btn:hover {
    background: #fce8e8;
}

.qty-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2d2d2d;
    min-width: 16px;
    text-align: center;
}

/* Price Summary */
.order-summary {
    border-top: 1px solid #f0e8e8;
    padding-top: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #777;
}

.discount-row {
    color: #c08080;
    font-weight: 500;
}

/* Total + Pay */
.order-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0e8e8;
    padding-top: 1rem;
    margin-top: auto;
}

.total-label {
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 3px;
}

.total-amount {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: #b06060;
}

.pay-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #d08080 0%, #c06060 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 20px rgba(192, 96, 96, 0.35);
}

.pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(192, 96, 96, 0.45);
    color: #fff;
}

/* Mobile */
@media (max-width: 640px) {
    .checkout-modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 20px;
    }

    .checkout-left {
        padding: 2rem 1.5rem 1.5rem;
    }

    .checkout-heading {
        font-size: 1.8rem;
    }
}

/* ── Step Indicator ── */
.step-indicator {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.2rem;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0e4e4;
    color: #c0a0a0;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.step-dot.active {
    background: linear-gradient(135deg, #d08080, #c06060);
    color: #fff;
    box-shadow: 0 4px 12px rgba(192, 96, 96, 0.3);
}

.step-dot.done {
    background: #d4b8b8;
    color: #fff;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #f0e4e4;
    margin: 0 6px;
    border-radius: 2px;
    transition: background 0.4s ease;
}

.step-line.active {
    background: linear-gradient(90deg, #c06060, #d08080);
}

/* ── Utility ── */
.hidden {
    display: none !important;
}

/* ── Shipping Form ── */
.shipping-step {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.shipping-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #b06060;
    margin-bottom: 0.4rem;
}

.shipping-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.ship-input {
    width: 100%;
    background: #faf6f5;
    border: 1px solid #f0e4e0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-family: var(--font-body);
    color: #4a3030;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    resize: none;
}

.ship-input::placeholder {
    color: #c0a8a8;
}

.ship-input:focus {
    border-color: #d08080;
    box-shadow: 0 0 0 3px rgba(208, 128, 128, 0.12);
    background: #fff;
}

.ship-textarea {
    min-height: 90px;
}

.ship-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

/* ── Ship Actions ── */
.ship-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f0e8e8;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid #e0d0d0;
    color: #a08080;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: var(--font-body);
}

.back-btn:hover {
    background: #fce8e8;
    color: #b06060;
    border-color: #d0b0b0;
}

/* ═══════════════════════════════════════════════
   PRODUCT CARD (Order Summary redesign)
═══════════════════════════════════════════════ */
.product-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: #faf8f8;
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid #f0e8e4;
}

/* Color preview icon box */
.product-card-img {
    width: 68px;
    height: 68px;
    border-radius: 12px;
    background: #c9b8e8;        /* default: lilac */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7a5ab0;             /* default stroke */
    transition: background 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-card-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2d2d2d;
}

.product-card-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: #b06060;
}

.product-card-orig {
    font-size: 0.75rem;
    font-weight: 400;
    color: #bbb;
    text-decoration: line-through;
    margin-left: 4px;
}

/* Color label */
.color-picker-label {
    font-size: 0.72rem;
    color: #a08888;
    margin-top: 6px;
    font-weight: 500;
}

.color-picker-label span {
    color: #c06060;
    font-weight: 700;
    text-transform: capitalize;
}

/* Swatches */
.color-swatches {
    display: flex;
    gap: 7px;
    margin-top: 5px;
}

.swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2.5px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    position: relative;
}

.swatch:hover {
    transform: scale(1.15);
}

.swatch.active {
    border-color: #fff;
    box-shadow: 0 0 0 2.5px #c06060;
    transform: scale(1.18);
}

/* Qty column (right side) */
.product-card-qty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.qty-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c0a8a8;
    font-weight: 600;
}

/* ── Autocomplete Dropdown ── */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #f0e4e0;
    border-radius: 12px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.autocomplete-dropdown.hidden {
    display: none !important;
}

.autocomplete-item {
    padding: 10px 16px;
    font-size: 0.85rem;
    color: #4a3030;
    cursor: pointer;
    border-bottom: 1px solid #f9f4f2;
    transition: background 0.2s;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #fcf8f6;
    color: #b06060;
}