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

:root {
    --primary: #ff8bb1;
    --primary-hover: #ff7096;
    --primary-light: #ffe5ec;
    --primary-dark: #ff4d6d;
    --accent: #d4af37;
    --accent-hover: #b8901c;
    --accent-light: #fcf6e3;
    --dark: #2e0d30;
    --text: #4a3e56;
    --text-muted: #80718a;
    --light: #fffcf8;
    --white: #ffffff;
    --border: #f5eef7;
    --shadow: 0 10px 30px rgba(74, 30, 77, 0.06);
    --shadow-hover: 0 18px 40px rgba(74, 30, 77, 0.12);
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Nav pill colors */
    --nav-bg: rgba(255, 253, 249, 0.92);
    --nav-border: rgba(255, 255, 255, 0.8);
    --nav-shadow: 0 6px 28px rgba(74, 30, 77, 0.12);
    --nav-item-hover: rgba(255, 139, 177, 0.12);
    --nav-active-bg: #ffffff;
    --nav-divider: rgba(74, 30, 77, 0.12);
    --body-bg: #fffcf8;
    --card-bg: #ffffff;
    /* Hero */
    --hero-bg-1: #ffe5ec;
    --hero-bg-2: #fffdf9;
    /* Footer */
    --footer-bg: #2e0d30;
    --footer-text: #c4b0c9;
    --footer-heading: #ffffff;
    --footer-border: rgba(255, 255, 255, 0.05);
    /* Input */
    --input-bg: #ffffff;
    --input-border: #f5eef7;
}

/* ── Dark Theme ── */
body.dark-theme {
    --primary: #ff8bb1;
    --primary-hover: #ff7096;
    --primary-light: rgba(255, 139, 177, 0.18);
    --primary-dark: #ff4d6d;
    --accent: #f0c44f;
    --accent-hover: #d4a83a;
    --accent-light: rgba(212, 175, 55, 0.15);
    --dark: #f2e8f5;
    --text: #d8cce0;
    --text-muted: #9b8fa8;
    --light: #1a0f1e;
    --white: #241630;
    --border: #3a2445;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 18px 40px rgba(0, 0, 0, 0.45);
    --nav-bg: rgba(28, 16, 36, 0.93);
    --nav-border: rgba(255, 139, 177, 0.15);
    --nav-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
    --nav-item-hover: rgba(255, 139, 177, 0.15);
    --nav-active-bg: #2e1a3d;
    --nav-divider: rgba(255, 255, 255, 0.1);
    --body-bg: #120a18;
    --card-bg: #1e1128;
    /* Hero */
    --hero-bg-1: #1e0a2a;
    --hero-bg-2: #120a18;
    /* Footer */
    --footer-bg: #0d0612;
    --footer-text: #9b8fa8;
    --footer-heading: #f2e8f5;
    --footer-border: rgba(255, 255, 255, 0.06);
    /* Input */
    --input-bg: #1e1128;
    --input-border: #3a2445;
}


/* Base resets & styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--body-bg, var(--light));
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}


h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 600;
}

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

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

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Layout Utilities */
.section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '🎀';
    display: block;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(255, 139, 177, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 139, 177, 0.5);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
}

.btn-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* =============================
   FLOATING PILL NAVBAR
============================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
    /* Solid bg so content scrolling behind it looks clean */
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* When user scrolls down, header gets a solid frosted background */
header.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 2px 20px rgba(74, 30, 77, 0.08);
    padding: 0.6rem 1.5rem;
}

/* Logo – always top-left */
.nav-logo {
    pointer-events: all;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--nav-border);
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    box-shadow: var(--nav-shadow);
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
    text-decoration: none;
}

.nav-logo:hover {
    box-shadow: 0 6px 24px rgba(255, 139, 177, 0.25);
    transform: translateY(-1px);
}

.logo-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.logo-text {
    font-size: 1.1rem;
}

/* Pill Nav Container */
.pill-nav {
    pointer-events: all;
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 820px;
}

.pill-nav-inner {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--nav-border);
    border-radius: 999px;
    padding: 0.4rem 0.5rem;
    box-shadow: var(--nav-shadow);
    width: fit-content;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Each pill nav item */
.pill-nav-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: none;
    background: none;
    font-family: var(--font-body);
    text-decoration: none;
    position: relative;
    flex-shrink: 0;
}

.pill-nav-item i {
    font-size: 0.95rem;
    transition: var(--transition);
}

.pill-nav-item:hover {
    background: var(--nav-item-hover);
    color: var(--primary-dark);
}

/* Active item – white pill with shadow (the "selected" state) */
.pill-nav-item.active {
    background: var(--nav-active-bg);
    color: var(--dark);
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(74, 30, 77, 0.1);
}

