/* ========================================
   Sâm Lâm Thịnh - Main Stylesheet
   Luxury & Traditional Theme
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Lâm Thịnh Theme (Green & Gold like logo) */
    --primary-red: #1B5E20;
    --primary-red-dark: #0D3D14;
    --primary-red-light: #2E7D32;
    --gold: #D4A017;
    --gold-light: #E5B730;
    --gold-dark: #B8941E;

    /* Primary Green Colors */
    --primary-green: #1B5E20;
    --primary-green-dark: #0D3D14;
    --primary-green-light: #2E7D32;

    /* Keep green for specific sections */
    --red-accent: #1B5E20;
    --red-dark: #0D3D14;

    --green-dark: #1B5E20;
    --green-forest: #2E7D32;
    --white: #FFFFFF;
    --off-white: #F8F5F0;
    --gray-light: #F5F5F5;
    --gray: #888888;
    --gray-dark: #333333;
    --black: #000000;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Roboto', Arial, sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 35px;
    --gap: 20px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Sticky Social Sidebar - Premium Icons
   ======================================== */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.social-btn:hover::before {
    left: 100%;
}

.social-btn:hover {
    transform: translateX(8px) scale(1.05);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.social-btn.messenger {
    background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
}

.social-btn.zalo {
    background: linear-gradient(135deg, #00A2FF 0%, #0068E5 100%);
}

.social-btn.zalo .zalo-text {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.social-btn.phone {
    background: linear-gradient(135deg, #00D26A 0%, #00A854 100%);
}

.social-btn.sms {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5253 100%);
}

/* ========================================
   Header
   ======================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

/* Header Top - Cleaned up */

/* ========================================
   K5 STYLE BANNER
   ======================================== */

/* K5 Banner Styles - Removed */

/* Old Banner Styles - Keep for compatibility */
/* Old Banner Styles - Removed */

.hotline-section .hotline i {
    font-size: 18px;
    animation: shake 1.5s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

/* Navigation Bar */
.nav-bar {
    background: var(--primary-green-dark);
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered Menu */
    flex: 1;
}

.nav-menu li a i {
    margin-right: 8px;
    color: #D4A520;
    transition: var(--transition-normal);
}

.nav-menu li a:hover i,
.nav-menu li a.active i {
    color: #fff;
}

.nav-menu li a {
    display: block;
    padding: 12px 16px;
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-normal);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #D4A520;
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #D4A520;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 80%;
}

/* Navigation Phone and Language Wrapper */
.nav-phone-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4A520 0%, #B8941E 100%);
    color: #0D5D2E;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 3px 10px rgba(212, 165, 32, 0.4);
    transition: var(--transition-normal);
    border: 2px solid #E5B730;
}

.nav-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 32, 0.6);
    background: linear-gradient(135deg, #E5B730 0%, #D4A520 100%);
}

.nav-phone-btn i {
    font-size: 13px;
    animation: shake 1.5s infinite;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
}

.language-switcher .lang {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 3px;
    transition: var(--transition-fast);
}

.language-switcher .lang:hover,
.language-switcher .lang.active {
    color: #D4A520;
    background: rgba(212, 165, 32, 0.1);
}

.language-switcher .lang-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Hero Slider
   ======================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-green) 0%, var(--primary-green-dark) 50%, var(--green-forest) 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(212,175,55,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.slide-text {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 20px;
}

.slide-text h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease;
}

.slide-text p {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--off-white);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-green-dark);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary.large {
    padding: 18px 50px;
    font-size: 18px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--gold);
    color: var(--primary-green-dark);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: var(--transition-normal);
}

.dot:hover,
.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ========================================
   Benefits Bar - Pill Style (3 Colors)
   ======================================== */
.benefits-bar-pill {
    padding: 15px 0;
    background: #f8f8f8;
}

