/* === Mobile Header & Hero Compact Fix === */
@media (max-width: 600px) {
    /* ── Recommendation section ── */
    #recommendationsSection {
        margin: 30px auto !important;
        padding: 0 10px !important;
    }
    #recommendationsSection h2 {
        font-size: 1.2em !important;
        margin-bottom: 14px !important;
    }
    /* Size picker + action buttons: bigger tap targets */
    [data-rec-act] button {
        min-height: 38px !important;
        font-size: 0.82em !important;
        padding: 7px 6px !important;
    }
    /* Size option buttons inside picker */
    [data-rec-act] div button {
        min-height: 34px !important;
        padding: 6px 8px !important;
        font-size: 0.82em !important;
    }
}

/* ── Recommendations: 2-col for all phones + small tablets (≤768px) ── */
@media (max-width: 768px) {
    #recommendationsSection {
        margin: 30px auto !important;
        padding: 0 10px !important;
    }
    #recommendationsSection h2 {
        font-size: 1.2em !important;
        margin-bottom: 14px !important;
    }
    /* 2-column grid */
    #recommendationsList {
        display: grid !important;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
        gap: 24px !important;
        overflow-x: unset !important;
    }
    /* Card title: 2-line clamp */
    #recommendationsList [data-rec-id] h3 {
        white-space: normal !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        font-size: 0.88em !important;
    }
    /* Card image: shorter */
    #recommendationsList [data-rec-id] img {
        height: 150px !important;
    }
    /* Prevent Add to Cart button wrapping */
    [data-rec-act] button {
        white-space: nowrap !important;
        font-size: 0.82em !important;
        padding: 8px 6px !important;
        min-height: 38px !important;
        width: 100% !important;
    }
    /* Full width footer on mobile */
    .site-footer {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        box-sizing: border-box !important;
    }
    /* Compact the orange banner */
    .header-banner {
        padding: 10px 3% !important;
    }
    .header-banner > div {
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
    }
    .header-banner img {
        height: 44px !important;
        width: auto !important;
    }
    .header-banner h1 {
        font-size: 1.1rem !important;
        letter-spacing: 1px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }
    /* Hide tagline on mobile */
    .header-banner h5 {
        display: none !important;
    }
    /* Compact top-nav: horizontal row */
    .top-nav {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 8px 3% !important;
        gap: 0 !important;
    }
    .logo {
        font-size: 0.95em !important;
        white-space: nowrap !important;
    }
    .main-nav {
        flex-direction: row !important;
        gap: 6px !important;
        align-items: center !important;
    }
    .main-nav a {
        font-size: 0.78em !important;
        padding: 4px 6px !important;
    }
    /* Shrink "Fuel Your Cricket Passion" on mobile so cart stays visible */
    .logo {
        font-size: 0.72em !important;
        white-space: normal !important;
        max-width: 110px !important;
        line-height: 1.2 !important;
    }
    /* Ensure cart badge is not clipped */
    .top-nav {
        overflow: visible !important;
        padding-right: 18px !important;
    }
    .main-nav {
        overflow: visible !important;
    }
    .cart-icon {
        margin-right: 6px !important;
    }
    /* Hide hero section on mobile to show products faster */
    .hero-section-dsc-bg {
        display: none !important;
    }
    /* Shop by Category filter buttons — 3-column grid on mobile */
    .filters {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    .filter-btn {
        padding: 9px 4px !important;
        font-size: 12px !important;
        width: 100% !important;
        text-align: center !important;
        border-radius: 20px !important;
    }
    /* ── Bat / Protective sidebar → bottom sheet on mobile ── */
    .bat-sidebar {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: 78vh !important;
        overflow-y: auto !important;
        z-index: 1001 !important;
        border-radius: 20px 20px 0 0 !important;
        transform: translateY(110%) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: 0 -6px 30px rgba(0,0,0,0.22) !important;
        padding: 20px 16px 32px !important;
        display: block !important;
        background: #fff !important;
    }
    .bat-sidebar.mobile-open {
        transform: translateY(0) !important;
    }
    /* Drag-handle pill at top of sheet */
    .bat-sidebar::before {
        content: '' !important;
        display: block !important;
        width: 44px !important;
        height: 5px !important;
        background: #d1d5db !important;
        border-radius: 3px !important;
        margin: 0 auto 16px !important;
    }
    /* Semi-transparent backdrop */
    .sidebar-mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.48);
        z-index: 1000;
        backdrop-filter: blur(2px);
    }
    .sidebar-mobile-overlay.active {
        display: block;
    }
    /* Products-with-sidebar: stack vertically on mobile (sidebar is fixed/out-of-flow) */
    .products-with-sidebar {
        display: block;
    }
    /* Checkboxes in 2-column grid inside bottom sheet */
    .filter-group .filter-checkbox {
        width: 48% !important;
        display: inline-flex !important;
    }
    .filter-group {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 4px 8px !important;
    }
    .filter-group h4 {
        width: 100% !important;
    }
}

@media (max-width: 600px) {
    #cartItemsList .cart-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
        padding: 10px 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    #cartItemsList .cart-item img {
        width: 100% !important;
        max-width: 120px !important;
        height: auto !important;
        margin: 0 auto 8px auto !important;
        display: block !important;
        border-radius: 8px !important;
    }
    #cartItemsList .cart-item-details {
        width: 100% !important;
        text-align: left !important;
        font-size: 1em !important;
        margin-bottom: 6px !important;
    }
    #cartItemsList .cart-item-details h3 {
        font-size: 1em !important;
        margin: 0 0 4px 0 !important;
        line-height: 1.2 !important;
        word-break: break-word !important;
    }
    #cartItemsList .cart-item-details p {
        font-size: 0.95em !important;
        margin: 0 0 2px 0 !important;
    }
    #cartItemsList .cart-item-price {
        font-size: 1em !important;
        margin: 4px 0 0 0 !important;
        color: #16a34a !important;
    }
    #cartItemsList .cart-item-qty {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 6px !important;
        margin-top: 6px !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }
    #cartItemsList .cart-item-qty input {
        width: 44px !important;
        padding: 2px 4px !important;
        font-size: 0.95em !important;
    }
    #cartItemsList .cart-item-qty button {
        font-size: 0.9em !important;
        padding: 5px 10px !important;
        margin-left: 0 !important;
    }
    #cartItemsList .cart-item-actions {
        display: flex !important;
        gap: 8px !important;
        margin-top: 8px !important;
        width: 100% !important;
        justify-content: flex-start !important;
    }
}
/* Force cart page header full width, no box, no shadow */
body.cart-page .header-banner {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    z-index: 10;
}

body.cart-page .top-nav {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
    z-index: 9;
}
body.cart-page .header-banner > div,
body.cart-page .top-nav > div,
body.cart-page .header-banner img {
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
/* === Unify Recommendations Image Size on Cart & Shipping Pages (Mobile only) === */
@media (max-width: 600px) {
    #recommendationsList > div img,
    #recommendationsList .gallery-item img {
        width: 100% !important;
        height: 140px !important;
        object-fit: contain !important;
        border-radius: 8px !important;
        margin-bottom: 8px !important;
        background: #fff !important;
        box-shadow: 0 1px 4px rgba(0,0,0,0.06) !important;
        display: block;
    }
}
@media (max-width: 600px) {
    .gallery-item .product-image-container {
        height: 180px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .gallery-item img,
    .gallery-item .main-product-image {
        max-height: 180px !important;
        height: auto !important;
        width: auto !important;
        max-width: 100%;
        object-fit: contain !important;
        margin: 0 auto;
        display: block;
    }
}
@media (max-width: 600px) {
    .product-thumbnails {
        display: none !important;
    }
}
/* === Mobile Bat Category & Sidebar Fix === */
@media (max-width: 900px) {
    .products-with-sidebar {
        flex-direction: column;
        gap: 0;
    }
    .products-with-sidebar .bat-sidebar {
        width: 100%;
        margin-bottom: 0;
        border-radius: 0 0 8px 8px;
        padding: 10px 8px;
        border-right: none;
        border-left: none;
        border-top: none;
        box-shadow: none;
        position: static;
        z-index: 10;
    }
    .sidebar-header {
        padding-bottom: 8px;
        margin-bottom: 10px;
    }
    .sidebar-content {
        padding: 0;
    }
    .sidebar-actions {
        margin-top: 10px;
        padding-top: 10px;
        gap: 6px;
    }
    .sidebar-actions .btn {
        padding: 10px;
        font-size: 0.95em;
    }
    .gallery-section {
        margin-bottom: 16px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }
    .gallery-item {
        margin-bottom: 0 !important;
        border-radius: 6px !important;
        box-shadow: 0 1px 6px rgba(0,0,0,0.06) !important;
    }
    .gallery-item img,
    .main-product-image {
        height: 120px !important;
    }
    .gallery-item-info h3 {
        font-size: 0.82em !important;
        min-height: 2.2em !important;
    }
    .gallery-item-info .price {
        font-size: 0.95em !important;
    }
}

@media (max-width: 600px) {
    .products-with-sidebar .bat-sidebar {
        padding: 6px 2px;
        font-size: 0.98em;
    }
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }
    .gallery-item img,
    .main-product-image {
        height: 160px !important;
    }
}
/* ── Mobile filter chip bar ── */
/* ── Mobile filter button + dropdown panel ── */
.mobile-filter-bar {
    padding: 10px 12px 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
}
.mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1.5px solid #f97316;
    background: #fff;
    color: #f97316;
    font-size: 0.88em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.mobile-filter-btn.has-filters {
    background: #f97316;
    color: #fff;
}
.mobile-filter-panel {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin: 0 12px 8px;
    padding: 14px 14px 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    animation: panelSlideDown 0.18s ease;
}
@keyframes panelSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mobile-filter-group {
    margin-bottom: 12px;
}
.mobile-filter-group-label {
    font-size: 0.75em;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 7px;
}
.mobile-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.mobile-chip-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #374151;
    font-size: 0.83em;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.mobile-chip-btn.active {
    background: #f97316;
    color: #fff;
    border-color: #f97316;
}
.mobile-filter-panel-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}
.mobile-filter-clear-btn {
    flex: 1;
    padding: 8px;
    border-radius: 8px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #374151;
    font-size: 0.88em;
    cursor: pointer;
}
.mobile-filter-done-btn {
    flex: 2;
    padding: 8px;
    border-radius: 8px;
    border: none;
    background: #f97316;
    color: #fff;
    font-size: 0.88em;
    font-weight: 700;
    cursor: pointer;
}

