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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background: #fff;
}

/* ================= HEADER ================= */
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
}

.logo {
    text-decoration: none;
    max-width:200px;
    margin-left: 80px;
}

/* ================= HEADER ACTIONS ================= */
.header-actions {
    display: flex;
    gap: 30px;
}

.header-actions a {
    text-decoration: none;
    color: #c36000;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ================= NAV (DESKTOP) ================= */
nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 10px 0;
}

nav a {
    text-decoration: none;
    color: #c36000;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
}

nav a:hover,
nav a.active {
    border-bottom-color: #c36000;
}

.mobile-currency {
    display: none;
}

/* ================= SLIDER ================= */
.slider-container {
    position: relative;
    width: 100%;
    height: 85vh;    
    min-height: 520px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}
/* BACKGROUND IMAGE */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.35), rgba(0,0,0,.15));
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: right;
    color: #fff;
    z-index: 2;
}
.slide-subtitle
{
    font-size:25px;
    letter-spacing: 8px;
    font-weight: 400;
}
.slide-title {
    font-size: 40px;
    letter-spacing: 8px;
    font-weight: 400;
    margin-bottom: 30px;
}

.shop-button {
    padding: 14px 45px;
    background: #fff;
    color: #333;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: .4s;
}

.shop-button:hover {
    background: #c36000;
    color: #fff;
}

/* ================= SLIDER DOTS (DESKTOP) ================= */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: .3s;
}

.slider-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* ================= MOBILE ICONS ================= */
.mobile-menu,
.mobile-cart {
    display: none;
}

/* ================= CURRENCY ================= */
.currency-selector select {
    border: none;
    padding: 8px 35px 8px 12px;
    background: white;
    cursor: pointer;
    font-size: 13px;
    color: #c36000;
    font-weight: 400;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238B6F47' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* ================= FEATURED PRODUCTS ================= */
.featured-products {
    position: relative;
    padding: 50px 20px;
    background: #fdfdfd;
    margin-top: 0; /* Remove margin to eliminate gap */
    z-index: 10; /* Higher z-index than slider */
}

.featured-products .container {
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products h2 {
    text-align: center;
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
}
.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;

    background: #ffffff;
    color: #000000;

    padding: 6px 12px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 5;
}
.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

.product-image .secondary-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .secondary-img {
    opacity: 1;
    transform: scale(1.1); /* hover par zoom in */
}

.product-card:hover .primary-img {
    transform: scale(1.5); /* primary image bhi thoda zoom */
}

.product-card:hover .primary-img {
    opacity: 0;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
    font-weight: 500;
}

.product-info .price {
    letter-spacing: .2em;
}

.product-info .original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 5px;
    font-weight: 400;
}

.product-info .rating {
    font-size: 13px;
    color: #f39c12;
}

.view-all {
    text-align: center;
    margin-top: 30px;
}

