/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #333; line-height: 1.6; background: #fff; }
input, select, textarea { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
.product-name, .product-sale-price, .product-orig-price, .product-discount,
.pd-v2-price, .pd-v2-mrp, .pd-v2-title, .pd-v2-add-btn, .pd-v2-buy-btn,
.pd-v2-size-btn, .pd-v2-tab, .biz-v2-heading, .biz-stat-number, .biz-stat-title,
.sc-card-name, .sc-view-all-btn, .pd-v2-total-row strong,
.announcement-bar p, .hero-text-block h2, .sale-strip,
.cat-page-title, .shop-categories-title, .wf-section-title,
.dark-section-title, .tabbed-products-title, .reels-title,
.generic-page-title, .pd-v2-related-title,
button, .btn, input[type="submit"] { font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== Global Focus Indicators ===== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid #24a9bb;
    outline-offset: 2px;
}

.container { max-width: 1344px; margin: 0 auto; padding: 0 24px; }

/* ===== Announcement Bar ===== */
.announcement-bar {
    background: #24a9bb;
    padding: 8px 0;
    text-align: center;
}
.announcement-bar p {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 20px;
    margin: 0;
}
.announcement-bar a {
    color: #fff;
    transition: all 0.3s;
}
.announcement-bar a:hover {
    opacity: 0.9;
}
.announcement-code {
    color: #bd2b28;
    font-weight: 700;
}

/* ===== Header ===== */
.main-header {
    background: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-row {
    display: grid;
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
    gap: 16px;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.menu-toggle {
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
}
.menu-toggle:hover {
    background: rgba(0,0,0,0.06);
    color: #111;
}
.logo img {
    height: 45px;
    border-radius: 6px;
    padding: 4px 10px;
}

/* Search */
.header-search { display: grid; place-items: center; }
.search-form {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    max-width: 600px;
    background: #f0f2f5;
    border-radius: 6px;
    padding: 8px 16px;
    border: 1px solid #e0e3e8;
}
.search-icon { color: #555; font-size: 16px; }
.search-form { cursor: pointer; }
.search-form input { cursor: pointer; }
.search-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333;
    font-family: inherit;
}
.search-form input::placeholder { color: #999; }

/* ===== Search Overlay ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.search-overlay.active {
    display: flex;
}
.search-overlay-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-bottom: 2px solid #eef0f6;
    background: #fafafd;
}
.search-overlay-back {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    flex-shrink: 0;
}
.search-overlay-back:hover { background: #eef0f6; }
.search-overlay-input-wrap {
    flex: 1;
}
.search-overlay-input-wrap input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #dde0ea;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    background: #fff;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}
.search-overlay-input-wrap input:focus { border-color: #24a9bb; }
.search-overlay-input-wrap input::placeholder { color: #999; }
.search-overlay-submit {
    width: 44px;
    height: 44px;
    border: none;
    background: #24a9bb;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.search-overlay-submit:hover { background: #3a4d9e; }
.search-overlay-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 32px;
}
.search-overlay-default {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.search-overlay-default h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 16px;
}
.search-trending-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.search-trend-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1.5px solid #dde0ea;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #24a9bb;
    background: #fff;
    transition: all 0.2s;
}
.search-trend-tag i { font-size: 11px; color: #24a9bb; }
.search-trend-tag:hover {
    background: #24a9bb;
    color: #fff;
    border-color: #24a9bb;
}
.search-trend-tag:hover i { color: #fff; }
.search-popular-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.search-pop-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}
.search-pop-item:hover {
    border-color: #24a9bb;
    box-shadow: 0 2px 8px rgba(36, 169, 187, 0.08);
}
.search-pop-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    background: #f5f6fa;
}
.search-pop-info { flex: 1; min-width: 0; }
.search-pop-name {
    font-size: 13px;
    font-weight: 600;
    color: #0a1628;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-pop-price {
    font-size: 12px;
    color: #24a9bb;
    font-weight: 700;
    margin-top: 2px;
}
.search-pop-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eef0f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #24a9bb;
    font-size: 12px;
    transition: background 0.2s;
}
.search-pop-item:hover .search-pop-arrow {
    background: #24a9bb;
    color: #fff;
}
.search-show-more {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #24a9bb;
}
.search-show-more:hover { text-decoration: underline; }
.search-cat-groups {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.search-cat-group h5 {
    font-size: 14px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 10px;
}
.search-cat-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.search-cat-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.2s;
}
.search-cat-link:hover { transform: translateY(-2px); }
.search-cat-thumb {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
    object-position: top center;
    background: #f5f6fa;
    border: 1px solid #eef0f4;
    transition: border-color 0.2s;
}
.search-cat-link:hover .search-cat-thumb { border-color: #24a9bb; }
.search-cat-link span {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
}
.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 700px;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}
.search-result-item:hover {
    border-color: #24a9bb;
    box-shadow: 0 2px 10px rgba(36, 169, 187, 0.1);
}
.search-result-img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    background: #f5f6fa;
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-name {
    font-size: 14px;
    font-weight: 600;
    color: #0a1628;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-result-meta {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}
.search-result-meta strong { color: #24a9bb; }
.search-result-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #eef0f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #24a9bb;
    font-size: 13px;
    transition: background 0.2s;
}
.search-result-item:hover .search-result-arrow {
    background: #24a9bb;
    color: #fff;
}
.search-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}
.search-no-results i {
    font-size: 36px;
    color: #ddd;
    margin-bottom: 14px;
    display: block;
}
.search-no-results p { font-size: 15px; }
.search-results-cat-label {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0 2px;
}
@media (max-width: 768px) {
    .search-overlay-body { padding: 20px 16px; }
    .search-overlay-default { grid-template-columns: 1fr; gap: 28px; }
    .search-overlay-header { padding: 10px 12px; gap: 8px; }
    .search-overlay-input-wrap input { padding: 10px 14px; font-size: 14px; }
    .search-overlay-submit { width: 40px; height: 40px; }
    .search-overlay-back { width: 36px; height: 36px; }
    .search-cat-items { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .search-cat-thumb { width: 60px; height: 60px; border-radius: 10px; }
    .search-cat-link span { font-size: 10px; }
    .search-pop-img { width: 44px; height: 44px; }
    .search-pop-name { font-size: 12px; }
}
@media (max-width: 480px) {
    .search-overlay-body { padding: 16px 12px; }
    .search-overlay-default { gap: 22px; }
    .search-trend-tag { padding: 6px 12px; font-size: 12px; }
    .search-cat-items { grid-template-columns: repeat(3, 1fr); }
    .search-cat-thumb { width: 54px; height: 54px; }
}

/* Header right */
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-nav {
    display: flex;
    align-items: center;
}
.header-nav-link {
    position: relative;
    padding: 8px 12px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s;
}
.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: #24a9bb;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease-out;
}
.header-nav-link:hover {
    color: #24a9bb;
}
.header-nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}
.search-mobile-trigger {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
}
.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #444;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
}
.header-icon-btn:hover {
    background: rgba(0,0,0,0.06);
    color: #24a9bb;
}
.header-icon-btn svg { width: 20px; height: 20px; }
.cart-btn { position: relative; }
.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: #e74c3c;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    background: #fff;
    position: relative;
    border-top: 1px solid #e0e3e8;
}
.mobile-nav.active {
    display: block;
}
.mobile-nav-close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: none;
    border: none;
    color: #333;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}
.mobile-nav-list {
    display: flex;
    flex-direction: column;
}
.mobile-nav-list li a {
    display: block;
    padding: 14px 20px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s, color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mobile-nav-list li a:hover {
    background: rgba(36,169,187,0.08);
    color: #24a9bb;
}
.mobile-nav-divider { height: 1px; background: #e0e3e8; margin: 4px 0; }
.mobile-nav-heading { padding: 10px 20px 4px; font-size: 11px; color: #24a9bb; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.btn-inquire {
    background: #24a9bb !important;
    border-radius: 50px !important;
    color: #fff !important;
    border-radius: 4px;
    margin: 8px 15px;
    padding: 10px 25px !important;
    text-align: center;
}

/* ===== Category Nav Bar ===== */
.cat-nav {
    background: #24a9bb;
    overflow: hidden;
    border-top: none;
}
.cat-nav-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 68px;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 8px;
    height: 106px;
    max-width: 1344px;
    margin: 0 auto;
}
.cat-nav-scroll::-webkit-scrollbar { display: none; }
.cat-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 0;
    text-decoration: none;
    width: 68px;
    text-align: center;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.cat-nav-item:hover { opacity: 0.85; }
.cat-nav-ring {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
    padding: 2px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cat-nav-item:hover .cat-nav-ring {
    transform: scale(1.06);
    box-shadow: 0 0 12px rgba(255,255,255,0.4);
}
.cat-nav-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #24a9bb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}
.cat-nav-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 1px solid #24a9bb;
}
.cat-nav-label {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 68px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
@media (max-width: 1024px) {
    .cat-nav-scroll {
        justify-content: flex-start;
        gap: 12px;
        padding: 0 16px;
        height: 96px;
    }
    .cat-nav-ring { width: 60px; height: 60px; }
    .cat-nav-item { width: 64px; }
    .cat-nav-label { font-size: 11px; max-width: 64px; }
}
@media (max-width: 480px) {
    .cat-nav-scroll { gap: 10px; padding: 0 12px; height: 88px; }
    .cat-nav-ring { width: 52px; height: 52px; }
    .cat-nav-item { width: 56px; }
    .cat-nav-label { font-size: 10px; max-width: 56px; }
}

/* ===== Hero Reel Section ===== */
.hero-reel-section {
    background: #0a1628;
    padding: 0;
}
.hero-reel-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    background: #000;
    border-radius: 0 0 24px 24px;
}
.hero-reel-video {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-reel-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 177.78vh;
    height: 56.25vw;
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}
.hero-reel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}
.hero-reel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 32px 40px;
    text-align: center;
}
.hero-reel-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-heading {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -1.2px;
}
.hero-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0 0 32px;
    max-width: 440px;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #24a9bb;
    color: #0a1628;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 50px;
    transition: all 0.3s;
}
.hero-cta:hover { background: #1e95a5; transform: translateY(-2px); box-shadow: 0 4px 18px rgba(36,169,187,0.4); }
.hero-cta-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(10,22,40,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background 0.3s;
}
.hero-cta:hover .hero-cta-arrow {
    background: rgba(10,22,40,0.2);
}


/* ===== Order Notification Toast (fixed bottom-right) ===== */
.order-toast {
    display: none !important; /* Disabled — enable from admin: Arvind Settings > Order Notifications */
    position: fixed;
    bottom: 90px;
    right: 25px;
    z-index: 998;
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px 10px 10px;
    align-items: center;
    gap: 10px;
    max-width: 320px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.14), 0 1px 4px rgba(0,0,0,0.08);
    border: 1px solid #ebedf2;
    transition: opacity 0.4s ease, transform 0.4s ease;
    animation: toastSlideIn 0.5s ease-out;
}
.order-toast.fade-out { opacity: 0; transform: translateX(20px); }
.order-toast.fade-in { opacity: 1; transform: translateX(0); }
.order-toast-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1e2a4a;
    color: #fff;
    border: 2px solid #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: background 0.2s;
}
.order-toast-close:hover { background: #e74c3c; }
.order-toast-img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    border: 1px solid #eee;
}
.order-toast-body { flex: 1; min-width: 0; }
.order-toast-label {
    display: inline-block;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: #24a9bb;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    margin-bottom: 3px;
}
.order-toast-name { font-size: 13px; font-weight: 700; color: #111; margin: 0; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-toast-detail { font-size: 11px; color: #555; margin: 1px 0 0; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.order-toast-time { font-size: 10px; color: #999; margin-top: 2px; display: block; }
@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    left: 25px;
    z-index: 998;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0a1628;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #24a9bb; }

/* Hero Reel Responsive */
@media (max-width: 1200px) {
    .hero-heading { font-size: 48px; }
}
@media (max-width: 1024px) {
    .hero-heading { font-size: 40px; }
    .hero-reel-content { padding: 0 24px 32px; }
}
@media (max-width: 768px) {
    .hero-reel-section { padding: 8px; }
    .hero-reel-card { border-radius: 18px; aspect-ratio: 9 / 16; max-height: 80vh; }
    .hero-reel-content { padding: 0 20px 28px; }
    .hero-heading { font-size: 28px; letter-spacing: -0.8px; margin-bottom: 10px; }
    .hero-desc { font-size: 13px; margin-bottom: 16px; line-height: 1.5; max-width: 100%; }
    .hero-cta { font-size: 13px; padding: 12px 28px; }
    .hero-reel-tag { font-size: 10px; padding: 5px 14px; margin-bottom: 10px; }
    .hero-reel-video iframe { width: 300%; height: 100%; min-width: auto; min-height: auto; }
}
@media (max-width: 480px) {
    .hero-reel-section { padding: 6px; }
    .hero-reel-card { border-radius: 16px; max-height: 78vh; }
    .hero-reel-content { padding: 0 16px 22px; }
    .hero-heading { font-size: 22px; letter-spacing: -0.5px; line-height: 1.18; margin-bottom: 8px; }
    .hero-desc { font-size: 12px; line-height: 1.45; margin-bottom: 12px; }
    .hero-cta { font-size: 12px; padding: 10px 24px; }
    .hero-reel-tag { font-size: 9px; letter-spacing: 1.5px; padding: 4px 12px; margin-bottom: 8px; }
}
@media (max-width: 360px) {
    .hero-reel-card { border-radius: 14px; max-height: 75vh; }
    .hero-heading { font-size: 20px; }
    .hero-desc { font-size: 11px; }
    .hero-reel-content { padding: 0 14px 18px; }
}

/* ===== Sale Info Strip ===== */
.sale-strip {
    padding: 14px 0;
    background: #fff;
    border-bottom: 1px solid #ebedf2;
}
.sale-strip-inner {
    max-width: 1344px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}
.sale-card {
    border-radius: 12px;
    overflow: hidden;
}
.sale-card-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background: #0a1628;
    padding: 18px 24px;
    border-radius: 12px;
    transition: box-shadow 0.3s;
}
.sale-card-left:hover {
    box-shadow: 0 6px 24px rgba(10,22,40,0.2);
}
.sale-left-content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.sale-offer-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #24a9bb;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}
.sale-offer-tag strong {
    font-size: 16px;
    font-weight: 800;
}
.sale-offer-tag i {
    font-size: 12px;
}
.sale-countdown-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sale-timer {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    justify-content: center;
}
.timer-unit { text-align: center; width: 38px; }
.timer-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 6px;
    padding: 2px 0;
}
.timer-label {
    display: block;
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.timer-sep {
    font-size: 20px;
    font-weight: 700;
    color: #24a9bb;
    line-height: 30px;
}
.sale-shop-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s;
}
.sale-card-left:hover .sale-shop-link {
    color: #fff;
}
.sale-shop-link i {
    transition: transform 0.3s;
}
.sale-card-left:hover .sale-shop-link i {
    transform: translateX(3px);
}