/* Theme toggle button */
.pill-theme-btn {
    color: var(--accent);
}

.pill-theme-btn i {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.pill-theme-btn:hover i {
    transform: rotate(20deg) scale(1.15);
}

body.dark-theme .pill-theme-btn i {
    color: #a78bfa;
}

/* Pill divider */
.pill-divider {
    width: 1px;
    height: 24px;
    background: var(--nav-divider);
    margin: 0 0.3rem;
    flex-shrink: 0;
}

.pill-signup {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    box-shadow: 0 4px 14px rgba(255, 77, 109, 0.3);
    font-weight: 600;
}

.pill-signup:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary-dark) 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(255, 77, 109, 0.4);
    color: var(--white) !important;
}

/* Cart item */
.pill-cart {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 0.6rem;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    pointer-events: none;
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, var(--hero-bg-1) 0%, var(--hero-bg-2) 70%);
    padding-top: 5rem;
    transition: background 0.4s ease;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-tag {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.4rem 1.2rem;
    border-radius: var(--border-radius-lg);
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content span {
    color: var(--primary-dark);
    position: relative;
}

.hero-content span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 139, 177, 0.2);
    z-index: -1;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    overflow: hidden;
    width: 28rem;
    height: 28rem;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-hover);
    border: 8px solid var(--white);
    animation: blob-animate 12s ease-in-out infinite alternate;
}

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

.floating-badge {
    position: absolute;
    background-color: var(--white);
    box-shadow: var(--shadow-hover);
    border-radius: var(--border-radius-md);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 10;
}

.badge-1 {
    bottom: 20px;
    left: -10px;
    animation: float-badge 4s ease-in-out infinite alternate;
}

.badge-2 {
    top: 30px;
    right: -10px;
    animation: float-badge 4s ease-in-out infinite alternate-reverse;
}