.view-all a {
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;    
    background: #a7814e;
    border: 1px solid #8B6F47;
    padding: 10px 30px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.view-all a:hover {
    background: #ffffff;
    color: #8B6F47;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .slider-container {
        height: 70vh;
    }
    .slide-title {
        font-size: 24px;
        letter-spacing: 6px;
    }
    nav {
        gap: 28px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    /* HEADER */
    .top-bar {
        padding: 12px 16px;
    }
    .logo {
        position: absolute;
        left: 50%;
        width: 160px;
        transform: translateX(-50%);
        margin-left: 0;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu {
        width: 25px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .mobile-menu span {
        display: block;
        height: 3px;
        background: #c36000 ;
        border-radius: 2px;
        transition: 0.3s;
    }

    /* CROSS STATE */
    .mobile-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-cart {
        display: flex;
        gap: 20px;
        font-size: 18px;
        color: #c36000 ;
        align-items: center;
    }  

    .top-bar .currency-selector {
        display: none;
    }

    /* FULL SCREEN MOBILE NAV */
    nav {
        display: none;
    }
    .mobile-nav-wrapper {
        display: none;
        position: fixed;
        top: 38px;
        left: 0;
        width: 100%;
        height: calc(110vh - 60px);
        background: #fff;
        z-index: 999;
        flex-direction: column;
    }
    .mobile-nav-wrapper.open {
        display: flex;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.3);
        z-index: 998;
    }
    .mobile-nav-overlay.active {
        display: block;
    }

    .mobile-nav-wrapper nav {
        display: flex;
        flex-direction: column;
        padding-top: 10px;
    }
    .mobile-nav-wrapper nav a {
        padding: 16px 20px;
        font-size: 14px;
        border-bottom: 1px solid #f2f2f2;
    }

    .mobile-nav-wrapper .currency-selector {
        margin-top: auto;
        padding: 15px 20px;
        border-top: 1px solid #eee;
        background: #fff;
    }
    .mobile-nav-wrapper .currency-selector select {
        width: 50%;
        font-size: 13px;
    }
    .slider-container {
        height: 100svh;
        min-height: 100svh;
    }

    .slide,
    .slide-bg {
        height: 100%;
    }

    .slide-bg {
        background-size: cover;
        background-position: center 65%; /* 🔥 product safe zone */
    }

    /* CONTENT POSITION */
    .slide-content {
        justify-content: flex-end;
        padding-bottom: 110px; /* dots ke liye space */
        text-align: center;
    }
    .slide {
        background-position: center bottom;
    }
    .slide-title {
        font-size: 18px;
        letter-spacing: 4px;
        margin-bottom: 30px;
    }
    .shop-button {
        padding: 10px 28px;
        font-size: 10px;
    }
    /* FIX DOTS VISIBILITY */
    .slider-nav {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 14px;
        z-index: 999; /* VERY IMPORTANT */
        pointer-events: auto;
    }
    .slider-dot {
        width: auto;
        height: auto;
        background: none;
        color: rgba(255,255,255,0.6);
        font-size: 14px;
        cursor: pointer;
    }
    .slider-dot.active {
        color: #fff;
        font-weight: 600;
    }
    .mobile-currency {
        display: block;
        position: sticky;
        bottom: 0;
        margin-top: auto;
        padding: 14px 20px;
        border-top: 1px solid #eee;
        background: #fff;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
    }
    /* MOBILE FEATURED PRODUCTS */
    .featured-products {
        padding: 30px 15px;
    }
    
    .featured-products h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image img {
        height: 200px;
    }
}

/* SMALL MOBILES */
@media (max-width: 480px) {
    .slide-title {
        font-size: 16px;
        letter-spacing: 3px;
    }
    .shop-button {
        padding: 9px 24px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-image img {
        height: 180px;
    }
}

@media (max-width: 360px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== MOBILE CENTER CONTENT FIX ===== */
@media (max-width: 768px) {

    .slide-content {
        justify-content: center !important;   /* vertical center */
        align-items: center !important;       /* horizontal center */
        padding-bottom: 0 !important;
        text-align: center !important;
    }

    .slide-title,
    .slide-subtitle,
    .shop-button {
        
        margin-left: auto;
        margin-right: auto;
    }
    .slide-title,
    .slide-subtitle
    {        
        font-size: 22px;
        font-weight: bold;
    }

    .slide-subtitle {
        margin-bottom: 12px;
        letter-spacing: 3px;
    }

    .slide-title {
        margin-bottom: 20px;
    }
}
/* ===== FORCE 2 PRODUCTS PER ROW ON ALL MOBILES ===== */
@media (max-width: 768px) {

    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
    }

    .product-card {
        width: 100%;
    }

    .product-image img {
        height: 180px;
        object-fit: cover;
    }

    .product-info h3 {
        font-size: 14px;
    }
    .product-info .price {       
        letter-spacing: 0.5px;
        font-size: 12px;           
        gap: 1px;
    }
}
.product-info h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 8px;
}

.product-info .rating .stars {
    color: #000;
    font-size: 14px;
}

.product-info .rating .count {
    color: #666;
    font-weight: 400;
}

.product-info .price {
    font-size: 16px;
    color: #e32c2b;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.product-info .original-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    font-size: 11px;
}
.results-content {
    min-height: 300px;
}

.results-count {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 30px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}


body {
  font-family: "system_ui", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  font-style: normal;
  color: #080808;
  background: white;
  line-height: 1.65;
 }


 /* ========== CONTAINER ========== */
.theme2-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== TOP SECTION: SLIDER + HOT PRODUCTS ========== */
.theme2-top-section {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 0;
    margin-bottom: 0;
}

/* ========== SLIDER STYLES ========== */
.theme2-slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.theme2-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.theme2-slide.active {
    opacity: 1;
}

.theme2-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.theme2-slide,
.theme2-slide-bg {
    border-radius: 20px;   /* jitni round chahiye */
}
.theme2-slide-overlay {
    position: absolute;
    inset: 0;
}

.theme2-slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 0 20px;
}

.theme2-slide-subtitle {
    font-size: 20px;
    letter-spacing: 4px;
    font-weight: 300;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.theme2-slide-title {
    font-size: 42px;
    letter-spacing: 6px;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.theme2-shop-button {
    padding: 14px 45px;
    background: #fff;
    color: #4c0b0b;
    font-size: 11px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.4s;
    display: inline-block;
}

.theme2-shop-button:hover {
    background: #6b0f0f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.theme2-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.theme2-slider-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

/* ========== HOT SELLING PRODUCTS (RIGHT TOP) ========== */
.theme2-hot-products {
    padding: 10px 12px;
    background: #fff;
    border-left: none !important;
    display: flex;
    flex-direction: column;
}

.theme2-hot-products h3 {
    font-size: 14px;
    font-weight: 400;
    color: #4c0b0b;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #4c0b0b;
    padding-bottom: 10px;
}

.theme2-hot-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.theme2-hot-product-item {
    text-align: center;
    padding: 10px;
    border: 1px solid #f0f0f0;
    background: #fff;
    transition: all 0.3s;
}

.theme2-hot-product-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.theme2-hot-product-img {
    width: 100%;
    height: 120px;
    margin-bottom: 10px;
}

.theme2-hot-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #e8e8e8;
}

.theme2-hot-product-info h4 {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.3;
    min-height: 32px;
}

.theme2-hot-product-info .price {
    font-size: 14px;
    color: #615103;
    font-weight: 700;
}

.theme2-hot-product-info .original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 11px;
    margin-left: 5px;
    font-weight: 400;
}
 .original-price1 {
    text-decoration: line-through;
    color: #999;
    font-size: 11px;
    margin-left: 5px;
    font-weight: 400;
}
/* ========== PRODUCT CATEGORY BUTTONS ========== */
.theme2-category-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;          /* ✅ one line only */
    justify-content: space-between;
    margin-top: auto;
}

.theme2-category-btn {
    padding: 8px 6px;           /* ✅ smaller height */
    background: #fff;
    border: 1px solid #e8d5b7;
    
    font-size: 8px;             /* ✅ small text */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    flex: 1;                    /* ✅ equal width */
    white-space: nowrap;        /* ✅ text break na ho */
}
.btn-color1{
    color: #4c0b0b;
}
.btn-color2{
    color: #ffffff;
    background: #6b0f0f; 
}
.btn-color3{
    color: #ffffff;
    background: #615100; 
}

/* .theme2-category-btn:hover {
    background: #6b0f0f;
    color: #fff;
    border-color: #6b0f0f;
} */

/* ========== BOTTOM SECTION: CATEGORIES + VIDEO ========== */
.theme2-bottom-section {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 0;
}

/* ========== CATEGORY BANNERS (LEFT BOTTOM) ========== */
.theme2-category-banners {
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
@media (max-width: 768px) {
    .theme2-category-banners {
        padding: 0px;        
    }
    .theme2-wrapper {
        margin: none;
        padding: none;
    }
}
.theme2-category-card {
    border: 1px solid #e8d5b7;
    padding: 35px 25px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.theme2-category-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #4c0b0b;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.theme2-category-card p {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.theme2-category-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.theme2-category-images img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.theme2-category-card a {
    display: inline-block;
    color: #4c0b0b;
    font-weight: 600;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #4c0b0b;
    padding-bottom: 3px;
    transition: all 0.3s;
}

.theme2-category-card a:hover {
    color: #6b0f0f;
    border-color: #6b0f0f;
}

/* ========== VIDEO SECTION (RIGHT BOTTOM) ========== */
.theme2-video-box {
    background: #fff;
    padding: 15px;
    margin-top: 18px;
}

.theme2-video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.theme2-video-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    border-radius: 6px;
}

/* Placeholder when no video */
.theme2-video-placeholder {
    width: 100%;
    min-height: 250px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-radius: 6px;
}

.theme2-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.theme2-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 1024px) {
    .theme2-top-section {
        grid-template-columns: 65% 35%;
    }
    
    .theme2-bottom-section {
        grid-template-columns: 65% 35%;
    }
    
    .theme2-category-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .theme2-top-section {
        grid-template-columns: 1fr;
    }
    
    .theme2-bottom-section {
        grid-template-columns: 1fr;
    }
    
    .theme2-slider-container {
        height: 55vh;
        min-height: 400px;
    }
    
    .theme2-slide-subtitle {
        font-size: 14px;
        letter-spacing: 3px;
    }
    
    .theme2-slide-title {
        font-size: 24px;
        letter-spacing: 4px;
        margin-bottom: 20px;
    }
    
    .theme2-shop-button {
        padding: 12px 35px;
        font-size: 10px;
    }
    
    .theme2-slider-nav {
        bottom: 20px;
    }
    
    .theme2-hot-products {
        border-left: none;
    }
    
    .theme2-hot-products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .theme2-category-banners {
        grid-template-columns: 1fr;
    }
    
    .theme2-video-box {
        border-left: none;
    }
    
    .theme2-category-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .theme2-video-box h3 {
        font-size: 28px;
    }
}
/* ===== CATEGORY BANNERS ===== */
.theme2-category-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.theme2-category-card {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    padding: 20px;
    overflow: hidden;
}

/* Dark overlay */
.theme2-category-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    transition: 0.3s;
}

/* Title text */
.theme2-category-title {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Mobile */
@media (max-width: 768px) {
    .theme2-category-banners {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .theme2-wrapper {
        margin: 0;
        padding: 0;
        max-width: 100%;
    }

    .theme2-top-section,
    .theme2-bottom-section,
    .theme2-slider-container,
    .theme2-hot-products,
    .theme2-category-banners,
    .theme2-video-box {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}
@media (max-width: 768px) {
    .theme2-video-placeholder {
        font-size: 20px;
        letter-spacing: 3px;
    }
}

.font-adjust {
  font-family: "system_ui", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-weight: 400;
  font-style: normal;
  
  line-height: 1.65;
 }