/* Image Protection - Prevent downloading/copying */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: auto;
}

/* Cart and Shipping Layout */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr;
    gap: 24px;
    align-items: flex-start;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .cart-layout {
        grid-template-columns: 1fr 1fr;
    }
    .payment-column {
        grid-column: 1 / -1;
    }
}
@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}
.cart-items-section {
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 32px 28px;
    border: 1px solid #e5e7eb;
}
.cart-summary-section {
    min-width: 0;
}
.payment-column {
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 24px;
    border: 1px solid #e5e7eb;
}
.cart-summary {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 28px 24px;
    border: 1px solid #e5e7eb;
    width: 100%;
    box-sizing: border-box;
}

/* Payment Options Section - Professional Styling */
.payment-info-container {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    width: 100%;
    box-sizing: border-box;
}
.payment-info-container h3 {
    margin: 0 0 20px 0;
    font-size: 1.3em;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 8px;
}
.payment-options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.payment-option {
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}
.payment-option:hover {
    border-color: #ef6c00;
    box-shadow: 0 4px 12px rgba(239, 108, 0, 0.1);
    transform: translateY(-2px);
}
.payment-option-header {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.05em;
}
.whatsapp-option .payment-option-header {
    color: #047857;
}
.paypal-option .payment-option-header {
    color: #0369a1;
}
.payment-option-body {
    font-size: 0.92em;
    color: #4b5563;
    line-height: 1.65;
}
.payment-warning {
    color: #dc2626;
    font-weight: 600;
}

/* Shipping Form Section Dividers */
.form-section-divider {
    margin: 28px 0 20px;
    padding-top: 24px;
    border-top: 2px solid #e5e7eb;
}
.form-section-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-info-box {
    background: #f0f9ff;
    border-left: 4px solid #0369a1;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.92em;
    color: #0c4a6e;
    line-height: 1.6;
}
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
}
.checkbox-group:hover {
    border-color: #cbd5e1;
    background: #f3f4f6;
}
.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.checkbox-group label {
    font-weight: 600;
    color: #1e293b !important;
    cursor: pointer;
    margin: 0;
}

/* Shipping section headings match Add to Cart button style */
#addressForm h3 {
    color: #ef6c00 !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Shipping form labels match Add to Cart button style */
#addressForm label {
    color: #ef6c00 !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}
/* Cart page heading matches Add to Cart button style */
.cart-items-section h2 {
    color: #ef6c00 !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Match Edit button style to Remove button */
.btn-edit {
    background: #dc2626 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 6px 16px !important;
    font-size: 0.98em !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    margin-left: 8px;
}
.btn-edit:hover {
    background: #991b1b !important;
}
/* === URGENT FIX: Force product page content to be fully visible === */
#productPage, #productPage * {
    opacity: 1 !important;
    color: #222 !important;
    filter: none !important;
}
/* === FIX: Ensure product info and buttons are fully visible on product page === */
.product-info-section, .product-info-section * {
    opacity: 1 !important;
    color: #222 !important;
}
/* === FIX: Ensure tracking pages are fully visible === */
.tracking-container, .tracking-container *,
.admin-container, .admin-container * {
    opacity: 1 !important;
    filter: none !important;
}
body .tracking-card,
body .orders-card,
body .admin-header {
    opacity: 1 !important;
    filter: none !important;
}
.product-title, .price-display, .price-tax-label, .short-description, .product-meta-info, .product-meta-info *, .product-actions, .product-actions * {
    opacity: 1 !important;
    color: #222 !important;
}
.btn-add-cart, .btn-buy-now, .btn-paypal, .btn-contact {
    opacity: 1 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%) !important;
}

/* Out of Stock — disabled button styling */
.btn-add-cart:disabled, .btn-buy-now:disabled,
#addCart:disabled, #buyNow:disabled {
    background: #e5e7eb !important;
    background-image: none !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
    pointer-events: none !important;
    border: none !important;
}

/* Cart page buttons unified style */
.btn-primary,
.btn-remove,
.btn-edit,
#checkoutBtn,
.btn,
button[type="button"],
button[type="submit"] {
    color: #fff !important;
    background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 12px rgba(239,108,0,0.10) !important;
    transition: background 0.2s, box-shadow 0.2s !important;
}
.btn-primary:hover,
.btn-remove:hover,
.btn-edit:hover,
#checkoutBtn:hover,
.btn:hover,
button[type="button"]:hover,
button[type="submit"]:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ef6c00 100%) !important;
    box-shadow: 0 4px 24px rgba(239,108,0,0.18) !important;
    transform: translateY(-2px) scale(1.04) !important;
}

/* --- RMS Logo Style --- */
.logo-img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 16px;
    height: 38px;
    width: 160px;
    object-fit: contain;
}
.logo-text {
    font-size: 1.25em;
    font-weight: 700;
    color: #222;
    vertical-align: middle;
}
/* --- Footer Map Link --- */
.footer-map-link {
    display: inline-block;
    margin-top: 4px;
    color: #ef6c00;
    font-weight: 600;
    text-decoration: underline;
    font-size: 1em;
    transition: color 0.2s;
}
.footer-map-link:hover {
    color: #ff9800;
    text-decoration: underline;
}
/* --- Store Location Card --- */
.store-location {
    margin-top: 32px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}