.benefits-pill {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.benefit-item-pill {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 12px;
    transition: all 0.3s ease;
}

.benefit-item-pill:hover {
    transform: scale(1.02);
}

.benefit-item-pill.green {
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    border-radius: 50px 0 0 50px;
}

.benefit-item-pill.dark {
    background: linear-gradient(135deg, #5D4037 0%, #795548 100%);
}

.benefit-item-pill.natural {
    background: linear-gradient(135deg, #00695C 0%, #00897B 100%);
}

.benefit-item-pill.health {
    background: linear-gradient(135deg, #C62828 0%, #E53935 100%);
}

.benefit-item-pill.gold {
    background: linear-gradient(135deg, #D4A017 0%, #E5B730 100%);
    border-radius: 0 50px 50px 0;
}

.benefit-icon-pill {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.benefit-item-pill.green .benefit-icon-pill,
.benefit-item-pill.dark .benefit-icon-pill,
.benefit-item-pill.natural .benefit-icon-pill,
.benefit-item-pill.health .benefit-icon-pill {
    color: #D4A017;
}

.benefit-item-pill.gold .benefit-icon-pill {
    color: #1B5E20;
}

.benefit-text-pill {
    display: flex;
    flex-direction: column;
}

.benefit-title-pill {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.benefit-item-pill.green .benefit-title-pill,
.benefit-item-pill.dark .benefit-title-pill,
.benefit-item-pill.natural .benefit-title-pill,
.benefit-item-pill.health .benefit-title-pill {
    color: #fff;
}

.benefit-item-pill.gold .benefit-title-pill {
    color: #1B5E20;
}

.benefit-subtitle-pill {
    font-family: var(--font-body);
    font-size: 11px;
    font-style: italic;
    margin-top: 3px;
    opacity: 0.9;
}

.benefit-item-pill.green .benefit-subtitle-pill,
.benefit-item-pill.dark .benefit-subtitle-pill,
.benefit-item-pill.natural .benefit-subtitle-pill,
.benefit-item-pill.health .benefit-subtitle-pill {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-item-pill.gold .benefit-subtitle-pill {
    color: #1B5E20;
}

/* ========================================
   Section Titles & Common Styles
   ======================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.section-title.center {
    text-align: center;
}

.section-title.white {
    color: var(--white);
}

/* Elegant Title Style - Like K5 */
.section-title-elegant {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 600;
    font-style: italic;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
}

.section-title-elegant::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.golden-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    margin-bottom: 30px;
}

.golden-line.center {
    margin-left: auto;
    margin-right: auto;
}

/* Section Header Bar - K5 Style (Red Full Width) */
.section-header-bar {
    background: var(--primary-red);
    padding: 20px 0;
    text-align: center;
    margin-bottom: 40px;
}

.section-header-bar h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* ========================================
   Our Story Section
   ======================================== */
.our-story {
    padding: var(--section-padding) 0;
    background: var(--white);
}

/* Story Grid - Equal Heights */
.story-grid {
    display: flex;
    /* Use flex instead of grid for better height control matching */
    align-items: stretch;
    gap: 30px;
}

.story-video {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.video-wrapper-story {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #000;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribute space evenly */
    padding: 10px 20px;
    height: auto;
    /* Height will be determined by the stretch from video */
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.story-header {
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.story-main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #1B5E20;
    text-transform: uppercase;
    margin-bottom: 2px;
    line-height: 1.2;
}

.story-sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: #C62828;
    font-style: italic;
    margin: 0;
}

/* Infographic Styles */
.story-infographic {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribute items */
    flex: 1;
}

.info-card {
    display: flex;
    align-items: center;
    /* Center align vertically */
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-card:first-child {
    padding-top: 0;
}

.info-card:hover {
    transform: none;
    /* Remove hover movement to keep static alignment */
}

.info-icon-wrapper {
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFC107 100%);
    color: #B71C1C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.info-text-wrapper h4 {
    margin: 0 0 4px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1B5E20;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text-wrapper p {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: #444;
}

.video-wrapper-story video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    cursor: pointer;
    transition: var(--transition-normal);
}

.video-placeholder:hover {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--green-forest) 100%);
}

.video-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.video-placeholder span {
    font-size: 18px;
    font-weight: 500;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Story Right Content */


.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--gold);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-normal);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary-green-dark);
}

.btn-outline.white {
    border-color: var(--gold);
    color: var(--white);
}

.btn-outline.white:hover {
    background: var(--gold);
    color: var(--primary-green-dark);
}

.btn-outline.large {
    padding: 15px 45px;
    font-size: 16px;
}

/* Story Image Section */
.story-image-wrapper {
    position: relative;
}

.story-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(19, 99, 51, 0.95) 0%, rgba(19, 99, 51, 0.7) 70%, transparent 100%);
    padding: 40px 30px 30px;
    text-align: center;
}

.story-overlay h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-story {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-green-dark);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-story:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}


/* ========================================
   Products Section
   ======================================== */
.products-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    margin-bottom: 40px;
}

.products-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.products-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--off-white);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-view {
    padding: 12px 25px;
    background: var(--gold);
    color: var(--primary-green-dark);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.product-card:hover .btn-view {
    transform: translateY(0);
}

.btn-view:hover {
    background: var(--gold-light);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
}

.product-price {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-green);
}

.view-more-wrapper {
    text-align: center;
}

/* ========================================
   Gift Sets Section
   ======================================== */
.gift-sets {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    position: relative;
    overflow: hidden;
}

.gift-sets::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="50" cy="50" r="2" fill="rgba(212,175,55,0.1)"/><circle cx="150" cy="150" r="2" fill="rgba(212,175,55,0.1)"/></svg>');
    pointer-events: none;
}

.gifts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.gift-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-normal);
}

.gift-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gift-card.featured {
    border: 2px solid var(--gold);
    transform: scale(1.05);
}

.gift-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.gift-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gift-card:hover .gift-image img {
    transform: scale(1.1);
}

