/* CSS Reset & Variables */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Quantico:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --color-gold: #F2BA13;
    --color-black: #121212;
    --color-cream: #FCF6F0;
    --color-white: #ffffff;

    /* Dark Theme (Default) */
    --bg-color: var(--color-black);
    --bg-card: #151515;
    --text-color: var(--color-white);
    --text-muted: #aaaaaa;
    --brand-color: var(--color-gold);
    --border-color: var(--color-white);
    
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Quantico', sans-serif;
}

[data-theme='light'] {
    --bg-color: var(--color-cream);
    --bg-card: var(--bg-card);
    --text-color: var(--color-black);
    --text-muted: #5e5e5e;
    --border-color: var(--color-black);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.text-brand {
    color: var(--brand-color);
}

/* Buttons */
.btn-primary, .btn-contact, .btn-buy, .btn-shop-now, .read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--brand-color);
    color: #fff;
    font-weight: 700;
    padding: 0.85rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    border: 2px solid var(--text-color);
    box-shadow: 4px 4px 0px var(--text-color);
    transition: all 0.2s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-primary:hover, .btn-contact:hover, .btn-buy:hover, .btn-shop-now:hover, .read-more-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--text-color);
    background-color: var(--brand-color-dark);
    color: var(--text-color);
}

.icon-btn {
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 0.5rem;
    background: transparent;
}

.icon-btn:hover {
    color: var(--brand-color);
    border-color: var(--text-color);
    background: #fff;
}

/* Components: Navbar */
.navbar {
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 1px;
    flex: 1;
    color: var(--text-color);
    text-decoration: none;
}

.nav-brand-icon {
    width: 28px;
    height: 28px;
    background: var(--brand-color);
    border-radius: 8px;
    border: 2.5px solid var(--border-color);
    transform: rotate(15deg);
}

.nav-links {
    display: flex;
    gap: 3rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    font-family: var(--font-body);
    flex: 2;
    justify-content: center;
}

.nav-links a {
    position: relative;
    padding-bottom: 2px;
    color: var(--text-color);
}

.nav-links a.active-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--brand-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

.btn-basket {
    border-radius: 50px;
    border: 2px solid var(--border-color);
    padding: 0.4rem 1.2rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-color);
    background: transparent;
    transition: all 0.2s ease;
}

.btn-basket:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.basket-icon-wrapper {
    border: 1.5px solid currentColor;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Theme Toggle Button */
.btn-theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: transform 0.2s;
}

.btn-theme-toggle:hover {
    transform: scale(1.1);
}

/* Components: Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5% 0; /* Updated padding */
    display: flex;
    align-items: center;
    min-height: 70vh;
}

/* Giant vertical text on the left */
.side-text-honey {
    position: absolute;
    left: 20px;
    top: 55%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-size: clamp(8rem, 15vw, 16rem);
    line-height: 0.75;
    font-weight: 800;
    color: #e5e5e5;
    text-transform: capitalize;
    letter-spacing: -3px;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-left: 8vw;
}

.hero-text-block {
    max-width: 380px;
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Reviews block */
.hero-user-review {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.user-avatars {
    display: flex;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--white);
    object-fit: cover;
}

/* specific colors for avatars based on image if using css backgrounds, but we use randomuser */
.avatar-stack {
    margin-left: -15px;
}

.consumers-text {
    line-height: 1.1;
}

.consumers-text strong {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    display: block;
}

.consumers-text strong span {
    font-size: 1rem;
}

.consumers-small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.watch-process-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.play-btn {
    width: 40px;
    height: 40px;
    background: #fbdba6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brand-color);
}

.underline-text {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Hero Images */
.hero-image-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-jar {
    width: 100%;
    max-width: 450px;
    object-fit: contain;
    z-index: 3;
}

.hero-dipper {
    position: absolute;
    bottom: -10px;
    left: -120px;
    width: 350px;
    z-index: 2;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: right;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--brand-color);
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
}

.stat-item h2 span {
    font-size: 2rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        padding-left: 0;
        text-align: center;
        gap: 3rem;
    }

    .hero-text-block {
        max-width: 500px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: row;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .hero-left-text {
        opacity: 0.3;
    }
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
}

.btn-primary-outline {
    display: inline-block;
    border: 2px solid var(--brand-color);
    color: var(--brand-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background-color: var(--brand-color);
    color: var(--white);
}

.btn-buy {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background-color: transparent;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background-color: var(--brand-color);
    color: var(--white);
    border-color: var(--brand-color);
}

/* Hero Bento Grid */
.hero-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr;
    gap: 3rem;
    align-items: flex-end;
    text-align: left;
}

/* Left Bento */
.bento-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bento-product-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
    border: 2px solid var(--border-color);
    box-shadow: 6px 6px 0px var(--border-color);
    text-align: center;
}