.location-title {
    font-weight: 700;
    color: #ef6c00;
    margin-bottom: 8px;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.location-info {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(239,108,0,0.07);
    padding: 18px 22px 18px 22px;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}
.location-info p {
    margin: 0 0 2px 0;
    color: #222;
    font-size: 1em;
}
.location-info a.btn-add-cart {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 1em;
}
/* --- DSC-Style Full-Width Hero Section --- */
.hero-section-dsc-bg {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('images/products/English-Willow-Cricket-Bats-Mega-Menu-Banner_1.webp') center center/cover no-repeat;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12);
}
.hero-dsc-bg-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(0,0,0,0.65) 60%, rgba(239,108,0,0.18) 100%);
    z-index: 1;
}
.hero-dsc-bg-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 64px 16px 56px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-dsc-title {
    font-size: 2.8em;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 0 #ef6c00;
}
.hero-dsc-desc {
    font-size: 1.35em;
    font-weight: 500;
    margin-bottom: 32px;
    color: #ffe0b2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.22);
}
.hero-dsc-cta {
    font-size: 1.18em;
    padding: 14px 38px;
    border-radius: 8px;
    font-weight: 700;
    background: linear-gradient(135deg, #43ea7c 0%, #1b5e20 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(67,234,124,0.12);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    margin-top: 8px;
}
.hero-dsc-cta:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #43ea7c 100%);
    box-shadow: 0 4px 24px rgba(67,234,124,0.18);
    transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
    .hero-dsc-title {
        font-size: 2em;
    }
}
/* --- DSC-Style Side-by-Side Hero Section --- */
.hero-section-dsc-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 56px 0 40px 0;
    background: linear-gradient(120deg, #fffde7 60%, #ffe0b2 100%);
    box-shadow: 0 8px 32px rgba(44,62,80,0.10);
    flex-wrap: wrap;
}
.hero-dsc-img-col {
    flex: 1 1 420px;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-dsc-img {
    width: 100%;
    max-width: 440px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    object-fit: cover;
    aspect-ratio: 4/5;
    background: #fff;
}
.hero-dsc-txt-col {
    flex: 1 1 340px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding-left: 16px;
}
.hero-dsc-title {
    font-size: 2.6em;
    font-weight: 900;
    color: #ef6c00;
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.hero-dsc-desc {
    font-size: 1.22em;
    color: #333;
    margin-bottom: 18px;
}
.hero-dsc-cta {
    font-size: 1.15em;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    background: linear-gradient(135deg, #43ea7c 0%, #1b5e20 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(67,234,124,0.12);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    margin-top: 8px;
}
.hero-dsc-cta:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #43ea7c 100%);
    box-shadow: 0 4px 24px rgba(67,234,124,0.18);
}
@media (max-width: 900px) {
    .hero-section-dsc-row {
        flex-direction: column;
        gap: 32px;
        padding: 36px 0 24px 0;
    }
    .hero-dsc-img-col, .hero-dsc-txt-col {
        max-width: 100%;
        padding-left: 0;
        align-items: center;
        text-align: center;
    }
    .hero-dsc-txt-col {
        align-items: center;
    }
    .hero-dsc-title {
        font-size: 2em;
    }
}
/* --- DSC-Style Hero Section --- */
.hero-section-dsc {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(44,62,80,0.12);
}
.hero-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('images/products/dsc-blak-supreme-english-willow-australia-range-cricket-bat-3-angles.webp') center center/cover no-repeat;
    z-index: 1;
    filter: brightness(0.55) blur(0.5px);
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(120deg, rgba(0,0,0,0.55) 60%, rgba(239,108,0,0.25) 100%);
    z-index: 2;
}
.hero-dsc-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    padding: 64px 16px 56px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero-dsc-title {
    font-size: 2.8em;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.32), 0 1px 0 #ef6c00;
}
.hero-dsc-desc {
    font-size: 1.35em;
    font-weight: 500;
    margin-bottom: 32px;
    color: #ffe0b2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.22);
}
.hero-dsc-cta {
    font-size: 1.18em;
    padding: 14px 38px;
    border-radius: 8px;
    font-weight: 700;
    background: linear-gradient(135deg, #43ea7c 0%, #1b5e20 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(67,234,124,0.12);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    margin-top: 8px;
}
.hero-dsc-cta:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #43ea7c 100%);
    box-shadow: 0 4px 24px rgba(67,234,124,0.18);
    transform: translateY(-2px) scale(1.04);
}
/* --- Hero Section Styles --- */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 48px 0 32px 0;
    background: linear-gradient(135deg, #fffde7 0%, #ffe0b2 100%);
    box-shadow: 0 4px 32px rgba(239,108,0,0.08);
}
.hero-image-wrap {
    flex: 1 1 420px;
    max-width: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image {
    width: 100%;
    max-width: 480px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(44,62,80,0.18);
    object-fit: cover;
    aspect-ratio: 16/9;
}
.hero-content {
    flex: 1 1 340px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
}
.hero-title {
    font-size: 2.8em;
    font-weight: 900;
    color: #ef6c00;
    margin-bottom: 8px;
    letter-spacing: 2px;
}
.hero-desc {
    font-size: 1.25em;
    color: #333;
    margin-bottom: 18px;
}
.hero-cta-row {
    margin-top: 12px;
}
.hero-cta {
    font-size: 1.15em;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    background: linear-gradient(135deg, #43ea7c 0%, #1b5e20 100%);
    color: #fff;
    box-shadow: 0 2px 12px rgba(67,234,124,0.12);
    transition: background 0.2s, box-shadow 0.2s;
}
.hero-cta:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #43ea7c 100%);
    box-shadow: 0 4px 24px rgba(67,234,124,0.18);
}
/* --- Footer Styles --- */
.site-footer {
    background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
    border-top: 3px solid #e65100;
    padding: 32px 20px 24px 20px;
    margin-top: 80px;
    font-family: inherit;
    color: #fff;
    box-shadow: 0 -4px 24px rgba(239,108,0,0.18);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    /* Ensure full width even inside containers */
    margin-left: 0;
    margin-right: 0;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
    opacity: 1;
    z-index: 0;
}
.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.22);
    z-index: 1;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.45);
    position: relative;
    z-index: 2;
}
.footer-brand {
    font-size: 1.6em;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
    letter-spacing: 2.5px;
    margin-bottom: 4px;
}
.footer-contact {
    font-size: 1.05em;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.45);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
}
.footer-contact span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-contact a {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.45);
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-contact a:hover {
    text-shadow: 0 2px 8px rgba(255,255,255,0.6);
    transform: translateY(-1px);
}
.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}
.footer-social {
    margin-top: 4px;
}
.footer-social a svg {
    vertical-align: middle;
    transition: transform 0.2s;
}
.footer-social a:hover svg {
    transform: scale(1.15);
    filter: brightness(1.2);
}
.footer-copy {
    font-size: 0.95em;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0,0,0,0.22);
    margin-top: 8px;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 24px 16px 20px 16px;
        margin-top: 60px;
    }
    
    .footer-brand {
        font-size: 1.3em;
        letter-spacing: 2px;
    }
    
    .footer-contact {
        font-size: 0.95em;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-contact span {
        flex-direction: column;
        gap: 4px;
    }
}
/* --- Cart Page Professional Cricket Background --- */
.cart-page {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%) !important;
    min-height: 100vh;
    position: relative;
    padding-bottom: 40px;
}

.cart-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="400" height="400" xmlns="http://www.w3.org/2000/svg"><circle cx="200" cy="200" r="80" fill="%23fffde7" stroke="%23d84315" stroke-width="8"/><ellipse cx="200" cy="200" rx="80" ry="20" fill="none" stroke="%23d84315" stroke-width="4"/><ellipse cx="200" cy="200" rx="20" ry="80" fill="none" stroke="%23d84315" stroke-width="4"/></svg>') no-repeat right 40px bottom 40px;
    opacity: 0.10;
    pointer-events: none;
    z-index: 0;
}

.cart-page > * {
    position: relative;
    z-index: 1;
}
/* --- About Page Professional Background --- */
.about-section {
    background: #fafafa;
    min-height: 100vh;
    position: relative;
    padding-bottom: 40px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(239,108,0,0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,152,0,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-section > * {
    position: relative;
    z-index: 1;
}
/* Force hide cart container when empty (must be last for !important to win) */
.cart-hidden {
    display: none !important;
}
/* === Cart Page Styles (force override) === */
.cart-page {
    margin: 40px auto 0 auto !important;
    max-width: 1200px !important;
    background: none !important;
}

.cart-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 40px !important;
    background: #fff !important;
    border-radius: 18px !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10) !important;
    padding: 40px 32px !important;
    margin-top: 32px !important;
    align-items: flex-start !important;
}

.cart-items-section {
    min-width: 0 !important;
}

.cart-summary {
    background: #f9fafb !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
    padding: 32px 24px !important;
    min-width: 280px !important;
    max-width: 340px !important;
}

.cart-item {
    display: flex !important;
    gap: 22px !important;
    align-items: center !important;
    border-bottom: 1px solid #e5e7eb !important;
    padding: 18px 0 !important;
}

.cart-item:last-child {
    border-bottom: none !important;
}

.cart-item-image {
    width: 90px !important;
    height: 90px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    background: #f3f4f6 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

.cart-item-details {
    flex: 1 1 0 !important;
    min-width: 0 !important;
}

.cart-item-details h3 {
    font-size: 1.15em !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 4px !important;
}

.cart-item-details p {
    color: #64748b !important;
    font-size: 0.98em !important;
    margin-bottom: 2px !important;
}

.cart-item-price {
    font-size: 1.1em !important;
    font-weight: 700 !important;
    color: #16a34a !important;
    min-width: 80px !important;
    text-align: right !important;
}

.cart-item-qty {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 8px !important;
    min-width: 90px !important;
}

.qty-input {
    width: 60px !important;
    padding: 6px !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 6px !important;
    text-align: center !important;
    font-size: 1em !important;
}

/* Remove button matches Add to Cart style */
.btn-remove {
    background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 6px 16px !important;
    font-size: 0.98em !important;
    cursor: pointer !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 12px rgba(239,108,0,0.10) !important;
    transition: background 0.2s, box-shadow 0.2s !important;
}
.btn-remove:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ef6c00 100%) !important;
    box-shadow: 0 4px 24px rgba(239,108,0,0.18) !important;
    transform: translateY(-2px) scale(1.04) !important;
}

