/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

/* --- GLOBAL STYLES --- */
:root {
    --viridian: #13524a;
    --white: #ffffff;
    --font-title: 'Playfair Display', serif;
    --font-subtitle: 'Montserrat', sans-serif;
    --font-text: 'Raleway', sans-serif;
    --font-content: 'Lora', serif;
}

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

body {
    color: var(--white);
    margin: 0;
    padding: 0 !important;
}

html {
    height: 100%;
    overflow-x: hidden;
}

/* --- HEADER --- */
header {
    width: 100%;
    height: 70px;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: rgba(19, 82, 74, 0.9);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-family: var(--font-text);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.logo-img {
    height: 36px;
    width: 36px;
    object-fit: cover;
    border-radius: 4px;
}

/* --- NAVIGATION BAR --- */
nav {
    display: flex;
    align-items: center;
    height: 100%;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 26px;
    align-items: center;
    height: auto;
    margin: 0;
    padding: 0;
}

nav ul li {
    line-height: 1;
    display: flex;
    align-items: center;
}

nav ul li a {
    font-family: var(--font-text);
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    padding: 4px 0 6px 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

nav ul li a:hover {
    border-bottom-color: var(--white);
}

nav ul li a.active {
    border-bottom-color: var(--white);
}

.hamburger {
    display: none;
}

/* --- SCROLL ARROW --- */
.scroll-arrow {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: 0.75;
    cursor: pointer;
    animation: bounce 1.5s infinite;
    z-index: 50;
}

.scroll-arrow .material-symbols-outlined {
    font-size: 2.5rem;
}

/* --- HERO --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./img/main_lilypads.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.hero-text h1 {
    font-family: var(--font-title);
    font-size: 10rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.hero-text p {
    font-family: var(--font-subtitle);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

/* --- WELCOME --- */
.welcome {
    background-color: var(--viridian);
    padding: 120px 0;
}

.welcome-text {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.welcome-tagline {
    font-family: var(--font-title);
    font-size: 1.4rem;
}

.welcome p {
    font-family: var(--font-content);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--white);
}

/* --- CONTACT US --- */
.contact {
    background-image: url('./img/footer_leaves.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px 0;
    text-align: center;
}

.contact-text {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.contact h2 {
    font-family: var(--font-subtitle);
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--white);
}

.contact-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.contact-links a {
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: var(--white);
    text-decoration: underline;
    letter-spacing: 0.05em;
}

.contact-links a:hover {
    opacity: 0.7;
}

.contact-links span {
    color: var(--white);
}

/* --- BANNERS --- */
.page-banner {
    height: calc(40vh + 70px);
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./img/items_bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 0;
    position: relative;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-banner h1 {
    font-family: var(--font-title);
    font-size: 6rem;
    font-weight: 400;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.about-banner {
    background-image: url('./img/about_bg.jpg');
}

/* --- FEATURE SECTIONS --- */
.feature {
    background-color: var(--viridian);
    padding: 100px 0;
}

.feature-row {
    width: 75%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.feature-text {
    flex: 1;
    text-align: center;
}

.feature-text h2 {
    font-family: var(--font-subtitle);
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.feature-text p {
    font-family: var(--font-text);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--white);
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* --- PRODUCT GRID DISPLAY --- */
.products {
    background-color: var(--viridian);
    padding: 40px 0 80px 0;
    text-align: center;
    margin-bottom: 0;
}

.products h2 {
    font-family: var(--font-subtitle);
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.product-grid {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    padding-bottom: 0;
}

.product-card {
    flex: 1;
    max-width: 400px;
    text-align: center;
    cursor: pointer;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 82, 74, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay .product-name {
    font-family: var(--font-text);
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--white);
}

.product-overlay .product-price {
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: var(--white);
}

.product-name {
    font-family: var(--font-subtitle);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-top: 14px;
    text-transform: uppercase;
}

.product-price {
    font-family: var(--font-text);
    font-size: 0.85rem;
    color: var(--white);
    margin-top: 6px;
}

/* --- POPUP EFFECT FOR THE IMAGE DISPLAYS --- */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.popup-box {
    background: var(--viridian);
    width: 420px;
    max-width: 90%;
    position: relative;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 4px;
}

.popup-info {
    padding: 28px 24px 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.popup-name {
    font-family: var(--font-subtitle);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
}

.popup-desc {
    font-family: var(--font-content);
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--white);
}

.popup-price {
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: var(--white);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
}

.modal-close:hover {
    opacity: 0.7;
}

/* --- BUY BUTTON --- */
.buy-btn {
    margin-top: 8px;
    padding: 10px 28px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: var(--font-text);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.buy-btn:hover {
    background: var(--white);
    color: var(--viridian);
}

/* --- ABOUT CREATOR SECTION --- */
.creator {
    background-color: var(--viridian);
    padding: 140px 0 100px 0;
}

.creator-row {
    width: 65%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.creator-row img {
    width: 280px;
    height: 320px;
    object-fit: cover;
    flex-shrink: 0;
}

.creator-text h2 {
    font-family: var(--font-subtitle);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 32px;
}

.creator-text p {
    font-family: var(--font-text);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--white);
}

/* --- MISSION SECTION --- */
.mission {
    background-color: var(--viridian);
    padding: 120px 0;
}

.mission-text {
    width: 55%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.mission-text h2 {
    font-family: var(--font-subtitle);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.mission-text p {
    font-family: var(--font-text);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--white);
}

/* --- FEEDBACK FORM SECTION --- */
.feedback {
    background-color: var(--viridian);
    padding: 80px 0 160px 0;
    text-align: center;
}

.feedback-text {
    width: 50%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feedback-text h2 {
    font-family: var(--font-subtitle);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
}

.feedback-text p {
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: var(--white);
}

.feedback-text form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feedback-text input,
.feedback-text textarea {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-family: var(--font-text);
    font-size: 0.9rem;
    padding: 12px 16px;
    outline: none;
    width: 100%;
}

.feedback-text input::placeholder,
.feedback-text textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.feedback-text textarea {
    resize: vertical;
}

.feedback-thanks {
    display: none;
    font-family: var(--font-content);
    font-size: 1.05rem;
    color: var(--white);
    padding: 20px 0;
}

/* --- CUSTOM CAROUSEL --- */
.custom-carousel {
    position: relative;
    width: 100%;
    overflow: visible;
}

.custom-carousel-track {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.custom-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.custom-carousel-slide.active {
    opacity: 1;
}

.custom-carousel-prev,
.custom-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    padding: 5px 16px 11px 16px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-carousel-prev:hover,
.custom-carousel-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.custom-carousel-prev { left: 0; }
.custom-carousel-next { right: 0; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 6px 0;
    background: var(--viridian);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-dot.active {
    background: rgba(255, 255, 255, 1);
}

/* --- POPUP IMAGE CAROUSEL --- */
.popup-img-carousel {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

.popup-img-track {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.popup-img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popup-img-slide.active {
    opacity: 1;
}

.popup-img-prev,
.popup-img-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    line-height: 1;
}

.popup-img-prev {
    padding: 4px 12px 14px 12px;
    left: 0;
}

.popup-img-next {
    padding: 6px 12px 12px 12px;
    right: 0;
}

.popup-img-prev:hover,
.popup-img-next:hover {
    background: rgba(0, 0, 0, 0.65);
}

.popup-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 6px 0;
    background: var(--viridian);
}

.popup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.3s;
}

.popup-dot.active {
    background: rgba(255, 255, 255, 1);
}

/* --- FOOTER --- */
footer {
    background-color: #000000;
    padding: 16px 0;
    text-align: center;
    margin: 0;
}

footer p {
    font-family: var(--font-text);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

/* --- MEDIA QUERIES --- */
/* --- PHONE (max 768px) --- */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        font-size: 2rem;
        color: var(--white);
        cursor: pointer;
        z-index: 300;
        position: relative;
    }

    nav ul {
        display: none;
        flex-direction: column;
        gap: 32px;
        position: fixed;
        top: 0;
        right: -100%;
        width: 55%;
        height: 100%;
        background: rgba(19, 82, 74, 0.92);
        padding: 100px 30px;
        z-index: 200;
        transition: right 0.3s ease;
        align-items: flex-start;
    }

    nav ul.show {
        display: flex;
        right: 0;
    }

    nav ul li a {
        font-size: 1rem;
        letter-spacing: 0.1em;
        text-align: left;
    }

    /* --- Header --- */
    header {
        padding: 0 4%;
    }

    /* --- Hero --- */
    .hero-text h1 {
        font-size: 6rem;
    }

    .hero-text p {
        font-size: 0.85rem;
        letter-spacing: 0.15em;
    }

    /* --- Welcome --- */
    .welcome {
        padding: 80px 0;
    }

    .welcome-text {
        width: 88%;
    }

    /* --- Page Banner --- */
    .page-banner {
        height: calc(30vh + 70px);
        padding-top: 70px;
    }

    .page-banner h1 {
        font-size: 4rem;
    }

    /* --- Feature Section --- */
    .feature {
        padding: 60px 0;
    }

    .feature-row {
        width: 88%;
        flex-direction: column;
        gap: 30px;
    }

    .feature-image {
        width: 100%;
        height: 300px;
    }

    .feature-image img {
        height: 280px;
    }

    /* --- Carousel --- */
    .custom-carousel {
        width: 100%;
        overflow: visible;
    }

    .custom-carousel-track {
        width: 100%;
        height: 280px;
        overflow: hidden;
    }

    /* --- Products Grid --- */
    .products {
        padding: 60px 0;
    }

    .product-grid {
        width: 88%;
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 100%;
        max-width: 100%;
    }

    .product-image img {
        height: 280px;
    }

    /* --- Creator Section --- */
    .creator {
        padding: 60px 0;
    }

    .creator-row {
        width: 88%;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .creator-row img {
        width: 200px;
        height: 240px;
    }

    /* --- Mission Section --- */
    .mission {
        padding: 60px 0 80px 0;
    }

    .mission-text {
        width: 88%;
    }

    /* --- Feedback Form --- */
    .feedback {
        padding: 60px 0 100px 0;
    }

    .feedback-text {
        width: 88%;
    }

    /* --- Contact --- */
    .contact-text {
        width: 88%;
    }
}

/* --- TABLET (768px to 1024px) --- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    nav ul {
        gap: 24px;
    }

    .welcome-text {
        width: 78%;
    }

    .feature-row {
        width: 88%;
        gap: 40px;
    }

    .feature-image img {
        height: 380px;
    }

    .feature {
        padding: 60px 0;
    }

    .product-grid {
        width: 90%;
        gap: 24px;
    }

    .product-image img {
        height: 300px;
    }

    .creator-row {
        width: 85%;
        gap: 40px;
    }

    .creator-row img {
        width: 220px;
        height: 260px;
    }

    .mission-text {
        width: 78%;
    }

    .feedback-text {
        width: 70%;
    }

    .contact-text {
        width: 78%;
    }

    .custom-carousel-track {
        height: 380px;
    }
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =========================================================
   HEADER ACTIONS (cart + hamburger)
   ========================================================= */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-toggle {
    position: relative;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    line-height: 1;
}

.cart-toggle .material-symbols-outlined {
    font-size: 1.7rem;
}

.cart-toggle:hover {
    opacity: 0.75;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -9px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 50%;
    background: var(--white);
    color: var(--viridian);
    font-family: var(--font-text);
    font-size: 0.65rem;
    font-weight: 600;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* =========================================================
   BANNER TAGLINE
   ========================================================= */
.page-banner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.banner-tagline {
    font-family: var(--font-subtitle);
    font-size: 1.4rem;
    color: var(--white);
    letter-spacing: 0.1em;
    position: relative;
    z-index: 1;
}

/* =========================================================
   SHOPPING CART DRAWER
   ========================================================= */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -440px;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: var(--viridian);
    z-index: 260;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.35);
}

.cart-drawer.show {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-header h2 {
    font-family: var(--font-subtitle);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
}

.cart-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-close:hover { opacity: 0.7; }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 12px 24px;
}

.cart-empty {
    font-family: var(--font-text);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 40px 0;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-item-name {
    font-family: var(--font-subtitle);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.cart-item-price {
    font-family: var(--font-text);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
}

.qty-btn:hover {
    background: var(--white);
    color: var(--viridian);
}

.cart-item-qty {
    font-family: var(--font-text);
    font-size: 0.9rem;
    min-width: 20px;
    text-align: center;
    color: var(--white);
}

.cart-item-remove {
    margin-left: auto;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-text);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-decoration: underline;
    cursor: pointer;
}

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

.cart-footer {
    padding: 20px 24px 28px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-subtitle);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 18px;
}

.cart-checkout {
    width: 100%;
    margin-top: 0;
    padding: 14px 0;
}

.cart-note {
    font-family: var(--font-text);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    margin-top: 12px;
}

/* =========================================================
   WELCOME SIGNUP POPUP
   ========================================================= */
.signup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.signup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.signup-box {
    position: relative;
    display: flex;
    width: 760px;
    max-width: 100%;
    max-height: 92vh;
    background: var(--white);
    overflow: hidden;
    border-radius: 4px;
}

.signup-image {
    flex: 1;
    background-image: url('./img/temp_hijab_main.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 420px;
}

.signup-content {
    flex: 1;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--viridian);
}

.signup-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--viridian);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
}

.signup-close:hover { opacity: 0.6; }

.signup-heading {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--viridian);
    margin-bottom: 14px;
}

.signup-sub {
    font-family: var(--font-content);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 24px;
}

#signup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#signup-form input {
    border: 1px solid #999;
    background: transparent;
    color: var(--viridian);
    font-family: var(--font-text);
    font-size: 0.95rem;
    padding: 14px 16px;
    outline: none;
    width: 100%;
}

#signup-form input::placeholder { color: #888; }

.signup-submit {
    background: var(--viridian);
    color: var(--white);
    border: 1px solid var(--viridian);
    padding: 14px 0;
    width: 100%;
    margin-top: 4px;
}

.signup-submit:hover {
    background: transparent;
    color: var(--viridian);
}

.signup-fine {
    font-family: var(--font-text);
    font-size: 0.68rem;
    line-height: 1.5;
    color: #777;
    margin-top: 6px;
}

.signup-thanks {
    display: none;
    text-align: center;
}

.signup-thanks-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--viridian);
    margin-bottom: 12px;
}

.signup-thanks p {
    font-family: var(--font-content);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
}

/* =========================================================
   RESPONSIVE — new components
   ========================================================= */
@media screen and (max-width: 768px) {
    .banner-tagline {
        font-size: 1.05rem;
        padding: 0 20px;
    }

    .signup-box {
        flex-direction: column;
        max-width: 400px;
    }

    .signup-image {
        display: none;
    }

    .signup-content {
        padding: 44px 28px 32px 28px;
    }

    .signup-heading {
        font-size: 2rem;
    }

    .cart-drawer {
        width: 340px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .banner-tagline {
        font-size: 1.2rem;
    }

    nav ul {
        gap: 18px;
    }

    nav ul li a {
        font-size: 0.92rem;
    }
}