html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Sholenyky Global Styles */
:root {
    --primary: #FED701;
    --dark: #1A1A1A;
    --accent-red: #990000;
    --bg-white: #FFFFFF;
    --text-main: #1A1A1A;
    --text-light: #666666;
    --font-main: 'Montserrat', sans-serif;
    --spacing-unit: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--bg-white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-order {
    background: var(--primary);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Sections */
section {
    padding: 80px 0;
}

.header-mobile-center {
    display: none;
}

.mobile-teaser {
    color: #999;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Hero */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/item_all.PNG');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tradition */
.tradition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Flavor Cards */
.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.flavor-card {
    border-radius: var(--border-radius);
    padding: 30px;
    color: white;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.flavor-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
    transform: scale(1.1);
}

.flavor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.flavor-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: color 0.3s;
}

.flavor-card.traditional {
    background-color: var(--primary);
    color: var(--dark);
}

.flavor-card.cumin {
    background-color: var(--dark);
}

.flavor-card.spicy {
    background-color: var(--accent-red);
}

.flavor-card.fasting {
    background-color: #f5f5f5;
    color: var(--dark);
    border: 1px solid #ddd;
}

.flavor-card:hover .flavor-bg {
    opacity: 1;
    transform: scale(1);
}

.flavor-card:hover .flavor-overlay {
    opacity: 1;
}

.flavor-card:hover .flavor-content,
.flavor-card:hover h3,
.flavor-card:hover .desc,
.flavor-card:hover .price,
.flavor-card:hover strong {
    color: white !important;
}

.flavor-card .badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.2);
    align-self: flex-start;
    transition: background 0.3s;
}

.flavor-card.traditional .badge,
.flavor-card.fasting .badge {
    background: rgba(0, 0, 0, 0.1);
}

.flavor-card:hover .badge {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: transparent !important;
    color: white !important;
}

.flavor-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
}

.flavor-card .desc {
    margin-bottom: 20px;
    font-size: 14px;
    flex-grow: 1;
}