@media (max-width: 900px) {
    .cart-container {
        grid-template-columns: 1fr !important;
        padding: 24px 8px !important;
        gap: 24px !important;
    }
    .cart-summary {
        max-width: 100% !important;
        min-width: 0 !important;
        padding: 24px 12px !important;
    }
}
* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: #f5f7fa;
        min-height: 100vh;
        padding: 0;
        position: relative;
        display: flex;
        flex-direction: column;
    main {
        flex: 1;
    }
    }

    /* Professional sports shop subtle pattern */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(245,247,250,0.9) 100%),
            repeating-linear-gradient(
                45deg,
                transparent,
                transparent 50px,
                rgba(0, 0, 0, 0.01) 50px,
                rgba(0, 0, 0, 0.01) 51px
            );
        pointer-events: none;
        z-index: 0;
    }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        padding: 0 20px 20px 20px;
    }

    /* Header */
    header {
        margin-bottom: 20px;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        overflow: visible;
        border: none;
        border-bottom: none;
        position: relative;
    }

    header::before {
        display: none;
    }

    .header-banner {
        background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
        padding: 24px 2% 20px 2%;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        position: relative;
        overflow: hidden;
    }
    
    .header-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 100%);
        pointer-events: none;
    }
    
    .header-banner img {
        height: 80px;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)) 
                drop-shadow(0 2px 4px rgba(0,0,0,0.2))
                drop-shadow(0 0 20px rgba(255,255,255,0.3));
        transition: transform 0.3s ease, filter 0.3s ease;
    }
    
    .header-banner img:hover {
        transform: translateY(-3px) scale(1.05);
        filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4)) 
                drop-shadow(0 4px 8px rgba(0,0,0,0.25))
                drop-shadow(0 0 30px rgba(255,255,255,0.4));
    }

    .header-banner h1 {
        margin: 8px 0 0 0;
        font-size: 2.2em;
        font-weight: 900;
        letter-spacing: 3px;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
        position: relative;
    }
    
    .header-banner h4 {
        margin: 8px 0 0 0;
        font-size: 0.9em;
        font-weight: 600;
        color: #ffe0b2;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        opacity: 0.95;
    }

    .top-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 2%;
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        position: relative;
        z-index: 1;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .top-nav::after {
        display: none;
    }

    .logo {
        font-size: 1.5em;
        font-weight: 700;
        color: #000000;
        text-shadow: none;
        letter-spacing: 0.5px;
        position: relative;
        padding-left: 0;
        flex-shrink: 0;
    }

    .logo::before {
        display: none;
    }

    .main-nav {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .main-nav a {
        color: #000000;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95em;
        transition: all 0.3s;
        padding: 8px 16px;
        border-radius: 0;
    }

    .main-nav a:hover {
        background: transparent;
        transform: none;
        color: #dc2626;
    }
    .cart-icon {
        position: relative;
        background: transparent;
        border: 1px solid #e5e7eb;
        color: #000000;
        padding: 8px 10px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }
@media (max-width: 900px) {
    .cart-icon {
        margin-left: 0 !important;
        padding: 6px 8px !important;
        font-size: 1em !important;
        width: auto !important;
        align-self: center !important;
    }
    .main-nav {
        align-items: center !important;
        justify-content: center !important;
    }
}

    .cart-icon:hover {
        background: #f9fafb;
        transform: none;
        border-color: #dc2626;
    }

    .cart-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background: #16a34a;
        color: white;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    }

    .hero {
        display: none;
    }

    .hero-content {
        max-width: 900px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 3.5em;
        font-weight: 900;
        background: linear-gradient(135deg, #dc2626 0%, #16a34a 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 20px;
        letter-spacing: -1px;
        line-height: 1.2;
        position: relative;
    }

    .hero-content p {
        font-size: 1.3em;
        color: #64748b;
        margin-bottom: 35px;
        font-weight: 500;
        line-height: 1.6;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-row {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    .hero-cta {
        padding: 16px 40px !important;
        font-size: 1.2em !important;
    }

    /* Upload Section */
    .upload-section {
        background: #ffffff;
        padding: 40px;
        border-radius: 20px;
        margin-bottom: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border: 1px solid #ffffff;
    }

    .upload-section h2 {
        color: #dc2626;
        margin-bottom: 25px;
        font-size: 2em;
        font-weight: 700;
        border-bottom: 3px solid #16a34a;
        padding-bottom: 10px;
        display: inline-block;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
    }

    .form-group input[type="text"],
    .form-group input[type="number"],
    .form-group textarea,
    .form-group select {
           width: 100%;
           padding: 14px;
           border: 2px solid #e5e7eb;
           border-radius: 10px;
           font-size: 16px;
           transition: all 0.3s;
           background: #fff;
           box-sizing: border-box;
    }

    .form-group input[type="text"]:focus,
    .form-group input[type="number"]:focus,
    .form-group textarea:focus,
    .form-group select:focus {
           outline: none;
           border-color: #16a34a;
           box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.12);
           background: #f0fdf4;
    }

    .form-group input[type="file"] {
        padding: 10px;
        border: 2px dashed #ffffff;
        border-radius: 8px;
        cursor: pointer;
        width: 100%;
    }

    /* Card navigation buttons */
    .card-nav, .card-prev, .card-next {
        cursor: pointer;
    }

    /* Clickable elements */
    button, .btn, a {
        cursor: pointer;
    }

    .image-preview {
        margin-top: 15px;
        display: none;
    }

    /* 3x3 preview grid for admin uploads */
    .image-preview .preview-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 8px;
    }

    .image-preview .preview-thumb {
        width: 100%;
        height: 110px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0,0,0,0.04);
    }

    .preview-note {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 8px;
    }

    /* Buttons */
    .btn {
        padding: 14px 32px;
        border: none;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        background: white;
        color: #1e293b;
        border: 2px solid #ffffff;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        border-color: #16a34a;
    }

    .btn-primary {
        background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        color: white;
        border: none;
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    }

    .btn-danger {
        background: #e74c3c;
        color: white;
        margin-top: 15px;
    }

    .btn-danger:hover {
        background: #c0392b;
    }

    /* Filter Section */
    .filter-section {
        background: #ffffff;
        padding: 30px 40px;
        border-radius: 20px;
        margin-bottom: 30px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border: 1px solid #ffffff;
    }

    .filter-section h2 {
        color: #ef6c00;
        margin-bottom: 20px;
        font-size: 2em;
        font-weight: 700;
    }

    /* Search Container */
    .search-wrapper {
        margin-bottom: 20px;
    }
    
    /* Center and style the shipping form in cart summary */
    #addressForm {
        margin-left: auto;
        margin-right: auto;
        max-width: 340px;
        width: 100%;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        padding: 24px 20px;
        display: block;
    }

    #addressForm .form-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 18px;
    }
    #addressForm .form-group label {
        margin-bottom: 4px;
        font-weight: 600;
        color: #dc2626;
        font-size: 0.98em;
    }
    #addressForm .form-group input[type="text"],
    #addressForm .form-group input[type="email"],
    #addressForm .form-group input[type="number"],
    #addressForm .form-group input[type="tel"] {
        width: 96%;
        min-width: 120px;
        max-width: 280px;
        margin: 0 auto 0 auto;
        display: block;
        padding: 14px;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        font-size: 16px;
        transition: all 0.3s;
        background: #fff;
        box-sizing: border-box;
    }
    #addressForm .form-group input[type="text"]:focus,
    #addressForm .form-group input[type="email"]:focus,
    #addressForm .form-group input[type="number"]:focus,
    #addressForm .form-group input[type="tel"]:focus {
        outline: none;
        border-color: #16a34a;
        box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.12);
        background: #f0fdf4;
    }
