/* ===================================
   REVAMP TEMPLATE STYLES
   Template: Home Page Revamp
   Author: Hy Hý
   =================================== */

/* Font SVN-Gilroy Complete Family */
:root {
    --font-primary: 'SVN-Gilroy', 'Montserrat', sans-serif;
    --font-light: 'SVN-Gilroy Light', var(--font-primary);
    --font-medium: 'SVN-Gilroy Medium', var(--font-primary);
    --font-semibold: 'SVN-Gilroy SemiBold', var(--font-primary);
    --font-thin: 'SVN-Gilroy Thin', var(--font-primary);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    line-height: 1;
}


@font-face {
    font-family: 'SVN-Gilroy Thin';
    src: url('./fonts/SVN-Gilroy-Thin.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SVN-Gilroy Light';
    src: url('./fonts/SVN-Gilroy-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SVN-Gilroy Medium';
    src: url('./fonts/SVN-Gilroy-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SVN-Gilroy SemiBold';
    src: url('./fonts/SVN-Gilroy-SemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Reset và Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-medium);
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


.container-lg {
    padding: 0 30px;
}

/* ===================================
   NEW HEADER STYLES
   =================================== */
.sale-now {
    background: #191919;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-medium);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.sale-now i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.sale-now:hover i {
    transform: translateX(3px);
}
.new-header {
    /* background: transparent; */
    background: #191919;
    background: linear-gradient(0deg,rgba(25, 25, 25, 0) 21%, rgba(0, 0, 0, 1) 100%);
    padding-bottom: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.new-header.scrolled {
    background: rgba(255,255,255,1);
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.new-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.new-header .header-menu-toggle {
    display: block;
    margin-right: 20px;
}

.new-header .menu-toggle-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.new-header .hamburger-line {
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.new-header .menu-toggle-btn:hover .hamburger-line {
    background: rgba(255,255,255,0.8);
}

.new-header.scrolled .hamburger-line {
    background: #333;
}

.new-header.scrolled .menu-toggle-btn:hover .hamburger-line {
    background: #007cba;
}

.new-header .header-nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.new-header .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.new-header .header-store-locator {
    flex: 0 0 auto;
}

.new-header .store-locator-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-medium);
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 5px;
}

.new-header .store-locator-btn i {
    font-size: 16px;
    color: #fff;
}

.new-header .store-locator-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.new-header .store-locator-btn i {
    font-size: 16px;
}

.new-header.scrolled .store-locator-btn {
    color: #333;
}

.new-header.scrolled .store-locator-btn i {
    color: #333;
}

.new-header.scrolled .store-locator-btn:hover {
    background: #f8f9fa;
    color: #007cba;
}

.new-header.scrolled .store-locator-btn:hover i {
    color: #007cba;
}

.new-header .header-logo {
    flex: 1;
    text-align: center;
}

.new-header .header-logo img {
    max-height: 40px;
    width: auto;
}

.new-header .nav-item {
    margin: 0;
}

.new-header .nav-link {
    text-decoration: none;
    color: #fff;
    font-family: var(--font-semibold);
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.new-header .nav-link:hover {
    color: #fff;
    background-color: rgba(255,255,255,0.2);
}

.new-header.scrolled .nav-link {
    color: #333;
    text-shadow: none;
}

.new-header.scrolled .nav-link:hover {
    color: #007cba;
    background-color: #f8f9fa;
}

.new-header .header-shopping-cart {
    flex: 0 0 auto;
    margin-left: 20px;
}

.new-header .shopping-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 5px;
    min-width: 40px;
    height: 40px;
}

.new-header .shopping-cart-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.new-header .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-semibold);
}

.new-header.scrolled .shopping-cart-btn {
    color: #333;
}

.new-header.scrolled .shopping-cart-btn:hover {
    background: #f8f9fa;
    color: #007cba;
}

.new-header .header-search {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.new-header .search-form {
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid #fff;
    padding: 8px 0;
    max-width: 360px;
    width: 100%;
    transition: all 0.3s ease;
}

.new-header .search-form:focus-within {
    border-bottom-color: #007cba;
}

.new-header.scrolled .search-form {
    border-bottom-color: #333;
}

.new-header.scrolled .search-form:focus-within {
    border-bottom-color: #007cba;
}

.new-header .search-form input[type="search"] {
    border: none;
    background: transparent;
    outline: none;
    flex: 1;
    padding: 5px 0;
    font-size: 14px;
    color: #fff;
}

.new-header .search-form input[type="search"]::placeholder {
    color: rgba(255,255,255,0.8);
}

.new-header.scrolled .search-form input[type="search"] {
    color: #333;
}

.new-header.scrolled .search-form input[type="search"]::placeholder {
    color: #999;
}

.new-header .search-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.new-header .search-btn:hover {
    color: #fff;
}

.new-header.scrolled .search-btn {
    color: #666;
}

.new-header.scrolled .search-btn:hover {
    color: #007cba;
}

/* ===================================
   MAIN CONTENT STYLES
   =================================== */
.main.page-home {
    padding-top: 0px !important;
    min-height: 100vh;
}

/* Banner Section */
.sec-banners {
    position: relative;
    overflow: hidden;
}

.banners {
    position: relative;
}

.banner-slider {
    position: relative;
    /* height: 100vh !important;
    min-height: 600px !important; */
}

.banner-slide {
    position: relative;
    /* height: 100vh !important;
    min-height: 600px !important; */
}


.banners-br {
    /* position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden; */
}

.banners-br img,
.banners-br video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    min-height: 600px;
}

/* Desktop and Mobile Image Display */
.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}


/* Hide SVG icons and create custom arrow icons */
.swiper-button-next svg, .swiper-button-prev svg {
    display: none !important;
}



.swiper-button-prev:before {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #000 !important;
}

/* iPad Pro (12.9-inch) */


/* Mobile styles */
@media (max-width: 768px) {
    .desktop-image {
        display: none;
    }
    
    .mobile-image {
        display: block;
    }
}

.banners-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    z-index: 2;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero-content {
    text-align: center;
    margin: 0 auto;
}

.hero-content .btn {
    color: #333;
    background: #A17F5A;
    background: linear-gradient(90deg,rgba(161, 127, 90, 1) 0%, rgba(249, 229, 183, 1) 50%, rgba(146, 113, 77, 1) 100%);
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-semibold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

/* Hiệu ứng toả ra cho mobile */
@media (max-width: 768px) {
    .hero-content .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.6s ease;
        z-index: -1;
    }
    
    .hero-content .btn:hover::before,
    .hero-content .btn:active::before {
        width: 300px;
        height: 300px;
    }
    
    /* Hiệu ứng pulse animation */
      .hero-content .btn {
          animation: mobilePulse 2s infinite;
          box-shadow: 0 0 0 0 rgba(208, 165, 100, 0.5);
      }
      
      @keyframes mobilePulse {
          0% {
              transform: scale(0.9);
          }
          70% {
              transform: scale(1);
              box-shadow: 0 0 0 50px rgba(208, 165, 100, 0);
          }
          100% {
              transform: scale(0.9);
              box-shadow: 0 0 0 0 rgba(208, 165, 100, 0);
          }
      }
    
    /* Hiệu ứng glow khi hover */
    .hero-content .btn:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(0,0,0,0.2), 0 0 30px rgba(228, 199, 148, 0.6);
    }
}

.hero-content .btn .arrow-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-content .btn .arrow-icon i {
    color: #333;
    font-size: 12px;
}

.banners-sub{
    color: #fff;
    font-weight: 400;
    font-family: var(--font-light);
}

/* ===================================
   PRODUCT CATEGORIES SECTION - ITUNES STYLE
   =================================== */
.sec-product-categories {
    padding: 40px 10%;
}

.categories-header {
    text-align: left;
    margin-bottom: 30px;
}

.section-title {
    font-family: var(--font-semibold);
    font-size: 2.5rem;
    color: #ffff;
    margin-bottom: 15px;
}

.section-title--center {
    text-align: center;
}

.section-title span {
    background: linear-gradient(90deg,rgba(161, 127, 90, 1) 0%, rgba(249, 229, 183, 1) 50%, rgba(146, 113, 77, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-family: var(--font-light);
    font-size: 1.1rem;
    color: rgba(222, 222, 222, 1);
    max-width: 600px;
    margin: 0 auto;
}

/* iTunes Style Categories Slider */
.categories-slider-container {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

.categories-grid.categories-slider {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
}

.categories-grid.categories-slider::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 280px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    scroll-snap-align: center;
    transform-origin: center;
    opacity: 0.8;
    filter: brightness(0.9);
}

/* Center item styling - iTunes effect */
.category-item.center {
    transform: scale(1.2);
    opacity: 1;
    filter: brightness(1);
    z-index: 2;
}

.category-item.center .category-image {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-item.center .category-name {
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Side items styling - giữ nguyên kích thước bình thường */
.category-item:not(.center) {
    transform: scale(1);
}

.category-item:not(.center):hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.category-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/6;
    overflow: hidden;
    transition: all 0.4s ease;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-item.center .category-image img {
    transform: scale(1.05);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
    border-radius: 12px;
}

.category-info {
    padding: 20px 0;
    text-align: center;
}

.category-name {
    font-family: var(--font-semibold);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.category-count {
    font-family: var(--font-medium);
    font-size: 0.9rem;
    color: #666;
}

/* Progress Bar Navigation */
.categories-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    position: relative;
}

.categories-progress-container {
    position: relative;
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.categories-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
}

.categories-progress-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hover effect */
.categories-progress-container:hover {
    background: rgba(255, 255, 255, 0.3);
}

.categories-progress-container:hover .categories-progress-bar {
    background: linear-gradient(to right, #D0A564, #DAB478, #E4C794);
}

.categories-progress-container:hover .categories-progress-bar::after {
    background: linear-gradient(to right, #D0A564, #DAB478, #E4C794);
    transform: translateY(-50%) scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .sec-product-categories {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding: 15px;
    }
    
    .categories-grid.categories-slider {
        gap: 15px;
        padding: 15px 0;
    }
    
    .category-item {
        flex: 0 0 220px;
    }
    
    .category-item.center {
        transform: scale(1.15);
    }
    
    .category-item:not(.center) {
        transform: scale(1);
    }
    
    .category-image {
        aspect-ratio: 4/6;
        border-radius: 8px;
    }
    
    .category-info {
        padding: 15px 0;
    }
    
    .category-name {
        font-size: 1rem;
    }
    
    .categories-dots {
        margin-top: 20px;
    }
    
    .categories-progress-container {
        width: 150px;
        height: 3px;
    }
    
    .categories-progress-bar::after {
        width: 10px;
        height: 10px;
        right: -5px;
    }
}

@media (max-width: 480px) {
    .category-item {
        flex: 0 0 180px;
    }
    
    .category-item.center {
        transform: scale(1.1);
    }
    
    .category-item:not(.center) {
        transform: scale(1);
    }
    
    .category-name {
        font-size: 0.9rem;
    }
}

/* Categories Slider Arrows */
.categories-slider .slick-prev,
.categories-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.categories-slider .slick-prev:hover,
.categories-slider .slick-next:hover {
    background: linear-gradient(to right, #D0A564, #DAB478, #E4C794);
    color: #333;
    transform: translateY(-50%) scale(1.1);
}

.categories-slider .slick-prev {
    left: -35px;
}

.categories-slider .slick-next {
    right: -35px;
}

.categories-slider .slick-prev:before,
.categories-slider .slick-next:before {
    display: none;
}

@media (max-width: 768px) {
    .categories-slider .slick-prev {
        left: 10px;
    }
    
    .categories-slider .slick-next {
        right: 10px;
    }
}

/* ===================================
   IMAGE SLIDER SECTION
   =================================== */
.sec-image-slider {
    padding: 60px 0;
}

.image-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.slider-item {
    position: relative;
    /* height: 80vh !important; */
    border-radius: 0;
    overflow: hidden;
    margin: 0;
}

.slider-link {
    display: block;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    text-decoration: none;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.slider-link img {
    pointer-events: none;
}

.slider-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0,0,0,0.3); */
    z-index: 2;
}

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

.slider-content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.slider-title {
    
    font-family: var(--font-semibold);
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
    text-align: center;
}

.slider-title span {
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.slider-content {
    text-align: center;
}

.slider-btn {
    color: #333;
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-semibold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.slider-btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.slider-btn .arrow-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn .arrow-icon i {
    color: #333;
    font-size: 12px;
}

/* Image Slider Slick Controls */
.sec-image-slider .slick-prev,
.sec-image-slider .slick-next {
    position: absolute !important;
    bottom: -60px !important;
    top: auto !important;
    transform: none !important;
    z-index: 10;
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564) !important;
    border: none;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    color: #333 !important;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sec-image-slider .slick-prev:hover,
.sec-image-slider .slick-next:hover {
    background: linear-gradient(to right, #D0A564, #DAB478, #E4C794) !important;
    color: #333 !important;
    transform: scale(1.1) !important;
}

.sec-image-slider .slick-prev {
    left: calc(50% - 60px) !important;
    right: auto !important;
}

.sec-image-slider .slick-next {
    right: calc(50% - 60px) !important;
    left: auto !important;
}

/* Hide default slick arrows */
.sec-image-slider .slick-arrow {
    display: none !important;
}

.sec-image-slider .slick-prev,
.sec-image-slider .slick-next {
    display: block !important;
}

/* Hide default slick arrow content */
.sec-image-slider .slick-prev:before,
.sec-image-slider .slick-next:before {
    display: none !important;
    content: none !important;
}

/* Add custom arrow icons */
.sec-image-slider .slick-prev:after {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #333;
}

.sec-image-slider .slick-next:after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .sec-image-slider {
        padding: 40px 0;
    }
    
    .slider-item {
        height: auto !important;
        margin: 0 5px;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .sec-image-slider .slick-prev,
    .sec-image-slider .slick-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: -50px;
    }
    
    .sec-image-slider .slick-prev {
        left: calc(50% - 60px);
    }
    
    .sec-image-slider .slick-next {
        right: calc(50% - 60px);
    }
}

.banners-title {
    font-family: var(--font-semibold);
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
}

.banners-title span {
    background: linear-gradient(90deg,rgba(161, 127, 90, 1) 0%, rgba(249, 229, 183, 1) 50%, rgba(146, 113, 77, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.banners-des {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.btn .icon {
    margin-right: 8px;
}

/* About Section */
.sec-ware {
    padding: 80px 0;
    background: #f8f9fa;
}

.ware-content {
    max-width: 500px;
}

.t-title-sub {
    color: #007cba;
    font-family: var(--font-semibold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.t-title {
    font-family: var(--font-semibold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.des {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

/* Products Section */
.sec-outpro {
    padding: 80px 10%;
    overflow-x: hidden;
}

.head.space {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.head .left {
    flex: 1;
}

.head .right {
    flex: 1;
    text-align: right;
}

/* Swiper Styles */
.swiper {
    width: 100%;
    height: 100%;
}

.product-slide {    
    font-size: 14px;
    display: flex;
    justify-content: center;
}

.product-slide .pro-item {
    height: 100% !important;
    display: flex !important;
    flex-direction: column;
}

.product-slide .pro-item img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.product-slide .pro-img img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.product-slide h3 a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.pro-des,.pro-heart {
    display: none;
}

.product-slide {
    padding: 0 10px;
}

.pro-name {
    margin-top: 10px;
}

.pro-color {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    flex-wrap:wrap
}

.pro-price {
    color: #DEDEDE;
    font-weight: bold;
    font-family: var(--font-semibold);
}


#flexible_variable span {
    display: none;
}

.screen-reader-text {
    display: block !important;
}

.screen-reader-text {
    display: block;
    font-weight: 400;
}

/* Pro Color More Options */
.more-options-btn {
    display: inline-block;
    color: #E4C794;
    font-family: var(--font-medium);
    font-size: 0.9rem;
    cursor: pointer;
    margin-left: 10px;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.more-options-btn:hover {
    color: #D0A564;
}

.pro-color.expanded .more-options-btn {
    color: #D0A564;
}

.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

#demo .swiper-pagination {
    bottom: -30px !important;
}

.swiper-pagination-bullet {
    background: #007cba;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 768px) {
    .new-header .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .new-header .header-nav {
        order: 1;
        justify-content: center;
        width: 100%;
    }
    
    .new-header .header-logo {
        order: 2;
    }
    
    .new-header .header-search {
        order: 3;
        justify-content: flex-end;
        width: 100%;
        margin-left: auto;
    }
    
    .new-header .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .new-header .search-form {
        max-width: 100%;
    }
    
    .banners-title {
        font-size: 2rem;
    }
    
    .banners-des {
        font-size: 1rem;
    }
    
    .t-title {
        font-size: 2rem;
    }
    
    .head.space {
        flex-direction: column;
        gap: 1rem;
    }
    
    .head .right {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .new-header .nav-menu {
        gap: 10px;
    }
    
    .new-header .nav-link {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .banners-title {
        font-size: 1.5rem;
    }
    
    .t-title {
        font-size: 1.5rem;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.txt-animated.ani-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.txt-animated.ani-opa {
    animation: fadeIn 0.8s ease-out;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.mb-12 {
    margin-bottom: 12px;
}

.m-top {
    margin-top: 2rem;
}

.t-center {
    text-align: center;
}

.hidden-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* ===================================
   FONT UTILITY CLASSES
   =================================== */
.font-thin {
    font-family: var(--font-thin);
}

.font-light {
    font-family: var(--font-light);
}

.font-medium {
    font-family: var(--font-medium);
}

.font-semibold {
    font-family: var(--font-semibold);
}

.font-bold {
    font-family: var(--font-semibold);
}

/* ===================================
   SLICK SLIDER STYLES
   =================================== */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

.slick-prev {
    left: 30px;
}

.slick-next {
    right: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slick-dots li {
    list-style: none;
}

.slick-dots button {
    background: rgba(255,255,255,0.3);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.slick-dots .slick-active button {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slick-prev {
        left: 15px;
    }
    
    .slick-next {
        right: 15px;
    }
    
    .slick-dots {
        bottom: 20px;
    }
}

body {
    background-color: #191919;
}

.pro-color-item {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    overflow: hidden;
}

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

.slider-product-wrapper{
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.slider-product-wrapper .product-slide {
    display: flex !important;
    flex-direction: column;
}

.pro-content .btn {
    display: none;
}

.pro-content .star {
    display: none;
}

/* ===================================
   PRODUCT COLLECTIONS SECTION
   =================================== */
.sec-product-collections {
    padding: 80px 10%;
}

.collections-header {
    text-align: center;
    margin-bottom: 50px;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 auto;
}

.collection-item {
    overflow: hidden;
    transition: all 0.3s ease;
}

.collection-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.collection-image {
    overflow: hidden;
    border-radius: 30px !important;
}

.collection-image img {
    border-radius: 14px !important;
}

.proth-img img {
    border-radius: 14px;
}

.collection-placeholder {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2rem;
}

.collection-info {
    padding: 20px 0;
}

.collection-name {
    font-family: var(--font-semibold);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.collection-count {
    font-family: var(--font-medium);
    font-size: 0.9rem;
    color: #666;
}

.collection-item:hover .collection-name {
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.btn-shop-collection {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    background: linear-gradient(90deg,rgba(161, 127, 90, 1) 0%, rgba(249, 229, 183, 1) 50%, rgba(146, 113, 77, 1) 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 20px !important;
    font-family: var(--font-medium) !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(212, 180, 116, 0.3) !important;
}

.btn-shop-collection:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 180, 116, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-shop-collection i {
    transition: transform 0.3s ease;
}

.btn-shop-collection:hover i {
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 768px) {
    .sec-product-collections {
        padding: 60px 0;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    

}

.sec-focus-on {
    display: flex;
    align-items: stretch;
    padding: 0 10%;
}

.focus-left {
    background: url('/template/assets/images/bg-left.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 80px;
    position: relative;
    width: 60%;
    -webkit-border-top-left-radius: 14px;
    -webkit-border-bottom-left-radius: 14px;
    -moz-border-radius-topleft: 14px;
    -moz-border-radius-bottomleft: 14px;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}



.focus-content {
    color: #fff;
    max-width: 90%;
}

.focus-title {
    font-family: var(--font-semibold);
    font-size: 6rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.focus-title span {
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.focus-description {
    font-family: var(--font-medium);
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
}

.focus-features {
    margin-bottom: 30px;
    width: 50%;
}

.feature-item {
    margin-bottom: 15px;
    gap: 12px;
}

.feature-item strong {
    display: block;
    font-size: 4rem;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    border-bottom: 1px solid #fff;
}

.feature-item i {
    color: #E4C794;
    font-size: 18px;
}

.feature-item span {
    font-family: var(--font-medium);
    font-size: 1.5rem;
    color: #fff;
    margin-top: 10px;
    display: block;
}

.btn-focus {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-semibold);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 180, 116, 0.3);
}

.btn-focus:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 180, 116, 0.4);
    color: #333;
    text-decoration: none;
}

.btn-focus i {
    transition: transform 0.3s ease;
}

.btn-focus:hover i {
    transform: translateX(3px);
}

.focus-right {
    background: url('/template/assets/images/bg-right.png') no-repeat center center;
    background-size: cover;
    width: 40%;
    min-height: 100%;
    -webkit-border-top-right-radius: 14px;
    -webkit-border-bottom-right-radius: 14px;
    -moz-border-radius-topright: 14px;
    -moz-border-radius-bottomright: 14px;
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

.focus-right img {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .sec-focus-on {
        flex-direction: column;
    }
    
    .focus-left {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
        border-radius: 14px;
        background: linear-gradient(to right, #E4C794, #DAB478, #D0A564) !important;
    }
    
    .focus-title {
        font-size: 2rem;
    }
    
    .focus-right {
        width: 100%;
    }
    
    .focus-features {
        width: 100%;
    }
    
    .feature-item strong {
        font-size: 2.5rem;
    }
    
    .feature-item span {
        font-size: 1.1rem;
    }
}

/* ===================================
   PREMIUM SECTION STYLES
   =================================== */
.sec-premium-on {
    background: url('/template/assets/images/bnr-prem.jpg') no-repeat center center;
    background-size: cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px;
}

.sec-premium-on::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.premium-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.premium-title {
    font-family: var(--font-semibold);
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
}

.premium-title span {
    background: linear-gradient(90deg,rgba(161, 127, 90, 1) 0%, rgba(249, 229, 183, 1) 50%, rgba(146, 113, 77, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.sec-premium-on .slider-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(90deg,rgba(161, 127, 90, 1) 0%, rgba(249, 229, 183, 1) 50%, rgba(146, 113, 77, 1) 100%);
    color: #333;
    text-decoration: none;
    border-radius: 20px;
    font-family: var(--font-semibold);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 180, 116, 0.3);
}

.sec-premium-on .slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 180, 116, 0.4);
    color: #333;
    text-decoration: none;
}

.sec-premium-on .slider-btn i {
    transition: transform 0.3s ease;
}

.sec-premium-on .slider-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Premium Section */
@media (max-width: 768px) {
    .sec-premium-on {
        min-height: 300px;
        padding: 60px 20px;
    }
    
    .premium-title {
        font-size: 2.5rem;
    }
}

/* ===================================
   NEW FOOTER STYLES
   =================================== */
.new-footer {
    background: #191919;
    color: #fff;
}

.footer-main {
    padding: 80px 10% 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 45% 1fr 1fr;
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: var(--font-semibold);
    font-size: 1.5rem;
    margin-bottom: 10px;
    margin-top: 35px;
    color: #fff;
}

.footer-title-large {
    font-family: var(--font-semibold);
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.footer-description {
    font-family: var(--font-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 25px;
}

/* Newsletter Form */
.newsletter-form {
    margin-top: 10px;
    width:75%;
}

.newsletter-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 5px;
}

.newsletter-input {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.newsletter-input input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: #F8F7F2;
    font-family: var(--font-medium);
    font-size: 0.9rem;
    border-radius: 20px;
    border: none;
    outline: none;
}

.newsletter-input input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.newsletter-input input::placeholder {
    color: #999;
}

.newsletter-btn {
    padding: 12px 25px;
    font-weight: 600;
    background: linear-gradient(90deg,rgba(161, 127, 90, 1) 0%, rgba(249, 229, 183, 1) 50%, rgba(146, 113, 77, 1) 100%);
    border: none;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border-radius: 20px;
}

.newsletter-btn:hover {
    background: linear-gradient(90deg,rgba(161, 127, 90, 1) 0%, rgba(249, 229, 183, 1) 50%, rgba(146, 113, 77, 1) 100%);
}

/* Footer Navigation */
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 5px;
    line-height: 1.3;
}

.footer-menu a {
    color: #FFF9EE;
    text-decoration: none;
    font-family: var(--font-medium);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 12px;
}

.footer-menu a:hover {
    color: #FFECC5;
    text-decoration: underline;
}

/* Contact Info */
.contact-info p {
    display: flex;
    align-items: center;
    font-family: var(--font-medium);
    font-size: 12px;
    color: #ccc !important;
    text-decoration: none !important;
    -webkit-text-fill-color: #ccc !important;
    -webkit-tap-highlight-color: transparent;
}

.contact-info i {
    width: 20px;
    margin-right: 12px;
    color: #E4C794;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    color: #333;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 10%;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
}

.footer-copyright {
    width: 65%;
}

.footer-copyright p {
    font-family: var(--font-medium);
    font-size: 10px;
    color: #999;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-family: var(--font-medium);
    font-size: 10px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #E4C794;
}

.footer-payment {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

.footer-payment i {
    font-size: 1.5rem;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-payment i:hover {
    color: #E4C794;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 60px 20px 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* Center all footer columns */
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    /* Newsletter form centering */
    .newsletter-form {
        width: 100%;
        margin: 10px auto 0;
    }
    
    .newsletter-input {
        justify-content: center;
    }
    
    /* Footer menu centering */
    .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-menu li {
        text-align: center;
    }
    
    /* Contact info centering */
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info p {
        justify-content: center;
        text-align: center;
        color: #ccc !important;
        text-decoration: none !important;
        -webkit-text-fill-color: #ccc !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Social icons centering */
    .social-icons {
        justify-content: center;
    }
    
    /* Footer bottom centering */
    .footer-bottom {
        padding: 30px 20px;
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-copyright {
        width: 100%;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .footer-payment {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 50px 15px 30px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-title-large {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    
    .newsletter-input input {
        width: 100%;
        text-align: center;
    }
    

    .footer-bottom {
        padding: 25px 15px;
    }
    
    .footer-bottom-content {
        gap: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal a {
        text-align: center;
    }
    
    .footer-payment {
        gap: 10px;
    }
    
    .footer-payment i {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .footer-main {
        padding: 40px 10px 25px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-title-large {
        font-size: 1.5rem;
    }
    
    .footer-title {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-menu a {
        font-size: 11px;
    }
    
    .contact-info p {
        font-size: 11px;
        color: #ccc !important;
        text-decoration: none !important;
        -webkit-text-fill-color: #ccc !important;
        -webkit-tap-highlight-color: transparent;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        padding: 20px 10px;
    }
    
    .footer-copyright p {
        font-size: 9px;
    }
    
    .footer-legal a {
        font-size: 9px;
    }
}

/* Blog Slider Arrows */
.blog-slider .slick-prev,
.blog-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: linear-gradient(90deg,rgba(161, 127, 90, 1) 0%, rgba(249, 229, 183, 1) 50%, rgba(146, 113, 77, 1) 100%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-slider .slick-prev:hover,
.blog-slider .slick-next:hover {
    background: linear-gradient(to right, #D0A564, #DAB478, #E4C794);
    color: #333;
    transform: translateY(-50%) scale(1.1);
}

.blog-slider .slick-prev {
    left: -20px;
}

.blog-slider .slick-next {
    right: -20px;
}

.blog-slider .slick-prev:before,
.blog-slider .slick-next:before {
    display: none;
}



/* ===================================
   BLOG SECTION STYLES
   =================================== */
.sec-proth {
    padding: 80px 10%;
}

.gradient-bg {
    background: #F7F6F1;
    background: linear-gradient(0deg,rgba(247, 246, 241, 1) 32%, rgba(25, 25, 25, 1) 100%);
}

.blog-list-item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
    padding: 0 15px;
}

.blog-item {
    padding: 0 15px !important;
}


.proth-note {
    margin-top: 10px;
}

.proth-name a {
    text-decoration: none;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em; /* 2 lines * 1.4 line-height */
}

.blog-item .icon {
    display: none;
}

.proth-des {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
    max-height: 4.5em; /* 3 lines * 1.5 line-height */
}

.blog-item .btn {
    border-radius: 30px;
    border: 1px solid #BF2E2E;
    display: inline-block;
    padding: 10px 25px;
    color: #BF2E2E;
    text-decoration: none;
    margin-top: 20px;
}

.blog-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-item-content {
    padding: 20px;
}

.blog-item-title {
    font-family: var(--font-semibold);
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-item-excerpt {
    font-family: var(--font-medium);
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-list-item {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .blog-list-item {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
    
    .blog-item img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .blog-list-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}



/* ===================================
   FAQ SECTION STYLES
   =================================== */
.sec-faq {
    padding: 80px 10%;
    background: #F7F6F1;
}

.faq-heading .section-title {
    color: #333;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin: 0 auto;
}

.faq-left {
    display: flex;
    align-items: flex-start;
}

.faq-heading {
    text-align: left;
}

.faq-heading .section-title {
    margin-bottom: 20px;
    font-size: 2.5rem;
    line-height: 1.2;
}

.faq-heading .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.faq-list {
    display: flex;
    flex-direction: column;
    padding-right: 50px;
}

.faq-item {
    border-bottom: 1px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:first-child {
    border-top: 1px solid #333;
}

.faq-item.active {
    border-color: #E4C794;
    box-shadow: 0 4px 20px rgba(228, 199, 148, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px 20px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-family: var(--font-semibold);
    font-size: 1.1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    font-size: 16px;
    color: #666;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #E4C794;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    margin: 0;
    font-family: var(--font-medium);
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-heading {
        text-align: center;
    }
    
    .faq-heading .section-title {
        font-size: 2rem;
    }
}

/* ===================================
   CUSTOMER SECTION STYLES
   =================================== */
.sec-ourcus {
    padding: 80px 10% 150px;
}

.sec-ourcus .slick-track {
    min-height: inherit !important;
    height: auto !important;
}

.customer-img-inner img {
    height: 80px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* ===================================
   PRODUCT SLIDER STYLES
   =================================== */
.slider-product-wrapper {
    position: relative;
}

.slider-product-wrapper .slick-prev,
.slider-product-wrapper .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.slider-product-wrapper .slick-prev:hover,
.slider-product-wrapper .slick-next:hover {
    background: linear-gradient(to right, #D0A564, #DAB478, #E4C794);
    color: #333;
    transform: translateY(-50%) scale(1.1);
}

.slider-product-wrapper .slick-prev {
    left: -20px;
}

.slider-product-wrapper .slick-next {
    right: -20px;
}

.slider-product-wrapper .slick-prev:before,
.slider-product-wrapper .slick-next:before {
    display: none;
}

.slider-product-wrapper .slick-prev:after {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #333;
}

.slider-product-wrapper .slick-next:after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #333;
}

/* Ensure product slides have proper height */
.slider-product-wrapper .slick-slide {
    height: auto !important;
    min-height: 400px !important;
}

.slider-product-wrapper .slick-track {
    display: flex !important;
    align-items: flex-start !important;
}

.slider-product-wrapper .slick-slide {
    display: flex !important;
    height: auto !important;
}

.slider-product-wrapper .slick-list {
    overflow: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-product-wrapper .slick-prev,
    .slider-product-wrapper .slick-next {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-product-wrapper .slick-prev {
        left: -15px;
    }
    
    .slider-product-wrapper .slick-next {
        right: -15px;
    }
}

/* ===================================
   LOGO SLIDER STYLES
   =================================== */
.logo-slider {
    position: relative;
    padding: 20px 0;
}

.logo-slide {
    padding: 0 15px;
    text-align: center;
}

.logo-slide img {
    max-width: 100%;
    height: auto;
    /* filter: grayscale(100%); */
    transition: all 0.3s ease;
    filter: grayscale(0%);
}

.logo-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Logo slider responsive */
@media (max-width: 1024px) {
    .logo-slide {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .logo-slide {
        padding: 0 8px;
    }
}

@media (max-width: 480px) {
    .logo-slide {
        padding: 0 5px;
    }
}

/* ===================================
   SIDEBAR MENU STYLES
   =================================== */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -35%;
    width: 15%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Dropdown Menu Styles */
.sidebar-menu .menu-item-has-children > .sidebar-menu-link,
.sidebar-menu .menu-item-has-children-child > .sidebar-menu-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-menu .menu-item-has-children > .sidebar-menu-link .fas,
.sidebar-menu .menu-item-has-children-child > .sidebar-menu-link .fas {
    transition: transform 0.3s ease;
    margin-left: auto;
}

.sidebar-menu .menu-item-has-children.active > .sidebar-menu-link .fas {
    transform: rotate(180deg);
}

/* Level 2 icon rotation */
.sidebar-menu .menu-list .menu-item-has-children.active > .sidebar-menu-link .fas {
    transform: rotate(180deg);
}

.sidebar-menu .menu-list {
    display: none;
    background: #f8f9fa;
    margin-left: 20px;
    border-left: 2px solid #E4C794;
}

.sidebar-menu .menu-list .sidebar-menu-link {
    padding: 12px 20px;
    font-size: 14px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.sidebar-menu .menu-list .sidebar-menu-link:hover {
    background: #E4C794;
    color: #333;
}

/* Nested dropdown styles */
.sidebar-menu .menu-list .menu-item-has-children > .sidebar-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-menu .menu-list .menu-list {
    background: #f0f0f0;
    margin-left: 20px;
    border-left: 2px solid #DAB478;
}

/* Sub-menu dropdown styles */
.sidebar-menu .menu-list-sub {
    display: none;
    background: #f5f5f5;
    margin-left: 20px;
    border-left: 2px solid #D0A564;
}

.sidebar-menu .menu-list-sub .sidebar-menu-link {
    padding: 10px 20px;
    font-size: 13px;
    color: #555;
    border-bottom: 1px solid #ddd;
}

.sidebar-menu .menu-list-sub .sidebar-menu-link:hover {
    background: #D0A564;
    color: #333;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.sidebar-logo img {
    max-height: 40px;
    width: auto;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: #007cba;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
    min-height: 0;
}

.sidebar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-menu-item {
    margin: 0;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-family: var(--font-medium);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu-link:hover {
    background: #f8f9fa;
    color: #007cba;
    border-left-color: #007cba;
}

.sidebar-menu-link i {
    width: 20px;
    margin-right: 15px;
    font-size: 16px;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
    margin-top: auto;
    flex-shrink: 0;
}

.sidebar-contact h4 {
    font-family: var(--font-semibold);
    margin-bottom: 15px;
    color: #333;
}

.sidebar-contact p {
    margin: 8px 0;
    color: #666;
    font-size: 14px;
}

.sidebar-contact i {
    width: 16px;
    margin-right: 10px;
    color: #007cba;
}

.customer-content, .customer-btn {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .new-header {
        padding: 8px 0;
        background: #191919 !important;
    }
    
    .new-header .container-lg {
        padding: 0 15px;
    }
    
    .new-header .header-content {
        gap: 8px;
        align-items: center;
    }
    
    .new-header .header-nav {
        display: none;
    }
    
    .new-header .store-locator-text {
        display: none;
    }
    
    .new-header .header-store-locator {
        margin-right: 8px;
    }
    
    .new-header .header-shopping-cart {
        margin-left: 8px;
    }
    
    .new-header .header-logo {
        flex: 1;
        text-align: center;
    }
    
    .new-header .header-logo img {
        max-height: 32px;
        width: auto;
    }
    
    .new-header .header-search {
        max-width: 180px;
        flex: 1;
        justify-content: flex-end;
        margin-left: auto;
    }
    
    .new-header .header-search input {
        font-size: 0.8rem;
        padding: 6px 10px;
        height: 32px;
    }
    
    .new-header .header-search .search-btn {
        padding: 6px 8px;
        height: 32px;
    }
    
    .new-header .header-menu-toggle {
        margin-right: 8px;
    }
    
    .new-header .menu-toggle-btn {
        padding: 6px 4px;
        background: transparent;
        border: none;
    }
    
    .new-header .hamburger-line {
        width: 18px;
        height: 2px;
        margin: 3px 0;
        background: #fff;
    }
    
    .new-header .store-locator-btn,
    .new-header .shopping-cart-btn {
        padding: 6px;
        color: #fff;
        text-decoration: none;
    }
    
    .new-header .store-locator-btn i,
    .new-header .shopping-cart-btn i {
        font-size: 16px;
    }
    
    .new-header .cart-count {
        background: #E4C794;
        color: #333;
        font-size: 10px;
        padding: 2px 4px;
        border-radius: 50%;
        position: absolute;
        top: -2px;
        right: -2px;
    }
    
    .sidebar-menu {
        width: 85%;
        left: -85%;
    }
    
    .sale-now {
        padding: 6px 15px;
        font-size: 0.75rem;
    }
    
    .sale-now i {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .new-header {
        padding: 6px 0;
    }
    
    .new-header .container-lg {
        padding: 0 10px;
    }
    
    .new-header .header-content {
        gap: 6px;
    }
    
    .new-header .header-logo img {
        max-height: 28px;
    }
    
    .new-header .header-search {
        max-width: calc(100% - 42px);
        justify-content: flex-end;
        margin-left: auto;
    }
    
    .new-header .header-search input {
        font-size: 0.7rem;
        padding: 5px 8px;
        height: 28px;
    }
    
    .new-header .header-search .search-btn {
        padding: 5px 6px;
        height: 28px;
    }
    
    .new-header .header-store-locator,
    .new-header .header-shopping-cart {
        margin: 0 4px;
    }
    
    .new-header .store-locator-btn i,
    .new-header .shopping-cart-btn i {
        font-size: 14px;
    }
    
    .new-header .hamburger-line {
        width: 16px;
        height: 2px;
        margin: 2px 0;
    }
    
    .sale-now {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .sale-now i {
        font-size: 9px;
    }
}

@media (max-width: 360px) {
    .new-header .header-search {
        max-width: 120px;
    }
    
    .new-header .header-search input {
        font-size: 0.65rem;
        padding: 4px 6px;
    }
    
    .new-header .header-logo img {
        max-height: 24px;
    }
    
    .new-header .store-locator-btn i,
    .new-header .shopping-cart-btn i {
        font-size: 12px;
    }
}

/* ===================================
   MOBILE HEADER OPTIMIZATION
   =================================== */

/* Mobile Header Optimization */
@media (max-width: 768px) {
    .new-header .container-lg {
        padding: 0 15px;
    }
    
    /* Row 1: Logo centered, smaller elements */
    .new-header .header-content:first-child {
        padding: 8px 0;
        justify-content: center;
        position: relative;
    }
    
    .new-header .header-content:first-child .header-store-locator {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .new-header .header-content:first-child .header-store-locator .store-locator-text {
        display: none;
    }
    
    .new-header .header-content:first-child .header-store-locator .store-locator-btn {
        padding: 6px;
        font-size: 14px;
    }
    
    .new-header .header-content:first-child .header-logo {
        flex: 1;
        text-align: center;
    }
    
    .new-header .header-content:first-child .header-logo img {
        max-height: 35px;
    }
    
    .new-header .header-content:first-child .header-shopping-cart {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    
    .new-header .header-content:first-child .shopping-cart-btn {
        min-width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    /* Row 2: Hamburger left, search right */
    .new-header .header-content:last-child {
        padding: 6px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    
    .new-header .header-content:last-child .header-menu-toggle {
        margin: 0;
        order: 1;
        flex: 0 0 auto;
    }
    
    .new-header .header-content:last-child .menu-toggle-btn {
        padding: 6px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .new-header .header-content:last-child .hamburger-line {
        width: 18px;
        height: 2px;
        gap: 3px;
    }
    
    .new-header .header-content:last-child .header-nav {
        display: none;
    }
    
    .new-header .header-content:last-child .header-search {
        flex: 0 0 auto;
        order: 2;
        position: relative;
        margin-left: auto;
    }
    
    /* Mobile Search Icon Only */
    .new-header .header-content:last-child .search-form {
        position: relative;
        width: auto;
    }
    
    .new-header .header-content:last-child .search-form input[type="search"] {
        visibility: hidden;
        transition: all 0.3s ease;
        background: transparent;
        padding: 8px 12px;
        font-size: 13px;
        color: #333;
        z-index: 1001;
    }
    
    .new-header .header-content:last-child .search-form.search-active input[type="search"] {
        width: 250px;
        opacity: 1;
        visibility: visible;
        right: 40px;
    }
    
    .new-header .header-content:last-child .search-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255,255,255,0.1);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
        color: #fff;
    }
    
    .new-header .header-content:last-child .search-btn:hover {
        background: rgba(255,255,255,0.2);
    }
    
    .new-header.scrolled .header-content:last-child .search-btn {
        background: rgba(0,0,0,0.1);
        color: #333;
    }
    
    .new-header.scrolled .header-content:last-child .search-btn:hover {
        background: rgba(0,0,0,0.2);
    }
}

@media (max-width: 480px) {
    .new-header .container-lg {
        padding: 0 10px;
    }
    
    /* Row 1 adjustments */
    .new-header .header-content:first-child {
        padding: 6px 0;
    }
    
    .new-header .header-content:first-child .header-logo img {
        max-height: 30px;
    }
    
    .new-header .header-content:first-child .header-store-locator .store-locator-btn {
        padding: 5px;
        font-size: 12px;
    }
    
    .new-header .header-content:first-child .shopping-cart-btn {
        min-width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    /* Row 2 adjustments */
    .new-header .header-content:last-child {
        padding: 4px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    
    .new-header .header-content:last-child .menu-toggle-btn {
        padding: 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .new-header .header-content:last-child .hamburger-line {
        width: 24px;
        height: 2px;
        gap: 2px;
    }

    .sec-faq {
        padding: 40px 15px;
    }

    .faq-list {
        padding-right: 0;
    }
    
    /* Mobile Search adjustments */
    .new-header .header-content:last-child .search-form.search-active input[type="search"] {
        width: 200px;
        right: 35px;
    }
    
    .new-header .header-content:last-child .search-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .new-header .container-lg {
        padding: 0 8px;
    }
    
    /* Row 1 adjustments */
    .new-header .header-content:first-child .header-logo img {
        max-height: 26px;
    }
    
    .new-header .header-content:first-child .header-store-locator .store-locator-btn {
        padding: 4px;
        font-size: 11px;
    }
    
    .new-header .header-content:first-child .shopping-cart-btn {
        min-width: 26px;
        height: 26px;
        font-size: 11px;
    }
    
    /* Row 2 adjustments */
    .new-header .header-content:last-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
    
    .new-header .header-content:last-child .menu-toggle-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .new-header .header-content:last-child .hamburger-line {
        width: 14px;
        height: 2px;
        gap: 2px;
    }
    
    /* Mobile Search adjustments */
    .new-header .header-content:last-child .search-form.search-active input[type="search"] {
        width: 160px;
        right: 30px;
    }
    
    .new-header .header-content:last-child .search-btn {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

}

/* Ensure desktop styles remain unchanged */
@media (min-width: 769px) {
    /* Ẩn mobile header trên desktop */
    .mobile-header {
        display: none !important;
    }
    
    /* Hiện desktop header */
    .new-header {
        display: block !important;
    }
    
    .new-header .header-content:first-child .header-store-locator {
        position: static;
        transform: none;
    }
    
    .new-header .header-content:first-child .header-store-locator .store-locator-text {
        display: inline;
    }
    
    .new-header .header-content:first-child .header-shopping-cart {
        position: static;
        transform: none;
        margin-left: 20px;
    }
    
    .new-header .header-content:last-child .header-nav {
        display: flex;
    }
    
    /* Desktop search positioning */
    .new-header .header-search {
        justify-content: flex-end !important;
        margin-left: auto !important;
        flex: 1;
    }
    
    .new-header .search-form {
        margin-left: auto;
        max-width: 360px;
    }
}



@media (max-width: 768px) {
    /* Ẩn header desktop trên mobile */
    .new-header {
        display: none !important;
    }
    
    /* Hiện mobile header */
    .mobile-header {
        display: block !important;
    }
    
    .blog-slider .slick-prev {
        left: -10px;
    }
    
    .blog-slider .slick-next {
        right: -10px;
    }

    .sec-proth {
        padding: 40px 15px;
    }

    .sec-faq {
        padding: 40px 15px;
    }
    .slider-content-wrapper {
        width: 90%;
    }
}

/* ===================================
   MOBILE HEADER STYLES
   =================================== */

/* Mobile Header Styles */
.mobile-header {
    display: none; /* Ẩn mặc định, chỉ hiện trên mobile */
    background: #191919;
    background: linear-gradient(0deg,rgba(25, 25, 25, 0) 21%, rgba(0, 0, 0, 1) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-bottom: 15px;
}

.mobile-header .sale-now {
    background: #191919;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-medium);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.mobile-header .sale-now i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.mobile-header .sale-now:hover i {
    transform: translateX(3px);
}

.mobile-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: transparent;
}

/* Store Locator bên trái */
.mobile-store-locator {
    flex: 0 0 auto;
    z-index: 1;
}

.mobile-store-locator .store-locator-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    font-weight: 500;
}

.mobile-store-locator .store-locator-btn i {
    font-size: 16px;
    margin-right: 5px;
    color: #fff;
}

.mobile-store-locator .store-locator-text {
    display: none; /* Ẩn text trên mobile nhỏ */
}

/* Logo ở giữa */
.mobile-logo, .header-logo {
    flex: 1;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-logo img {
    height: 40px;
    width: auto;
    max-width: 120px;
}

/* Icons bên phải */
.mobile-right-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.mobile-cart .cart-btn {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.mobile-cart .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.mobile-search .search-toggle-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu-toggle .hamburger-line {
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Mobile Search Bar */
.mobile-search-bar {
    display: none;
    background: transparent;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-search-form input[type="search"] {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: #fff;
}

.mobile-search-form input[type="search"]::placeholder {
    color: #fff;
    opacity: 0.8;
}



.mobile-search-submit,
.mobile-search-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    padding: 8px;
}

.mobile-search-submit {
    color: #fff;
    font-size: 13px;
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    min-height: 46px;
    line-height: 46px;
    padding: 0 20px;
    border-radius: 30px;
}

/* Mobile Sidebar Menu */
.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.mobile-sidebar-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar-menu.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-sidebar-logo img {
    height: 40px;
    width: auto;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
}

.mobile-sidebar-nav {
    padding: 20px 0;
}

.mobile-sidebar-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-sidebar-menu-item {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-sidebar-menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background 0.3s ease;
}

.mobile-sidebar-menu-link:hover {
    background: #f8f9fa;
    color: #ff6b6b;
}

.mobile-sidebar-menu-link i {
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.mobile-sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.mobile-sidebar-contact h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
}

.mobile-sidebar-contact p {
    margin: 8px 0;
    font-size: 14px;
    color: #666;
}

.mobile-sidebar-contact i {
    margin-right: 8px;
    color: #ff6b6b;
    width: 16px;
}

/* Responsive Design cho Mobile Header */
@media (max-width: 768px) {
    .mobile-header {
        display: block;
    }
    
    .mobile-store-locator .store-locator-text {
        display: block; /* Hiện text trên tablet */
    }
    .focus-content {
        max-width: 100%;
    }
    .focus-description {
        font-size: 14px;
    }
    .collection-info {
        text-align: center;
    }

    .banner-slider, .banner-slide {
        position: relative;
        height: auto !important;
        /* min-height: 700px !important; */
    }

    .banner-slide 

    .page-home .banners {
        min-height: inherit !important;
    }
}

@media (max-width: 480px) {
    .mobile-search
    .mobile-header-content {
        padding: 0px 15px 15px;
    }
    
    .mobile-logo img {
        height: 35px;
        max-width: 100px;
    }
    
    .mobile-right-icons {
        gap: 12px;
    }
    
    .mobile-store-locator .store-locator-text {
        display: none; /* Ẩn text trên mobile nhỏ */
    }
    
    .mobile-sidebar-menu {
        width: 280px;
        right: -280px;
    }
}

/* Animation cho hamburger menu */
.mobile-menu-toggle .hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle .hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle .hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* Swiper Container - Hiển thị 5 items */
.swiper {
  width: 100%;
  height: 80vh;
  padding: 20px 0;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.swiper-slide {
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33% !important; /* 5 items = 20% mỗi item */
}

.swiper-slide img {
  width: 100%;
  max-width: 100%;
  /* height: 300px; */
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  margin-top: 30px;
}

/* Category Link Styling */
.category-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.swiper-slide-visible .category-name {
  text-align: center;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 500;
  background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

#demo .swiper-button-prev {
    left: 16px !important;
}

.swiper-slide-active .category-name {
    background: linear-gradient(to right, #E4C794, #DAB478, #D0A564);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Slide chính giữa (to hơn và rõ nét) */
.swiper-slide-active {
  transform: scale(1) rotateY(0deg) !important;
  z-index: 3;
  opacity: 1 !important;
}

.swiper-slide-active img {
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Slide bên trái item giữa (nghiêng phải) */
.swiper-slide-prev {
  transform: scale(0.9) rotateY(45deg) !important;
  opacity: 0.8;
}

/* Slide bên phải item giữa (nghiêng trái) */
.swiper-slide-next {
  transform: scale(0.9) rotateY(-45deg) !important;
  opacity: 0.8;
}

/* Slide xa hơn bên trái (nghiêng phải nhiều hơn) */
.swiper-slide-prev + .swiper-slide-prev,
.swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next):not(.swiper-slide-prev):not(.swiper-slide-next + .swiper-slide-next) {
  transform: scale(0.7) rotateY(60deg) !important;
  opacity: 0.5;
}

/* Slide xa hơn bên phải (nghiêng trái nhiều hơn) */
.swiper-slide-next + .swiper-slide-next {
  transform: scale(0.7) rotateY(-60deg) !important;
  opacity: 0.5;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #E4C794 !important;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  font-weight: bold;
}

/* Pagination Dots */
.swiper-pagination {
  bottom: 20px !important;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5) !important;
  opacity: 1 !important;
  width: 12px !important;
  height: 12px !important;
  margin: 0 6px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #E4C794 !important;
  transform: scale(1.2);
}

.swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive cho mobile */


.swiper-3d {
    padding: 0 20px 0 28px !important;
    perspective: 1100px !important
}



  

@media (max-width: 1024px) and (min-width: 769px) {
    /* iPad Pro styles */
    .banner-slider, .banner-slide {
        height: auto !important;
    }

    .banners-title {
        font-size: 2rem;
    }
    .swiper {
        height: auto !important;
        padding-bottom: 80px !important;
    }
    .swiper-pagination {
        bottom: 0px !important;
    }
    .sec-outpro, .sec-product-collections, .sec-product-categories, .sec-ourcus, .sec-proth, .sec-faq {
        padding: 40px 5%;
    }
    .sec-focus-on {
        padding: 0 5%;
    }
    .sec-premium-on {
        min-height: 40vh;
    }

    .swiper-horizontal {
        width: 95% !important;
    }

    .focus-title {
        font-size: 2rem;
    }
    .sidebar-menu {
        width: 30%;
    }
}

/* iPad (10.2-inch) */
@media (max-width: 820px) and (min-width: 769px) {
    /* iPad styles */
    .banner-slider, .banner-slide {
        height: auto !important;
    }

    .banners-title {
        font-size: 2rem;
    }
    .swiper {
        height: auto !important;
        padding-bottom: 80px !important;
    }
    .swiper-pagination {
        bottom: 0px !important;
    }
    .sec-outpro, .sec-product-collections, .sec-product-categories, .sec-ourcus, .sec-proth, .sec-faq {
        padding: 40px 5%;
    }
    .sec-focus-on {
        padding: 0 5%;
    }
    .sec-premium-on {
        min-height: 40vh;
    }
    .swiper-horizontal {
        width: 95% !important;
    }
    .focus-title {
        font-size: 3rem;
    }
    .sidebar-menu {
        width: 30%;
    }
}

/* iPad Mini */
@media (max-width: 768px) and (min-width: 481px) {
    /* iPad Mini styles */
    .banner-slider, .banner-slide {
        height: auto !important;
    }

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

    .swiper {
        height: auto !important;
        padding-bottom: 80px !important;
    }
    .swiper-pagination {
        bottom: 0px !important;
    }
    .sec-outpro, .sec-product-collections, .sec-product-categories, .sec-ourcus, .sec-proth, .sec-faq {
        padding: 40px 5%;
    }
    .sec-focus-on {
        padding: 0 5%;
    }
    .sec-premium-on {
        min-height: 40vh;
    }
    .swiper-horizontal {
        width: 95% !important;
    }
    .focus-title {
        font-size: 3rem;
    }
    .sidebar-menu {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .swiper {
      height: 60vh;
      width: 100%;
    }
  
    .swiper-horizontal {
      width: 100% !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
      width: 40px !important;
      height: 40px !important;
      margin-top: -20px !important;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
      font-size: 16px !important;
    }
    
    .swiper-pagination-bullet {
      width: 10px !important;
      height: 10px !important;
      margin: 0 4px !important;
    }
    
    .swiper-slide-active {
      transform: scale(1.1) !important;
    }
    
    .swiper-slide:not(.swiper-slide-active) {
      transform: scale(0.8);
    }
  
    .swiper-slide-visible .category-name {
      font-size: 16px;
    }
  
    .swiper-slide {
      width: 50% !important;
    }
    .sidebar-menu {
        width: 30%;
    }
  }


  .swiper-button-next, .swiper-button-prev {
    background: linear-gradient(90deg,rgba(161, 127, 90, 1) 0%, rgba(249, 229, 183, 1) 50%, rgba(146, 113, 77, 1) 100%) !important;
    border-radius: 50%;
    width: 50px !important;
    height: 50px !important;
    margin-top: -25px !important;
}

.swiper-button-next:before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    color: #000 !important;
}



#demo .swiper-container {
    width: 100%;
    margin: 0 auto;
  }
  
#demo .swiper-slide {
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    opacity: 0;
  }


#demo .swiper-slide.swiper-slide-visible {
    opacity: 1;
  }
  

  
  .picture img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
}
  
  .detail {
    padding: 25px 20px;
    font-weight: 600;
    text-align: center;
  }
    
  .detail h3 {
      margin: 0;
      font-size: 20px;
    }
    
    .detail span {
      display: block;
      font-size: 16px;
      color: #f44336;
    }
