/* Reset & Base */
:root {
    --red: #c8102e;
    --red-hover: #a00d24;
    --red-light: rgba(200, 16, 46, 0.08);
    --green: #1a7a3c;
    --green-hover: #145f2e;
    --green-light: rgba(26, 122, 60, 0.08);
    --dark-bg: #0f1a14;
    --dark-header: #0f1a14;
    --gray-bg: #f5f5f5;
    --gray-50: #fafafa;
    --text-dark: #111;
    --text-gray: #555;
    --white: #fff;
    --border: #e8e8e8;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.14);
    /* 3D Convex Variables */
    --bg-color: #f0f2f5;
    --convex-bg: linear-gradient(145deg, #ffffff, #e6e9ef);
    --convex-shadow:
        8px 8px 16px rgba(163, 177, 198, 0.4),
        -8px -8px 16px rgba(255, 255, 255, 0.8);
    --convex-hover:
        12px 12px 24px rgba(163, 177, 198, 0.5),
        -12px -12px 24px rgba(255, 255, 255, 0.9);

    /* Hero Font Settings */
    --hero-tag-size: 0.85rem;
    --hero-heading-size: 3.2rem;
    --hero-desc-size: 1rem;
    --hero-stat-number-size: 1.15rem;
    --hero-stat-text-size: 0.8rem;

    /* Positioning & Spacing */
    --logo-move-left-right: 0px;
    --logo-margin-right: 15px;
    --nav-spacing-between-links: 15px;
    --nav-space-after-red-button: 30px;
    --hero-text-padding-top-bottom: 40px;
    --hero-text-padding-left-right: 0px;
    --hero-img-move-x: 0px;
    --hero-img-move-y: 0px;
    --hero-img-scale: 1.1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 75px 0;
}

.bg-white {
    background: #fff;
}

/* Buttons */
.btn-red {
    background: linear-gradient(135deg, var(--red), #e8102a);
    color: #fff;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-red:hover {
    background: linear-gradient(135deg, var(--red-hover), var(--red));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
}

.btn-orange {
    background: linear-gradient(135deg, var(--red), #e8102a);
    color: #fff;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
}

.btn-orange:hover {
    background: linear-gradient(135deg, var(--red-hover), var(--red));
    transform: translateY(-2px);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), #22a050);
    color: #fff;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26, 122, 60, 0.3);
}

.btn-green:hover {
    background: linear-gradient(135deg, var(--green-hover), var(--green));
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--dark-bg);
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 700;
    border: 2px solid var(--text-dark);
    transition: 0.3s;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: #fff;
}

/* Typography */
.section-title-center {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 45px;
    color: #111;
    position: relative;
}

.section-title-center::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--green));
    border-radius: 4px;
    margin: 14px auto 0;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

.section-title-left {
    font-size: 1.9rem;
    font-weight: 800;
    color: #111;
}

.view-all-link {
    color: var(--red);
    font-weight: 700;
    font-size: 0.95rem;
    border-bottom: 2px solid var(--red);
    padding-bottom: 2px;
    transition: 0.3s;
}

.view-all-link:hover {
    color: var(--green);
    border-color: var(--green);
}

/* Announcement bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--red), #8b0000, var(--green));
    color: #fff;
    text-align: center;
    padding: 9px 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.announcement-bar span {
    margin: 0 20px;
}

/* Top Search Bar */
.top-search-bar {
    background: var(--red);
    padding: 12px 0;
    border-bottom: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.ts-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.ts-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-logo-icon {
    height: 65px !important;
    object-fit: contain;
    transition: 0.3s transform;
}

.header-logo-banner {
    height: 50px !important;
    object-fit: contain;
    transition: 0.3s transform;
}

.ts-search {
    flex: 1;
    max-width: 550px;
    display: flex;
    border: none;
    border-radius: 30px;
    overflow: hidden;
    height: 46px;
    transition: 0.3s;
    background: #fff;
}

.ts-search:focus-within {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.search-dropdown {
    position: relative;
    background: #f8f8f8;
    padding: 0 16px;
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 600;
    border-right: 1px solid var(--border);
    color: #444;
    cursor: pointer;
    white-space: nowrap;
}

.search-dropdown i {
    margin-left: 6px;
    color: var(--red);
}

.search-dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    min-width: 180px;
    z-index: 1000;
    display: none;
}

.search-dropdown-menu.active {
    display: block;
}

.search-dropdown-menu li {
    padding: 10px 16px;
    color: #333;
    font-weight: 500;
    transition: 0.2s;
    text-align: left;
}

.search-dropdown-menu li:hover {
    background: #f5f5f5;
    color: var(--red);
}

.ts-search input {
    flex: 1;
    border: none;
    padding: 0 16px;
    outline: none;
    font-size: 0.88rem;
    background: #fff;
    color: #333;
}

.ts-search button {
    background: #111;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
}

.ts-search button:hover {
    background: #333;
}

.ts-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.ts-action-item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 50px;
    transition: 0.3s all;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
}
.ts-action-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.ts-action-item i {
    font-size: 1.1rem;
}
.ts-action-item span {
    display: inline-block;
}