@media (max-width: 900px) {
    #addressForm {
        max-width: 100%;
    }
}

    .search-label {
        display: block;
        color: #374151;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .search-container {
        position: relative;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .search-input {
        flex: 1;
        max-width: 500px;
        padding: 12px 50px 12px 20px;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 14px;
        transition: all 0.3s;
        outline: none;
    }

    .search-input:focus {
        border-color: #16a34a;
        box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
    }

    .search-icon {
        font-size: 20px;
        opacity: 0.6;
        flex-shrink: 0;
    }

    .clear-search-btn {
        position: absolute;
        left: calc(min(500px, 100%) - 35px);
        top: 50%;
        transform: translateY(-50%);
        background: #dc2626;
        color: white;
        border: none;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    
        transform: translateY(-50%);
        background: #dc2626;
        color: white;
        border: none;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .clear-search-btn:hover {
        background: #b91c1c;
        transform: translateY(-50%) scale(1.1);
    }

    .filters {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .filter-btn {
        padding: 10px 24px;
        border: 2px solid #ef6c00;
        background: #fff;
        color: #ef6c00;
        border-radius: 25px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
    }

    .filter-btn:hover {
        background: #fff3e0;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(239, 108, 0, 0.15);
    }

    .filter-btn.active {
        background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
        color: #fff;
        border-color: #ef6c00;
        box-shadow: 0 4px 15px rgba(239, 108, 0, 0.25);
    }

    /* Bat Sidebar Filter */
    .bat-sidebar {
        position: static;
        width: 280px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 20px;
        display: block;
    }

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

    .sidebar-header h3 {
        margin: 0;
        font-size: 1.2em;
        font-weight: 700;
        color: #1a1a1a;
    }

    .close-sidebar {
        background: transparent;
        border: none;
        font-size: 24px;
        color: #666;
        cursor: pointer;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        transition: all 0.3s;
    }

    .close-sidebar:hover {
        background: #f3f4f6;
        color: #000;
    }

    .sidebar-content {
        padding: 0;
    }

    .filter-group {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e5e7eb;
    }

    .filter-group:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .filter-group h4 {
        margin: 0 0 12px 0;
        font-size: 0.95em;
        font-weight: 700;
        color: #1a1a1a;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .filter-checkbox {
        display: flex;
        align-items: center;
        padding: 6px 0;
        cursor: pointer;
        user-select: none;
        transition: all 0.2s;
    }

    .filter-checkbox:hover {
        padding-left: 4px;
    }

    .filter-checkbox input[type="checkbox"] {
        width: 18px;
        height: 18px;
        margin-right: 10px;
        cursor: pointer;
        accent-color: #16a34a;
    }

    .filter-checkbox span {
        font-size: 0.9em;
        color: #374151;
        font-weight: 400;
    }

    .sidebar-actions {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid #e5e7eb;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .sidebar-actions .btn {
        width: 100%;
        padding: 12px;
        font-weight: 600;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s;
        font-size: 0.95em;
    }

    .sidebar-actions .btn-primary {
        background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
        color: white;
        border: none;
    }

    .sidebar-actions .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
    }

    .sidebar-actions .btn:not(.btn-primary) {
        background: white;
        color: #374151;
        border: 2px solid #e5e7eb;
    }

    .sidebar-actions .btn:not(.btn-primary):hover {
        background: #f9fafb;
        border-color: #dc2626;
        color: #dc2626;
    }

    /* Gallery layout with sidebar */
    .products-with-sidebar {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .products-with-sidebar .bat-sidebar {
        flex-shrink: 0;
    }

    .products-with-sidebar .gallery-section {
        flex: 1;
    }

    /* Overlay when sidebar is open - REMOVED */
    .sidebar-overlay {
        display: none !important;
    }

    /* Gallery Section */
    .gallery-section {
        margin-bottom: 30px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
        align-items: stretch;
        justify-items: center;
    }

    /* reset list styles when gallery is a ul */
    .gallery-grid {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .gallery-item-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .gallery-item {
        background: #ffffff;
        border-radius: 8px;
        overflow: visible;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        transition: box-shadow 0.3s, transform 0.3s;
        cursor: pointer;
        position: relative;
        width: 100%;
        border: none;
        margin-bottom: 12px;
    }

    .gallery-item::before {
        display: none;
    }

    .gallery-item:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 32px rgba(239,108,0,0.18);
        border-color: #fff;
    }

    /* Product image container for main image and thumbnails */
    .product-image-container {
        position: relative;
        width: 100%;
        background: #fff;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
    }

    .main-product-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        cursor: default;
        transition: transform 0.4s;
    }

    .gallery-item:hover .main-product-image {
        transform: scale(1.05);
    }

    /* New badge overlay - DSC style */
    .new-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #16a34a;
        color: white;
        padding: 6px 14px;
        border-radius: 4px;
        font-weight: 800;
        font-size: 0.75em;
        z-index: 5;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
    }

    /* Rare badge overlay */
    .rare-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        color: #78350f;
        padding: 6px 14px;
        border-radius: 4px;
        font-weight: 800;
        font-size: 0.75em;
        z-index: 5;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
    }

    /* Product thumbnails - DSC style */
    .product-thumbnails {
        display: flex;
        gap: 8px;
        justify-content: center;
        padding: 12px 8px 8px 8px;
        background: transparent;
        border-top: none;
    }

    .product-thumbnails .thumbnail {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 6px;
        cursor: pointer;
        border: 2px solid #e5e7eb;
        transition: all 0.2s;
        opacity: 0.7;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .product-thumbnails .thumbnail:hover {
        opacity: 1;
        border-color: #ef6c00;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .product-thumbnails .thumbnail.active {
        opacity: 1;
        border-color: #ef6c00;
        box-shadow: 0 2px 8px rgba(239, 108, 0, 0.3);
    }

    .gallery-item img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
        cursor: default;
        transition: transform 0.4s;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    @media (max-width: 640px) {
        .gallery-item img,
        .main-product-image {
            width: 100%;
            height: 200px;
        }
        
        .product-thumbnails .thumbnail {
            width: 40px;
            height: 40px;
        }

        /* On very small screens keep buttons side by side but smaller text */
        .card-action-row {
            gap: 6px;
        }

        .btn-view-details,
        .btn-add-to-cart {
            font-size: 11px;
            padding: 9px 6px;
            letter-spacing: 0.2px;
        }
    }

    .gallery-item-info {
        padding: 0;
        text-align: left;
        background: transparent;
        border: none;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .gallery-item-info h3 {
        color: #0f172a;
        margin: 0 0 8px 0;
        font-size: 1em;
        font-weight: 600;
        line-height: 1.5;
        min-height: 3em;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        letter-spacing: 0.3px;
    }

    .gallery-item-info .price {
        font-size: 1.4em;
        font-weight: 800;
        color: #0f172a;
        margin: 0 0 12px 0;
        display: block;
        letter-spacing: 0.5px;
    }


    /* Card nav buttons (manual image navigation) */
    .card-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.95);
        color: #0f172a;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 18px;
        font-weight: 700;
        z-index: 10;
        backdrop-filter: blur(4px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: all 0.2s;
        opacity: 0;
    }

    .card-prev { left: 8px; }
    .card-next { right: 8px; }

    .gallery-item:hover .card-nav {
        opacity: 1;
    }

    .card-nav:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        color: #ef6c00;
    }

    /* Add to Cart Button on Gallery Items */
    .product-title {
        font-size: 1.05em;
        color: #0f172a;
        font-weight: 700;
        margin: 0 0 12px 0;
        line-height: 1.4;
    }

    .price-row{
        display: flex;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 12px;
    }
    
    .price {
        font-size: 1.6em;
        font-weight: 900;
        color: #ef6c00;
        margin-bottom: 8px;
        display: block;
    }

    .price::before {
        content: '';
        font-size: 0.85em;
        margin-right: 2px;
    }

    .price::after {
        content: '';
        font-size: 0.4em;
        color: #64748b;
        font-weight: 600;
        margin-left: 4px;
    }
    
    .mrp {
        font-size: 0.9em;
        color: #94a3b8;
        text-decoration: line-through;
        font-weight: 600;
    }

    .mrp::before {
        content: 'MRP: ';
    }

    .mrp::after {
        content: '/-';
    }
    
    .discount-badge {
        background: #16a34a;
        color: white;
        padding: 4px 10px;
        border-radius: 4px;
        font-weight: 800;
        font-size: 0.75em;
        display: inline-block;
        letter-spacing: 0.3px;
    }


    /* Make titles appear like links on hover */
    .gallery-item-info h3 a{ color:inherit; text-decoration:none }
    .gallery-item-info h3 a:hover{ color:#0d47a1; text-decoration:none }

    /* Thumbnails smaller and centered */
    .thumbs{ display:flex; gap:6px; justify-content:center; margin-top:10px }
    .thumb{ width:48px; height:48px; object-fit:cover; border-radius:6px; cursor:pointer; border:1px solid #eee }

    .price {
        font-size: 1.6em;
        font-weight: 900;
        color: #0f172a;
        margin-bottom: 8px;
        display: block;
    }

    

    .price::after {
        content: '';
        font-size: 0.4em;
        color: #64748b;
        font-weight: 600;
        margin-left: 4px;
    }
    

    .gallery-item-meta {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        font-size: 0.9em;
        margin-bottom: 14px;
    }

    .category-badge {
        background: #fff;
        color: #ef6c00;
        padding: 6px 16px;
        border-radius: 999px;
        box-shadow: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border: 1.5px solid #f3a14a;
    }
    
    /* Inline size picker inside card action row */
    .card-size-picker {
        display: flex;
        flex-direction: column;
        gap: 6px;
        width: 100%;
        animation: panelSlideDown 0.15s ease;
    }

    .card-size-label {
        font-size: 0.78em;
        font-weight: 700;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .card-size-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .card-size-chip {
        padding: 5px 12px;
        border-radius: 6px;
        border: 2px solid #ef6c00;
        background: #fff;
        color: #ef6c00;
        font-size: 0.82em;
        font-weight: 700;
        cursor: pointer;
        transition: background 0.15s, color 0.15s;
    }

    .card-size-chip:hover {
        background: #ef6c00;
        color: #fff;
    }

    .card-size-cancel {
        background: none;
        border: none;
        color: #9ca3af;
        font-size: 0.78em;
        cursor: pointer;
        padding: 0;
        text-align: left;
    }

    .card-size-confirm {
        width: 100%;
        text-align: center;
        color: #16a34a;
        font-weight: 700;
        font-size: 0.9em;
        padding: 10px 0;
        animation: panelSlideDown 0.15s ease;
    }

    /* Two-button action row on each card */
    .card-action-row {
        display: flex;
        gap: 8px;
        margin-top: auto;
        padding-top: 12px;
        align-items: stretch;
    }

    .btn-view-details {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 11px 10px;
        border-radius: 10px;
        border: 2px solid #ef6c00;
        background: #fff;
        color: #ef6c00;
        font-weight: 700;
        font-size: 13px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        white-space: nowrap;
        box-sizing: border-box;
    }

    .btn-view-details:hover {
        background: #fff7ed;
        color: #c2410c;
        border-color: #c2410c;
    }

    /* Add to Cart Button on Gallery Items */
    .btn-add-to-cart {
        flex: 1;
        margin-top: 0;
        padding: 11px 10px;
        background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-weight: 700;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
        text-transform: uppercase;
        letter-spacing: 0.4px;
        white-space: nowrap;
        box-sizing: border-box;
    }
    
    .btn-add-to-cart:hover {
        background: linear-gradient(135deg, #ff9800 0%, #ef6c00 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(239, 108, 0, 0.25);
    }

    .btn-add-to-cart:active {
        transform: translateY(0);
    }

    .empty-message {
        text-align: center;
        padding: 80px 40px;
        background: #ffffff;
        border-radius: 20px;
        color: #64748b;
        border: 2px dashed #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .empty-message p {
        font-size: 1.3em;
        font-weight: 500;
    }

    /* Modal */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        overflow: auto;
    }

    .modal-content {
        margin: 50px auto;
        max-width: 900px;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        animation: slideIn 0.3s;
    }

    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .modal-content img {
        width: 100%;
        max-height: 500px;
        object-fit: contain;
        background: #000;
        transition: transform 0.3s ease;
        cursor: zoom-in;
    }

    .modal-image-container {
        position: relative;
        overflow: hidden;
        background: #000;
    }

    .modal-zoom-image.zoomed {
        transform: scale(2);
        cursor: zoom-out;
    }

    .zoom-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid #ddd;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 20px;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s;
    }

    .zoom-btn:hover {
        background: #ffffff;
        transform: scale(1.1);
    }

    .modal-info {
        padding: 30px;
    }

    .modal-info h3 {
        font-size: 2em;
        margin-bottom: 15px;
        color: #333;
    }

    .modal-info p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .modal-meta {
        font-size: 0.9em;
        color: #999;
    }

    .close {
        color: white;
        float: right;
        font-size: 40px;
        font-weight: bold;
        padding: 20px;
        cursor: pointer;
    }

    .close:hover {
        color: #667eea;
    }

    /* Responsive */
    @media (max-width: 768px) {
        header {
            margin-left: 0;
            margin-right: 0;
            width: 100%;
        }

        .header-banner {
            margin-left: 0;
            margin-right: 0;
            width: 100%;
            padding-left: 5%;
            padding-right: 5%;
        }

        .hero-content h1 {
            font-size: 2.5em;
        }

        .hero-content p {
            font-size: 1.1em;
        }

        .top-nav {
            flex-direction: column;
            gap: 15px;
            text-align: center;
            padding: 20px 5%;
        }

        .main-nav {
            flex-direction: column;
            gap: 10px;
        }

        .hero {
            padding: 50px 5%;
        }

        .hero-content {
            max-width: 100%;
        }

        .hero-cta-row {
            flex-direction: column;
        }

        .upload-section,
        .filter-section {
            padding: 25px;
        }

        .gallery-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .filters {
            justify-content: center;
        }

        .filter-btn {
            font-size: 14px;
            padding: 8px 18px;
        }
    }

    @media (max-width: 480px) {
        header {
            margin-left: 0;
            margin-right: 0;
        }

        .hero-content h1 {
            font-size: 2em;
        }

        .logo {
            font-size: 1.4em;
        }

        .top-nav {
            padding: 15px 5%;
        }

        .hero {
            padding: 40px 5%;
        }

        .gallery-grid {
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        .gallery-item {
            margin-bottom: 0;
        }

        .gallery-item img {
            height: 150px;
        }

        .gallery-item-info h3 {
            font-size: 0.85em;
        }

        .gallery-item-info .price {
            font-size: 1em;
        }
    }



    /* PDP thumbnail active state */
    /* PDP DSC-Style Layout */
    .product-view-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Left Column: Images with Vertical Thumbnails */
    .product-media-section {
        display: flex;
        flex-direction: column;
    }

    .product-gallery-wrapper {
        display: flex;
        gap: 12px;
        background: #fff;
        padding: 16px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    /* Vertical Thumbnails (Left Side) */
    .thumbnails-vertical {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 80px;
        flex-shrink: 0;
    }

    .thumbnails-vertical .thumb {
        width: 80px;
        height: 80px;
        border-radius: 6px;
        object-fit: cover;
        cursor: pointer;
        border: 2px solid #ffffff;
        transition: all 0.3s;
    }

    .thumbnails-vertical .thumb:hover {
        border-color: #667eea;
        transform: scale(1.05);
    }

    .thumbnails-vertical .thumb.active-thumb {
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    /* Main Image */
    .main-image-wrapper {
        position: relative;
        flex: 1;
    }

    .product-image-container {
        overflow: hidden;
        cursor: default;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-product-image {
        width: 100%;
        height: auto;
        max-height: 600px;
        object-fit: contain;
        display: block;
        cursor: default;
        transition: transform 0.3s ease;
        background: #f8f8f8;
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.95);
        border: 1px solid #ffffff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .nav-btn:hover {
        background: #667eea;
        color: #fff;
        border-color: #667eea;
    }

    .nav-prev { left: 8px; }
    .nav-next { right: 8px; }

    /* Right Column: Product Info */
    .product-info-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .product-title {
        font-size: 28px;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
        line-height: 1.3;
    }

    .short-description {
        color: #4b5563;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 1.7;
    }

    /* Price Section (DSC Style) */
    .price-section {
        padding: 16px 0;
        border-bottom: 1px solid #ffffff;
    }

    .price-main {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-bottom: 8px;
    }
    .bold-orange {
  font-weight: bold;
  color: #ef6c00 !important;
}

    .price-display {
        font-size: 32px;
        font-weight: 700;
        color: #667eea;
    }

    .price-tax-label {
        font-size: 13px;
        color: #666;
    }

    .price-discount {
        margin-bottom: 8px;
    }

    .discount-badge {
        background: #ff4444;
        color: #fff;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 600;
    }

    .price-mrp {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }

    .price-mrp label {
        color: #666;
        font-weight: 600;
    }

    .price-old {
        color: #999;
        text-decoration: line-through;
    }

    /* Stock & SKU */
    .product-info-stock {
        display: flex;
        gap: 20px;
        padding: 12px 0;
        border-bottom: 1px solid #ffffff;
    }

    .stock-label {
        color: #22c55e;
        font-weight: 600;
        font-size: 14px;
    }

    .stock-label.out-of-stock-badge {
        background: #dc2626;
        color: #fff !important;
        font-weight: 700;
        font-size: 13px;
        padding: 4px 12px;
        border-radius: 20px;
        letter-spacing: 0.5px;
        display: inline-block;
    }
    
    .stock-qty {
        color: #666;
        font-size: 13px;
        margin-left: 6px;
        font-weight: 500;
    }

    .sku-info {
        font-size: 14px;
        color: #666;
    }

    .sku-info strong {
        color: #333;
    }

    /* Meta Info */
    .product-meta-info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 14px 16px;
        background: #ffffff;
        border-radius: 8px;
        font-size: 14px;
        margin-bottom: 16px;
    }

    .meta-row {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .meta-row strong {
        color: #666;
        min-width: 100px;
        flex-shrink: 0;
    }
    
    .meta-row span {
        color: #1e293b;
        font-weight: 500;
    }

    .meta-row span {
        color: #333;
        text-transform: capitalize;
    }

    /* Size Selector */
    .product-options {
        padding: 16px 0;
    }

    .option-label {
        display: block;
        font-weight: 600;
        color: #333;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .size-options {
        display: flex;
        gap: 8px;
    }

    .size-option {
        padding: 10px 20px;
        border: 2px solid #ffffff;
        background: #fff;
        border-radius: 6px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s;
        font-size: 14px;
    }

    .size-option:hover {
        border-color: #667eea;
    }

    .size-option.active {
        border-color: #667eea;
        background: #f0f4ff;
        color: #667eea;
    }

    /* Quantity Selector */
    .product-qty {
        padding: 16px 0;
    }

    .qty-label {
        display: block;
        font-weight: 600;
        color: #333;
        margin-bottom: 12px;
        font-size: 14px;
    }

    .qty-control {
        display: flex;
        align-items: center;
        gap: 0;
        width: fit-content;
        border: none;
        border-radius: 6px;
        overflow: hidden;
    }

    .qty-btn {
        width: 40px;
        height: 40px;
        border: none;
        background: #ffffff;
        cursor: pointer;
        font-size: 20px;
        font-weight: 600;
        color: #333;
        transition: all 0.3s;
    }

    .qty-btn:hover {
        background: #667eea;
        color: #fff;
    }

    #qtyInput {
        width: 60px;
        height: 40px;
        border: 1px solid #ddd;
        text-align: center;
        font-size: 16px;
        font-weight: 600;
        background: #fff;
        outline: none;
    }

    /* Action Buttons */
    .product-actions {
        display: flex;
        gap: 12px;
        padding: 20px 0;
    }

    .btn-buy-now,
    .btn-add-cart {
        flex: 1;
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-buy-now {
        background: #667eea;
        color: #fff;
    }

    .btn-buy-now:hover {
        background: #5568d3;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

    .btn-add-cart {
        background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
        color: #fff;
        border: 2px solid #ef6c00;
        font-weight: 700;
        box-shadow: 0 2px 12px rgba(239,108,0,0.10);
    }

    .btn-add-cart:hover {
        background: linear-gradient(135deg, #ff9800 0%, #ef6c00 100%);
        color: #fff;
        box-shadow: 0 4px 24px rgba(239,108,0,0.18);
        transform: translateY(-2px) scale(1.04);
    }
    
    /* Payment Options */
    .payment-options {
        display: flex;
        gap: 12px;
        padding: 16px 0;
        border-top: 1px solid #ffffff;
    }
    
    .btn-paypal,
    .btn-contact {
        flex: 1;
        min-width: 200px;
        max-width: 100%;
        padding: 18px 32px;
        font-size: 1.18em;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    /* Payment buttons container for consistent layout */
    .buttons-container {
        display: flex;
        gap: 12px;
        width: 100%;
        justify-content: center;
        align-items: stretch;
    }
    }
    
    .btn-paypal {
        background: #0070ba;
        color: #fff;
    }
    
    .btn-paypal:hover {
        background: #005a92;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 112, 186, 0.4);
    }
    
    .btn-contact {
        background: #16a34a;
        color: #fff;
    }
    
    .btn-contact:hover {
        background: #15803d;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
    }

    /* Store Location */
    .store-location {
        padding: 20px 0;
        border-top: 1px solid #ffffff;
        margin-top: 16px;
    }

    .location-title {
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 12px;
        font-size: 16px;
    }

    .location-info {
        background: #ffffff;
        padding: 16px;
        border-radius: 10px;
        border: 2px solid #ffffff;
    }

    .location-info p {
        margin: 4px 0;
        color: #475569;
        font-size: 14px;
        line-height: 1.6;
    }

    .location-info p:first-of-type {
        font-size: 16px;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .btn-location {
        display: inline-block;
        margin-top: 12px;
        padding: 10px 20px;
        background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s;
        box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
    }

    .btn-location:hover {
        background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
    }

    /* Accordion Sections */
    .product-details-accordion {
        margin-top: 20px;
    }

    .accordion-item {
        border-bottom: 1px solid #ffffff;
    }

    .accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        cursor: pointer;
        font-weight: 600;
        color: #333;
        font-size: 16px;
        user-select: none;
    }

    .accordion-header:hover {
        color: #667eea;
    }

    .accordion-icon {
        font-size: 24px;
        font-weight: 400;
        transition: transform 0.3s;
    }

    .accordion-header.active .accordion-icon {
        transform: rotate(45deg);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        color: #666;
        line-height: 1.6;
    }

    .accordion-content.active {
        max-height: 500px;
        padding-bottom: 16px;
    }

    /* Back Link */
    .back-link {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #ffffff;
    }

    .back-link a {
        color: #667eea;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
    }

    .back-link a:hover {
        text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 968px) {
        body {
            overflow-x: hidden !important;
            max-width: 100vw !important;
        }

        .container {
            padding: 0 !important;
            max-width: 100% !important;
        }

        .product-view-container {
            grid-template-columns: 1fr;
            gap: 24px;
            padding: 0 16px !important;
            max-width: 100% !important;
            overflow-x: hidden !important;
            width: 100% !important;
        }

        .product-media-section {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
        }

        .product-gallery-wrapper {
            flex-direction: column !important;
            gap: 12px;
            min-height: unset !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            position: relative !important;
            overflow: hidden !important;
        }

        .thumbnails-vertical {
            flex-direction: row !important;
            width: 100% !important;
            overflow-x: auto;
            gap: 8px;
            height: auto !important;
        }

        .thumbnails-vertical .thumb {
            min-width: 60px;
            width: 60px !important;
            height: 60px !important;
        }

        .main-image-wrapper {
            flex: none !important;
            height: auto !important;
            min-height: 300px;
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            position: relative !important;
        }

        .nav-btn {
            width: 36px !important;
            height: 36px !important;
            font-size: 20px !important;
        }

        .nav-prev {
            left: 4px !important;
        }

        .nav-next {
            right: 4px !important;
        }

        .product-image-container {
            height: 300px !important;
            width: 100% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

        .main-product-image {
            max-height: 300px !important;
            height: auto !important;
            width: auto !important;
            max-width: 100%;
            object-fit: contain !important;
        }
        
        .product-title {
            font-size: 22px;
        }

        .product-info-section {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            box-sizing: border-box !important;
        }

        .product-details {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
        
        .price-display {
            font-size: 24px;
        }

        .product-actions {
            flex-direction: column;
            gap: 12px;
            padding: 16px 0;
            width: 100% !important;
        }

        .btn-buy-now,
        .btn-add-cart {
            width: 100% !important;
            max-width: 100% !important;
            padding: 14px 20px !important;
            font-size: 15px !important;
            font-weight: 600 !important;
            box-sizing: border-box !important;
        }

        /* Recommendations section on tablet (769-968px) */
        #recommendationsSection {
            margin: 40px auto !important;
            padding: 0 16px !important;
        }

        #recommendationsSection h2 {
            font-size: 1.4em !important;
            margin-bottom: 20px !important;
        }
    }

    /* small overlay for card prev/next if desired */
    .card-nav-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,0.5);color:#fff;border:none;padding:6px 8px;border-radius:6px;cursor:pointer}


    /* Cricket / DSC-like visual theme */
    :root{--dsc-blue:#032b6b;--dsc-gold:#ffcc00;--dsc-green:#0b8a6f}

    .hero{background:linear-gradient(180deg, rgba(3,43,107,0.95), rgba(11,138,111,0.85));color:white;padding:48px 20px;border-radius:0 0 12px 12px;box-shadow:0 10px 40px rgba(2,6,23,0.12);background-image: radial-gradient(circle at 10% 20%, rgba(255,204,0,0.06), transparent 10%), radial-gradient(circle at 90% 80%, rgba(255,255,255,0.02), transparent 12%)}
    .hero-content{max-width:1100px;margin:0 auto;display:flex;flex-direction:column;gap:10px}
    .hero h1{font-size:2.2rem;letter-spacing:0.4px;margin:0;color:#fff}
    .hero p{color: #1e293b;max-width:800px;font-size:1.05rem;font-weight:500;}
    .hero-cta-row{margin-top:10px;display:flex;gap:12px}
    .hero-cta{background:gold;color:var(--dsc-blue);font-weight:800;padding:12px 20px;border-radius:10px}

    /* subtle curved background shape */
    .hero:before{content:"";position:absolute;left:0;right:0;top:0;height:160px;background:linear-gradient(180deg, rgba(255,255,255,0.02), transparent);pointer-events:none}

    /* accent for category badges */
    .category-badge{background:transparent;color:#fff;border:1px solid rgba(255,255,255,0.12)}

    /* make gallery cards match the hero */
    .gallery-item{background:linear-gradient(180deg,#fff, #fbfdff);}

    @media (max-width:760px){
        .hero h1{font-size:1.5rem}
        .hero p{font-size:0.95rem}
        .hero{padding:24px}
    }

/* Zoom Modal Styles */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.zoom-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zoom-modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: grab;
    user-select: none;
    transition: transform 0.1s ease-out;
}

.zoom-modal-image:active {
    cursor: grabbing;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.zoom-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.zoom-instructions {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    pointer-events: none;
}

/* FORCE: ensure gallery UL displays items side-by-side in a responsive grid */
ul.gallery-grid{
    list-style:none;
    padding:0;
    margin:0;
    display:grid !important;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
    gap:20px !important;
    align-items:start;
}

ul.gallery-grid > .gallery-item{
    display:block;
    width:100%;
    max-width: none;
}

@media (min-width:1000px){
    /* approx 3 columns on larger screens */
    ul.gallery-grid{ grid-template-columns: repeat(3, 1fr) !important; }
}

/* === About Page Styles (force override) === */
.about-section {
  margin-top: 0 !important;
  margin-bottom: 60px !important;
}

/* Hero Banner - matching index page style */
.about-hero-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 60px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('images/products/myShop1.jpeg') center center/cover no-repeat;
  box-shadow: 0 8px 32px rgba(44,62,80,0.12);
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0,0,0,0.7) 50%, rgba(239,108,0,0.25) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 80px 24px;
}

.about-hero-content h1 {
  font-size: 3.2em !important;
  font-weight: 900 !important;
  letter-spacing: 2px;
  margin-bottom: 20px !important;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 2px 4px rgba(239,108,0,0.5);
  color: #fff !important;
}

.about-hero-content p {
  font-size: 1.4em !important;
  font-weight: 500;
  color: #ffe0b2 !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  margin-bottom: 0 !important;
}

/* Tracking Page Hero Banner - Different Image */
.tracking-hero-banner {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 60px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('images/products/Tracker.jpeg') center center/cover no-repeat;
  box-shadow: 0 8px 32px rgba(44,62,80,0.12);
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.2em;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ef6c00, #ff9800);
  margin: 16px auto 0;
  border-radius: 2px;
}

.about-content {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
  margin-bottom: 60px !important;
  align-items: center;
  justify-content: center;
}

.about-card {
  background: #fff !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
  padding: 40px 36px !important;
  flex: 1 1 450px !important;
  min-width: 380px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Text cards should be wider */
.about-card:has(h2) {
  max-width: 700px !important;
  flex: 1.5 1 500px !important;
}

/* Image cards should be smaller */
.about-card:has(img) {
  max-width: 450px !important;
  flex: 1 1 400px !important;
  padding: 20px !important;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(239,108,0,0.15) !important;
}

.about-card.full-width-card {
  flex-basis: 100% !important;
  max-width: 100% !important;
  margin-top: 24px !important;
}

.about-card h2 {
  color: #ef6c00 !important;
  font-size: 1.8em !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
  background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-card p, .about-card ul {
  color: #4b5563 !important;
  font-size: 1.1em !important;
  line-height: 1.7 !important;
  margin-bottom: 12px !important;
}

.about-card ul {
  padding-left: 24px !important;
}

.about-card img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Stats Section */
.about-stats-section {
  margin-bottom: 60px;
}

.stats-grid {
  display: flex !important;
  justify-content: center !important;
  gap: 24px !important;
  margin-bottom: 0 !important;
  flex-wrap: wrap !important;
}

.stat-box {
  background: linear-gradient(135deg, #fff 0%, #fef3e7 100%) !important;
  border: 2px solid #ffe0b2;
  border-radius: 16px !important;
  box-shadow: 0 4px 16px rgba(239,108,0,0.12) !important;
  padding: 32px 40px !important;
  text-align: center !important;
  min-width: 160px !important;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 8px 28px rgba(239,108,0,0.2) !important;
  border-color: #ef6c00;
}

.stat-box h3 {
  color: #ef6c00 !important;
  font-size: 2.6em !important;
  font-weight: 900 !important;
  margin-bottom: 8px !important;
  text-shadow: 0 2px 4px rgba(239,108,0,0.1);
}

.stat-box p {
  color: #374151 !important;
  font-size: 1.05em !important;
  font-weight: 600 !important;
}

/* Mission/Vision Section */
.about-mission-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-card {
  background: linear-gradient(135deg, #fff 0%, #fff5ed 100%);
  border: 2px solid #ffe0b2;
  border-radius: 16px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(239,108,0,0.1);
  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(239,108,0,0.2);
  border-color: #ef6c00;
}

.mission-icon {
  font-size: 3.5em;
  margin-bottom: 20px;
  filter: grayscale(0.2);
}

.mission-card h2 {
  color: #ef6c00 !important;
  font-size: 1.9em !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
  background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-card p {
  color: #4b5563 !important;
  font-size: 1.1em !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}

.cta-section {
  text-align: center !important;
  margin-top: 60px !important;
  padding: 60px 24px;
  background: linear-gradient(135deg, #fff5ed 0%, #ffe0b2 100%);
  border-radius: 20px;
}

.cta-section h2 {
  font-size: 2.4em !important;
  font-weight: 900 !important;
  color: #1e293b !important;
  margin-bottom: 16px !important;
}

.cta-section p {
  color: #4b5563 !important;
  font-size: 1.2em !important;
  margin-bottom: 28px !important;
}

.cta-section .btn {
  background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%) !important;
  color: #fff !important;
  padding: 16px 48px !important;
  border-radius: 10px !important;
  font-size: 1.15em !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(239,108,0,0.3);
}

.cta-section .btn:hover {
  background: linear-gradient(135deg, #d45500 0%, #ef6c00 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(239,108,0,0.4) !important;
}

@media (max-width: 900px) {
  .about-hero-content h1 {
    font-size: 2.4em !important;
  }
  
  .about-hero-content p {
    font-size: 1.2em !important;
  }
  
  .about-content {
    flex-direction: column !important;
    gap: 28px !important;
  }
  
  .stats-grid {
    gap: 16px !important;
  }
  
  .stat-box {
    min-width: 140px !important;
    padding: 24px 32px !important;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.cta-section h2 {
  font-size: 2.4em !important;
  font-weight: 900 !important;
  color: #1e293b !important;
  margin-bottom: 16px !important;
}

.cta-section p {
  color: #4b5563 !important;
  font-size: 1.2em !important;
  margin-bottom: 28px !important;
}

.cta-section .btn {
  background: linear-gradient(135deg, #ef6c00 0%, #ff9800 100%) !important;
  color: #fff !important;
  padding: 16px 48px !important;
  border-radius: 10px !important;
  font-size: 1.15em !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(239,108,0,0.3);
}

.cta-section .btn:hover {
  background: linear-gradient(135deg, #d45500 0%, #ef6c00 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(239,108,0,0.4) !important;
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .stats-grid {
    flex-direction: column !important;
    gap: 18px !important;
  }
}

/* Pagination Controls */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 60px 0;
  padding: 20px 0;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn {
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  background: white;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover:not(:disabled):not(.active) {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.pagination-btn.active {
  background: #ef6c00;
  color: white;
  border-color: #ef6c00;
  font-weight: 600;
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* About Page Gallery */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
}

.about-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.about-gallery img:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.pagination-ellipsis {
  padding: 8px 4px;
  color: #9ca3af;
  font-weight: 500;
}

/* Disabled / out-of-stock size chip */
.card-size-chip.card-size-oos {
  background: #f3f4f6 !important;
  color: #9ca3af !important;
  border-color: #d1d5db !important;
  cursor: not-allowed !important;
  opacity: 0.7;
  text-decoration: line-through;
}

/* ── Social Proof Badges (card + PDP) ── */
.sp-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  margin: 6px 0 10px;
  line-height: 1.4;
}
.sp-badge--fire   { background: #fff7ed; color: #c2410c; }
.sp-badge--cart   { background: #f0fdf4; color: #15803d; }
.sp-badge--urgent { background: #fef2f2; color: #b91c1c; }
.sp-badge--recent { background: #eff6ff; color: #1d4ed8; }

.sp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: spPulse 1.4s infinite;
}
.sp-badge--fire   .sp-dot { background: #f97316; }
.sp-badge--cart   .sp-dot { background: #22c55e; }
.sp-badge--urgent .sp-dot { background: #ef4444; }
.sp-badge--recent .sp-dot { background: #3b82f6; }

@keyframes spPulse {
  0%, 100% { opacity: 1; transform: scale(1);    }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

/* PDP social proof block rows */
#socialProofBlock .sp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9a3412;
  margin-bottom: 7px;
}
#socialProofBlock .sp-row:last-child  { margin-bottom: 0; }
#socialProofBlock .sp-row .sp-dot     { background: #f97316; }
#socialProofBlock .sp-row--cart       { color: #166534; }
#socialProofBlock .sp-row--cart  .sp-dot  { background: #22c55e; }
#socialProofBlock .sp-row--recent     { color: #1e40af; }
#socialProofBlock .sp-row--recent .sp-dot { background: #3b82f6; }

@media (max-width: 480px) {
  .sp-badge { font-size: 0.73rem; padding: 4px 8px; }
  #socialProofBlock .sp-row { font-size: 0.8rem; }
}

/* ── WhatsApp Floating Button ─────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 12px 20px 12px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  background: #1da851;
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.wa-float svg { flex-shrink: 0; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%  { box-shadow: 0 4px 28px rgba(37,211,102,0.75); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
}
@media (max-width: 600px) {
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}

/* Pulse animation for review carousel indicator */
@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 32px 20px;
  margin: 32px 0;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.google-reviews-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.reviews-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  font-weight: 400;
}

.google-reviews-container {
  max-width: 1200px;
  margin: 0 auto;
  max-height: 500px;
  overflow-y: auto;
  padding-right: 8px;
}

.google-reviews-container::-webkit-scrollbar {
  width: 6px;
}

.google-reviews-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.google-reviews-container::-webkit-scrollbar-thumb {
  background: #ef6c00;
  border-radius: 10px;
}

.google-reviews-container::-webkit-scrollbar-thumb:hover {
  background: #d45a00;
}

.reviews-header {
  text-align: center;
  margin-bottom: 24px;
}

.rating-summary {
  display: flex;
  justify-content: center;
  align-items: center;
}

.overall-rating {
  text-align: center;
}

.rating-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ef6c00;
  line-height: 1;
}

.rating-stars {
  font-size: 1.3rem;
  color: #ffc107 !important;
  margin: 6px 0;
  letter-spacing: 3px;
}

.rating-count {
  font-size: 0.85rem;
  color: #999;
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

.review-card {
  background: white;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  gap: 10px;
  align-items: center;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.8rem;
  color: #999;
}

.review-rating {
  font-size: 0.95rem;
  color: #ffc107 !important;
  letter-spacing: 1px;
}

.review-text {
  color: #555;
  line-height: 1.5;
  font-size: 0.9rem;
  word-wrap: break-word;
  hyphens: auto;
}

.reviews-loading {
  text-align: center;
  padding: 40px;
  color: #999;
  font-size: 1.1rem;
}

.reviews-footer {
  text-align: center;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ef6c00;
  color: #ef6c00;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

.btn-outline:hover {
  background: #ef6c00;
  color: white;
  box-shadow: 0 4px 12px rgba(239, 108, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .google-reviews-section {
    padding: 40px 16px;
  }

  .google-reviews-section h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .reviews-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .rating-number {
    font-size: 2.8rem;
  }

  .rating-stars {
    font-size: 1.4rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 18px;
  }

  .review-header {
    flex-direction: column;
    gap: 12px;
  }

  .btn-outline {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