.gift-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--primary-green-dark);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.gift-info {
    padding: 25px;
    text-align: center;
}

.gift-info h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.gift-contents {
    margin-bottom: 20px;
}

.gift-contents li {
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gift-contents li:last-child {
    border-bottom: none;
}

.gift-contents li i {
    color: var(--gold);
}

.gift-price {
    margin-bottom: 20px;
}

.gift-price .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.btn-gift {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gold);
    color: var(--primary-green-dark);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-normal);
}

.btn-gift:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

/* ========================================
   Gift Sets K5 Style - Compact
   ======================================== */
.gift-sets-k5 {
    padding: 30px 0;
    background: var(--primary-green);
}

.gift-sets-k5 .section-title-elegant.white {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.gift-sets-k5 .section-title-elegant.white::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.gifts-grid-k5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gift-card-k5 {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
}

.gift-card-k5:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gift-image-k5 {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.gift-image-k5 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gift-card-k5:hover .gift-image-k5 img {
    transform: scale(1.05);
}

.gift-image-k5 .gift-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.gift-badge.hot {
    background: #E53935;
    color: #fff;
}

.gift-badge.bestseller {
    background: var(--gold);
    color: var(--primary-green-dark);
}

.gift-badge.new {
    background: #4CAF50;
    color: #fff;
}

.gift-info-k5 {
    padding: 15px 20px;
    text-align: center;
    background: var(--white);
}

.gift-info-k5 h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.gift-info-k5 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gift-info-k5 ul li {
    color: var(--gray-dark);
    font-size: 12px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gift-info-k5 ul li i {
    color: var(--gold);
    font-size: 10px;
}

/* ========================================
   Statistics K5 Style - Green Background Compact
   ======================================== */
.stats-section-k5 {
    padding: 30px 0;
    background: var(--primary-green);
}

.stats-section-k5 .section-title-elegant {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 15px;
}

.stats-section-k5 .stats-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.stats-grid-k5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card-k5 {
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-normal);
}

.stat-card-k5:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.stat-icon-k5 {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    color: var(--primary-green-dark);
    font-size: 22px;
}

.stat-label-k5 {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.stat-number-k5 {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}

.stat-unit-k5 {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 3px;
}

/* Stat text wrapper - for flexible layout */
.stat-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========================================
   Numbers Section
   ======================================== */
.numbers-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    color: var(--gray-dark);
}

.numbers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.numbers-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.number-item {
    text-align: center;
    padding: 30px;
    background: var(--off-white);
    border-radius: 15px;
    border: 1px solid var(--gold);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.number-item:hover {
    background: var(--white);
    border-color: var(--gold-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.number-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    color: var(--green-forest);
    font-size: 32px;
}

.number-content .number-label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 10px;
}

.number-content .number-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.number-content .number-unit {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    margin: 5px 0 15px;
}

.number-content p {
    font-size: 14px;
    color: var(--gray);
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 60px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-card {
    min-width: calc(25% - 23px);
    background: var(--off-white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    color: var(--gold);
    font-size: 40px;
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
}

.review-author h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.review-author span {
    font-size: 14px;
    color: var(--gray);
}

.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-nav:hover {
    background: var(--gold);
    color: var(--primary-green-dark);
}

.review-nav.prev-review {
    left: 0;
}

.review-nav.next-review {
    right: 0;
}

/* ========================================
   Footer
   ======================================== */
/* ========================================
/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    padding: 10px 0 0;
    /* Minimized top padding */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    /* Reduced gap */
    padding-bottom: 10px;
    /* Minimal bottom padding */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Reduced from 20px */
    margin-bottom: 15px;
    /* Reduced from 25px */
}

.footer-brand-logo {
    width: 70px;
    /* Slightly reduced */
    flex-shrink: 0;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-brand-logo {
    transform: scale(1.05);
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 14px;
    /* Slightly reduced */
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    /* Reduced */
    margin-bottom: 8px;
    /* Reduced from 15px */
    font-size: 14px;
    /* Slightly reduced */
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.footer-hotline {
    margin-top: 15px;
    /* Reduced */
    padding-top: 15px;
    /* Reduced */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-hotline h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    /* Reduced */
    color: var(--gold);
    text-transform: uppercase;
}

.footer-hotline p {
    margin-bottom: 5px;
    /* Reduced */
    font-size: 14px;
}

.footer-hotline p i {
    color: var(--gold);
    margin-right: 8px;
    width: 16px;
    font-size: 14px;
}

.footer-hotline a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-hotline a:hover {
    color: var(--gold);
}

.footer-links li {
    margin-bottom: 8px;
    /* Reduced */
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reduced */
    transition: var(--transition-fast);
    text-decoration: none;
}

.footer-links li a i {
    color: var(--gold);
    font-size: 11px;
}

.footer-links li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    /* Reduced */
    margin-bottom: 15px;
    /* Reduced */
}

.social-link {
    width: 35px;
    /* Reduced back */
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 14px;
    transition: var(--transition-normal);
    text-decoration: none;
}



.social-link:hover {
    background: var(--gold);
    color: var(--primary-green-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.certification {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer {
    font-size: 13px;
    /* Increased from 11px */
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 10px;
    font-style: italic;
}

.footer-bottom {
    padding: 10px 0;
    /* Minimal vertical padding */
    text-align: center;
    background: transparent;
    /* Removed background box */
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 50%;
    color: var(--primary-green-dark);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding: 60px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    /* Banner Responsive */
    .banner-content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .banner-logo {
        width: 100px;
    }

    .banner-kol-img {
        width: 100px;
    }

    .banner-brand-name {
        font-size: 32px;
    }

    .banner-phone-btn {
        font-size: 16px;
        padding: 10px 25px;
    }

    .slogan-main {
        font-size: 26px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-green-dark);
        flex-direction: column;
        padding: 20px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-content {
        flex-wrap: wrap;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gifts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .gift-card.featured {
        transform: none;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .review-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 400px;
    }

    .slide-text h2 {
        font-size: 32px;
    }

    .slide-text p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .social-sidebar {
        bottom: 20px;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }

    .social-btn {
        border-radius: 50%;
    }

    .social-btn:hover {
        transform: translateY(-5px);
    }

    .review-card {
        min-width: 100%;
    }

    .reviews-slider {
        padding: 20px 0;
    }

    .review-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .logo-text {
        align-items: center;
    }

    .company-name {
        font-size: 10px;
    }

    /* Banner Mobile Styles */
    .banner-logo {
        width: 80px;
    }

    .banner-kol-img {
        width: 80px;
    }

    .banner-company-name {
        font-size: 11px;
    }

    .banner-product-line {
        font-size: 13px;
    }

    .banner-brand-name {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .banner-slogan {
        font-size: 14px;
    }

    .banner-phone-btn {
        font-size: 14px;
        padding: 8px 20px;
    }

    .slogan-small {
        font-size: 18px;
    }

    .slogan-main {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .slider-container {
        height: 350px;
    }

    .slide-text h2 {
        font-size: 26px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary.large {
        padding: 14px 35px;
        font-size: 14px;
    }

    .number-content .number-value {
        font-size: 36px;
    }
}

/* ========================================
   NEW SECTIONS - samkontumk5.com Style
   ======================================== */

/* Pure Image Slider (No text overlay) */
.slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Red Background Sections */
.red-bg {
    background: linear-gradient(135deg, var(--red-accent) 0%, var(--red-dark) 100%) !important;
}

/* Featured Categories */
.featured-categories {
    padding: 60px 0;
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.featured-banner {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.featured-banner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.featured-banner img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.featured-banner:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
}

.featured-overlay h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
}

.featured-overlay p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

/* 3 Column Product Grid */
.products-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* Horizontal Gift Cards */
.gifts-grid.horizontal {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
}

.gift-card-horizontal {
    display: grid;
    grid-template-columns: 45% 55%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-normal);
}

.gift-card-horizontal:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gift-card-horizontal.featured {
    border: 3px solid var(--gold);
}

.gift-image-left {
    position: relative;
    overflow: hidden;
}

.gift-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gift-card-horizontal:hover .gift-image-left img {
    transform: scale(1.1);
}

.gift-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.gift-badge.hot {
    background: #FF4444;
    color: var(--white);
}

.gift-badge.bestseller {
    background: var(--gold);
    color: var(--red-dark);
}

.gift-badge.new {
    background: #00C853;
    color: var(--white);
}

.gift-info-right {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gift-info-right h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.gift-info-right .gift-contents {
    margin-bottom: 20px;
}

.gift-info-right .gift-contents li {
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gift-info-right .gift-contents li i {
    color: var(--gold);
    font-size: 12px;
}

.gift-info-right .gift-price {
    margin-bottom: 15px;
}

.gift-info-right .gift-price .price {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

/* Stats + Video Section */
.stats-video-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #8BA888 0%, #6B8E6B 100%);
    color: var(--white);
}

.stats-video-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 50px;
    align-items: center;
}

.stats-content .intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.stats-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    color: var(--green-forest);
    font-size: 24px;
    flex-shrink: 0;
}

.stat-content .stat-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-content .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.stat-content .stat-unit {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--gold);
    margin: 5px 0 10px;
}

.stat-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.video-content {
    position: relative;
}

.video-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--red-accent);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
}

.video-badge i {
    font-size: 24px;
    margin-bottom: 5px;
    display: block;
}

/* News Tabs Section */
.news-section {
    padding: var(--section-padding) 0;
    background: var(--gray-light);
}

.news-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-green);
    color: var(--white);
}

.news-content {
    display: none;
}

.news-content.active {
    display: block;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
}

.news-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-info {
    padding: 20px;
}

.news-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-date {
    font-size: 13px;
    color: var(--gray);
}

.news-date i {
    margin-right: 5px;
}

/* Language Switcher with Flags */
.language-switcher .lang img {
    width: 20px;
    height: auto;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.language-switcher .lang:hover img,
.language-switcher .lang.active img {
    opacity: 1;
}

/* Responsive Updates */
@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .products-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .gift-card-horizontal {
        grid-template-columns: 1fr;
    }

    .stats-video-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid.three-col {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-tabs {
        flex-direction: column;
    }
}

/* ========================================
   RESTORATION STYLES
   ======================================== */

/* Story Content */
.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 30px;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.story-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: justify;
}

.golden-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 10px 0 20px;
}

.golden-line.center {
    margin: 10px auto 20px;
}

.golden-line.left {
    margin: 10px 0 20px;
}

.btn-outline-gold {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid var(--gold);
    color: var(--primary-green-dark);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-normal);
    width: fit-content;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

/* Gift Sets - Green Background */
.gift-sets.red-bg {
    background: var(--primary-green-dark);
}

.gift-sets .section-title.white {
    color: var(--gold);
}

/* Products 4 Columns */
.products-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
    .products-grid.four-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--off-white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 32px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-green-dark);
    font-size: 18px;
    display: block;
}

.testimonial-role {
    font-size: 13px;
    color: #888;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Video Placeholder Styles
   ======================================== */
.video-placeholder {
    background: var(--primary-green);
    border-radius: 15px;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.video-placeholder .play-button {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-placeholder .play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.video-placeholder .play-button i {
    font-size: 28px;
    color: var(--primary-green-dark);
    margin-left: 5px;
}

.video-placeholder .video-label {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
}

/* ========================================
   Testimonial Carousel Navigation
   ======================================== */
.testimonials-section {
    position: relative;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-nav:hover {
    background: var(--primary-green);
    color: var(--white);
}

.testimonial-nav.prev {
    left: 20px;
}

.testimonial-nav.next {
    right: 20px;
}

.testimonial-nav i {
    font-size: 18px;
    color: var(--primary-green);
}

.testimonial-nav:hover i {
    color: var(--white);
}

/* ========================================
   Products Page Styles
   ======================================== */


/* Layout */
.products-page-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar */
.sidebar-widget {
    margin-bottom: 35px;
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    color: var(--gray-dark);
    font-size: 15px;
    transition: var(--transition-fast);
    display: block;
    padding: 5px 0;
}

.category-list li a:hover,
.category-list li a.active {
    color: var(--primary-green);
    padding-left: 5px;
    font-weight: 500;
}

/* Price Filter */
.price-filter {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.price-range {
    width: 100%;
    margin-bottom: 15px;
    accent-color: var(--primary-green);
}

.price-inputs {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.btn-filter {
    width: 100%;
    padding: 8px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-filter:hover {
    background: var(--primary-green-dark);
}

/* Toolbar */
.products-toolbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sort-by {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sort-by span {
    color: var(--gray);
    font-size: 14px;
}

.sort-by a {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.sort-by a:hover,
.sort-by a.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

/* Grid Override for Products Page */
.products-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    border-radius: 50%;
    color: var(--gray-dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

.page-link.prev,
.page-link.next {
    width: auto;
    padding: 0 20px;
    border-radius: 20px;
    gap: 8px;
}

.page-link:hover,
.page-link.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

@media (max-width: 900px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .products-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-grid.three-col {
        grid-template-columns: 1fr;
    }

    .sort-by {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ========================================
   Product Quick View Modal Styles
   ======================================== */
.product-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    /* Black w/ opacity */
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-modal.show {
    opacity: 1;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: translateY(-50px);
    transition: transform var(--transition-normal);
}

.product-modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    color: var(--gray);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--red-accent);
}

.modal-body {
    display: grid;
    grid-template-columns: 45% 55%;
}

/* Modal Image */
.modal-image {
    background: #f9f9f9;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* Fill container */
}

.modal-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: transform var(--transition-slow);
}

.modal-image img:hover {
    transform: scale(1.05);
}

/* Modal Info */
.modal-info {
    padding: 40px;
}

.modal-product-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.modal-product-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 25px;
}

.modal-product-meta {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-item {
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.meta-label {
    font-weight: 600;
    color: var(--gray-dark);
    width: 100px;
}

.meta-value {
    color: var(--gray);
}

.meta-value.available {
    color: var(--primary-green);
    font-weight: 600;
}

.modal-product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 30px;
}

/* Actions */
.modal-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 35px;
    height: 35px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: var(--gray-dark);
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: #ddd;
}

.qty-input {
    width: 50px;
    height: 35px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Tablet & Mobile Responsive */
@media (max-width: 900px) {
    .modal-body {
        grid-template-columns: 100%;
    }

    .modal-image {
        padding: 20px;
    }

    .modal-image img {
        max-height: 250px;
    }

    .modal-info {
        padding: 30px;
    }

    .modal-product-title {
        font-size: 24px;
    }

    .modal-content {
        margin: 10% auto;
    }
}

@media (max-width: 500px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        border-radius: 10px;
    }

    .modal-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .quantity-selector {
        justify-content: center;
    }

    .modal-info {
        padding: 20px;
    }
}

/* ========================================
   New Banner Style (White Theme - Exact Match)
   ======================================== */
/* ========================================
   New Banner Style (White Theme - Exact Match)
   ======================================== */
.header-top.header-banner-style,
.header-top {
    background: #FFFFFF;
    background-image: none !important;
    padding: 5px 0;
    overflow: visible;
}

/* Main Container - White */
/* Main Container - Compact */
.header-top .container {
    background-color: #FFFFFF;
    box-shadow: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 120px;
    /* Reduced from 140px */
    position: relative;
    max-width: 1200px;
}

.header-content.banner-layout {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

/* Left: Logo - Adjusted */
.banner-left {
    flex: 0 0 140px;
    /* Reduced width */
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-circle-wrapper {
    width: 120px;
    /* Reduced height */
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 50%;
    border: 3px solid #D4A017;
    box-shadow: none;
    overflow: hidden;
}

.banner-logo {
    width: 140%;
    height: 140%;
    object-fit: cover;
    object-position: center 38%;
    z-index: 2;
}

/* Center: Typography Stack */
.banner-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1;
    z-index: 10;
}

.company-sub-title {
    font-family: 'Roboto', 'Arial Narrow', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 5px 0;
    white-space: nowrap;
    text-shadow: none;
}

.region-title {
    font-family: 'Roboto', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #0E4D22;
    text-transform: uppercase;
    margin: 0 0 -5px 0;
    /* Negative margin to pull title up */
    line-height: 1.35;
    letter-spacing: 0.5px;
    -webkit-text-stroke: 0;
    text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
    padding-top: 2px;
}

.main-brand-title {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    /* Reduced from 64px */
    font-weight: 700;
    text-transform: uppercase;
    margin: -2px 0 -2px 0;
    /* Adjusted margins */
    line-height: 1.2;
    letter-spacing: 1px;
    white-space: nowrap;

    background: linear-gradient(180deg,
            #FFEB3B 0%,
            #FBC02D 40%,
            #F57F17 60%,
            #E65100 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    -webkit-text-stroke: 0.8px #a67c00;
    filter: drop-shadow(3px 3px 0px rgba(109, 76, 8, 0.5));

    padding-top: 10px;
    padding-bottom: 5px;
    display: inline-block;
}

.slogan-script {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    color: #C62828;
    font-weight: 700;
    text-shadow: 1px 1px 0 #fff;
    margin: -5px 0 0 0;
    /* Pull slogan up */
    transform: none;
    position: relative;
    top: 0;
}

/* Right: KOL on Green Circle */
/* Right: KOL on Green Circle */
.banner-right {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    gap: 0;
}

/* Red Hotline Button */
.banner-hotline-btn {
    position: absolute;
    top: 25px;
    /* Moved up from 40px */
    left: -140px;
    /* Move far left to avoid covering KOL */
    margin-top: 0;
    background: linear-gradient(180deg, #D32F2F 0%, #B71C1C 100%);
    /* Deep Red Gradient */
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 15px;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 10;
    white-space: nowrap;
    border: 1px solid #FFCDD2;
    /* Subtle light border */
}

.banner-hotline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
    color: #FFF;
}

.banner-hotline-btn i {
    font-size: 14px;
    color: #FFEB3B;
    /* Gold Icon */
    animation: phone-shake 1.5s infinite;
    /* Add attention animation */
}

@keyframes phone-shake {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.kol-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-kol {
    height: 170px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    box-shadow: none;
    mix-blend-mode: normal;
    filter: none;

    /* Fix Lint Error: Standard property */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Responsive */
/* Responsive - Fluid Scaling (Keep Horizontal) */
@media (max-width: 1200px) {
    .header-top .container {
        min-height: auto;
        /* Allow height to shrink */
        padding: 5px;
    }

    .banner-left {
        flex: 0 0 120px;
    }

    .logo-circle-wrapper {
        width: 100px;
        height: 100px;
    }

    .main-brand-title {
        font-size: 48px;
    }

    .region-title {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .banner-left {
        flex: 0 0 100px;
    }

    .logo-circle-wrapper {
        width: 80px;
        height: 80px;
        border-width: 2px;
    }

    .main-brand-title {
        font-size: 36px;
    }

    .region-title {
        font-size: 22px;
    }

    .slogan-script {
        font-size: 24px;
    }

    .banner-right {
        flex: 0 0 120px;
    }

    .banner-hotline-btn {
        left: -80px;
        /* Adjust for smaller scale */
        top: 20px;
        padding: 5px 10px;
        font-size: 12px;
    }
}

@media (max-width: 767px) {

    /* Keep Horizontal Layout - No Column Stack */
    .header-top .container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        align-items: center;
        min-height: 80px;
        padding: 0 5px;
    }

    /* Left: Logo scales down */
    .banner-left {
        flex: 0 0 15%;
        /* Percentage width */
        min-width: 50px;
    }

    .logo-circle-wrapper {
        width: 13vw;
        /* Fluid width */
        height: 13vw;
        width: 50px;
        /* Min fallback */
        height: 50px;
        border-width: 2px;
    }

    /* Center: Text scales fluidly with viewport */
    .banner-center {
        flex: 1;
        /* Take remaining space */
        padding: 0 2px;
        width: auto;
    }

    .company-sub-title {
        font-size: 6px;
        /* Tiny but visible */
        margin-bottom: 2px;
        display: none;
        /* Often too small to read, hide or keep tiny? Keeping tiny. */
    }

    .region-title {
        font-size: 2.5vw;
        /* Fluid font size */
        margin-bottom: 0;
    }

    .main-brand-title {
        font-size: 4.5vw;
        /* Fluid font size for main title */
        margin: 0;
        line-height: 1.1;
        -webkit-text-stroke: 0.3px #a67c00;
        padding-top: 2px;
    }

    .slogan-script {
        font-size: 2.2vw;
        margin-top: 2px;
        top: 0;
    }

    /* Right: KOL and Hotline */
    .banner-right {
        flex: 0 0 20%;
        /* Percentage width */
        min-width: 70px;
    }

    .banner-kol {
        height: auto;
        width: 100%;
        max-height: 80px;
    }

    .banner-hotline-btn {
        position: absolute;
        width: max-content;
        left: -120%;
        /* Relative to small container */
        top: 50%;
        padding: 3px 6px;
        font-size: 8px;
        /* Very small */
        border-radius: 10px;
        transform: translateY(-50%);
        white-space: nowrap;
    }

    .banner-hotline-btn i {
        font-size: 8px;
    }
}

/* ==========================================================================
   Refactored Gift Set Modal (Two-Column Product Style)
   ========================================================================== */
.gift-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.gift-modal-content {
    background-color: #fff;
    margin: 4% auto;
    /* Slightly less top margin */
    width: 95%;
    /* Wider on small screens */
    max-width: 1100px;
    /* Increased from 900px for larger image */
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s;
    overflow: hidden;
    padding: 0;
}

/* Close Button */
.close-gift-modal {
    color: #999;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 10;
    cursor: pointer;
}

.close-gift-modal:hover {
    color: #333;
}

/* Modal Body: Flex Container */
.gift-modal-body {
    display: flex;
    padding: 40px;
    /* More padding for breathing room */
    gap: 40px;
    /* More gap */
    align-items: flex-start;
    /* Align top */
}

/* Left Column: Image */
.gift-modal-image-col {
    flex: 1.2;
    /* Give image more space (60/40 split roughly) */
    position: relative;
    display: flex;
    /* Center image in column */
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    /* Soft background */
    border-radius: 8px;
    padding: 20px;
    min-height: 400px;
    /* Ensure minimum height */
}

.gift-modal-image-col img {
    width: 100%;
    height: auto;
    max-height: 600px;
    /* Increased max height */
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    /* Helps blend white backgrounds if any */
    /* Light background for padding areas */
}

/* Right Column: Info */
.gift-modal-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Title */
#giftModalTitle {
    font-family: 'Playfair Display', serif;
    /* Match reference serif */
    font-size: 32px;
    color: #1b4d3e;
    /* Deep green */
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

/* Golden Underline */
.golden-underline {
    width: 50px;
    height: 4px;
    background-color: #d4af37;
    /* Gold */
    margin-bottom: 20px;
}

/* Description / List Area */
.gift-desc-area {
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.gift-modal-list ul {
    list-style: none;
    padding: 0;
}

.gift-modal-list li {
    padding: 5px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gift-modal-list li i {
    color: #d4af37;
}

/* Meta Box (Gray Background) */
.gift-meta-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.meta-row {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.meta-row:last-child {
    margin-bottom: 0;
}

.meta-label {
    min-width: 120px;
    font-weight: 700;
    color: #444;
}

.meta-value.available {
    color: #2e7d32;
    /* Green for "Sẵn hàng" */
    font-weight: 700;
}

.meta-value {
    color: #666;
}

/* Price Label */
.contact-price-label {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #d4af37;
    /* Gold */
    font-weight: 700;
    margin-bottom: 20px;
}

/* Actions: Quantity + Button */
.gift-modal-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    background: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    color: #555;
}

.qty-btn:hover {
    background: #eee;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-weight: bold;
    color: #333;
    -moz-appearance: textfield;
    appearance: textfield;
}

.btn-contact-buy {
    background-color: #d4af37;
    color: #1b4d3e;
    /* Dark green text */
    padding: 12px 30px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-contact-buy:hover {
    background-color: #c5a028;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .gift-modal-body {
        flex-direction: column;
        padding: 20px;
    }

    .gift-modal-image-col {
        width: 100%;
    }

    .gift-modal-info-col {
        width: 100%;
    }

    #giftModalTitle {
        font-size: 24px;
    }
}

/* ========================================
   Refined Gift Sets Styles (Match Products)
   ======================================== */
.gift-image-k5 .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 5;
}

.gift-card-k5:hover .gift-image-k5 .product-overlay {
    opacity: 1;
    visibility: visible;
}

.gift-image-k5 .product-overlay .btn-view {
    background: var(--gold);
    color: var(--primary-green-dark);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.gift-card-k5:hover .gift-image-k5 .product-overlay .btn-view {
    transform: translateY(0);
}

.gift-card-k5:hover .gift-image-k5 .product-overlay .btn-view:hover {
    background: var(--white);
    color: var(--gold);
}

.gift-info-k5 {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

/* ========================================
   Fix: Ensure Product Overlay Styles
   ======================================== */
.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
}

.product-card:hover .product-overlay {
    opacity: 1;
    visibility: visible;
}

.product-overlay .btn-view {
    background: var(--gold);
    color: var(--primary-green-dark);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-card:hover .product-overlay .btn-view {
    transform: translateY(0);
}

.product-overlay .btn-view:hover {
    background: var(--white);
    color: var(--gold);
}

/* ========================================
   Product Badges (Small & Elegant)
   ======================================== */
.gift-image-k5 {
    position: relative;
}

.gift-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    /* Fixed square for circle */
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    /* Icon size */
    color: #fff;
    border-radius: 50%;
    /* Circle */
    z-index: 9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: help;
    /* Pointer helps indicate hover */
}

.gift-badge.hot {
    background: linear-gradient(45deg, #FF416C, #FF4B2B);
}

.gift-badge.bestseller {
    background: linear-gradient(45deg, #FDB931, #d4af37);
    color: #2c3e50;
}

.gift-badge.new {
    background: linear-gradient(45deg, #56ab2f, #a8e063);
}

/* ========================================
   Fix: Gift List Image Scaling
   ======================================== */
.gift-card-k5 {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gift-card-k5:hover {
    transform: translateY(-5px);
}

.gift-image-k5 {
    position: relative;
    width: 100%;
    height: 250px;
    /* Fixed height for consistency */
    background: #f8f8f8;
    /* Light background for 'contain' mode */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gift-image-k5 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* CRITICAL: Ensure full image is visible */
    object-position: center;
    transition: transform 0.5s ease;
}

.gift-card-k5:hover .gift-image-k5 img {
    transform: scale(1.05);
    /* Subtle zoom on hover, but image remains contained */
}

.gift-info-k5 {
    padding: 15px;
    text-align: center;
}

.gift-info-k5 h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-green-dark);
}

/* ========================================
   Login Modal & Button
   ======================================== */
.btn-login {
    background: transparent;
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: none;
}

.btn-login:hover {
    background: #ffd700;
    color: #004d40;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.login-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
    /* Flexbox for centering */
    align-items: center;
    justify-content: center;
}

.login-modal-content {
    background-color: #fff;
    margin: 0 15px;
    /* Side margins for mobile */
    width: 100%;
    max-width: 420px;
    border-radius: 15px;
    overflow-y: auto;
    /* Scroll internally if tall */
    max-height: 90vh;
    /* Prevent overflowing screen */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.4s;
}

.close-login-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.close-login-modal:hover {
    color: #333;
}

.login-body {
    padding: 30px;
    /* Reduced from 40px */
    text-align: center;
}

.login-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 5px;
}

.login-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.input-with-icon input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.input-with-icon input:focus {
    border-color: #1b5e20;
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
    outline: none;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 13px;
}

.forgot-pass {
    color: #1b5e20;
    font-weight: 600;
}

.btn-submit-login {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #1b5e20 0%, #0d3d14 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-login:hover {
    background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
    box-shadow: 0 5px 15px rgba(27, 94, 32, 0.3);
}

.login-footer {
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.login-footer a {
    color: #d4a017;
    font-weight: 700;
}

/* Infographic Styles for Story Section */
/* Marquee Notification */
.marquee-container {
    background-color: #fff;
    color: #154e3d;
    border-bottom: 1px solid #e1e1e1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    z-index: 99;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-animation 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee-animation {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: #fff;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.testimonial-card {
    background: var(--off-white);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    color: var(--gold);
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.3);
}

.testimonial-content p {
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-dark);
    margin-bottom: 15px;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-green);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav:hover {
    background: var(--gold);
    color: var(--primary-green-dark);
}

.testimonial-nav.prev {
    left: 15px;
}

.testimonial-nav.next {
    right: 15px;
}