.ts-action-item:hover {
    color: rgba(255, 255, 255, 0.75);
}

.ts-action-item i {
    font-size: 1.25rem;
}

.cart-icon-wrapper {
    position: relative;
}

.cart-icon-wrapper .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #fff;
    color: var(--red);
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Main Nav Bar */
.main-nav-bar {
    background: linear-gradient(90deg, #0f1a14, #1a2e20, #0f1a14);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    gap: var(--nav-space-after-red-button);
}

.shop-category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    background: var(--red);
    padding: 10px 22px;
    border-radius: 8px;
    transition: 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.shop-category-btn:hover {
    background: var(--red-hover);
}

.nav-menu {
    display: flex;
    gap: var(--nav-spacing-between-links);
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    padding: 8px 12px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
    background: rgba(200, 16, 46, 0.3);
}

/* Scroll-to-section anchor */
.inv-anchor {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
}

/* Hero Section - WHITE split layout */
.exact-hero {
    background: #fff;
    position: relative;
    overflow-x: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    position: relative;
}

/* Left side: white card */
.hero-left {
    width: 48%;
    background: transparent;
    display: flex;
    align-items: center;
    padding: var(--hero-text-padding-top-bottom) var(--hero-text-padding-left-right);
    position: relative;
    z-index: 10;
}

.hero-text-content {
    width: 100%;
}

.hero-brand-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.hero-brand-capsule {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--dark-bg);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.hero-brand-separator {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-brand-banner {
    height: 42px;
    object-fit: contain;
}

.hero-brand-logo {
    height: 55px;
    object-fit: contain;
}

.hero-tag {
    color: var(--text-gray);
    font-size: var(--hero-tag-size);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-text-content h1 {
    font-size: var(--hero-heading-size);
    color: #111;
    line-height: 1.1;
    margin-bottom: 16px;
    font-weight: 900;
}

.highlight-red {
    color: var(--red);
}

.hero-desc {
    color: #444;
    font-size: var(--hero-desc-size);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #111;
}

.stat-item i {
    font-size: 1.6rem;
    color: var(--green);
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: var(--hero-stat-number-size);
    font-weight: 800;
}

.stat-text span {
    font-size: var(--hero-stat-text-size);
    color: #666;
    font-weight: 600;
}

/* Right side: white with product image */
.hero-right {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-main-img {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    transform: translate(var(--hero-img-move-x), var(--hero-img-move-y)) scale(var(--hero-img-scale));
    transition: 0.3s transform;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

/* Floating Features */
.floating-features {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    margin-top: 0;
}

.feature-card {
    flex: 1;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), #22a050);
    color: #fff;
    padding: 18px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 30px rgba(26, 122, 60, 0.25);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 122, 60, 0.4);
}

.feature-card i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-card span {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Brands Marquee */
.brands-marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.brands-marquee {
    display: inline-flex;
    gap: 60px;
    align-items: center;
    animation: scroll-left 40s linear infinite;
}

.brand-logo-img {
    height: 70px;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: 0.3s;
}

.brand-logo-img:hover {
    filter: grayscale(0);
    transform: scale(1.05);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* Category Grid */
.category-grid-exact {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.cat-card-exact {
    background: var(--convex-bg);
    box-shadow: var(--convex-shadow);
    border-radius: 18px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 330px;
    transition: 0.4s;
    color: #111;
    border: 1px solid rgba(255,255,255,0.6);
    overflow: hidden;
}

.cat-card-exact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--green));
    opacity: 0;
    transition: 0.3s;
}

.cat-card-exact:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--convex-hover);
    border-color: rgba(255,255,255,1);
}

.cat-card-exact:hover::before {
    opacity: 1;
}

.cat-card-content h3 {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.shop-now-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--red);
}