.bento-jar {
    height: 180px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
}

.bento-product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border-top: 2px solid transparent; /* or keep transparent if you like the clean border box below */
    text-align: left;
    margin-top: 1rem;
}

.bento-product-info h4 {
    font-size: 1.5rem;
    line-height: 1;
    margin: 0;
    font-family: var(--font-heading);
}

.bento-price {
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--text-color);
    background: var(--bg-card);
    padding: 0.3rem 0.8rem;
    border: 2px solid var(--text-color);
    border-radius: 20px;
    font-size: 1rem;
}

.bento-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.bento-circle {
    width: 60px;
    height: 60px;
    background: #F1EDDF;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    flex-shrink: 0;
}

.bento-small-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    object-fit: cover;
    flex-shrink: 0;
}

.bento-badge p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
}

/* Center Bento */
.bento-tall-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 2px solid var(--text-color);
    box-shadow: 6px 6px 0px var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 480px;
    overflow: hidden;
}

.bento-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: 2px solid var(--text-color);
    border-radius: 50px;
    padding: 0.3rem 0.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 10;
}

.bento-dipper-img {
    position: absolute;
    top: -30px;
    left: 20%;
    height: 250px;
    transform: rotate(15deg);
    z-index: 2;
}

.bento-organic-text {
    font-family: var(--font-heading);
    font-size: 7rem;
    color: var(--brand-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 1;
    letter-spacing: 2px;
}

.bento-main-jar {
    position: absolute;
    bottom: -40px;
    height: 300px;
    object-fit: contain;
    z-index: 3;
}

/* Right Bento */
.bento-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 1rem;
}

.bento-statement {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1;
    margin: 0;
}

.bento-link {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.bento-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bento-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 1rem;
}

.bento-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bento-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: bold;
}

.bento-list-item img {
    height: 50px;
    width: 60px;
    object-fit: contain;
}

.bento-list-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.1rem;
    flex: 1;
}

.bento-list-tag {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--brand-color);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-bento-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .bento-product-info, .bento-badge, .bento-list-item {
        justify-content: center;
    }
}

/* The Buzzz Section */
.buzzz-section {
    position: relative;
    padding-top: 12rem;
}

.buzzz-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 2rem;
}

.buzzz-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.buzzz-image img {
    max-width: 80%;
    border-radius: 20px;
    background: transparent;
}

.buzzz-text {
    flex: 1.2;
    text-align: left;
}

.buzzz-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    text-transform: capitalize;
}

.buzzz-text p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    position: relative;
    background: var(--color-black);
    border-radius: 20px;
    text-align: left;
    box-shadow: 6px 6px 0px var(--border-color);
    border: 2px solid var(--border-color);
    overflow: hidden;
    height: 420px;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 1.5rem;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.faq-img-dark {
    display: none;
}

[data-theme='dark'] .faq-img-light {
    display: none;
}

[data-theme='dark'] .faq-img-dark {
    display: block;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    color: var(--text-color);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    line-height: 1.1;
}

.feature-card p {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.5;
    font-weight: 500;
    margin-top: auto; /* Push description towards bottom */
}

/* Flash Sale */
.flash-sale-section {
    padding-top: 2rem;
}

.flash-sale-card {
    background: #fcdfc3;
    border-radius: 40px;
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.flash-image-wrapper {
    flex: 1;
    position: relative;
    height: 400px;
}

.flash-image-wrapper img {
    position: absolute;
    top: -80px;
    left: 0;
    max-width: 140%;
    transform: rotate(-15deg);
}

.flash-content {
    flex: 1;
    padding-left: 2rem;
}

.flash-content h2 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -2px;
}

.flash-content p {
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.5;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.time-box {
    text-align: left;
}

.time-box span {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.time-box small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 0.5rem;
}

.colon {
    font-size: 3rem;
    font-weight: 800;
    padding-bottom: 1.5rem;
}

/* Top Picks */
.product-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    border: 2px solid var(--border-color);
    box-shadow: 6px 6px 0px var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px var(--border-color);
}

.product-image {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 8px;
    padding: 2px;
    overflow: hidden;
}

.product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.product-header h3 {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--text-color);
    text-transform: uppercase;
    max-width: 65%;
}

.product-badge {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text-color);
    font-size: 1rem;
    background: transparent;
    padding: 0.3rem 1.2rem;
    border: 2px solid var(--border-color);
    border-radius: 30px;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-family: var(--font-body);
    margin-bottom: auto;
    font-weight: 500;
}

.btn-buy {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.85rem;
    border: 2px solid var(--text-color);
    background-color: transparent;
    color: var(--text-color);
    border-radius: 8px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background-color: var(--brand-color);
    color: var(--color-white);
    border-color: var(--brand-color);
}