/* Right card — Why Arvind */
.sale-card-right {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 16px;
    background: #f8f9fc;
    border: 1px solid #ebedf2;
}
.sale-why-title {
    font-size: 18px;
    font-weight: 800;
    color: #0a1628;
    white-space: nowrap;
    line-height: 1.2;
    flex-shrink: 0;
    position: relative;
    padding-left: 14px;
}
.sale-why-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    background: #24a9bb;
    border-radius: 2px;
}
.sale-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    text-align: center;
    flex: 1;
}
.sale-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
}
.sale-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #fff;
    color: #24a9bb;
    border: 1px solid #e0e4ee;
    transition: background 0.3s, border-color 0.3s;
}
.sale-badge-item:hover .sale-badge-icon {
    background: #24a9bb;
    color: #fff;
    border-color: #24a9bb;
}
.sale-badge-item p {
    font-size: 11px;
    color: #555;
    font-weight: 600;
    line-height: 1.25;
}
@media (max-width: 1024px) {
    .sale-strip-inner { grid-template-columns: 1fr; gap: 12px; }
    .sale-card-right { display: none; }
}
@media (max-width: 768px) {
    .sale-strip { padding: 10px 0; }
    .sale-strip-inner { padding: 0 12px; }
    .sale-card-left { padding: 14px 16px; gap: 14px; }
    .sale-left-content { gap: 14px; }
    .sale-offer-tag { padding: 6px 12px; font-size: 12px; }
    .sale-offer-tag strong { font-size: 14px; }
    .timer-value { font-size: 18px; line-height: 24px; }
    .timer-sep { font-size: 18px; line-height: 24px; }
    .timer-unit { width: 32px; }
    .sale-countdown-label { font-size: 10px; }
}
@media (max-width: 480px) {
    .sale-card-left { flex-direction: column; gap: 10px; align-items: center; text-align: center; }
    .sale-left-content { flex-direction: column; gap: 8px; align-items: center; }
    .sale-shop-link { font-size: 12px; }
}

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 32px; border-radius: 50px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; border: none; letter-spacing: 0.2px; }
.btn-primary { background: #24a9bb; color: #0a1628; }
.btn-primary:hover { background: #1e95a5; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(36,169,187,0.35); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; border-radius: 50px; }
.btn-outline:hover { background: #fff; color: #0a1628; }
.btn-dark { background: #0a1628; color: #fff; border-radius: 50px; }
.btn-dark:hover { background: #162a4a; }

/* ===== Sections ===== */
.section { padding: 60px 0; }
.section-gray { background: #f5f6f8; }
.section-title { text-align: center; margin-bottom: 45px; }
.section-title h2 { font-size: 34px; color: #0a1628; font-weight: 700; margin-bottom: 10px; }
.section-title p { font-size: 16px; color: #777; max-width: 600px; margin: 0 auto; }
.section-title h2::after { content: ''; display: block; width: 60px; height: 3px; background: #24a9bb; margin: 15px auto 0; }

/* ===== Features Marquee ===== */
.features-marquee {
    background: #f9fafb;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}
.features-marquee::before,
.features-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.features-marquee::before {
    left: 0;
    background: linear-gradient(to right, #f9fafb 0%, transparent 100%);
}
.features-marquee::after {
    right: 0;
    background: linear-gradient(to left, #f9fafb 0%, transparent 100%);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-content {
    display: flex;
    gap: 32px;
    padding-right: 32px;
}
.feature-chip + .feature-chip::before {
    content: '';
    display: block;
    width: 1px;
    height: 24px;
    background: #ddd;
    flex-shrink: 0;
    margin-right: 12px;
}
.feature-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    padding: 8px 0;
    white-space: nowrap;
    cursor: default;
    flex-shrink: 0;
}
.feature-chip-icon {
    font-size: 20px;
    color: #999;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}
.feature-chip-text h4 {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}
.feature-chip-text p {
    font-size: 11px;
    color: #999;
    line-height: 1.3;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}
@media (max-width: 768px) {
    .features-marquee { padding: 8px 0; }
    .feature-chip { gap: 8px; }
    .feature-chip-icon { font-size: 16px; }
    .feature-chip-text h4 { font-size: 12px; }
    .feature-chip-text p { font-size: 10px; }
}

/* ===== Shop By Categories ===== */
.shop-categories-section {
    background: #fff;
    padding: 16px 0 24px;
}
.shop-categories-header {
    padding: 24px 0 20px 0;
}
.shop-categories-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
    line-height: 1.2;
}
.shop-categories-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 4px;
    border-radius: 9999px;
    background: #24a9bb;
}
.shop-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px 16px;
}
.shop-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.25s;
    text-decoration: none;
}
.shop-cat-card:hover {
    transform: translateY(-4px);
}
.shop-cat-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    background: #f5eeeb;
    border: none;
    box-shadow: none;
}
.shop-cat-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.35s ease;
}
.shop-cat-card:hover .shop-cat-img img {
    transform: scale(1.06);
}
.shop-cat-name {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    padding: 10px 4px 0;
    line-height: 1.35;
}

/* ===== Wakefit-Style Section System ===== */
.wf-section { padding: 32px 0; }
.wf-section-gray { background: #f8f8f8; }
.wf-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 24px;
    line-height: 32px;
}
.wf-section-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 72px;
    height: 4px;
    border-radius: 9999px;
    background: #24a9bb;
}

/* ===== Bestsellers - Horizontal Scroll ===== */
.product-scroll-wrap { position: relative; }
.product-scroll {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 240px;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0;
}
.product-scroll::-webkit-scrollbar { display: none; }

/* Product Card */
.product-card {
    display: grid;
    grid-template-rows: auto auto;
    width: 240px;
    margin: 8px 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: rgba(0,0,0,0.1) 0px 4px 6px -1px, rgba(0,0,0,0.1) 0px 2px 4px -2px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
}
.product-card:hover {
    box-shadow: rgba(0,0,0,0.15) 0px 8px 16px -2px, rgba(0,0,0,0.1) 0px 4px 8px -4px;
}

/* Product Image */
.product-card .product-image {
    position: relative;
    aspect-ratio: 1080 / 1350;
    overflow: hidden;
    background: #f8f8f8;
}
.product-card .product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 6px 6px 0 0;
    transition: transform 0.3s;
}
.product-card:hover .product-image img { transform: scale(1.03); }

/* Best Seller Badge */
.best-seller-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.3);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 0 0 6px 0;
    z-index: 2;
}

/* Image bottom row: rating + wishlist */
.product-img-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 8px;
    z-index: 2;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    background: #f3f3f3;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
    color: #000;
}
.rating-score { font-weight: 700; }
.product-rating .fa-star { font-size: 10px; color: #05a585; }
.rating-sep { color: #ccc; margin: 0 1px; }
.rating-count { font-weight: 500; color: #666; }
.product-wishlist {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    font-size: 14px;
    color: #000;
    transition: opacity 0.2s;
}
.product-wishlist:hover { opacity: 1; }

/* Product Info */
.product-card .product-info {
    display: grid;
    gap: 12px;
    padding: 8px;
}
.product-name {
    font-size: 14px;
    font-weight: 500;
    color: rgb(55, 65, 81);
    line-height: 1.4;
    text-align: left;
    min-height: 36px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}
.product-price-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
}
.product-prices {
    text-align: left;
}
.product-sale-price {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 1.3;
}
.product-orig-price {
    font-size: 14px;
    font-weight: 500;
    color: #c2c2c2;
    text-decoration: line-through;
    margin-left: 8px;
}
.product-discount {
    font-size: 12px;
    font-weight: 500;
    color: #05a585;
    text-align: right;
    line-height: 20px;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: rgba(0,0,0,0.1) 0px 4px 6px -1px;
    transition: all 0.2s;
}
.scroll-arrow:hover { background: #f8f8f8; box-shadow: rgba(0,0,0,0.15) 0px 6px 12px -2px; }
.scroll-left { left: -18px; }
.scroll-right { right: -18px; }

/* ===== New Launches Promo Card ===== */
.promo-launch-section {
    padding: 44px 0;
}
.promo-launch-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}
.promo-launch-img {
    position: relative;
    overflow: hidden;
    min-height: 480px;
}
.promo-launch-slides {
    position: absolute;
    inset: 0;
}
.promo-launch-slide {
    position: absolute;
    inset: 0;
    display: none;
    overflow: hidden;
}
.promo-launch-slide.active {
    display: block;
    animation: promoFadeIn 0.8s ease;
}
@keyframes promoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.promo-launch-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.promo-launch-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 70px;
    background: #eef0f6;
    position: relative;
    overflow: hidden;
}
.promo-launch-content::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 280px;
    border: 40px solid rgba(36,169,187,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.promo-launch-content::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: 200px;
    height: 200px;
    border: 30px solid rgba(36,169,187,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.promo-launch-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #24a9bb;
    margin-bottom: 12px;
}
.promo-launch-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #0a1628;
    margin: 0 0 20px;
    letter-spacing: -0.5px;
}
.promo-launch-sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(0,0,0,0.6);
    margin: 0 0 28px;
}
.promo-launch-cat {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 32px;
    padding-left: 12px;
    border-left: 3px solid #24a9bb;
    transition: all 0.4s;
}
.promo-launch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    height: 46px;
    background: #0a1628;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border: 2px solid #0a1628;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    margin-bottom: 32px;
}
.promo-launch-btn:hover {
    background: transparent;
    color: #0a1628;
}
.promo-launch-dots {
    display: flex;
    gap: 6px;
}
.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s;
}
.promo-dot.active {
    background: #0a1628;
}

/* ===== Services Horizontal Scroll ===== */
.service-scroll-wrap { overflow: hidden; }
.service-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 0 16px;
}
.service-scroll::-webkit-scrollbar { display: none; }
.service-card {
    min-width: 220px;
    max-width: 220px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.service-card img { width: 100%; height: 160px; object-fit: cover; object-position: top center; }
.service-card .service-info { padding: 14px; }
.service-card .service-info h3 { font-size: 14px; font-weight: 600; color: #111; margin-bottom: 4px; }
.service-card .service-info p { font-size: 12px; color: #777; line-height: 1.5; }

/* ===== Dark Testimonials ===== */
.dark-testimonials {
    background: #0d0d0d;
    padding: 56px 0 64px;
}
.dark-section-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}
.dark-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3.5px;
    background: #24a9bb;
    border-radius: 2px;
}
.dark-testi-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 24px;
    align-items: stretch;
}
/* Featured (left) */
.dark-testi-featured {
    display: flex;
    flex-direction: column;
}
.dark-testi-thumb {
    position: relative;
    width: 100%;
    flex: 1;
    min-height: 340px;
    overflow: hidden;
    border-radius: 12px;
}
.dark-testi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
    transition: opacity 0.35s ease;
}
.dark-testi-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(30, 42, 74, 0.7);
    backdrop-filter: blur(10px);
    padding: 14px 18px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.08);
}
.dark-testi-badge-top {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}
.dark-testi-badge-name {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.dark-testi-badge-sub {
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    margin-top: 2px;
}
.dark-testi-badge-sub b {
    color: #a8b4d4;
}
.dark-testi-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}
.dark-testi-play i {
    color: #fff;
    font-size: 16px;
    margin-left: 3px;
}
.dark-testi-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255,255,255,0.22);
}
.dark-testi-name-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px 18px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    border-radius: 12px 0 12px 0;
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.dark-testi-oname {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
}
.dark-testi-orole {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
}
.dark-testi-author {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-top: 14px;
}
.dark-testi-quote {
    font-size: 13.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-top: 4px;
}
/* Side strip (right) — vertical scroll synced to featured height */
.dark-testi-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #2a2a2a transparent;
    padding-right: 4px;
}
.dark-testi-side::-webkit-scrollbar { width: 3px; }
.dark-testi-side::-webkit-scrollbar-track { background: transparent; }
.dark-testi-side::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 3px; }
.dark-testi-card {
    background: #161622;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    transition: outline 0.2s, background 0.2s;
    outline: 2px solid transparent;
    outline-offset: -2px;
    flex-shrink: 0;
}
.dark-testi-card:hover {
    outline-color: rgba(36, 169, 187, 0.4);
    background: #1c1c30;
}
.dark-testi-card.active {
    outline-color: #24a9bb;
    background: #1e1e34;
}
.dark-testi-card-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2.2 / 1;
}
.dark-testi-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dark-testi-card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(30, 42, 74, 0.6);
    backdrop-filter: blur(5px);
    padding: 4px 8px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.dark-testi-card-badge span {
    font-size: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}