.cat-card-img {
    margin-top: auto;
    width: 100%;
    height: 210px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cat-card-exact:hover .cat-card-img {
    transform: scale(1.06);
}

.cat-card-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

/* Promo Banner */
.promo-banner-exact {
    background: linear-gradient(135deg, #0f1a14, #1a2e1e);
    border-radius: 22px;
    display: flex;
    overflow: hidden;
    color: #fff;
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-left {
    flex: 1;
}

.promo-right {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.promo-tag {
    color: #ff4d6d;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-up-to {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: -5px;
}

.promo-right h2 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #fff, #ffb3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* Best Sellers */
.product-grid-exact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card-exact {
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 18px;
    padding: 22px;
    background: var(--convex-bg);
    box-shadow: var(--convex-shadow);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-info-box {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-exact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--green));
    opacity: 0;
    transition: 0.3s;
}

.product-card-exact:hover {
    border-color: rgba(255,255,255,1);
    box-shadow: var(--convex-hover), 0 12px 40px rgba(200, 16, 46, 0.15);
    transform: translateY(-6px) scale(1.02);
}

.product-card-exact:hover::before {
    opacity: 1;
}

.product-img-box {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    padding: 12px;
}

.product-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-exact:hover .product-img-box img {
    transform: scale(1.06);
}

.product-title-exact {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-price-exact {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.product-price-exact .current {
    font-weight: 800;
    font-size: 1.15rem;
    color: #111;
}

.product-price-exact .old {
    color: #bbb;
    text-decoration: line-through;
    font-size: 0.85rem;
}

.product-price-exact .discount {
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(200, 16, 46, 0.08);
    padding: 2px 8px;
    border-radius: 20px;
}

.product-meta-exact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.rating {
    color: #f59e0b;
    font-size: 0.85rem;
    font-weight: 700;
}

.rating span {
    color: #bbb;
    font-size: 0.8rem;
}

.cart-btn-exact {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--red-light);
    border: none;
    cursor: pointer;
    color: var(--red);
    transition: 0.3s;
    font-size: 0.9rem;
}

.cart-btn-exact:hover {
    background: var(--red);
    color: #fff;
    transform: scale(1.1);
}

/* Why Choose Us */
.wcu-grid-exact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.wcu-card-exact {
    background: var(--convex-bg);
    box-shadow: var(--convex-shadow);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 16px;
    padding: 30px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: 0.4s;
}

.wcu-card-exact:hover {
    border-color: rgba(255,255,255,1);
    box-shadow: var(--convex-hover), 0 8px 30px rgba(26, 122, 60, 0.15);
    transform: translateY(-4px);
}

.wcu-card-exact i {
    color: var(--green);
    font-size: 2rem;
    margin-top: 3px;
}

.wcu-text h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.wcu-text p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Testimonials */
.test-grid-exact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.test-card-exact {
    background: var(--convex-bg);
    box-shadow: var(--convex-shadow);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 18px;
    padding: 32px;
    transition: 0.4s;
}

.test-card-exact:hover {
    border-color: rgba(255,255,255,1);
    box-shadow: var(--convex-hover), 0 8px 30px rgba(200, 16, 46, 0.12);
    transform: translateY(-4px);
}

.test-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.test-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), var(--green));
}

.test-user h4 {
    font-size: 1rem;
    font-weight: 800;
}

.test-user .stars {
    color: #f59e0b;
    font-size: 0.85rem;
}

.test-card-exact p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* Newsletter */
.newsletter-exact {
    background: linear-gradient(135deg, #0f1a14, #1a2e1e);
    border-radius: 30px 30px 0 0;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.nl-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nl-icon {
    width: 65px;
    height: 65px;
    background: rgba(200, 16, 46, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.9rem;
    border: 2px solid rgba(200, 16, 46, 0.3);
}

.nl-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 6px;
}

.nl-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.nl-right {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px;
    border-radius: 30px;
    width: 420px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nl-right input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 20px;
    outline: none;
    font-size: 0.9rem;
}

.nl-right input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.nl-right .btn-orange {
    border-radius: 22px;
    font-size: 0.85rem;
}

/* Footer */
.footer-exact {
    background: linear-gradient(180deg, #0a1410, #0f1a14);
    color: #fff;
    padding: 70px 0 30px;
}

.footer-grid-exact {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col-exact.brand img {
    height: 52px;
    margin-bottom: 20px;
}

.footer-col-exact.brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 22px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
}

.footer-col-exact h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-col-exact ul li {
    margin-bottom: 12px;
}

.footer-col-exact ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: 0.3s;
}

.footer-col-exact ul li a:hover {
    color: var(--red);
    padding-left: 5px;
}

.footer-col-exact.contact ul li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-col-exact.contact ul li i {
    margin-top: 4px;
    color: var(--red);
}

.footer-bottom-exact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--red);
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ====== INVENTORY SECTION (merged into index) ====== */
.inventory-page-title {
    padding: 70px 0 30px;
    text-align: center;
}

.inventory-page-title h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #111;
}

.inventory-page-title p {
    color: var(--text-gray);
    margin-top: 10px;
    font-size: 1.05rem;
}

.inventory-section {
    padding: 60px 0;
}

.inventory-section:nth-child(even) {
    background: var(--gray-50);
}

.section-title-new {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.section-title-new .line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--green));
    border-radius: 2px;
}

.section-title-new h2 {
    font-size: 1.3rem;
    font-weight: 900;
    white-space: nowrap;
    letter-spacing: 2px;
    color: #111;
    padding: 0 10px;
}

.shelf-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.shelf-item {
    background: var(--convex-bg);
    box-shadow: var(--convex-shadow);
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.6);
    transition: 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.shelf-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--green));
    opacity: 0;
    transition: 0.3s;
}

.shelf-item:hover {
    border-color: rgba(255,255,255,1);
    box-shadow: var(--convex-hover), 0 8px 25px rgba(200, 16, 46, 0.2);
    transform: translateY(-5px) scale(1.05);
}

.shelf-item:hover::before {
    opacity: 1;
}