/* Testimonial */
.testimonial-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 3rem;
}

.testimonial-image-container {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Push image nearer to text */
}

/* Custom crop shape */
.testimonial-img-shape {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 200px 200px 200px 0; /* Semi-circle top, rounded right, flat bottom-left */
    position: relative;
    z-index: 2;
}

.decorative-outline {
    position: absolute;
    top: -20px;
    left: calc(100% - 380px - 20px); /* 20px offset to top-left from the image */
    width: 380px;
    height: 380px;
    border-radius: 200px 200px 200px 0;
    border: 1px solid var(--text-color);
    z-index: 1;
}

.testimonial-text-wrapper {
    flex: 1;
    position: relative;
    padding: 2rem 0;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--brand-color);
    position: absolute;
    font-weight: 800;
}

.quote-left {
    top: -30px;
    left: 20px;
}

.quote-right {
    bottom: 0px;
    right: 30px;
}

.testimonial-quote-text {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding: 0 4rem;
    font-weight: 300;
}

.customer-info {
    text-align: right;
    padding-right: 4rem;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.customer-info strong {
    font-weight: 800;
    color: var(--text-color);
}

.customer-info span {
    font-weight: 600;
    color: var(--text-color);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--text-color);
    background: transparent;
    cursor: pointer;
}

.dot.active {
    background: var(--text-color);
}

/* FAQs */
.faqs-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.faqs-content {
    display: flex;
    align-items: center;
    gap: 6rem;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 4rem;
    background: var(--bg-card);
    box-shadow: 6px 6px 0px var(--border-color);
}

.faqs-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.faqs-image img {
    width: 100%;
    max-width: 400px;
    display: block;
}

.faqs-text-accordion {
    flex: 1.5;
}

.faqs-title {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    letter-spacing: -1px;
}

.accordion-item {
    border-bottom: 1px solid var(--text-color);
    margin-bottom: 1rem;
}

.accordion-trigger {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-trigger .icon {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-color);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

/* Newsletter */
.newsletter-box {
    display: flex;
    background: var(--white);
    border-radius: 30px;
    border: 1px solid var(--text-color);
    overflow: hidden;
}

.newsletter-image {
    flex: 1;
    background: #f7ede2;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-image img {
    max-width: 250px;
}

.newsletter-form {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsletter-form h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-form p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.newsletter-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--brand-color);
}

/* Footer */
/* New Global Footer Design */
.footer-new {
    background-color: var(--bg-color); /* Automatically matches page background */
    color: var(--text-color);
    border-radius: 60px 60px 0 0; /* Only top corners perfectly rounded */
    width: 100%;
    margin-top: 8rem; /* Clean distance above footer */
    padding: 5.5rem 5% 2rem; /* Reduced padding to bring text up */
    position: relative;
    font-family: var(--font-body);
    border-top: 2px solid var(--text-color); /* Dynamically turns black in light mode, white in dark mode */
    box-shadow: none;
    box-sizing: border-box;
}

.footer-rotating-logo {
    position: absolute; /* Revert to overlap design */
    top: -80px; /* Exactly half-cut intersection */
    left: calc(50% - 80px); /* Centered mathematically to avoid transform conflicts */
    width: 160px; 
    height: 160px;
    z-index: 10;
    pointer-events: none;
}

@keyframes rotateLogo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-title {
    width: 100%;
    text-align: center;
    font-family: var(--font-body); 
    font-weight: 700;
    font-size: clamp(2rem, 3.5vw, 3rem); 
    margin-top: 1rem; /* Protected distance from logo edge */
    margin-bottom: 0.5rem;
    color: var(--text-color); /* Dynamic */
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.footer-sub {
    font-style: italic;
    text-align: center;
    width: 100%;
    margin-bottom: 2rem; /* Keeps it tight to the links */
    color: var(--text-color); 
    opacity: 0.7; /* Soften visually */
    font-size: 1.05rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem; /* Tighter column gap */
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    font-size: 1.35rem; 
    margin-bottom: 0.8rem; /* Tighter header bottom */
    font-family: var(--font-heading);
    color: var(--text-color);
    letter-spacing: 1px;
}

.footer-column p, .footer-column a {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.4; 
    text-decoration: none;
    display: block;
    margin-bottom: 0.2rem; /* Crushed link margins */
    font-size: 0.95rem; 
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-column a:hover {
    color: var(--brand-color);
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color); /* Dynamic subtle line */
    margin-top: 2rem; /* Pulled up copyright row */
    padding-top: 1rem;
    color: var(--text-color);
    opacity: 0.6;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--brand-color);
}