.dark-testi-card-badge strong {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}
.dark-testi-play-sm {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
.dark-testi-play-sm i {
    color: #fff;
    font-size: 10px;
    margin-left: 2px;
}
.dark-testi-card-author {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    padding: 10px 12px 3px;
}
.dark-testi-card-quote {
    font-size: 11.5px;
    color: rgba(255,255,255,0.4);
    line-height: 1.55;
    padding: 2px 12px 12px;
}

/* ===== Tabbed Product Explorer ===== */
.tabbed-products {
    padding: 48px 0 52px;
    background: #fff;
}
.tabbed-products-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.tabbed-products-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3.5px;
    background: #24a9bb;
    border-radius: 2px;
}
.tabbed-products-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.tab-pill {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid #ccc;
    background: #fff;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
    white-space: nowrap;
}
.tab-pill:hover {
    border-color: #24a9bb;
    color: #24a9bb;
}
.tab-pill.active {
    background: #24a9bb;
    border-color: #24a9bb;
    color: #fff;
}
.tab-panel {
    display: none;
}
.tab-panel.active {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    animation: tabFadeIn 0.3s ease;
}
@keyframes tabFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.tab-product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    transition: transform 0.25s;
}
.tab-product-item:hover {
    transform: translateY(-4px);
}
.tab-product-item img {
    width: 100%;
    aspect-ratio: 1080 / 1350;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    display: block;
    background: #f5f5f5;
}
.tab-product-item span {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-align: center;
    line-height: 1.3;
}

/* ===== Shop by Profession Carousel ===== */
.profession-section {
    padding: 48px 0 52px;
    background: #f5f7fa;
}
.profession-scroll-wrap {
    position: relative;
}
.profession-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px;
}
.profession-track::-webkit-scrollbar { display: none; }
.profession-card {
    flex: 0 0 300px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
}
.profession-card:hover {
    transform: translateY(-4px);
}
.profession-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    background: #e8eaf0;
}
.profession-media img,
.profession-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.35s ease;
}
.profession-card:hover .profession-media img,
.profession-card:hover .profession-media video {
    transform: scale(1.04);
}
.profession-media video { cursor: pointer; }
.profession-label {
    display: block;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    padding: 12px 4px 0;
    line-height: 1.35;
}
.profession-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-70%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
}
.profession-arrow:hover {
    background: #24a9bb;
    color: #fff;
    border-color: #24a9bb;
}
.profession-arrow-left { left: -16px; }
.profession-arrow-right { right: -16px; }

@media (max-width: 1024px) {
    .profession-card { flex: 0 0 250px; }
    .profession-media { border-radius: 14px; }
    .profession-label { font-size: 14px; padding-top: 10px; }
    .profession-arrow-left { left: 4px; }
    .profession-arrow-right { right: 4px; }
}
@media (max-width: 768px) {
    .profession-section { padding: 32px 0 36px; }
    .profession-card { flex: 0 0 220px; }
    .profession-media { border-radius: 12px; }
    .profession-label { font-size: 13px; }
    .profession-track { gap: 14px; }
    .profession-arrow { width: 34px; height: 34px; font-size: 12px; }
}
@media (max-width: 480px) {
    .profession-section { padding: 24px 0 28px; }
    .profession-card { flex: 0 0 180px; }
    .profession-media { border-radius: 10px; aspect-ratio: 3 / 4; }
    .profession-label { font-size: 12px; padding-top: 8px; }
    .profession-track { gap: 10px; }
    .profession-arrow { display: none; }
}

/* ===== Video Showcase ===== */
.video-showcase {
    background: #f5f7fa;
    padding: 48px 0 52px;
}
.video-showcase-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 6px;
}
.video-showcase-sub {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-bottom: 28px;
}
.video-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.video-showcase-item {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
.video-showcase-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    cursor: pointer;
}
.video-showcase-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-showcase-embed .pv-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.video-showcase-embed .pv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 0, 0, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.2s, background 0.2s;
}
.video-showcase-embed .pv-play-btn i {
    color: #fff;
    font-size: 22px;
    margin-left: 3px;
}
.video-showcase-embed:hover .pv-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 0, 0, 1);
}
.video-showcase-caption {
    padding: 14px 16px;
    background: #111;
}
.video-showcase-caption h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}
.video-showcase-caption p {
    font-size: 13px;
    color: #aaa;
    line-height: 1.4;
    margin: 0;
}