.badge-icon {
    font-size: 1.6rem;
    background-color: var(--primary-light);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes blob-animate {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    50% {
        border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    }

    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
}

@keyframes float-badge {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* Product Catalog */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-light);
    color: var(--accent-hover);
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.add-to-cart-btn {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: rotate(90deg);
}

/* Hamper Customizer Workshop */
.workshop {
    background-color: var(--primary-light);
    background-image: radial-gradient(var(--white) 1px, transparent 1px);
    background-size: 20px 20px;
}

.workshop-container {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

.workshop-preview {
    position: sticky;
    top: 6rem;
    background-color: var(--light);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    border: 2px dashed var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    text-align: center;
}

.preview-box {
    position: relative;
    width: 250px;
    height: 250px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-box-icon {
    font-size: 6rem;
    color: var(--primary);
    filter: drop-shadow(0 5px 15px rgba(255, 139, 177, 0.3));
    transition: var(--transition);
}

.preview-filler {
    position: absolute;
    width: 80%;
    height: 40%;
    bottom: 20%;
    border-radius: 50%;
    opacity: 0.7;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

.preview-addons {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    bottom: 25%;
    width: 80%;
}

.preview-addon-tag {
    font-size: 1.5rem;
    animation: bounce-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.preview-details {
    width: 100%;
}

.preview-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.preview-summary {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.preview-total {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.workshop-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

.step-number {
    background-color: var(--primary);
    color: var(--white);
    height: 28px;
    width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1.2rem;
}

.option-card {
    background-color: var(--light);
    border: 2px solid var(--border);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.option-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.option-card.active {
    border-color: var(--primary-dark);
    background-color: var(--primary-light);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.option-card h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.option-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.color-options {
    display: flex;
    gap: 1.5rem;
}

.color-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--light);
    border: 2px solid var(--border);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.color-card.active {
    border-color: var(--primary-dark);
    background-color: var(--primary-light);
}

.color-dot {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.addon-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--light);
    border: 2px solid var(--border);
    padding: 0.8rem 1.2rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.addon-item.active {
    border-color: var(--primary-dark);
    background-color: var(--primary-light);
}

.addon-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.addon-emoji {
    font-size: 1.4rem;
}

.addon-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.addon-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
}

.checkbox-icon {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.addon-item.active .checkbox-icon {
    color: var(--primary-dark);
}

/* Reviews Carousel */
.reviews-section {
    background-color: var(--white);
    overflow: hidden;
}

.reviews-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 3rem;
}

.reviews-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-slide {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
    padding: 2rem;
}

.review-card {
    background-color: var(--light);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 10px;
    left: 30px;
    font-size: 6rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 2rem;
}

.reviewer-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}

.reviewer-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-light);
    color: var(--dark);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
}

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

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background-color: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Shopping Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(46, 13, 48, 0.4);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -10px 0 40px rgba(74, 30, 77, 0.15);
    z-index: 201;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cart-overlay.open .cart-drawer {
    right: 0;
}

.cart-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
}

.close-cart-btn {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.close-cart-btn:hover {
    color: var(--primary-dark);
}

.cart-items {
    padding: 2rem;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-empty-message {
    text-align: center;
    margin: auto;
    color: var(--text-muted);
}

.cart-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.cart-item {
    display: flex;
    gap: 1.2rem;
    background-color: var(--light);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    border: 1px solid var(--border);
    position: relative;
}

.cart-item-img {
    height: 80px;
    width: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

.cart-item-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

.cart-item-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.5rem;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--border-radius-sm);
    background-color: var(--white);
    overflow: hidden;
}

.qty-btn {
    padding: 0.2rem 0.6rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.qty-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.qty-val {
    padding: 0 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-item-price {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.remove-cart-item {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.remove-cart-item:hover {
    color: var(--primary-dark);
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--border);
    background-color: var(--light);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.cart-summary-line.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 0.5rem;
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
}

.gift-note-wrapper {
    margin: 1.2rem 0;
}

.gift-note-wrapper label {
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.4rem;
}

.gift-note-wrapper textarea {
    width: 100%;
    height: 60px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--input-border);
    padding: 0.5rem;
    font-size: 0.8rem;
    resize: none;
    font-family: var(--font-body);
    background-color: var(--input-bg);
    color: var(--text);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.checkout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

/* Footer Section */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 5rem 2rem 2rem 2rem;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand h2 {
    color: var(--footer-heading);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--footer-text);
    margin-bottom: 1.5rem;
}

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

.social-link {
    background-color: rgba(255, 255, 255, 0.08);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-heading);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--footer-heading);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--footer-text);
    margin-bottom: 1rem;
}

.footer-contact-item span {
    font-size: 1.2rem;
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--footer-border);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--footer-text);
}

@media screen and (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 2.5rem auto;
    }

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

    .hero-image-wrapper {
        width: 320px;
        height: 320px;
    }

    .workshop-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .workshop-preview {
        position: static;
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ── Tablet / medium screens: hide labels, show icons only ── */
@media screen and (max-width: 860px) {
    header {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
        flex-wrap: nowrap;
    }

    .logo-text {
        display: none;
    }

    .nav-logo {
        padding: 0.6rem 0.8rem;
        font-size: 1.2rem;
    }

    .pill-label {
        display: none;
    }

    .pill-nav-item {
        padding: 0.55rem 0.7rem;
    }

    .pill-signup {
        padding: 0.55rem 0.7rem;
    }

    .pill-nav-inner {
        gap: 0;
        padding: 0.35rem 0.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* ── Mobile (phones): bottom fixed dock ── */
@media screen and (max-width: 520px) {

    /* Header becomes a simple top bar for the logo */
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.7rem 1rem;
        background: rgba(255, 253, 249, 0.92);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 139, 177, 0.15);
        box-shadow: 0 2px 16px rgba(74, 30, 77, 0.06);
    }

    .nav-logo {
        background: none;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        font-size: 1.3rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .logo-text {
        display: block;
        font-size: 1rem;
    }

    /* Pill nav becomes a bottom dock */
    .pill-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        z-index: 200;
        padding: 0;
        justify-content: stretch;
        max-width: 100%;
        pointer-events: all;
    }

    .pill-nav-inner {
        width: 100%;
        border-radius: 0;
        border: none;
        border-top: 1px solid rgba(255, 139, 177, 0.2);
        background: rgba(255, 253, 249, 0.96);
        backdrop-filter: blur(20px);
        padding: 0.6rem 0.5rem;
        gap: 0;
        justify-content: space-around;
        box-shadow: 0 -4px 20px rgba(74, 30, 77, 0.1);
    }

    .pill-divider {
        display: none;
    }

    .pill-nav-item {
        flex: 1;
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.4rem 0.2rem;
        font-size: 0.65rem;
        border-radius: 12px;
        justify-content: center;
    }

    .pill-nav-item i {
        font-size: 1.1rem;
    }

    .pill-label {
        display: block;
        font-size: 0.6rem;
        font-weight: 500;
    }

    .pill-signup {
        flex-direction: column;
        gap: 0.2rem;
        padding: 0.4rem 0.2rem;
    }

    .cart-badge {
        top: 0;
        right: 50%;
        transform: translateX(70%);
    }

    /* Add bottom padding so content doesn't hide behind dock */
    body {
        padding-bottom: 72px;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .hero-image-wrapper {
        width: 260px;
        height: 260px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}