.item-image-placeholder {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 10px;
    overflow: hidden;
}

.item-image-placeholder img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shelf-item:hover .item-image-placeholder img {
    transform: scale(1.06);
}

.item-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.brands-grid-inventory {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.brand-tag-inventory {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #333;
    transition: 0.3s;
    cursor: pointer;
}

.brand-tag-inventory:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 16, 46, 0.25);
}

/* Section divider */
.section-divider {
    height: 4px;
    background: linear-gradient(90deg, var(--red), #fff, var(--green));
    margin: 0;
}

/* =========================================================================
   Mobile Responsiveness
========================================================================= */
@media (max-width: 991px) {
    .ts-search {
        display: none;
    }

    .ts-actions {
        gap: 15px;
    }

    .nav-inner-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: auto;
        padding: 0 10px;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .hero-brand-wrap {
        justify-content: center;
    }
    .nav-inner-wrapper::-webkit-scrollbar {
        display: none;
    }

    .nav-menu {
        flex-shrink: 0;
    }

    .hero-container {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        width: 100%;
        padding: 40px 20px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-right {
        width: 100%;
        padding: 20px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        height: auto;
    }

    .floating-features {
        flex-wrap: wrap;
    }

    .feature-card {
        min-width: 45%;
    }

    .category-grid-exact {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid-exact {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcu-grid-exact {
        grid-template-columns: repeat(2, 1fr);
    }

    .test-grid-exact {
        grid-template-columns: repeat(2, 1fr);
    }

    .promo-banner-exact {
        flex-direction: column;
    }

    .promo-left {
        width: 100% !important;
        height: 250px !important;
    }

    .promo-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .promo-right {
        padding: 30px;
        text-align: center;
        align-items: center;
    }

    .newsletter-exact {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .nl-left {
        flex-direction: column;
    }

    .nl-right {
        width: 100%;
    }

    .footer-grid-exact {
        grid-template-columns: repeat(2, 1fr);
    }

    .shelf-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .section-title-center {
        font-size: 1.6rem;
    }

    .section-header-flex {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .category-grid-exact {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cat-card-exact {
        height: 200px !important;
        padding: 15px 12px !important;
        border-radius: 12px !important;
    }

    .cat-card-img {
        height: 100px !important;
    }

    .product-grid-exact {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .product-card-exact {
        padding: 10px !important;
        border-radius: 12px !important;
    }

    .product-title-exact {
        font-size: 0.82rem !important;
        line-height: 1.3 !important;
        height: 2.6rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-bottom: 8px !important;
    }

    .product-price-exact {
        flex-wrap: wrap;
        gap: 4px !important;
        font-size: 0.8rem !important;
        margin-bottom: 8px !important;
    }

    .product-price-exact .current {
        font-size: 0.88rem !important;
    }

    .product-price-exact .old, .product-price-exact .discount {
        font-size: 0.72rem !important;
    }

    .product-meta-exact {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .product-meta-exact .rating {
        font-size: 0.75rem !important;
    }

    .product-meta-exact .rating span {
        font-size: 0.7rem !important;
    }

    .product-meta-exact > div:last-child {
        align-self: flex-end;
        display: flex;
        gap: 4px;
        margin-top: 4px;
    }

    .cart-btn-exact, .wishlist-btn-exact {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.75rem !important;
        line-height: 30px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-brand-banner {
        height: 32px !important;
    }

    .hero-brand-logo {
        height: 42px !important;
    }

    .hero-brand-wrap {
        gap: 10px !important;
        margin-bottom: 16px !important;
    }

    .hero-brand-capsule {
        padding: 6px 12px !important;
        gap: 10px !important;
    }

    .hero-brand-separator {
        height: 18px !important;
    }

    .wcu-grid-exact {
        grid-template-columns: 1fr;
    }

    .test-grid-exact {
        grid-template-columns: 1fr;
    }

    .footer-grid-exact {
        grid-template-columns: 1fr;
    }

    .shelf-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .ts-logo {
        gap: 8px !important;
    }
    .header-logo-icon {
        height: 28px !important;
    }
    .header-logo-banner {
        height: 38px !important;
    }
    
    .ts-actions {
        gap: 8px !important;
    }
    
    .ts-action-item {
        padding: 6px 10px !important;
        font-size: 0.75rem !important;
    }
    
    .ts-action-item i {
        font-size: 1rem !important;
    }

    :root {
        --hero-heading-size: 2.2rem;
        --hero-desc-size: 0.95rem;
    }
    .hero-main-img {
        max-height: 360px !important;
        transform: scale(1.15) !important;
        margin: 15px auto 25px !important;
        display: block;
        width: 100% !important;
    }
}

/* WhatsApp Modal Styles */
.wa-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(5px); }
.wa-modal-overlay.active { opacity: 1; visibility: visible; }
.wa-modal-box { background: #fff; width: 90%; max-width: 450px; border-radius: 16px; padding: 35px 30px; position: relative; transform: translateY(30px); transition: 0.3s; box-shadow: 0 15px 50px rgba(0,0,0,0.2); }
.wa-modal-overlay.active .wa-modal-box { transform: translateY(0); }
.wa-close-btn { position: absolute; top: 15px; right: 15px; background: #f0f0f0; border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; color: #555; }
.wa-close-btn:hover { background: var(--red); color: #fff; }
.wa-modal-header { text-align: center; margin-bottom: 25px; }
.wa-modal-header i.fa-whatsapp { font-size: 3rem; color: #25D366; margin-bottom: 10px; }
.wa-modal-header h2 { font-size: 1.5rem; font-weight: 800; color: #111; margin-bottom: 8px; }
.wa-modal-header p { font-size: 0.9rem; color: #666; line-height: 1.5; }
.wa-product-name { color: var(--green); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: #333; margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; border: 1px solid #ddd; border-radius: 8px; padding: 12px 15px; font-size: 0.95rem; font-family: inherit; transition: 0.3s; background: #fafafa; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15); }
.btn-green.w-100 { width: 100%; justify-content: center; font-size: 1.05rem; padding: 14px; margin-top: 10px; background: #25D366; }
.btn-green.w-100:hover { background: #128C7E; }

.wa-modal-img-container { position: relative; background: var(--gray-bg); border-radius: 12px; padding: 20px; height: 160px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.wa-product-img { max-height: 100%; max-width: 100%; object-fit: contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }
.wa-badge { position: absolute; top: 10px; right: 10px; background: #25D366; color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; gap: 6px; box-shadow: 0 4px 10px rgba(37,211,102,0.3); }
.wa-modal-header h2 { font-size: 1.3rem !important; margin-bottom: 5px !important; color: #111; }
.wa-modal-box { padding: 25px !important; }

/* Right Sidebar & Notch */
.right-notch-btn { position: fixed; top: 50%; right: 0; transform: translateY(-50%); background: #111; color: #fff; padding: 15px 10px; border-radius: 10px 0 0 10px; cursor: pointer; z-index: 9000; box-shadow: -5px 0 15px rgba(0,0,0,0.1); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.right-notch-btn:hover { background: var(--red); width: 35px; }
.right-sidebar-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 10000; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(3px); }
.right-sidebar-overlay.active { opacity: 1; visibility: visible; }
.right-sidebar { position: fixed; top: 0; right: -420px; width: 360px; max-width: 90%; height: 100%; background: #fff; z-index: 10001; transition: 0.4s ease; box-shadow: -5px 0 25px rgba(0,0,0,0.2); display: flex; flex-direction: column; padding: 30px; overflow-y: auto; }
.right-sidebar.active { right: 0; }
.close-sidebar-btn { position: absolute; top: 20px; right: 20px; background: #f5f5f5; border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #555; cursor: pointer; transition: 0.3s; }
.close-sidebar-btn:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.sidebar-logo { margin-bottom: 40px; text-align: center; border-bottom: 1px solid #eee; padding-bottom: 20px; }
.sidebar-nav { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.sidebar-link { display: flex; align-items: center; gap: 15px; padding: 15px; border-radius: 10px; color: #333; font-weight: 700; font-size: 1.1rem; transition: 0.3s; background: #f9f9f9; text-decoration: none; }
.sidebar-link i { font-size: 1.3rem; color: var(--red); width: 25px; text-align: center; }
.sidebar-link:hover { background: var(--red); color: #fff; transform: translateX(5px); }
.sidebar-link:hover i { color: #fff; }


/* Fix Standard Modals (Cart, Wishlist, Track Order) */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center; z-index: 9999; opacity: 0; visibility: hidden; transition: 0.3s; backdrop-filter: blur(5px); }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-box { background: #fff; width: 90%; max-width: 500px; border-radius: 16px; padding: 35px 30px; position: relative; transform: translateY(30px); transition: 0.3s; box-shadow: 0 15px 50px rgba(0,0,0,0.2); }
.modal-overlay.active .modal-box { transform: translateY(0); }
.close-modal-btn { position: absolute; top: 15px; right: 15px; background: #f0f0f0; border: none; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; color: #555; }
.close-modal-btn:hover { background: var(--red); color: #fff; }

/* Smooth Scroll & Offset for sticky header */
html {
    scroll-behavior: smooth;
}
section, [id], .inv-anchor {
    scroll-margin-top: 80px;
}

/* Mobile Header Crowding Fix */
@media (max-width: 768px) {
    .ts-inner {
        gap: 10px;
    }
    .ts-logo {
        gap: 10px;
    }
    .header-logo-icon {
        height: 35px !important;
    }
    .header-logo-banner {
        height: 45px !important;
    }
    .ts-action-item {
        padding: 8px 12px;
    }
    .ts-action-item span {
        display: none !important;
    }
    #userNameLabel {
        display: none !important;
    }
}

/* Website Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #bc1f24;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                visibility 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo-wrap {
    width: 600px;
    max-width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-logo {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: pulseScale 1.8s ease-in-out infinite;
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(0.85);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #111;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    border-left: 4px solid var(--red);
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    border-left-color: #25D366;
}

.toast-wishlist {
    border-left-color: var(--red);
}

.toast-info {
    border-left-color: #3b82f6;
}

.toast i {
    font-size: 1.1rem;
}

.toast-success i {
    color: #25D366;
}

.toast-wishlist i {
    color: var(--red);
}

.toast-info i {
    color: #3b82f6;
}

/* E-commerce Shelf Item Action Buttons */
.shelf-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
}

.shelf-wishlist-btn, .shelf-cart-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    color: #444;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.shelf-wishlist-btn:hover {
    background: #ffe4e6;
    color: #e11d48;
    border-color: #f43f5e;
    transform: scale(1.08);
}

.shelf-cart-btn:hover {
    background: var(--red-light);
    color: var(--red);
    border-color: var(--red);
    transform: scale(1.08);
}

/* =========================================================================
   Premium E-commerce Mobile Adjustments & Overrides
   ========================================================================= */

/* Default State: Hide mobile-only elements on desktop */
.mobile-hamburger-btn,
.mobile-whatsapp-btn,
.mobile-bottom-nav {
    display: none !important;
}

@media (max-width: 991px) {
    .cart-wishlist-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    /* Layout offsets for sticky elements */
    body {
        padding-top: 108px !important;
        padding-bottom: 60px !important;
    }

    /* Announcement Bar - Hide to preserve vertical space */
    .announcement-bar {
        display: none !important;
    }

    /* Sticky Mobile Header Row */
    .top-search-bar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1050 !important;
        padding: 8px 15px !important;
        background: var(--red) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    }

    .ts-inner {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        grid-template-rows: auto auto !important;
        align-items: center !important;
        gap: 6px 12px !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Hamburger & Logo positioning */
    .mobile-hamburger-btn {
        grid-column: 1 !important;
        grid-row: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: none !important;
        border: none !important;
        color: #fff !important;
        font-size: 1.3rem !important;
        cursor: pointer !important;
        padding: 6px !important;
        outline: none !important;
    }

    .ts-logo {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-self: center !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        margin: 0 !important;
    }

    .header-logo-icon {
        height: 26px !important;
        width: auto !important;
    }

    .header-logo-banner {
        height: 38px !important;
        width: auto !important;
    }

    /* WhatsApp contact shortcut */
    .mobile-whatsapp-btn {
        grid-column: 3 !important;
        grid-row: 1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        background: #25d366 !important;
        color: #fff !important;
        font-size: 1.25rem !important;
        text-decoration: none !important;
        box-shadow: 0 4px 12px rgba(37,211,102,0.2) !important;
        border: none !important;
    }

    /* Search Bar Layout */
    .ts-search {
        grid-column: 1 / span 3 !important;
        grid-row: 2 !important;
        display: flex !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 4px 0 0 0 !important;
        background: #fff !important;
        border-radius: 24px !important;
        overflow: hidden !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    }

    .ts-search input {
        padding: 8px 16px !important;
        height: 36px !important;
        font-size: 0.85rem !important;
        flex-grow: 1 !important;
        border-radius: 24px 0 0 24px !important;
        border: none !important;
        outline: none !important;
    }

    .ts-search button {
        width: 44px !important;
        height: 36px !important;
        background: #f1f5f9 !important;
        color: #475569 !important;
        border-radius: 0 24px 24px 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        font-size: 0.9rem !important;
        cursor: pointer !important;
    }

    /* Hide elements displaced to bottom navigation */
    .ts-actions,
    .search-dropdown,
    .main-nav-bar {
        display: none !important;
    }

    /* Sticky Mobile Bottom Navigation Bar */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 60px !important;
        background: rgba(255, 255, 255, 0.96) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
        justify-content: space-around !important;
        align-items: center !important;
        z-index: 1050 !important;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05) !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
    }
    
    .mob-nav-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        color: #64748b !important;
        text-decoration: none !important;
        font-size: 0.72rem !important;
        font-weight: 700 !important;
        gap: 3px !important;
        transition: all 0.2s ease !important;
        width: 20% !important;
        height: 100% !important;
        justify-content: center !important;
        position: relative !important;
        font-family: 'Outfit', sans-serif !important;
    }
    
    .mob-nav-item i {
        font-size: 1.25rem !important;
        transition: transform 0.2s ease !important;
    }
    
    .mob-nav-item.active {
        color: var(--red) !important;
    }
    
    .mob-nav-item.active i {
        transform: translateY(-2px) !important;
        color: var(--red) !important;
    }
    
    .mob-nav-item.active::after {
        content: '' !important;
        position: absolute !important;
        bottom: 6px !important;
        width: 4px !important;
        height: 4px !important;
        background: var(--red) !important;
        border-radius: 50% !important;
    }
    
    .nav-icon-wrapper {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .nav-icon-wrapper .badge {
        position: absolute !important;
        top: -6px !important;
        right: -12px !important;
        background: var(--red) !important;
        color: #fff !important;
        font-size: 0.6rem !important;
        min-width: 16px !important;
        height: 16px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-weight: 800 !important;
        padding: 2px !important;
        border: 1px solid #fff !important;
    }

    /* Mobile Hero Banner Image Alignment and Sizing */
    .hero-main-img {
        transform: none !important;
        max-height: 280px !important;
        width: auto !important;
        margin: 15px auto 0 auto !important;
        display: block !important;
        object-fit: contain !important;
    }

    /* Mobile Admin Nav Button — visible only after admin login */
    .mob-admin-btn {
        color: #ad1f35 !important;
        position: relative !important;
    }
    .mob-admin-btn i {
        color: #ad1f35 !important;
    }
    .mob-admin-btn::before {
        content: '' !important;
        position: absolute !important;
        top: 6px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 36px !important;
        height: 36px !important;
        background: rgba(173, 31, 53, 0.10) !important;
        border-radius: 10px !important;
    }

}

/* Category Cards Overlap Fix & Spacing */
@media (max-width: 576px) {
    .cat-card-btn {
        display: none !important;
    }
    .cat-card-exact {
        height: auto !important;
        min-height: 175px !important;
        padding: 12px 10px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
    .cat-card-img {
        height: 105px !important;
        margin-top: 8px !important;
    }
    .cat-card-content h3 {
        font-size: 0.88rem !important;
    }
}

/* Hero Section Stats Layout */
@media (max-width: 576px) {
    .hero-stats {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        margin-top: 20px !important;
        padding: 10px 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        width: 100% !important;
    }
    .stat-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 4px !important;
    }
    .stat-item i {
        font-size: 1.3rem !important;
        margin-bottom: 2px !important;
        color: var(--green) !important;
    }
    .stat-text strong {
        font-size: 0.78rem !important;
        display: block !important;
    }
    .stat-text span {
        font-size: 0.62rem !important;
        color: #64748b !important;
    }
}

/* Modern & Clean Mobile Product Cards */
@media (max-width: 576px) {
    /* Grid spacing catalog */
    .product-grid-exact {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .product-card-exact {
        position: relative !important;
        padding: 10px !important;
        border-radius: 14px !important;
        background: #fff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
        border: 1px solid #f1f5f9 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .product-img-box {
        height: 190px !important;
        margin-bottom: 8px !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 4px !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
    }

    /* Wishlist button absolute positioning on top-right of image */
    .product-card-exact .wishlist-btn-exact {
        position: absolute !important;
        top: 14px !important;
        right: 14px !important;
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
        z-index: 5 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        color: var(--red) !important;
        transition: all 0.2s ease !important;
    }
    
    .product-card-exact .wishlist-btn-exact.active {
        background: var(--red) !important;
        color: #fff !important;
        border-color: var(--red) !important;
    }

    /* Cart button design */
    .product-card-exact .cart-btn-exact {
        width: 32px !important;
        height: 32px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: var(--red-light) !important;
        color: var(--red) !important;
        border: none !important;
        margin: 0 !important;
        box-shadow: 0 2px 6px rgba(200, 16, 46, 0.06) !important;
    }
    
    .product-card-exact .cart-btn-exact.active {
        background: var(--red) !important;
        color: #fff !important;
    }

    .product-title-exact {
        font-size: 0.8rem !important;
        margin-bottom: 6px !important;
        height: 2.2rem !important;
        line-height: 1.15rem !important;
    }

    .product-price-exact {
        margin-bottom: 6px !important;
    }

    .product-meta-exact {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        margin-top: auto !important;
    }
    
    .product-meta-exact > div:last-child {
        align-self: center !important;
        margin-top: 0 !important;
    }
}

/* Shelf Items (Complete Catalog) Custom Styles */
@media (max-width: 576px) {
    .shelf-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .shelf-item {
        position: relative !important;
        padding: 10px !important;
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04) !important;
        border: 1px solid #f1f5f9 !important;
    }

    .item-image-placeholder {
        height: 180px !important;
        margin-bottom: 8px !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        padding: 4px !important;
        border: 1px solid rgba(0, 0, 0, 0.03) !important;
    }

    .shelf-item .shelf-wishlist-btn {
        position: absolute !important;
        top: 14px !important;
        right: 14px !important;
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.95) !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
        z-index: 5 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    .shelf-item .shelf-wishlist-btn.active {
        background: var(--red) !important;
        color: #fff !important;
        border-color: var(--red) !important;
    }

    .shelf-item .shelf-cart-btn {
        width: 28px !important;
        height: 28px !important;
        border-radius: 50% !important;
        background: var(--red-light) !important;
        color: var(--red) !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    .shelf-item .shelf-cart-btn.active {
        background: var(--red) !important;
        color: #fff !important;
    }

    .shelf-actions {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-top: 6px !important;
        width: 100% !important;
    }

    .item-name {
        font-size: 0.78rem !important;
        margin-bottom: 4px !important;
        display: block !important;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
}

/* Brands Pill Styling on Mobile */
@media (max-width: 576px) {
    .brands-grid-inventory {
        justify-content: center !important;
        gap: 8px !important;
    }
    .brand-tag-inventory {
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
        border-width: 1px !important;
    }
}

/* =========================================================================
   ENHANCED RESPONSIVE — Mobile & Tablet Improvements
   ========================================================================= */

/* Testimonials: single column on small mobile */
@media (max-width: 480px) {
    .test-grid-exact {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .test-card-exact {
        padding: 20px !important;
    }
    .test-avatar {
        width: 42px !important;
        height: 42px !important;
        font-size: 0.85rem !important;
    }
}

/* Hero on small screens */
@media (max-width: 480px) {
    .hero-left {
        padding: 28px 16px 12px !important;
    }
    .hero-text-content h1 {
        font-size: 1.9rem !important;
        line-height: 1.15 !important;
    }
    .hero-desc {
        font-size: 0.9rem !important;
        margin-bottom: 18px !important;
    }
    .hero-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .hero-buttons a, .hero-buttons button {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .floating-features {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
        gap: 10px !important;
        padding: 12px 0 !important;
    }
    .feature-card {
        min-width: unset !important;
        padding: 12px !important;
        font-size: 0.78rem !important;
        border-radius: 10px !important;
    }
    .feature-card i {
        font-size: 1.3rem !important;
    }
}

/* Promo banner on mobile */
@media (max-width: 480px) {
    .promo-right {
        padding: 24px 16px !important;
    }
    .promo-right h2 {
        font-size: 3.5rem !important;
    }
    .promo-desc {
        font-size: 0.9rem !important;
        margin-bottom: 16px !important;
    }
}

/* Section titles on mobile */
@media (max-width: 480px) {
    .section-title-center {
        font-size: 1.45rem !important;
        margin-bottom: 28px !important;
    }
    .section-title-left {
        font-size: 1.4rem !important;
    }
    .section-padding {
        padding: 45px 0 !important;
    }
}

/* Why Choose Us — 2-col on tablet, 1-col on mobile */
@media (max-width: 480px) {
    .wcu-grid-exact {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .wcu-card-exact {
        padding: 20px 16px !important;
    }
}
@media (min-width: 481px) and (max-width: 768px) {
    .wcu-grid-exact {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}

/* Newsletter on mobile */
@media (max-width: 480px) {
    .newsletter-exact {
        padding: 28px 16px !important;
        border-radius: 20px 20px 0 0 !important;
    }
    .nl-left {
        gap: 12px !important;
    }
    .nl-icon {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.4rem !important;
    }
    .nl-text h3 {
        font-size: 1.15rem !important;
    }
    .nl-right {
        flex-direction: column !important;
        padding: 6px !important;
        gap: 8px !important;
        border-radius: 16px !important;
    }
    .nl-right input {
        padding: 12px 14px !important;
        border-radius: 12px !important;
        background: rgba(255,255,255,0.1) !important;
        width: 100% !important;
    }
    .nl-right .btn-orange {
        width: 100% !important;
        justify-content: center !important;
        border-radius: 12px !important;
    }
}

/* Footer on mobile */
@media (max-width: 480px) {
    .footer-grid-exact {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    .footer-col-exact.brand {
        grid-column: 1 / -1 !important;
    }
    .footer-col-exact.contact {
        grid-column: 1 / -1 !important;
    }
    .footer-bottom-exact {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
    }
    .footer-exact {
        padding: 40px 0 20px !important;
    }
}

/* Inventory title on mobile */
@media (max-width: 480px) {
    .inventory-page-title {
        padding: 40px 0 20px !important;
    }
    .inventory-page-title h1 {
        font-size: 1.6rem !important;
    }
    .section-title-new h2 {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
    }
}

/* Right sidebar notch hidden on mobile to avoid collision */
@media (max-width: 576px) {
    .right-notch-btn {
        top: auto !important;
        bottom: 72px !important;
        transform: none !important;
        padding: 10px 8px !important;
    }
}

/* Google review section on mobile */
@media (max-width: 576px) {
    .test-grid-exact {
        grid-template-columns: 1fr !important;
    }
}

/* Ensure images never overflow */
img {
    max-width: 100%;
}

/* Smooth tap targets for mobile */
@media (max-width: 768px) {
    button, a {
        -webkit-tap-highlight-color: transparent;
    }
    .btn-red, .btn-orange, .btn-green {
        padding: 11px 24px !important;
        font-size: 0.9rem !important;
    }
}

/* pk-detail-modal (product popup) mobile fix */
@media (max-width: 600px) {
    .pk-detail-box {
        padding: 16px !important;
        border-radius: 16px !important;
    }
    .pk-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .pk-detail-gallery {
        max-height: 260px !important;
    }
    .pk-detail-price-current {
        font-size: 1.5rem !important;
    }
}