@media (max-width: 768px) {
    .footer-new {
        width: 100%;
        border-radius: 40px 40px 0 0;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .footer-rotating-logo {
        width: 140px;
        height: 140px;
        top: -70px;
        left: calc(50% - 70px);
    }
}

/* Responsive Overrides via Media Queries */
@media (max-width: 1024px) {
    .buzzz-content, .faqs-content, .testimonial-content {
        flex-direction: column;
        gap: 2rem;
    }
    .features-grid, .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .flash-sale-card {
        flex-direction: column;
        text-align: center;
    }
    .flash-image-wrapper {
        width: 100%;
        height: auto;
        margin-bottom: 2rem;
    }
    .flash-image-wrapper img {
        position: relative;
        top: 0;
        transform: none;
        max-width: 80%;
        margin: 0 auto;
    }
    .countdown {
        justify-content: center;
    }
    .newsletter-box {
        flex-direction: column;
    }
    .newsletter-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid, .product-grid {
        grid-template-columns: 1fr;
    }
    .features-grid { margin-bottom: 3.5rem !important; }
    .buzzz-section { padding-top: 3.5rem !important; }
    .hero-bento-grid { margin-top: 1rem !important; }
    .top-picks-section { margin-top: 0 !important; padding-top: 2rem !important; }
    .hero-cta { justify-content: flex-start !important; }
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        text-align: center;
    }
    .stat-item h2 {
        font-size: 1.8rem;
    }
    .modal-content {
        flex-direction: column;
        padding: 2rem;
    }
    .modal-main-image {
        height: 250px;
    }
    .modal-info h2 {
        font-size: 2rem;
    }
}

/* Product Detail Page */
.product-detail-container {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.product-detail-gallery {
    flex: 1;
}

.product-main-image {
    width: 100%;
    height: 450px;
    object-fit: contain;
    background: radial-gradient(circle, rgba(247,150,68,0.15) 0%, rgba(255,255,255,0) 65%);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
}

.product-thumb {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    background: #f8f8f8;
    transition: border-color 0.3s;
}

.product-thumb.active {
    border-color: var(--brand-color);
}

.product-detail-info {
    flex: 1.2;
}

.product-detail-info h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.product-detail-info .price {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--brand-color);
    font-weight: 700;
}

.product-detail-info p {
    color: var(--text-color);
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-detail-info ul {
    list-style: none;
    margin-bottom: 3rem;
}

.product-detail-info ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
}

.product-detail-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-color);
    font-weight: 800;
}

/* Blog Section */
.blog-section {
    padding: 6rem 5%;
    background: #fafafa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 6px 6px 0px var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px var(--border-color);
}

.blog-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: var(--brand-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.blog-content h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.blog-content p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more-btn {
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.read-more-btn:hover {
    color: var(--brand-color);
}

@media (max-width: 900px) {
    .product-detail-container {
        flex-direction: column;
    }
    .product-detail-info h1 {
        font-size: 2.5rem;
    }
}

/* Custom product detail page additional styling */
#productTitle {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

#productPrice {
    color: var(--brand-color);
    font-weight: 700;
    font-size: 1.35rem;
    display: block;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

#productBenefits {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

#productBenefits li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

#productBenefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-color);
    font-weight: bold;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #ffffff;
    border-radius: 8px;
    padding: 2px;
    margin-bottom: 1rem;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
}

.product-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    background: #ffffff;
    border-radius: 8px;
    padding: 2px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.product-thumb.active {
    border-color: var(--brand-color);
}

.product-detail-info {
    color: var(--text-color);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 0.5rem;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--bg-color);
    color: var(--text-color);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-left: 1px solid var(--border-color);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.drawer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
}

.drawer-logo {
    width: 30px;
    height: auto;
}

.btn-close-drawer {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-body);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.2s;
}

[data-theme="light"] .drawer-links a {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.drawer-links a:hover {
    color: var(--brand-color);
}

.drawer-links a .arrow {
    font-size: 1.5rem;
}

@media (max-width: 900px) {
    .nav-links {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex;
    }
    .btn-basket {
        display: none !important;
    }
}


@media (max-width: 768px) {
    main.container:not(#index-main) {
        padding-top: 7.5rem !important;
        padding-bottom: 3rem !important;
    }
}


/* Theme responsive product images */
.theme-img-dark { display: block !important; }
.theme-img-light { display: none !important; }
[data-theme="light"] .theme-img-dark { display: none !important; }
[data-theme="light"] .theme-img-light { display: block !important; }



/* Contact Form Styles */
.contact-form-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 4px 4px 0px rgba(0,0,0,0.1);
    flex: 1;
}
.contact-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    text-align: left;
}
.contact-form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}
.contact-form-group input,
.contact-form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: transparent;
    color: var(--text-color);
    font-size: 1rem;
    font-family: var(--font-body);
    width: 100%;
    box-sizing: border-box;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--brand-color);
}