/* ===== Video Reels Section ===== */
.reels-section {
    padding: 44px 0;
    background: #f4f6fa;
    overflow: hidden;
    border-top: 1px solid #e8eaf0;
    border-bottom: 1px solid #e8eaf0;
}
.reels-header { text-align: center; margin-bottom: 28px; }
.reels-title {
    font-size: 26px;
    font-weight: 700;
    color: #0a1628;
    margin-bottom: 6px;
    position: relative;
    display: inline-block;
}
.reels-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #24a9bb;
    margin: 10px auto 0;
    border-radius: 2px;
}
.reels-sub { font-size: 14px; color: #777; margin-top: 8px; }
.reels-scroll-wrap { position: relative; }
.reels-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 10px;
}
.reels-track::-webkit-scrollbar { display: none; }
.reel-card {
    flex: 0 0 200px;
    background: #fff;
    border: 1px solid #e4e7ee;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
.reel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.reel-media {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #111;
}
.reel-media video,
.reel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.reel-media { cursor: pointer; }
.reel-card.reel-loaded .reel-media { cursor: default; }
.reel-media iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.reel-media .reel-thumb { cursor: pointer; }
.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.4);
}
.reel-card:hover .reel-play-btn {
    background: rgba(36, 169, 187, 0.75);
    border-color: rgba(36, 169, 187, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}
.reel-card.playing .reel-play-btn { opacity: 0; pointer-events: none; }
.reel-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 6px;
}
.reel-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f2f8;
    flex-shrink: 0;
    border: 1.5px solid #24a9bb;
}
.reel-avatar img { width: 100%; height: 100%; object-fit: contain; }
.reel-text { overflow: hidden; }
.reel-text strong {
    display: block;
    font-size: 13px;
    color: #111;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.reel-text span {
    font-size: 11px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.reel-stats {
    display: flex;
    gap: 14px;
    padding: 4px 14px 12px;
    font-size: 12px;
    color: #777;
}
.reel-stats i { font-size: 11px; margin-right: 4px; }
.reel-stats span:first-child i { color: #e74c3c; }
.reel-stats span:last-child i { color: #24a9bb; }

/* Reel arrows */
.reels-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dde0ea;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.reels-arrow:hover { background: #24a9bb; color: #fff; border-color: #24a9bb; }
.reels-arrow-left { left: -6px; }
.reels-arrow-right { right: -6px; }

/* ===== Brands Logo Strip (below categories) ===== */
.brands-strip {
    background: #f9f9f9;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}
.brands-strip-label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 3;
    background: #f9f9f9;
    padding-right: 20px;
}
.brands-strip::before,
.brands-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}
.brands-strip::before { left: 0; background: linear-gradient(to right, #f9f9f9 40%, transparent); width: 200px; }
.brands-strip::after { right: 0; background: linear-gradient(to left, #f9f9f9, transparent); }
.brands-strip-track {
    display: flex;
    width: max-content;
    animation: brands-scroll 18s linear infinite;
}
@keyframes brands-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}
.brands-strip-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}
.brands-strip-logos img {
    max-height: 28px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.45;
    transition: all 0.3s;
    flex-shrink: 0;
}
.brands-strip-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== Category Page Banner ===== */
.cat-page-banner {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}
.cat-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(22,42,74,0.85) 40%, rgba(45,63,128,0.75) 100%);
    z-index: 1;
}
.cat-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(2px) saturate(1.2);
}
.cat-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 56px 0;
}
.cat-banner-text { flex: 1; }
.cat-banner-text .breadcrumb { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 16px; display: flex; align-items: center; flex-wrap: wrap; }
.cat-banner-text .breadcrumb a { color: #a8b4d4; transition: color 0.2s; }
.cat-banner-text .breadcrumb a:hover { color: #fff; }
.cat-banner-text .breadcrumb i { font-size: 8px; margin: 0 8px; color: rgba(255,255,255,0.3); }
.cat-banner-text h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.cat-banner-text p { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 1.65; margin-bottom: 24px; max-width: 520px; }
.cat-banner-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.cat-banner-stats span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}
.cat-banner-stats strong { color: #a8b4d4; font-size: 16px; }
.cat-banner-stats i { color: #a8b4d4; font-size: 14px; }
.cat-banner-img {
    flex: 0 0 280px;
    position: relative;
}
.cat-banner-img img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    object-fit: cover;
    object-position: top center;
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* ===== Category Page Layout ===== */
.cat-section { padding: 30px 0 60px; }
.cat-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }

/* Sidebar */
.cat-sidebar {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: 80px;
}
.cat-sidebar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; border-bottom: 1px solid #eee; padding-bottom: 12px; }
.cat-sidebar-header h3 { font-size: 16px; font-weight: 700; color: #1e2a4a; display: flex; align-items: center; gap: 8px; }
.cat-sidebar-header h3 i { color: #24a9bb; font-size: 14px; }
.cat-clear-btn { background: none; border: none; color: #24a9bb; font-size: 13px; font-weight: 600; cursor: pointer; }
.cat-clear-btn:hover { text-decoration: underline; }
.cat-sidebar-close {
    display: none;
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: #1e2a4a;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.cat-filter-group { border-bottom: 1px solid #f0f0f0; }
.cat-filter-group:last-child { border-bottom: none; }
.cat-filter-toggle {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}
.cat-filter-toggle i { font-size: 10px; color: #999; transition: transform 0.3s; }
.cat-filter-toggle.active i { transform: rotate(180deg); }
.cat-filter-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.cat-filter-body.active { max-height: 500px; padding-bottom: 12px; }

.cat-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 13px;
    color: #444;
    cursor: pointer;
}
.cat-checkbox input { accent-color: #24a9bb; width: 16px; height: 16px; cursor: pointer; }
.cat-checkbox span { margin-left: auto; color: #999; font-size: 12px; }

.cat-price-range { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.cat-price-range input[type="range"] {
    width: 100%;
    accent-color: #24a9bb;
    height: 4px;
}
.cat-price-labels { display: flex; justify-content: space-between; font-size: 13px; color: #24a9bb; font-weight: 600; }

.cat-size-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.cat-size-chip {
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
}
.cat-size-chip:hover { border-color: #24a9bb; color: #24a9bb; }
.cat-size-chip.active { background: #24a9bb; color: #fff; border-color: #24a9bb; }

.cat-color-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.cat-color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.cat-color-swatch:hover { transform: scale(1.15); }
.cat-color-swatch.active {
    border-color: #24a9bb;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #24a9bb;
}

/* Main product area */
.cat-toolbar { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.cat-active-filters { display: flex; flex-wrap: wrap; gap: 8px; flex: 1; }
.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: #eef0f8;
    border: 1px solid #d0d5e8;
    border-radius: 20px;
    font-size: 12px;
    color: #24a9bb;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.cat-chip:hover { background: #dde1f2; }
.cat-chip i { font-size: 10px; }

.cat-toolbar-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.cat-result-count { font-size: 14px; color: #666; font-weight: 500; white-space: nowrap; }
.cat-sort {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    color: #333;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
}

.cat-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}
.cat-products-grid .product-card,
.products-grid .product-card {
    width: auto;
    min-width: 0;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s, transform 0.3s;
}
.cat-products-grid .product-card:hover,
.products-grid .product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.cat-products-grid .product-image,
.products-grid .product-image { position: relative; overflow: hidden; aspect-ratio: 1080 / 1350; background: #f8f8f8; }
.cat-products-grid .product-image img,
.products-grid .product-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.3s; }
.cat-products-grid .product-card:hover .product-image img,
.products-grid .product-card:hover .product-image img { transform: scale(1.04); }
.cat-products-grid .product-info,
.products-grid .product-info { padding: 14px; }
.cat-products-grid .product-info h3,
.products-grid .product-info h3 { font-size: 14px; font-weight: 600; color: #111; margin-bottom: 6px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cat-products-grid .price,
.products-grid .price { font-size: 16px; font-weight: 700; color: #111; }
.cat-products-grid .price .original,
.products-grid .price .original { font-size: 13px; color: #999; text-decoration: line-through; font-weight: 400; margin-left: 4px; }
.cat-products-grid .sale-badge,
.products-grid .sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    z-index: 2;
}
.cat-products-grid .product-rating,
.products-grid .product-rating {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}
.cat-products-grid .product-rating i,
.products-grid .product-rating i { color: #f1c40f; font-size: 10px; }
.view-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 20px;
    background: #24a9bb;
    color: #0a1628;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.2s;
}
.product-card:hover .view-product-btn { background: #1e95a5; }

/* ===== Spec Grid (Browse All Categories) ===== */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.spec-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    transition: transform 0.3s;
}
.spec-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.spec-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}
.spec-overlay h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.spec-card:hover {
    transform: scale(1.03);
}

.cat-no-results { text-align: center; padding: 60px 20px; color: #888; }
.cat-no-results i { font-size: 48px; color: #ddd; margin-bottom: 16px; display: block; }
.cat-no-results h3 { font-size: 20px; color: #555; margin-bottom: 8px; }
.cat-no-results a { color: #24a9bb; font-weight: 600; }

/* Mobile filter button & overlay */
.cat-filter-mobile-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e2a4a;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    gap: 8px;
}
.cat-filter-mobile-btn i { color: #a8b4d4; }
.cat-filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}
.cat-filter-overlay.active { display: block; }

/* Product detail color chips */
.pd-color-section { margin-top: 16px; }
.pd-color-section h3 { font-size: 14px; font-weight: 600; color: #333; margin-bottom: 10px; }
.pd-color-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.pd-color-chip {
    padding: 5px 14px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

/* ===== Products Grid (legacy listing) ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

/* ===== Product Detail Page ===== */
.pd-breadcrumb {
    background: #f9fafb;
    padding: 12px 0;
    font-size: 13px;
    color: #888;
    border-bottom: 1px solid #eee;
}
.pd-breadcrumb a { color: #24a9bb; }
.pd-breadcrumb i { font-size: 8px; margin: 0 8px; color: #ccc; }
.pd-section { padding: 32px 0 60px; }
.pd-layout {
    display: grid;
    grid-template-columns: 400px 1fr 300px;
    gap: 32px;
    align-items: start;
}
/* Gallery */
.pd-gallery { position: sticky; top: 80px; }
.pd-main-img {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 1080 / 1350;
}
.pd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s;
}
.pd-main-img:hover img { transform: scale(1.05); }
.pd-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.pd-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    object-position: top center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background: #f5f5f5;
}
.pd-thumb:hover { border-color: #24a9bb; }
.pd-thumb.active { border-color: #24a9bb; }
/* Info */
.pd-brand {
    font-size: 14px;
    color: #24a9bb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    border-left: 3px solid #24a9bb;
    padding-left: 10px;
}
.pd-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    margin-bottom: 10px;
}
.pd-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: #777;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.pd-meta span {
    background: #f5f6f8;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}
.pd-rating {
    color: #f59e0b;
    font-weight: 600;
}
.pd-rating i { font-size: 12px; }
.pd-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding: 16px 0 20px;
    border-bottom: 1px solid #eee;
}
.pd-price {
    font-size: 28px;
    font-weight: 800;
    color: #1e2a4a;
}
.pd-mrp {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}
.pd-discount {
    font-size: 14px;
    color: #16a34a;
    font-weight: 600;
}
.pd-tax {
    font-size: 12px;
    color: #aaa;
}
.pd-size-section { margin-bottom: 24px; }
.pd-size-section h3 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
.pd-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pd-size-btn {
    min-width: 52px;
    width: auto;
    height: 44px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1.5px solid #ddd;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.pd-size-btn:hover { border-color: #24a9bb; color: #24a9bb; }
.pd-size-btn.active {
    background: #24a9bb;
    border-color: #24a9bb;
    color: #fff;
    box-shadow: 0 2px 8px rgba(36,169,187,0.3);
}
/* Tabs */
.pd-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 16px;
}
.pd-tab {
    padding: 10px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
    font-family: inherit;
}
.pd-tab:hover { color: #333; }
.pd-tab.active {
    color: #1e2a4a;
    border-bottom-color: #24a9bb;
}
.pd-tab-content { display: none; }
.pd-tab-content.active { display: block; }
.pd-tab-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}
.pd-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pd-features li {
    font-size: 13px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-features li i { color: #16a34a; font-size: 12px; }
.pd-review {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.pd-review:last-child { border-bottom: none; }
.pd-review-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.pd-review-head strong { font-size: 14px; color: #222; }
.pd-review-stars { color: #f59e0b; font-size: 12px; }
.pd-review p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }
/* Sidebar */
.pd-sidebar { position: sticky; top: 80px; }
.pd-offer-badge {
    background: linear-gradient(135deg, #1e2a4a 0%, #1e95a5 100%);
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    color: #fff;
}
.pd-offer-left { display: flex; flex-direction: column; }
.pd-offer-pct { font-size: 18px; font-weight: 800; color: #a8b4d4; }
.pd-offer-cond { font-size: 11px; opacity: 0.8; }
.pd-offer-right { font-size: 12px; text-align: right; }
.pd-offer-right b { display: block; font-size: 14px; }
.pd-order-box {
    background: #fff;
    border: 1px solid #e8eaf0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.pd-order-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    border-bottom: 2px solid #24a9bb;
    padding-bottom: 12px;
}
.pd-order-selected {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 14px;
}
.pd-order-selected img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-position: top center;
    object-fit: cover;
}
.pd-order-label {
    font-size: 11px;
    color: #999;
    display: block;
}
.pd-order-selected strong { font-size: 13px; color: #222; }
.pd-order-qty {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}
.pd-qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1.5px solid #ddd;
    background: #f9fafb;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    font-family: inherit;
    color: #333;
}
.pd-qty-btn:hover { background: #eee; border-color: #24a9bb; }
#pdQtyInput {
    width: 48px;
    height: 36px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    background: transparent;
    outline: none;
    color: #111;
}
.pd-stock {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}
.pd-stock b { color: #555; }
.pd-order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 14px;
}
.pd-order-total span { font-size: 14px; color: #777; }
.pd-order-total strong { font-size: 22px; color: #111; }
.pd-add-btn {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    background: #24a9bb;
    color: #0a1628;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.pd-add-btn:hover { background: #1e95a5; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(36,169,187,0.3); }
.pd-whatsapp-btn {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    background: #25d366;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 10px;
}
.pd-whatsapp-btn:hover { background: #1fa855; }

/* ===== Arvind for Business Banner ===== */
.biz-banner {
    padding: 0;
}
.biz-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #eef0f8 0%, #e4e8f4 100%);
    border-radius: 18px;
    padding: 44px 48px;
    gap: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}
.biz-banner-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(36, 169, 187, 0.06);
}
.biz-banner-inner::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 120px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(36, 169, 187, 0.04);
}
.biz-banner-text {
    flex: 1;
    min-width: 0;
}
.biz-banner-cats {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.biz-banner-cats span {
    font-size: 12px;
    font-weight: 600;
    color: #5a6a8a;
    letter-spacing: 0.5px;
}
.biz-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #aab4cc;
    display: inline-block;
}
.biz-banner-title {
    font-size: 32px;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 8px;
    line-height: 1.2;
}
.biz-banner-desc {
    font-size: 16px;
    color: #5a6a8a;
    margin: 0 0 22px;
    line-height: 1.5;
}
.biz-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #24a9bb;
    color: #0a1628;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.biz-banner-btn:hover {
    background: #1e95a5;
    transform: translateY(-1px);
}
.biz-banner-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.biz-banner-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.biz-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 18px 20px;
    min-width: 110px;
    border: 1px solid rgba(36, 169, 187, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}
.biz-icon-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(36, 169, 187, 0.1);
}
.biz-icon-item i {
    font-size: 22px;
    color: #24a9bb;
}
.biz-icon-item span {
    font-size: 11px;
    font-weight: 600;
    color: #3a4565;
    text-align: center;
}

/* ===== SEO Footer Links ===== */
.seo-footer {
    background: #081425;
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.seo-footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}
.seo-footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.seo-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.seo-footer-links a,
.seo-footer-links span {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.4;
    padding: 3px 0;
    transition: color 0.2s;
    display: inline;
}
.seo-footer-links a:hover {
    color: #24a9bb;
}
.seo-footer-links a::after {
    content: ' |';
    color: rgba(255,255,255,0.2);
    margin: 0 4px 0 2px;
}
.seo-footer-links a:last-child::after,
.seo-footer-links span:last-child::after {
    display: none;
}
.seo-footer-links span::after {
    content: ' |';
    color: rgba(255,255,255,0.2);
    margin: 0 4px 0 2px;
}
.seo-footer-col .seo-footer-links {
    flex-direction: row;
    flex-wrap: wrap;
}
.seo-footer-badges {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.pay-badge {
    width: 40px;
    height: 28px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
}
.seo-footer-trust {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
}
.seo-footer-trust span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}
.seo-footer-trust i {
    color: #24a9bb;
    font-size: 13px;
}

/* ===== About Page Unique Grid ===== */
.unique-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.unique-card {
    background: #f5f6f8;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #24a9bb;
}
.unique-card h3 {
    color: #0a1628;
    margin-bottom: 10px;
    font-size: 18px;
}
.unique-card p {
    color: #555;
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
}

/* ===== Contact Form Title ===== */
.contact-form h3 {
    margin-bottom: 20px;
    color: #0a1628;
    font-size: 22px;
}

/* ===== FAQ Accordion ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: #0a1628;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-question:hover {
    color: #24a9bb;
}
.faq-question i {
    font-size: 12px;
    transition: transform 0.3s;
    color: #999;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #24a9bb;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 18px;
}

/* ===== Generic / Policy Pages ===== */
.generic-page {
    padding: 32px 0 60px;
}
.generic-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin: 0 0 24px;
    line-height: 1.3;
}
.policy-content {
    max-width: 800px;
}
.policy-content h3 {
    color: #0a1628;
    font-size: 18px;
    font-weight: 700;
    margin: 28px 0 12px;
    line-height: 1.3;
}
.policy-content h3:first-child {
    margin-top: 0;
}
.policy-content p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 16px;
}
.policy-content ul {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 16px;
    padding-left: 20px;
    list-style: disc;
}
.policy-content ul li {
    margin-bottom: 6px;
}
.policy-content .policy-updated {
    margin-top: 32px;
    color: #999;
    font-size: 13px;
}

/* ===== SEO Content Section ===== */
.seo-content {
    padding: 52px 0;
    background: #f8f9fb;
    border-top: 1px solid #eaedf2;
}
.seo-content-inner {
    max-width: 960px;
}
.seo-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: #0a1628;
    margin: 28px 0 10px;
    line-height: 1.3;
}
.seo-content h2:first-child {
    margin-top: 0;
}
.seo-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin: 0;
    text-align: justify;
}
.seo-content a {
    color: #24a9bb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.seo-content a:hover {
    color: #3a4d9e;
    text-decoration: underline;
}

/* ===== Bulk Order + FAQ Section ===== */
.bulk-faq-section {
    padding: 52px 0;
    background: #eef2f0;
}
.bulk-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

/* Bulk Order Card */
.bulk-order-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid #e2e5ea;
}
.bulk-order-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #24a9bb;
    margin-bottom: 10px;
}
.bulk-order-title {
    font-size: 26px;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 8px;
    line-height: 1.2;
}
.bulk-order-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin: 0 0 24px;
}
.bulk-order-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bulk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.bulk-order-form input,
.bulk-order-form select,
.bulk-order-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
    box-sizing: border-box;
}
.bulk-order-form input:focus,
.bulk-order-form select:focus,
.bulk-order-form textarea:focus {
    border-color: #24a9bb;
    background: #fff;
}
.bulk-order-form input::placeholder,
.bulk-order-form textarea::placeholder { color: #aaa; }
.bulk-order-form select { color: #aaa; }
.bulk-order-form select:valid { color: #333; }
.bulk-order-form textarea { resize: vertical; min-height: 70px; }
.bulk-order-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    background: #0a1628;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #0a1628;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}
.bulk-order-submit:hover {
    background: transparent;
    color: #0a1628;
}
.bulk-order-submit i { font-size: 12px; transition: transform 0.3s; }
.bulk-order-submit:hover i { transform: translateX(3px); }

/* FAQ Card */
.bulk-faq-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    border: 1px solid #e2e5ea;
}
.bulk-faq-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #24a9bb;
    margin-bottom: 10px;
}
.bulk-faq-title {
    font-size: 26px;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 24px;
    line-height: 1.2;
}
.bulk-faq-list {
    display: flex;
    flex-direction: column;
}
.bulk-faq-item {
    border-bottom: 1px solid #eee;
}
.bulk-faq-item:last-child { border-bottom: none; }
.bulk-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    font-family: inherit;
    transition: color 0.3s;
}
.bulk-faq-q:hover { color: #24a9bb; }
.bulk-faq-toggle {
    font-size: 20px;
    font-weight: 300;
    color: #999;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
}
.bulk-faq-item.active .bulk-faq-toggle {
    background: #0a1628;
    color: #fff;
    border-color: #0a1628;
    transform: rotate(45deg);
}
.bulk-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.bulk-faq-item.active .bulk-faq-a {
    max-height: 200px;
    padding-bottom: 14px;
}
.bulk-faq-a p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ===== Contact Page ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form .form-group, .inquiry-form .form-group { margin-bottom: 18px; }
.contact-form label, .inquiry-form label { display: block; margin-bottom: 6px; font-weight: 500; color: #333; font-size: 14px; }
.contact-form input, .contact-form textarea, .contact-form select,
.inquiry-form input, .inquiry-form textarea, .inquiry-form select { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; transition: border-color 0.3s; font-family: inherit; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus,
.inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus { border-color: #24a9bb; outline: none; }
.contact-form textarea, .inquiry-form textarea { resize: vertical; min-height: 120px; }
.contact-map { border-radius: 10px; overflow: hidden; min-height: 400px; }
.contact-info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 40px; }
.info-card { text-align: center; padding: 30px 20px; background: #f5f6f8; border-radius: 10px; transition: transform 0.3s; }
.info-card:hover { transform: translateY(-5px); }
.info-card i { font-size: 30px; color: #24a9bb; margin-bottom: 12px; }
.info-card h4 { margin-bottom: 8px; color: #0a1628; }
.info-card p { font-size: 14px; color: #555; line-height: 1.6; }

/* ===== Inquiry Form ===== */
.inquiry-form { max-width: 700px; margin: 0 auto; background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.inquiry-form h3 { text-align: center; margin-bottom: 25px; color: #0a1628; }
.radio-group { display: flex; gap: 15px; flex-wrap: wrap; }
.radio-group label { display: flex; align-items: center; gap: 6px; font-weight: 400; cursor: pointer; }

/* ===== About Page ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; text-align: center; }
.stat-item { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.stat-item h3 { font-size: 36px; color: #24a9bb; font-weight: 800; }
.stat-item p { font-size: 14px; color: #555; margin-top: 5px; }

/* ===== About Page Layout ===== */
.about-section { padding: 60px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-text h2 {
    font-size: 32px;
    color: #1e2a4a;
    margin-bottom: 16px;
}
.about-text h2 span {
    color: #24a9bb;
}
.about-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 12px;
}
.about-image img {
    border-radius: 12px;
    width: 100%;
}

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card { text-align: center; padding: 25px 15px; background: #fff; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.process-card .step-icon { width: 60px; height: 60px; background: #24a9bb; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; margin: 0 auto 12px; }
.process-card h4 { font-size: 15px; color: #0a1628; margin-bottom: 8px; }
.process-card p { font-size: 13px; color: #666; line-height: 1.6; }

/* ===== FAQ Page ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 8px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); overflow: hidden; }
.faq-item .faq-question { padding: 18px 20px; font-weight: 600; color: #0a1628; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.faq-item .faq-question:hover { background: #f5f6f8; }
.faq-item .faq-answer { padding: 0 20px 18px; color: #555; font-size: 14px; line-height: 1.8; display: none; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question { background: #f5f6f8; color: #24a9bb; }

/* ===== Cart Page ===== */
.cart-page-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item-card { display: flex; flex-direction: row; align-items: center; background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 16px; gap: 16px; transition: box-shadow 0.2s; }
.cart-item-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.cart-item-img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; object-position: top center; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: 15px; color: #0a1628; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-size { font-size: 13px; color: #888; margin-bottom: 2px; }
.cart-item-unit-price { font-size: 13px; color: #666; }
.cart-item-qty { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.qty-btn { width: 32px; height: 32px; border: 1px solid #d0d5dd; background: #f9fafb; color: #1e2a4a; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.qty-btn:hover { background: #1e2a4a; color: #fff; border-color: #1e2a4a; }
.qty-minus { border-radius: 6px 0 0 6px; }
.qty-plus { border-radius: 0 6px 6px 0; }
.qty-input { width: 44px; height: 32px; text-align: center; border: 1px solid #d0d5dd; border-left: none; border-right: none; font-size: 14px; font-weight: 600; color: #0a1628; outline: none; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-item-price { font-weight: 700; font-size: 16px; color: #1e2a4a; min-width: 90px; text-align: right; flex-shrink: 0; }
.cart-item-remove { width: 36px; height: 36px; border: none; background: transparent; color: #ccc; font-size: 15px; cursor: pointer; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.cart-item-remove:hover { background: #fef2f2; color: #ef4444; }
.cart-summary-wrap { }
.cart-summary-box { background: #f9fafb; border-radius: 12px; padding: 24px; position: sticky; top: 80px; border: 1px solid #eee; }
.cart-summary-title { font-size: 18px; font-weight: 700; color: #0a1628; margin-bottom: 20px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 15px; color: #444; margin-bottom: 12px; }
.cart-summary-row .cart-free-ship { color: #25d366; font-weight: 600; }
.cart-summary-divider { border-top: 2px solid #e0e0e0; margin: 12px 0 14px; }
.cart-summary-total { font-size: 20px; font-weight: 700; color: #0a1628; margin-bottom: 20px; }
.cart-checkout-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 48px; background: #24a9bb; color: #0a1628; border: none; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.2s; letter-spacing: 0.3px; }
.cart-checkout-btn:hover { background: #1e95a5; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(36,169,187,0.3); }
.cart-whatsapp-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; height: 48px; background: #25d366; color: #fff; border: none; border-radius: 50px; font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 10px; transition: background 0.2s; }
.cart-whatsapp-btn:hover { background: #1da851; }
.cart-summary-note { text-align: center; font-size: 12px; color: #888; margin-top: 16px; }
.cart-summary-note i { margin-right: 4px; color: #25d366; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty i.fa-shopping-cart { font-size: 48px; color: #d0d5dd; margin-bottom: 20px; display: block; }
.cart-empty h2 { font-size: 24px; color: #0a1628; margin-bottom: 10px; font-weight: 700; }
.cart-empty p { font-size: 15px; color: #666; margin-bottom: 24px; max-width: 400px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.cart-empty .btn { display: inline-block; padding: 14px 32px; border-radius: 10px; font-weight: 600; font-size: 15px; }

/* ===== Page Header ===== */
.page-header { background: linear-gradient(135deg, #0a1628 0%, #162a4a 100%); padding: 45px 0; text-align: center; }
.page-header h1 { color: #fff; font-size: 34px; font-weight: 700; }
.page-header .breadcrumb { color: #aaa; margin-top: 8px; font-size: 14px; }
.page-header .breadcrumb a { color: #a8b4d4; }

/* ===== WhatsApp Float ===== */
.whatsapp-float { position: fixed; bottom: 25px; right: 25px; z-index: 999; width: 55px; height: 55px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ===== Mobile Bottom Nav Bar ===== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid #e8eaf0;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    padding: 6px 0 env(safe-area-inset-bottom, 6px);
}
.mobile-bottom-nav .mob-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 0;
    color: #777;
    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.mobile-bottom-nav .mob-nav-item i {
    font-size: 18px;
    line-height: 1;
}
.mobile-bottom-nav .mob-nav-item.active {
    color: #24a9bb;
}
.mobile-bottom-nav .mob-nav-item.active i {
    color: #24a9bb;
}
.mobile-bottom-nav .mob-nav-whatsapp i {
    color: #25d366;
    font-size: 20px;
}
.mobile-bottom-nav .mob-nav-whatsapp span {
    color: #25d366;
}

/* ===== Inquiry Modal ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 9999; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal-box { background: #fff; border-radius: 12px; padding: 35px; max-width: 450px; width: 90%; text-align: center; position: relative; }
.modal-box h3 { color: #0a1628; margin-bottom: 8px; font-size: 20px; }
.modal-box p { color: #777; margin-bottom: 25px; font-size: 14px; }
.modal-box .modal-close { position: absolute; top: 12px; right: 15px; font-size: 22px; cursor: pointer; color: #999; background: none; border: none; }
.modal-btns { display: flex; gap: 15px; justify-content: center; }
.modal-btns a { flex: 1; padding: 14px; border-radius: 8px; font-weight: 600; font-size: 14px; text-align: center; transition: all 0.3s; }
.modal-btns .btn-bulk { background: #0a1628; color: #fff; border-radius: 50px; }
.modal-btns .btn-bulk:hover { background: #162a4a; }
.modal-btns .btn-regular { background: #24a9bb; color: #0a1628; border-radius: 50px; }
.modal-btns .btn-regular:hover { background: #1e95a5; }

/* ===== Footer ===== */
.main-footer { background: linear-gradient(180deg, #0b1a35 0%, #0a1628 100%); color: #ccd3e0; padding: 56px 0 0; border-top: 3px solid #1a6fb5; }

/* Footer Top: Brand + Newsletter */
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand > p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.footer-contact-lines { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-lines span { font-size: 13px; color: rgba(255,255,255,0.55); display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-lines i { color: rgba(255,255,255,0.4); font-size: 12px; margin-top: 3px; width: 14px; text-align: center; flex-shrink: 0; }
.footer-contact-lines a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-contact-lines a:hover { color: #24a9bb; }

/* Newsletter */
.footer-newsletter {}
.footer-newsletter h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
}
.footer-newsletter > p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 16px; }
.footer-newsletter-form {
    display: flex;
    margin-bottom: 20px;
}
.footer-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 14px;
    color: #fff;
    background: rgba(255,255,255,0.08);
    outline: none;
    transition: border-color 0.3s;
}
.footer-newsletter-form input:focus { border-color: #24a9bb; }
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter-form button {
    padding: 0 18px;
    background: #24a9bb;
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}
.footer-newsletter-form button:hover { background: #1e95a5; }

.social-links { display: flex; gap: 8px; }
.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s;
}
.social-links a:hover { background: #24a9bb; color: #fff; border-color: #24a9bb; }

/* Footer Links Grid */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 36px 0;
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    display: inline-block;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.3s; text-decoration: none; }
.footer-col ul li a:hover { color: #24a9bb; }

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .header-nav { display: none; }
    .shop-categories-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px 12px; }
    .shop-cat-img { border-radius: 16px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-links { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .tab-panel.active { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .tabbed-products { padding: 36px 0 40px; }
    .dark-testi-grid { grid-template-columns: 1.5fr 1fr; gap: 18px; }
    .dark-testi-badge { padding: 10px 14px; }
    .dark-testi-badge-name { font-size: 22px; }
    .dark-testi-card-thumb { aspect-ratio: 2 / 1; }
    .dark-testi-card-author { font-size: 12px; padding: 8px 10px 2px; }
    .dark-testi-card-quote { font-size: 11px; padding: 2px 10px 10px; }
    .video-showcase { padding: 36px 0 40px; }
    .pd-layout { grid-template-columns: 350px 1fr 280px; gap: 24px; }
    .pd-title { font-size: 22px; }
    .pd-price { font-size: 24px; }
    .video-showcase-title { font-size: 22px; }
    .video-showcase-sub { font-size: 13px; margin-bottom: 20px; }
    .promo-launch-content { padding: 40px 36px; }
    .promo-launch-title { font-size: 34px; }
    .promo-launch-sub { font-size: 14px; }
    .promo-launch-img { min-height: 400px; }
    .scroll-arrow { display: none; }
    .product-scroll { gap: 8px; }
    .product-card { width: 220px; }
    .product-scroll { grid-auto-columns: 220px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-layout { grid-template-columns: 240px 1fr; gap: 20px; }
    .cat-banner-text h1 { font-size: 34px; }
    .cat-banner-content { padding: 44px 0; gap: 32px; }
    .cat-banner-img { flex: 0 0 220px; }
    .cat-banner-stats span { padding: 6px 12px; font-size: 13px; }
    .cat-products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
    .reels-section { padding: 32px 0; }
    .reels-title { font-size: 22px; }
    .reel-card { flex: 0 0 180px; }
    .reels-arrow { display: none; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .header-nav { display: none; }
    .header-search { display: none; }
    .search-mobile-trigger { display: inline-flex; }
    .header-row { grid-template-columns: 1fr max-content; gap: 8px; }
    .logo img { height: 36px; }
    .header-icon-btn { width: 34px; height: 34px; font-size: 14px; }
    .header-icon-btn svg { width: 18px; height: 18px; }
    .cart-badge { width: 16px; height: 16px; font-size: 9px; top: 1px; right: 1px; }
    .tabbed-products { padding: 28px 0 32px; }
    .tabbed-products-title { font-size: 20px; margin-bottom: 14px; padding-bottom: 10px; }
    .tabbed-products-title::after { width: 36px; height: 3px; }
    .tabbed-products-tabs { gap: 8px; margin-bottom: 16px; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; padding-bottom: 2px; }
    .tabbed-products-tabs::-webkit-scrollbar { display: none; }
    .tab-pill { padding: 6px 16px; font-size: 13px; flex-shrink: 0; }
    .tab-panel.active { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .tab-product-item span { font-size: 12px; }
    .tab-product-item img { border-radius: 8px; }
    .video-showcase { padding: 28px 0 32px; }
    .video-showcase-title { font-size: 20px; margin-bottom: 4px; }
    .video-showcase-sub { font-size: 12px; margin-bottom: 16px; }
    .video-showcase-grid { grid-template-columns: 1fr; gap: 14px; }
    .video-showcase-item { border-radius: 10px; }
    .video-showcase-embed .pv-play-btn { width: 50px; height: 50px; }
    .video-showcase-embed .pv-play-btn i { font-size: 18px; }
    .video-showcase-caption { padding: 10px 12px; }
    .video-showcase-caption h4 { font-size: 14px; }
    .video-showcase-caption p { font-size: 12px; }
    .order-toast { max-width: 300px; right: 20px; bottom: 86px; padding: 8px 12px 8px 8px; }
    .order-toast-img { width: 44px; height: 44px; }
    .pd-layout { grid-template-columns: 1fr; gap: 20px; }
    .pd-gallery { position: static; }
    .pd-sidebar { position: static; }
    .pd-main-img { aspect-ratio: 1080 / 1350; }
    .pd-title { font-size: 20px; }
    .pd-price { font-size: 24px; }
    .pd-section { padding: 20px 0 40px; }
    .pd-offer-badge { border-radius: 8px; }
    .pd-order-box { border-radius: 10px; }
    .cat-layout { grid-template-columns: 1fr; }
    .cat-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100%;
        z-index: 1001;
        border-radius: 0;
        overflow-y: auto;
        transition: left 0.3s ease;
    }
    .cat-sidebar.open { left: 0; }
    .cat-sidebar-close { display: block; }
    .cat-filter-mobile-btn { display: flex; align-items: center; }
    .cat-page-banner { min-height: auto; }
    .cat-page-banner::before { background: linear-gradient(180deg, rgba(10,22,40,0.88) 0%, rgba(22,42,74,0.82) 50%, rgba(10,22,40,0.92) 100%); }
    .cat-banner-bg { object-position: top center; filter: blur(0px) saturate(1.2) brightness(0.7); }
    .cat-banner-content { flex-direction: row; align-items: center; gap: 20px; padding: 28px 0; }
    .cat-banner-img { flex: 0 0 90px; order: -1; }
    .cat-banner-img img { aspect-ratio: 1; border-radius: 14px; border-width: 2px; box-shadow: 0 8px 24px rgba(0,0,0,0.4); }
    .cat-banner-text { text-align: left; }
    .cat-banner-text .breadcrumb { justify-content: flex-start; margin-bottom: 8px; font-size: 11px; }
    .cat-banner-text h1 { font-size: 24px; margin-bottom: 6px; }
    .cat-banner-text p { max-width: 100%; font-size: 13px; margin-bottom: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .cat-banner-stats { justify-content: flex-start; gap: 6px; }
    .cat-banner-stats span { font-size: 11px; padding: 5px 10px; gap: 5px; }
    .cat-banner-stats strong { font-size: 12px; }
    .cat-banner-stats i { font-size: 11px; }
    .cat-products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .cat-toolbar { flex-direction: column; gap: 12px; }
    .cat-toolbar-right { width: 100%; justify-content: space-between; }
    .reels-section { padding: 24px 0; }
    .reels-title { font-size: 20px; }
    .reels-sub { font-size: 12px; }
    .reels-header { margin-bottom: 18px; }
    .reel-card { flex: 0 0 155px; border-radius: 12px; }
    .reel-play-btn { width: 36px; height: 36px; font-size: 13px; }
    .reel-info { padding: 8px 10px 4px; gap: 8px; }
    .reel-avatar { width: 24px; height: 24px; }
    .reel-text strong { font-size: 11px; }
    .reel-text span { font-size: 10px; }
    .reel-stats { padding: 2px 10px 8px; font-size: 10px; gap: 10px; }
    .announcement-bar { padding: 6px 0; }
    .announcement-bar p { font-size: 11px; line-height: 16px; }
    .shop-categories-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px 10px; }
    .shop-cat-name { font-size: 12px; padding: 6px 2px 0; line-height: 1.3; }
    .shop-cat-img { border-radius: 14px; }
    .shop-categories-section { padding: 8px 0 16px; }
    .shop-categories-header { padding: 14px 0 10px; }
    .shop-categories-title { font-size: 20px; }
    .promo-launch-section { padding: 28px 0; }
    .promo-launch-card { grid-template-columns: 1fr; border-radius: 14px; }
    .promo-launch-img { min-height: 280px; }
    .promo-launch-content { padding: 32px 28px; }
    .promo-launch-title { font-size: 28px; margin-bottom: 14px; }
    .promo-launch-sub { font-size: 13px; margin-bottom: 20px; }
    .promo-launch-cat { margin-bottom: 24px; }
    .promo-launch-btn { height: 42px; font-size: 11px; padding: 0 24px; margin-bottom: 24px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: -1; }
    .about-text h2 { font-size: 26px; }
    .cart-page-layout { grid-template-columns: 1fr; gap: 24px; }
    .cart-summary-box { position: static; }
    .cart-item-card { flex-wrap: wrap; gap: 12px; }
    .cart-item-info { min-width: 120px; }
    .cart-item-price { min-width: auto; text-align: left; }
    .cart-item-name { white-space: normal; }
    .footer-top { grid-template-columns: 1fr; gap: 28px; }
    .unique-grid { grid-template-columns: 1fr; gap: 16px; }
    .unique-card { padding: 24px; }
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .seo-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .seo-footer { padding: 28px 0; }
    .wf-section { padding: 20px 0; }
    .wf-section-title { font-size: 18px; margin-bottom: 14px; padding-bottom: 10px; }
    .wf-section-title::after { width: 48px; height: 3px; }
    .dark-testimonials { padding: 32px 0 36px; }
    .dark-section-title { font-size: 20px; margin-bottom: 18px; text-align: left; padding-bottom: 10px; }
    .dark-section-title::after { width: 40px; height: 3px; }
    .dark-testi-grid { grid-template-columns: 1fr; gap: 16px; }
    .dark-testi-thumb { min-height: 200px; border-radius: 10px; }
    .dark-testi-badge { padding: 8px 12px; border-radius: 8px; top: 12px; left: 12px; }
    .dark-testi-badge-top { font-size: 7px; letter-spacing: 1px; }
    .dark-testi-badge-name { font-size: 18px; }
    .dark-testi-badge-sub { font-size: 9px; }
    .dark-testi-play { width: 40px; height: 40px; }
    .dark-testi-play i { font-size: 13px; }
    .dark-testi-name-overlay { padding: 8px 14px; border-radius: 10px 0 10px 0; }
    .dark-testi-oname { font-size: 13px; }
    .dark-testi-orole { font-size: 10px; }
    .dark-testi-author { font-size: 14px; margin-top: 10px; }
    .dark-testi-quote { font-size: 12.5px; line-height: 1.6; margin-top: 3px; }
    .dark-testi-side {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        gap: 12px;
        padding-right: 0;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
    }
    .dark-testi-side::-webkit-scrollbar { display: none; }
    .dark-testi-card {
        min-width: 240px;
        max-width: 240px;
        flex-shrink: 0;
        border-radius: 10px;
    }
    .dark-testi-card-thumb { aspect-ratio: 16 / 9; }
    .dark-testi-card-badge { padding: 3px 6px; border-radius: 5px; top: 6px; left: 6px; }
    .dark-testi-card-badge span { font-size: 5px; }
    .dark-testi-card-badge strong { font-size: 10px; }
    .dark-testi-play-sm { width: 26px; height: 26px; right: 10px; }
    .dark-testi-play-sm i { font-size: 8px; }
    .dark-testi-card-author { font-size: 12px; padding: 8px 10px 2px; }
    .dark-testi-card-quote { font-size: 11px; padding: 2px 10px 10px; line-height: 1.5; }
    .brands-strip { padding: 10px 0; }
    .brands-strip-label { display: none; }
    .brands-strip::before { width: 40px; }
    .brands-strip-logos { gap: 32px; padding-right: 32px; }
    .brands-strip-logos img { max-height: 24px; }
    .bulk-faq-section { padding: 36px 0; }
    .bulk-faq-grid { grid-template-columns: 1fr; }
    .bulk-order-card, .bulk-faq-card { padding: 28px 24px; }
    .bulk-order-title, .bulk-faq-title { font-size: 22px; }
    .btn { padding: 12px 24px; font-size: 14px; }
    .biz-banner-inner { flex-direction: column; padding: 32px 28px; gap: 28px; text-align: center; margin: 28px 0; }
    .biz-banner-cats { justify-content: center; }
    .biz-banner-title { font-size: 26px; }
    .biz-banner-desc { font-size: 14px; }
    .biz-banner-icon-grid { gap: 10px; }
    .biz-icon-item { padding: 14px 16px; min-width: 90px; }
    .biz-icon-item i { font-size: 18px; }
    .seo-content { padding: 36px 0; }
    .seo-content h2 { font-size: 16px; margin: 22px 0 8px; }
    .seo-content p { font-size: 13px; }
    .service-card { min-width: 200px; max-width: 200px; }
    .service-card img { height: 130px; }
    .service-card .service-info { padding: 10px; }
    .main-footer { padding: 36px 0 0; }
    .footer-bottom { padding: 14px 0; margin-top: 20px; }
    .page-header { padding: 30px 0; }
    .page-header h1 { font-size: 26px; }
    .inquiry-form { padding: 24px 16px; }
    .modal-box { padding: 24px 18px; }
}
@media (max-width: 480px) {
    .container { padding: 0 12px; }
    .header-row { gap: 6px; }
    .logo img { height: 32px; }
    .header-icons { gap: 0; }
    .cat-banner-content { padding: 20px 0 18px; gap: 14px; }
    .cat-banner-text h1 { font-size: 20px; margin-bottom: 4px; }
    .cat-banner-text p { font-size: 11px; margin-bottom: 8px; line-height: 1.4; -webkit-line-clamp: 2; }
    .cat-banner-text .breadcrumb { font-size: 10px; margin-bottom: 6px; }
    .cat-banner-text .breadcrumb i { margin: 0 5px; }
    .cat-banner-stats { gap: 5px; }
    .cat-banner-stats span { font-size: 10px; padding: 4px 8px; gap: 4px; border-radius: 6px; }
    .cat-banner-stats strong { font-size: 10px; }
    .cat-banner-stats i { font-size: 9px; }
    .cat-banner-img { flex: 0 0 72px; }
    .cat-banner-img img { border-radius: 10px; }
    .cat-section { padding: 20px 0 40px; }
    .cat-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cat-products-grid .product-info { padding: 10px; }
    .cat-products-grid .product-info h3 { font-size: 12px; }
    .cat-products-grid .price { font-size: 14px; }
    .cat-products-grid .price .original { font-size: 11px; }
    .view-product-btn { padding: 6px 14px; font-size: 11px; margin-top: 6px; }
    .cat-sort { font-size: 12px; padding: 6px 10px; }
    .cat-result-count { font-size: 12px; }
    .cat-filter-mobile-btn { padding: 10px 22px; font-size: 13px; }
    .reels-section { padding: 20px 0; }
    .reels-title { font-size: 17px; }
    .reels-title::after { width: 34px; height: 2.5px; margin-top: 7px; }
    .reels-sub { font-size: 11px; margin-top: 5px; }
    .reels-header { margin-bottom: 14px; }
    .reel-card { flex: 0 0 140px; border-radius: 10px; }
    .reel-media { aspect-ratio: 9 / 16; }
    .reel-play-btn { width: 30px; height: 30px; font-size: 11px; border-width: 1.5px; }
    .reel-info { padding: 6px 8px 3px; gap: 6px; }
    .reel-avatar { width: 20px; height: 20px; }
    .reel-text strong { font-size: 10px; }
    .reel-text span { font-size: 9px; }
    .reel-stats { padding: 1px 8px 6px; font-size: 9px; gap: 8px; }
    .reels-track { gap: 10px; }
    .tabbed-products { padding: 22px 0 26px; }
    .tabbed-products-title { font-size: 17px; margin-bottom: 10px; padding-bottom: 8px; }
    .tabbed-products-title::after { width: 30px; height: 2.5px; }
    .tabbed-products-tabs { gap: 6px; margin-bottom: 12px; }
    .tab-pill { padding: 5px 12px; font-size: 11px; border-width: 1px; }
    .tab-panel.active { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tab-product-item span { font-size: 11px; }
    .tab-product-item img { border-radius: 7px; }
    .tab-product-item { gap: 6px; }
    .video-showcase { padding: 22px 0 26px; }
    .video-showcase-title { font-size: 17px; }
    .video-showcase-sub { font-size: 11px; margin-bottom: 12px; }
    .video-showcase-grid { gap: 10px; }
    .video-showcase-item { border-radius: 8px; }
    .pd-section { padding: 16px 0 32px; }
    .pd-breadcrumb { padding: 8px 0; font-size: 11px; }
    .pd-breadcrumb i { margin: 0 5px; font-size: 7px; }
    .pd-title { font-size: 18px; }
    .pd-price { font-size: 22px; }
    .pd-mrp { font-size: 14px; }
    .pd-meta { font-size: 12px; gap: 10px; }
    .pd-size-btn { min-width: 40px; width: auto; height: 40px; font-size: 13px; }
    .pd-thumb { width: 60px; height: 60px; }
    .pd-tab { padding: 8px 14px; font-size: 13px; }
    .pd-offer-pct { font-size: 16px; }
    .pd-add-btn { font-size: 14px; padding: 12px; }
    .pd-order-total strong { font-size: 20px; }
    .header-icon-btn { width: 32px; height: 32px; font-size: 13px; }
    .shop-categories-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px 8px; }
    .shop-cat-name { font-size: 11px; }
    .shop-cat-img { border-radius: 12px; }
    .shop-categories-title { font-size: 18px; }
    .promo-launch-section { padding: 16px 0; }
    .promo-launch-card { border-radius: 12px; }
    .promo-launch-img { min-height: 220px; }
    .promo-launch-content { padding: 24px 20px; }
    .promo-launch-badge { font-size: 9px; letter-spacing: 1.2px; margin-bottom: 8px; }
    .promo-launch-title { font-size: 24px; margin-bottom: 10px; }
    .promo-launch-sub { font-size: 12px; line-height: 1.5; margin-bottom: 16px; }
    .promo-launch-sub br { display: none; }
    .promo-launch-cat { font-size: 12px; margin-bottom: 20px; }
    .promo-launch-btn { height: 38px; font-size: 10px; padding: 0 20px; border-radius: 6px; margin-bottom: 20px; }
    .promo-dot { width: 6px; height: 6px; }
    .dark-testimonials { padding: 24px 0 28px; }
    .dark-section-title { font-size: 17px; margin-bottom: 14px; padding-bottom: 8px; }
    .dark-section-title::after { width: 34px; height: 2.5px; }
    .dark-testi-thumb { min-height: 170px; border-radius: 8px; }
    .dark-testi-badge { padding: 6px 10px; border-radius: 7px; top: 8px; left: 8px; }
    .dark-testi-badge-name { font-size: 15px; }
    .dark-testi-badge-top { font-size: 6px; }
    .dark-testi-badge-sub { font-size: 8px; }
    .dark-testi-play { width: 34px; height: 34px; border-width: 1.5px; }
    .dark-testi-play i { font-size: 11px; margin-left: 2px; }
    .dark-testi-name-overlay { padding: 6px 10px; border-radius: 8px 0 8px 0; }
    .dark-testi-oname { font-size: 12px; }
    .dark-testi-orole { font-size: 9px; }
    .dark-testi-author { font-size: 13px; margin-top: 8px; }
    .dark-testi-quote { font-size: 11.5px; line-height: 1.55; }
    .dark-testi-side { gap: 10px; }
    .dark-testi-card {
        min-width: 200px;
        max-width: 200px;
        border-radius: 8px;
    }
    .dark-testi-card-thumb { aspect-ratio: 16 / 10; }
    .dark-testi-card-badge { display: none; }
    .dark-testi-play-sm { width: 24px; height: 24px; right: 8px; }
    .dark-testi-play-sm i { font-size: 7px; }
    .dark-testi-card-author { font-size: 11px; padding: 7px 8px 2px; }
    .dark-testi-card-quote { font-size: 10px; padding: 1px 8px 8px; line-height: 1.45; }
    .stats-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .spec-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
    .product-card { width: 160px; }
    .product-scroll { grid-auto-columns: 160px; gap: 6px; }
    .product-sale-price { font-size: 15px; }
    .product-orig-price { font-size: 11px; margin-left: 4px; }
    .product-discount { font-size: 11px; }
    .product-name { font-size: 13px; min-height: 32px; }
    .product-card .product-info { padding: 6px; gap: 8px; }
    .best-seller-badge { font-size: 10px; padding: 3px 6px; }
    .product-rating { font-size: 11px; padding: 3px 6px; }
    .product-wishlist { width: 26px; height: 26px; font-size: 12px; }
    .service-card { min-width: 160px; max-width: 160px; }
    .service-card img { height: 110px; }
    .service-card .service-info h3 { font-size: 13px; }
    .service-card .service-info p { font-size: 11px; }
    .bulk-order-card, .bulk-faq-card { padding: 22px 18px; }
    .bulk-order-title, .bulk-faq-title { font-size: 20px; }
    .bulk-form-row { grid-template-columns: 1fr; }
    .bulk-faq-q { font-size: 14px; padding: 14px 0; }
    .btn { padding: 10px 20px; font-size: 13px; }
    .biz-banner-inner { padding: 24px 20px; gap: 20px; border-radius: 14px; margin: 20px 0; }
    .biz-banner-cats span { font-size: 10px; }
    .biz-banner-title { font-size: 22px; }
    .biz-banner-desc { font-size: 13px; margin-bottom: 18px; }
    .biz-banner-btn { font-size: 13px; padding: 11px 22px; }
    .biz-banner-icon-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .biz-icon-item { padding: 10px 8px; min-width: auto; border-radius: 10px; }
    .biz-icon-item i { font-size: 16px; }
    .biz-icon-item span { font-size: 9px; }
    .seo-content { padding: 28px 0; }
    .seo-content h2 { font-size: 15px; margin: 18px 0 6px; }
    .seo-content p { font-size: 12.5px; text-align: left; }
    .brands-strip-logos { gap: 28px; padding-right: 28px; }
    .brands-strip-logos img { max-height: 22px; }
    .brands-strip-label { font-size: 10px; left: 12px; }
    .brands-strip::before { width: 140px; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 20px; }
    .seo-footer-grid { grid-template-columns: 1fr; gap: 16px; }
    .seo-footer { padding: 20px 0; }
    .seo-footer-col h5 { font-size: 12px; margin-bottom: 8px; }
    .seo-footer-links a, .seo-footer-links span { font-size: 11.5px; }
    .footer-col h4 { font-size: 13px; }
    .footer-col ul li a { font-size: 13px; }
    .footer-brand > p { font-size: 13px; }
    .footer-contact-lines span { font-size: 12px; }
    .footer-newsletter > p { font-size: 13px; }
    .whatsapp-float { display: none; }
    .mobile-bottom-nav { display: flex; }
    body { padding-bottom: 60px; }
    .back-to-top { bottom: 72px; }
    .order-toast { bottom: 72px; }
    .order-toast { bottom: 72px; right: 12px; left: 12px; max-width: none; padding: 10px 14px 10px 10px; gap: 10px; border-radius: 12px; }
    .order-toast-close { display: flex; top: -10px; right: -6px; width: 26px; height: 26px; font-size: 11px; }
    .order-toast-img { width: 42px; height: 42px; border-radius: 8px; }
    .order-toast-name { font-size: 12px; }
    .order-toast-detail { font-size: 10px; }
    .order-toast-label { font-size: 7px; padding: 1px 5px; }
    .order-toast-time { font-size: 9px; }
    .back-to-top { bottom: 72px; left: 12px; width: 38px; height: 38px; font-size: 14px; }
    .page-header h1 { font-size: 22px; }
    .page-header .breadcrumb { font-size: 12px; }
}
@media (max-width: 360px) {
    .container { padding: 0 10px; }
    .logo img { height: 28px; }
    .header-icon-btn { width: 28px; height: 28px; font-size: 12px; }
    .product-card { width: 145px; }
    .product-scroll { grid-auto-columns: 145px; }
    .product-sale-price { font-size: 14px; }
    .product-name { font-size: 12px; }
    .shop-categories-title { font-size: 16px; }
    .shop-categories-grid { gap: 8px 6px; }
    .shop-cat-name { font-size: 10px; }
    .shop-cat-img { border-radius: 10px; }
    .wf-section-title { font-size: 16px; }
    .tabbed-products { padding: 18px 0 22px; }
    .tabbed-products-title { font-size: 15px; }
    .tab-pill { padding: 4px 10px; font-size: 10px; }
    .tab-panel.active { gap: 8px; }
    .tab-product-item span { font-size: 10px; }
    .tab-product-item img { border-radius: 6px; }
    .dark-testimonials { padding: 20px 0 24px; }
    .dark-section-title { font-size: 15px; margin-bottom: 12px; }
    .dark-testi-thumb { min-height: 150px; border-radius: 7px; }
    .dark-testi-badge { padding: 5px 8px; border-radius: 6px; top: 6px; left: 6px; gap: 0; }
    .dark-testi-badge-name { font-size: 13px; }
    .dark-testi-badge-top { font-size: 5px; }
    .dark-testi-badge-sub { font-size: 7px; }
    .dark-testi-play { width: 30px; height: 30px; }
    .dark-testi-play i { font-size: 10px; }
    .dark-testi-author { font-size: 12px; margin-top: 7px; }
    .dark-testi-quote { font-size: 11px; }
    .dark-testi-side { gap: 8px; }
    .dark-testi-card { min-width: 175px; max-width: 175px; border-radius: 7px; }
    .dark-testi-play-sm { width: 22px; height: 22px; right: 6px; }
    .dark-testi-play-sm i { font-size: 6px; }
    .dark-testi-card-author { font-size: 10px; padding: 6px 7px 1px; }
    .dark-testi-card-quote { font-size: 9px; padding: 1px 7px 7px; }
    .biz-banner-inner { padding: 20px 16px; margin: 16px 0; border-radius: 12px; }
    .biz-banner-title { font-size: 20px; }
    .biz-banner-cats span { font-size: 9px; }
    .biz-dot { width: 3px; height: 3px; }
    .biz-banner-icon-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .biz-icon-item { padding: 10px 6px; }
    .seo-content h2 { font-size: 14px; }
    .seo-content p { font-size: 12px; line-height: 1.7; }
}

/* ===== Shop Categories — Card-Style Scroll (v2) ===== */
.sc-scroll-wrap {
    overflow: hidden;
    position: relative;
}
.sc-scroll-track {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.sc-scroll-track::-webkit-scrollbar { display: none; }

.sc-card {
    display: flex;
    flex-direction: column;
    width: 200px;
    min-width: 200px;
    background: #f4f0ed;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.sc-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ebe5e0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.35s ease;
}
.sc-card:hover .sc-card-img img {
    transform: scale(1.05);
}
.sc-card-info {
    padding: 12px 14px 14px;
}
.sc-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sc-card-count {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
    display: block;
}
.sc-view-all-wrap {
    text-align: center;
    margin-top: 24px;
}
.sc-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: #1e2a4a;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(30,42,74,0.2);
}
.sc-view-all-btn:hover {
    background: #152038;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(30,42,74,0.3);
}
.sc-view-all-btn i {
    font-size: 13px;
    transition: transform 0.2s;
}
.sc-view-all-btn:hover i {
    transform: translateX(3px);
}

/* Categories Full Page — 4 per row grid */
.categories-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 20px 0 40px;
}
.categories-page-grid .sc-card {
    width: 100%;
    min-width: 0;
}

/* Responsive: Shop Categories v2 */
@media (max-width: 1024px) {
    .sc-card { width: 180px; min-width: 180px; }
    .categories-page-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .sc-card { width: 160px; min-width: 160px; border-radius: 14px; }
    .sc-card-info { padding: 10px 12px 12px; }
    .sc-card-name { font-size: 13px; }
    .sc-card-count { font-size: 11px; }
    .sc-view-all-btn { font-size: 14px; padding: 10px 24px; }
    .categories-page-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
    .sc-card { width: 145px; min-width: 145px; border-radius: 12px; }
    .sc-card-img { aspect-ratio: 1 / 1; }
    .sc-card-info { padding: 8px 8px 10px; }
    .sc-card-name { font-size: 12px; }
    .sc-card-count { font-size: 10px; }
    .sc-scroll-track { gap: 10px; }
    .sc-view-all-btn { font-size: 13px; padding: 10px 20px; }
    .categories-page-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .categories-page-grid .sc-card { border-radius: 10px; }
    .categories-page-grid .sc-card-info { padding: 6px 6px 8px; }
    .categories-page-grid .sc-card-name { font-size: 11px; white-space: normal; line-height: 1.25; }
    .categories-page-grid .sc-card-count { font-size: 9px; margin-top: 1px; }
}
@media (max-width: 360px) {
    .sc-card { width: 130px; min-width: 130px; }
    .categories-page-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ===== Business Banner v2 — Dark Stat-Card Design ===== */
.biz-banner-v2 {
    background: #1a1a2e;
    padding: 64px 0 56px;
}
.biz-banner-v2 .biz-banner-inner {
    display: none; /* hide old inner if it leaks through */
}
.biz-v2-top {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}
.biz-v2-label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    align-self: flex-start;
    padding-top: 8px;
}
.biz-v2-label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    color: #1a1a2e;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}
.biz-v2-label span:last-child {
    font-size: 14px;
    font-weight: 500;
    color: #cbc7c0;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.biz-v2-content {
    flex: 1;
    min-width: 0;
}
.biz-v2-heading {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 20px;
}
.biz-v2-cats {
    color: #9b9488;
    font-weight: 400;
}
.biz-v2-desc {
    font-size: 16px;
    color: #9b9488;
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 680px;
}
.biz-v2-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-bottom: 1.5px solid #fff;
    padding-bottom: 4px;
    transition: color 0.2s, border-color 0.2s;
}
.biz-v2-link:hover {
    color: #24a9bb;
    border-color: #24a9bb;
}
.biz-v2-arrow {
    display: inline-flex;
    font-style: normal;
    transition: transform 0.2s;
}
.biz-v2-link:hover .biz-v2-arrow {
    transform: translate(2px, -2px);
}
.biz-v2-arrow svg {
    width: 10px;
    height: 10px;
}

/* Stat Cards Row */
.biz-v2-stats {
    display: flex;
    gap: 0;
}
.biz-stat-card {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-right: none;
    display: flex;
    flex-direction: column;
}
.biz-stat-card:last-child {
    border-right: 1px solid rgba(255,255,255,0.08);
}
.biz-stat-card:first-child {
    border-radius: 14px 0 0 14px;
}
.biz-stat-card:last-child {
    border-radius: 0 14px 14px 0;
}
.biz-stat-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.biz-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}
.biz-stat-serial {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    font-style: normal;
}
.biz-stat-body {
    padding: 20px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.biz-stat-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 auto;
    line-height: 1.35;
}
.biz-stat-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.55;
    margin: 16px 0 0;
}

/* Responsive: Biz Banner v2 */
@media (max-width: 1024px) {
    .biz-v2-heading { font-size: 34px; }
    .biz-stat-number { font-size: 40px; }
    .biz-stat-head { padding: 20px 22px 14px; }
    .biz-stat-body { padding: 16px 22px 24px; }
}
@media (max-width: 768px) {
    .biz-banner-v2 { padding: 48px 0 40px; }
    .biz-v2-top { flex-direction: column; gap: 16px; }
    .biz-v2-heading { font-size: 28px; }
    .biz-v2-desc { font-size: 14px; }
    .biz-v2-stats { flex-direction: column; gap: 0; }
    .biz-stat-card {
        border-right: 1px solid rgba(255,255,255,0.08);
        border-bottom: none;
    }
    .biz-stat-card:last-child {
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .biz-stat-card:first-child { border-radius: 14px 14px 0 0; }
    .biz-stat-card:last-child { border-radius: 0 0 14px 14px; }
    .biz-stat-number { font-size: 36px; }
    .biz-stat-head { padding: 18px 20px 12px; }
    .biz-stat-body { padding: 14px 20px 20px; }
}
@media (max-width: 480px) {
    .biz-banner-v2 { padding: 36px 0 32px; }
    .biz-v2-heading { font-size: 24px; }
    .biz-v2-desc { font-size: 13px; margin-bottom: 18px; }
    .biz-v2-link { font-size: 14px; }
    .biz-stat-number { font-size: 32px; }
    .biz-stat-title { font-size: 16px; }
    .biz-stat-desc { font-size: 13px; }
    .biz-stat-head { padding: 16px 16px 10px; }
    .biz-stat-body { padding: 12px 16px 18px; }
}

/* ===== Product Detail Page v2 — Modern E-commerce ===== */
.pd-v2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
/* Gallery */
.pd-v2-gallery {
    position: sticky;
    top: 80px;
}
.pd-v2-main-img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #f8f8f8;
    aspect-ratio: 1 / 1;
    position: relative;
}
.pd-v2-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s;
}
.pd-v2-main-img:hover img { transform: scale(1.04); }
.pd-v2-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ef4444;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    z-index: 2;
}
.pd-v2-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    scrollbar-width: none;
}
.pd-v2-thumbs::-webkit-scrollbar { display: none; }
.pd-v2-thumb {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s;
    background: #f5f5f5;
}
.pd-v2-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pd-v2-thumb:hover,
.pd-v2-thumb.active {
    border-color: #24a9bb;
}

/* Info */
.pd-v2-brand {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #24a9bb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-decoration: none;
    transition: color 0.2s;
}
.pd-v2-brand:hover { color: #1e8fa0; }
.pd-v2-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    line-height: 1.3;
    margin: 0 0 12px;
}
.pd-v2-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.pd-v2-stars { color: #f59e0b; font-size: 14px; display: flex; gap: 2px; }
.pd-v2-rating-num { font-size: 14px; font-weight: 700; color: #333; }
.pd-v2-review-count { font-size: 13px; color: #888; }
.pd-v2-sold {
    font-size: 12px;
    color: #ef4444;
    font-weight: 600;
    background: #fef2f2;
    padding: 3px 10px;
    border-radius: 20px;
}
.pd-v2-sold i { font-size: 11px; }

/* Price */
.pd-v2-price-box {
    background: #f8fafb;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}
.pd-v2-price {
    font-size: 30px;
    font-weight: 800;
    color: #1e2a4a;
}
.pd-v2-mrp {
    font-size: 16px;
    color: #aaa;
    text-decoration: line-through;
}
.pd-v2-save {
    font-size: 13px;
    color: #16a34a;
    font-weight: 600;
    background: #f0fdf4;
    padding: 3px 10px;
    border-radius: 20px;
}
.pd-v2-tax {
    font-size: 12px;
    color: #aaa;
    width: 100%;
    margin-top: -4px;
}
.pd-v2-short-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 20px;
}

/* Options */
.pd-v2-option-group {
    margin-bottom: 20px;
}
.pd-v2-option-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}
.pd-v2-option-label span { font-weight: 400; color: #666; }
.pd-v2-colors {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.pd-v2-color-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}
.pd-v2-color-dot:hover { transform: scale(1.15); }
.pd-v2-color-dot.active {
    border-color: #24a9bb;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #24a9bb;
}
.pd-v2-sizes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.pd-v2-size-btn {
    min-width: 52px;
    height: 42px;
    padding: 0 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.pd-v2-size-btn:hover { border-color: #24a9bb; color: #24a9bb; }
.pd-v2-size-btn.active {
    background: #1e2a4a;
    border-color: #1e2a4a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(30,42,74,0.25);
}

/* Stock */
.pd-v2-stock-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.pd-v2-stock-label {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pd-v2-stock-label.in-stock { color: #16a34a; }
.pd-v2-stock-label.out-stock { color: #ef4444; }
.pd-v2-stock-hurry {
    font-size: 12px;
    color: #ef4444;
    font-weight: 500;
    background: #fef2f2;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Action Buttons */
.pd-v2-action-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.pd-v2-qty {
    display: flex;
    align-items: center;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}
.pd-v2-qty-btn {
    width: 42px;
    height: 44px;
    border: none;
    background: #f5f5f5;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}
.pd-v2-qty-btn:hover { background: #eee; }
.pd-v2-qty input {
    width: 48px;
    height: 44px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    background: #fff;
    font-family: inherit;
    -moz-appearance: textfield;
}
.pd-v2-qty input::-webkit-inner-spin-button,
.pd-v2-qty input::-webkit-outer-spin-button { -webkit-appearance: none; }
.pd-v2-add-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: #1e2a4a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}
.pd-v2-add-btn:hover { background: #152038; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(30,42,74,0.35); }
.pd-v2-add-btn.added { background: #16a34a; }
.pd-v2-action-row-2 { margin-bottom: 16px; }
.pd-v2-buy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(37,211,102,0.25);
}
.pd-v2-buy-btn:hover { background: #1ebc5a; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.pd-v2-buy-btn i { font-size: 18px; }

/* Total */
.pd-v2-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}
.pd-v2-total-row span { font-size: 14px; color: #777; }
.pd-v2-total-row strong { font-size: 24px; color: #111; font-weight: 800; }

/* Meta */
.pd-v2-meta-row {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.pd-v2-meta-row strong { color: #555; }
.pd-v2-meta-row a { color: #24a9bb; text-decoration: none; }
.pd-v2-meta-row a:hover { text-decoration: underline; }

/* Share */
.pd-v2-share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.pd-v2-share > span { font-size: 13px; color: #888; }
.pd-v2-share a,
.pd-v2-share button {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3f4f6;
    color: #555;
    font-size: 14px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.pd-v2-share a:hover,
.pd-v2-share button:hover {
    background: #24a9bb;
    color: #fff;
}

/* Delivery Features */
.pd-v2-features-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #eee;
}
.pd-v2-feat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pd-v2-feat i {
    font-size: 20px;
    color: #24a9bb;
    flex-shrink: 0;
}
.pd-v2-feat strong {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    display: block;
    line-height: 1.3;
}
.pd-v2-feat small {
    font-size: 11px;
    color: #999;
    display: block;
}

/* Tabs Section */
.pd-v2-tabs-section {
    margin-top: 48px;
    border-top: 1px solid #eee;
    padding-top: 32px;
}
.pd-v2-tab-nav {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 24px;
}
.pd-v2-tab {
    padding: 12px 24px;
    border: none;
    background: none;
    font-size: 15px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    font-family: inherit;
}
.pd-v2-tab:hover { color: #555; }
.pd-v2-tab.active {
    color: #24a9bb;
    border-bottom-color: #24a9bb;
}
.pd-v2-tab-content { display: none; }
.pd-v2-tab-content.active { display: block; }
.pd-v2-desc-content {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}
.pd-v2-desc-content p { margin-bottom: 12px; }
.pd-v2-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pd-v2-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pd-v2-features-list li:last-child { border-bottom: none; }
.pd-v2-features-list li i { color: #16a34a; font-size: 13px; flex-shrink: 0; }

/* Related Products */
.pd-v2-related {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}
.pd-v2-related-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 24px;
}
.pd-v2-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Responsive: Product Page v2 */
@media (max-width: 1024px) {
    .pd-v2-layout { gap: 32px; }
    .pd-v2-title { font-size: 24px; }
    .pd-v2-price { font-size: 26px; }
    .pd-v2-related-grid { grid-template-columns: repeat(3, 1fr); }
    .pd-v2-features-strip { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
}
@media (max-width: 768px) {
    .pd-v2-layout { grid-template-columns: 1fr; gap: 24px; }
    .pd-v2-gallery { position: static; }
    .pd-v2-title { font-size: 22px; }
    .pd-v2-price { font-size: 24px; }
    .pd-v2-related-grid { grid-template-columns: repeat(2, 1fr); }
    .pd-v2-features-strip { grid-template-columns: 1fr; gap: 12px; }
    .pd-v2-tab { padding: 10px 16px; font-size: 14px; }
}
@media (max-width: 480px) {
    .pd-v2-title { font-size: 20px; }
    .pd-v2-price { font-size: 22px; }
    .pd-v2-price-box { padding: 12px 16px; }
    .pd-v2-thumb { width: 60px; height: 60px; min-width: 60px; border-radius: 8px; }
    .pd-v2-action-row { flex-direction: column; }
    .pd-v2-qty { justify-content: center; }
    .pd-v2-add-btn { width: 100%; }
    .pd-v2-total-row strong { font-size: 20px; }
    .pd-v2-related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .pd-v2-tab { padding: 8px 12px; font-size: 13px; }
    .pd-v2-tabs-section { margin-top: 32px; padding-top: 24px; }
    .pd-v2-related { margin-top: 32px; padding-top: 24px; }
}
@media (max-width: 360px) {
    .pd-v2-title { font-size: 18px; }
    .pd-v2-price { font-size: 20px; }
    .pd-v2-size-btn { min-width: 44px; height: 38px; font-size: 13px; }
}

/* Size Chart Button */
.pd-v2-size-chart-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 12px;
    padding: 4px 12px;
    background: none;
    border: 1px solid #24a9bb;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #24a9bb;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    vertical-align: middle;
}
.pd-v2-size-chart-btn:hover {
    background: #24a9bb;
    color: #fff;
}
.pd-v2-size-chart-btn i { font-size: 11px; }

/* Size Chart Modal */
.pd-v2-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.pd-v2-modal-overlay.active { display: flex; }
.pd-v2-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 620px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: pdModalIn 0.25s ease;
}
@keyframes pdModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.pd-v2-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}
.pd-v2-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
}
.pd-v2-modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    font-size: 22px;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 1;
}
.pd-v2-modal-close:hover { background: #ef4444; color: #fff; }
.pd-v2-modal-body { padding: 24px; }
.pd-v2-modal-note {
    font-size: 13px;
    color: #888;
    margin: 0 0 16px;
}
.pd-v2-size-table-wrap { overflow-x: auto; margin-bottom: 24px; }
.pd-v2-size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.pd-v2-size-table th {
    background: #1e2a4a;
    color: #fff;
    padding: 10px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
}
.pd-v2-size-table th:first-child { border-radius: 8px 0 0 0; }
.pd-v2-size-table th:last-child { border-radius: 0 8px 0 0; }
.pd-v2-size-table td {
    padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}
.pd-v2-size-table tr:nth-child(even) td { background: #f9fafb; }
.pd-v2-size-table tr:hover td { background: #e8f7fa; }
.pd-v2-size-tips h4 {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
}
.pd-v2-size-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pd-v2-size-tips li {
    font-size: 13px;
    color: #666;
    padding: 5px 0;
    line-height: 1.5;
}
.pd-v2-size-tips li strong { color: #333; }