.flavor-card .meta {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 12px;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

.flavor-card.traditional .meta,
.flavor-card.fasting .meta {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.flavor-card:hover .meta {
    border-top-color: rgba(255, 255, 255, 0.3) !important;
}

.flavor-card .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flavor-card .price {
    font-size: 24px;
    font-weight: 800;
}

.btn-buy {
    background: white;
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    transition: background 0.3s, color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.flavor-card.traditional .btn-buy,
.flavor-card.fasting .btn-buy {
    background: var(--dark);
    color: white;
}

.flavor-card:hover .btn-buy {
    background: var(--primary) !important;
    color: var(--dark) !important;
}

.btn-buy:hover {
    transform: scale(1.05);
}

.tradition-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.tradition-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* How to Eat Accordion */
.how-accordion {
    display: flex;
    gap: 15px;
    height: 450px;
    width: 100%;
}

.how-panel {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex: 1;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.how-panel:hover {
    flex: 3;
}

.how-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.how-panel:hover img {
    transform: scale(1.05);
    /* replace hover scale from earlier */
}

.how-panel .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.how-panel h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.how-panel:hover h3 {
    opacity: 1;
    transform: translateY(0);
}

.how-panel p {
    font-size: 14px;
    color: var(--primary);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.how-panel:hover p {
    opacity: 1;
    transform: translateY(0);
}

.how-panel .vertical-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center bottom;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    transition: opacity 0.3s;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.how-panel:hover .vertical-title {
    opacity: 0;
}

@media (max-width: 768px) {
    .how-accordion {
        flex-direction: column;
        height: 800px;
    }

    .how-panel .vertical-title {
        transform: translateX(-50%);
        bottom: 20px;
    }
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 0;
    text-align: center;
}

footer .logo img {
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(0.8);
}

footer .socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .tradition-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .header-btn {
        display: none;
    }

    .hamburger {
        display: block !important;
        font-size: 28px;
        cursor: pointer;
        user-select: none;
    }

    .header-mobile-center {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        justify-content: center;
        height: 100%;
        top: 0;
        z-index: 100;
    }

    .desktop-only-cart {
        display: none !important;
    }
}

.hamburger {
    display: none;
}


/* Info Cards Section */
.info-section {
    padding: 0;
    margin-top: 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
}

/* CTA Block */
.cta-block {
    text-align: center;
    background: #fdfdfd;
    border-radius: 20px;
    border: 2px solid var(--primary);
    margin: 40px auto;
    padding: 60px 40px;
}

.cta-block h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

.cta-block p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    color: var(--text-light);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- NEW STYLES --- */

.header-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    margin-left: 5px;
}

.header-cart-icon img {
    height: 28px;
    filter: brightness(0);
    /* Make it black to match text */
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-red);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    z-index: 2;
}

.hero-new {
    position: relative;
    height: 85vh;
    background-size: cover;
    background-position: right;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content-new {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-ylogo {
    width: 150px;
    margin-bottom: 30px;
}

.hero-content-new h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content-new p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.btn-large {
    font-size: 18px;
    padding: 15px 40px;
}

/* History Grid */
.history-section {
    padding-top: 100px;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.history-title-box {
    border-left: 5px solid var(--primary);
    padding-left: 20px;
}

.history-title {
    font-size: 48px;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 800;
}

.history-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.history-subtitle {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: 800;
}

.history-image-wrap {
    width: 100%;
}

.history-photo {
    width: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
    display: block;
}


/* Video Section */
.video-section {
    padding-top: 50px;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-text p {
    font-size: 18px;
}

.signature {
    font-style: italic;
    font-weight: 600;
}

.about-video {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Yellow Block */
.yellow-block {
    background-color: var(--primary);
    color: var(--dark);
    text-align: center;
    padding: 60px 20px;
    margin-top: 50px;
}

.yellow-block h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.yellow-block p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Store logic on home page */
.store-section {
    padding-top: 0;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 360px);
    justify-content: center;
    gap: 40px;
    row-gap: 80px;
    /* space for protruding images */
}

.store-card {
    display: flex;
    flex-direction: column;
}

.variant-switcher {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.variant-btn {
    border: 2px solid var(--dark);
    background: transparent;
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.variant-btn.active,
.variant-btn:hover {
    background: var(--dark);
    color: white;
}

.store-card-body {
    position: relative;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.store-image-wrap {
    position: relative;
    width: 323px;
    height: 160px;
    margin-bottom: 20px;
}

.protruding-image {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 323px;
    height: 160px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.store-checkout-block {
    text-align: center;
    margin-top: 50px;
}

.btn-checkout-large {
    font-size: 20px;
    padding: 15px 50px;
    background: var(--accent-red);
    color: white;
    display: inline-block;
}

/* Photo Accordion */
/* How to Eat Slider (4 in a row) */
.how-to-eat-slider {
    position: relative;
    width: 100%;
    height: 362px;
    overflow: hidden;
    --border-radius: 20px;
    background: #fff;
}

.slider-track {
    display: flex;
    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide-item {
    flex: 0 0 25%;
    height: 362px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 15px;
    background-origin: content-box;
    transition: transform 0.3s;
}

.slide-item:hover {
    transform: scale(1.12);
}

@media (max-width: 992px) {
    .slide-item {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .slide-item {
        flex: 0 0 100%;
    }
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.3s, box-shadow 0.2s;
    box-shadow: var(--shadow);
    color: var(--dark);
    padding: 0;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--dark);
    stroke-width: 2;
}

.slider-btn:hover {
    transform: scale(1.1) translateY(-2px);
    background-color: #f7ca00;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.slider-btn:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .slider-controls {
        justify-content: center;
    }
}

/* Footer New */
.footer-content-new img {
    opacity: 1 !important;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-socials a img {
    height: 30px;
    filter: none !important;
}

.footer-socials a:hover {
    opacity: 0.8;
}

.footer-links {
    margin-bottom: 20px;
}

/* --- OVERRIDES FOR FEEDBACK --- */

/* Fix Fonts to be thinner overall */
body,
h1,
h2,
h3,
h4,
h5,
h6,
.btn-order,
.history-title,
.hero-content-new h1 {
    font-weight: 400 !important;
}

.history-subtitle {
    font-weight: 500 !important;
}

/* Hero Overrides */
.hero-content-new h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-subtext {
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 30px;
    text-transform: uppercase;
}

/* History Background Overrides */
.history-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin: 0;
    color: var(--dark);
}

/* Optional overlay for readability */
.history-section::before {
    display: none;
}

.history-mobile-title {
    display: none;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.history-mob-img {
    width: 100%;
    height: auto;
    display: block;
}

.history-mobile-title .history-title {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    color: var(--dark);
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
}

.history-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.history-col-left {
    width: 40%;
}

.history-col-right {
    width: 55%;
    padding: 40px;
    border-radius: 12px;
}

.history-title-box {
    border-left-color: var(--primary);
}

/* Video Size */
.video-wrap {
    max-width: 66%;
    margin: 0 auto;
}

/* Store Cards Overrides */
.store-grid {
    gap: 40px;
    row-gap: 10px;
    /* reduced from 120px */
}

.store-card {
    position: relative;
    padding-top: 100px;
}

.store-image-wrap {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
}

.store-card-body {
    background-color: white !important;
    color: var(--dark) !important;
    text-align: left;
    align-items: flex-start;
    padding-top: 150px;
    /* space for the absolute image */
    border: 1px solid #eaeaea;
    border-radius: 20px;
    height: 100%;
}

.protruding-image {
    position: relative;
    top: 5px;
    /* as requested */
    display: block;
    max-width: 90%;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.15));
}

.store-image-overlay {
    position: absolute;
    bottom: 80px;
    /* raised even higher as requested */
    left: 30px;
    right: 30px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.variant-switcher {
    position: static;
    /* managed by overlay flexbox */
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
}

.group-title-overlay {
    font-size: 24px;
    color: var(--dark);
    margin: 0;
    text-transform: uppercase;
}

.store-card-body .flavor-content {
    width: 100%;
    padding: 0 30px 30px;
}

.store-card-body .desc,
.store-card-body .price {
    color: var(--dark) !important;
}

.store-card-body .desc {
    margin-bottom: 10px;
    font-size: 14px;
}

.price-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    /* pins to bottom */
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.store-card-body .price {
    font-size: 24px;
    font-weight: 500 !important;
}

/* Style for Cart button identical to variant-btn.active */
.btn-cart-styled {
    border: 2px solid var(--dark);
    background: var(--dark);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-cart-styled:hover {
    background: transparent;
    color: var(--dark) !important;
}

/* Accordion */
/* Simplified slide styles */
/* Simplified slide styles removed and moved up */

/* Info Cards Info */
.info-card {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Footer layout */
.footer-content-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
}

.footer-logo {
    height: 80px;
    /* Small size removed */
    opacity: 1 !important;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.footer-terms {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
}

.footer-terms:hover {
    color: white;
}

.footer-social-items {
    display: flex;
    gap: 20px;
}

.footer-social-items a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-decoration: none;
}

.footer-social-items a img {
    height: 24px !important;
}

.footer-social-items a:hover {
    color: white;
    opacity: 1;
}

.footer-bottom-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-bottom-text {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .history-section {
        background-image: none !important;
        padding-top: 0;
        padding-bottom: 20px !important;
    }

    .history-mobile-title {
        display: flex;
    }

    .history-col-left {
        display: none;
    }

    .history-grid {
        flex-direction: column;
        gap: 30px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .history-col-left,
    .history-col-right {
        width: 100%;
    }

    .history-col-right {
        padding: 0 !important;
    }

    .video-section {
        padding-top: 20px !important;
    }

    .hero-content-new h1 {
        font-size: 36px;
    }

    .hero-ylogo {
        margin-top: 80px;
    }

    .video-wrap {
        width: 100% !important;
        max-width: none !important;
    }

    .footer-content-new {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-social-links {
        flex-direction: column;
        gap: 20px;
    }

    @media (max-width: 480px) {
        .store-grid {
            grid-template-columns: 1fr;
        }
    }
}

/* AJAX Cart Feedback */
#cart-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #333;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

#cart-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.status-badge {
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid transparent;
}

.status-badge.expected {
    background: #FEF9E7;
    color: #D4AC0D;
    border-color: #F1C40F;
}

.status-badge.out_of_stock {
    background: #FDEDEC;
    color: #A93226;
    border-color: #E74C3C;
}

.price-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.old-price {
    font-size: 0.75em;
    color: #999;
    text-decoration: line-through;
    margin-bottom: -3px;
    display: block;
    min-height: 1.2em;
}

.add-to-cart-btn.loading {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

/* Promo Banner */
.promo-banner-section {
    padding: 60px 0 0;
}

.banner-container {
    text-align: center;
}

.promo-banner-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* REVIEWS & MODAL */
.reviews-carousel-wrap {
    overflow: hidden;
    padding: 20px 5px 40px;
    margin: 0 -5px;
    scrollbar-width: none;
}
.reviews-carousel-wrap::-webkit-scrollbar {
    display: none;
}
.reviews-track {
    display: flex;
    gap: 20px;
}
.reviews-track .review-card {
    width: calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
}
@media (max-width: 991px) {
    .reviews-track .review-card {
        width: calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 768px) {
    .reviews-track .review-card {
        width: calc(100vw - 60px);
        min-width: calc(100vw - 60px);
        margin: 0 5px;
    }
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}
.review-card:hover { transform: translateY(-5px); }
.review-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.review-author { font-weight: 700; font-size: 16px; color: #222; }
.review-date { font-size: 12px; color: #999; }
.review-text { font-size: 14px; color: #555; line-height: 1.6; }

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-container { transform: translateY(0); }
.modal-close { position: absolute; top: 20px; right: 25px; font-size: 30px; cursor: pointer; color: #999; }
.star-rating { display: flex; gap: 5px; font-size: 28px; cursor: pointer; color: #ccc; }
.star-rating span.active { color: #f7ca00; }

.reviews-slider-controls { display: flex; justify-content: flex-end; }

@media (max-width: 768px) {
    .reviews-slider-controls {
        justify-content: center;
    }
}
