/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&display=swap');

:root {
    /* Updated Premium Color Scheme */
    --navy: #0f172a;
    /* Sleek Deep Slate Blue (Slate-900) */
    --orange: #ff5422;
    /* Vibrant Electric Coral Orange */
    --dark: #090d16;
    /* Deep Midnight Black */
    --light: #f8fafc;
    /* Cool Soft Slate (Slate-50) */
    --text: #334155;
    /* Soft Charcoal (Slate-700) */

    /* Font token */
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Global Font Apply */
body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
.prod-name,
.cat-badge,
.nav-link,
.btn-orange,
.btn-navy,
.btn-inquiry,
.btn-outline-navy {
    font-family: var(--font-sans) !important;
}

/* Smooth Body Transitions & Premium BG */
body {
    background-color: var(--light);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- BUTTON OVERRIDES & MODERN STYLING --- */

/* Base Button Overrides for Bootstrap standard .btn and custom buttons */
.btn,
.btn-orange,
.btn-navy,
.btn-inquiry,
.btn-outline-navy {
    font-weight: 600 !important;
    font-size: 0.95rem;
    padding: 0.75rem 1.6rem;
    border-radius: 10px;
    /* Modern rounded corners */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

/* Large Button padding adjustments */
.btn-lg {
    padding: 0.9rem 2.2rem !important;
    font-size: 1.05rem !important;
    border-radius: 12px !important;
}

/* Small Button padding adjustments */
.btn-sm {
    padding: 0.5rem 1.1rem !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
}

/* --- btn-orange (Accent Button) --- */
.btn-orange {
    background: linear-gradient(135deg, var(--orange) 0%, #ff7247 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(255, 84, 34, 0.25) !important;
    padding: 10px 12px !important;
    /* Compact modern padding */
}

.btn-orange:hover {
    background: linear-gradient(135deg, #ff410d 0%, var(--orange) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 84, 34, 0.38) !important;
    color: #ffffff !important;
}

.btn-orange:active {
    transform: translateY(0) scale(0.98) !important;
    box-shadow: 0 2px 8px rgba(255, 84, 34, 0.2) !important;
}

/* --- btn-navy (Primary Button) --- */
.btn-navy {
    background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2) !important;
}

.btn-navy:hover {
    background: linear-gradient(135deg, #090d16 0%, var(--navy) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3) !important;
    color: #ffffff !important;
}

.btn-navy:active {
    transform: translateY(0) scale(0.98) !important;
}

/* --- btn-outline-navy (Outline Button) --- */
.btn-outline-navy {
    background: transparent !important;
    border-color: var(--navy) !important;
    color: var(--navy) !important;
}

.btn-outline-navy:hover {
    background: var(--navy) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.15) !important;
}

.btn-outline-navy:active {
    transform: translateY(0) scale(0.98) !important;
}

/* --- btn-inquiry (Special Card / Inline Button) --- */
.btn-inquiry {
    background: #ffffff !important;
    color: var(--orange) !important;
    border: 2px solid var(--orange) !important;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 6px rgba(255, 84, 34, 0.05) !important;
}

.btn-inquiry:hover {
    background: var(--orange) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(255, 84, 34, 0.25) !important;
}

.btn-inquiry:active {
    transform: translateY(0) scale(0.98) !important;
}

/* Standard Bootstrap overrides for general components */
.btn-primary {
    background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #090d16 0%, var(--navy) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25) !important;
    color: #ffffff !important;
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2) !important;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(16, 185, 129, 0.3) !important;
    color: #ffffff !important;
}

/* Navbar links and general cleanups */
.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.25s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--orange) !important;
}

/* Card Improvements for product cards */
.product-card {
    border-radius: 16px !important;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08) !important;
}

/* Badge Updates */
.cat-badge {
    background-color: rgba(255, 84, 34, 0.1) !important;
    color: var(--orange) !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    padding: 0.35rem 0.75rem !important;
    font-size: 0.75rem !important;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- CATEGORY FILTER SIDEBAR IMPROVEMENTS --- */
.filter-box {
    border-radius: 16px !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05) !important;
    background: #ffffff !important;
    overflow: hidden;
}

.filter-title {
    background: var(--navy) !important;
    color: #ffffff !important;
    padding: 16px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
}

.filter-list {
    padding: 12px !important;
}

/* Add margin/spacing between the list items to prevent sticking */
.filter-list li {
    margin-bottom: 8px !important;
    /* Space between buttons */
}

.filter-list li:last-child {
    margin-bottom: 0 !important;
}

/* Style the links to look like premium modern buttons */
.filter-list li a {
    display: flex !important;
    align-items: center !important;
    padding: 11px 16px !important;
    /* Extra padding inside buttons */
    border-radius: 10px !important;
    color: #475569 !important;
    /* slate-600 */
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    background: #f8fafc !important;
    /* Light background for non-active buttons */
    border: 1px solid rgba(226, 232, 240, 0.6) !important;
}

/* Hover and Active states */
.filter-list li a:hover {
    background: rgba(255, 84, 34, 0.05) !important;
    /* Soft tint of primary color */
    color: var(--orange) !important;
    border-color: rgba(255, 84, 34, 0.2) !important;
    transform: translateX(4px) !important;
    /* Subtle slide-right interaction */
}

.filter-list li a.active {
    background: linear-gradient(135deg, var(--orange) 0%, #ff7247 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(255, 84, 34, 0.2) !important;
    font-weight: 600 !important;
}

.filter-list li a.active:hover {
    transform: translateY(-2px) !important;
    /* Lift instead of slide when already active */
    box-shadow: 0 6px 16px rgba(255, 84, 34, 0.3) !important;
}

/* Count badge inside filter buttons */
.filter-list li a .count {
    margin-left: auto !important;
    background: rgba(15, 23, 42, 0.06) !important;
    color: #475569 !important;
    border-radius: 20px !important;
    padding: 2px 10px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
}

.filter-list li a:hover .count {
    background: rgba(255, 84, 34, 0.1) !important;
    color: var(--orange) !important;
}

.filter-list li a.active .count {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

/* --- PRODUCT CARD STYLING & ANIMATIONS --- */
.product-card {
    background: #ffffff !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
}

.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15) !important;
    border-color: rgba(255, 84, 34, 0.25) !important;
}

/* Image Container */
.product-card .img-wrap {
    position: relative !important;
    overflow: hidden !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 220px !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6) !important;
    padding: 0 !important;
    transition: background 0.3s ease !important;
}

.product-card:hover .img-wrap {
    background: #ffffff !important;
}

.product-card .img-wrap img,
.product-card .product-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover .img-wrap img,
.product-card:hover .product-img {
    transform: scale(1.06) !important;
}

/* Floating Discount Tag */
.discount-badge-float {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    z-index: 10 !important;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
    color: #ffffff !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    padding: 5px 11px !important;
    border-radius: 30px !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.25) !important;
    transition: all 0.3s ease;
}

.product-card:hover .discount-badge-float {
    transform: scale(1.05);
}

/* Product Info Container */
.product-card .card-body {
    padding: 18px !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card .cat-badge {
    align-self: flex-start;
    background-color: rgba(255, 84, 34, 0.08) !important;
    color: var(--orange) !important;
    font-weight: 700 !important;
    border-radius: 20px !important;
    padding: 4px 10px !important;
    font-size: 0.7rem !important;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px !important;
}

.product-card .prod-name {
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    margin: 4px 0 10px 0 !important;
    line-height: 1.4 !important;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s ease !important;
}

.product-card:hover .prod-name {
    color: var(--orange) !important;
}

.prod-price-block {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    margin-bottom: 12px !important;
    width: 100% !important;
    text-align: left !important;
}

.prod-price {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #10b981 !important;
    letter-spacing: -0.01em !important;
    opacity: 0;
    transform: translateY(4px);
    display: inline-block !important;
    animation: priceFadeInAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    animation-delay: 0.6s !important;
}

.prod-actual-price {
    font-size: 0.88rem !important;
    color: #94a3b8 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    opacity: 0.85 !important;
    position: relative !important;
    display: inline-block !important;
}

.prod-actual-price::after {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    width: 0;
    height: 1px !important;
    background: var(--orange) !important;
    transform: translateY(-50%) !important;
    animation: strikeThroughAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
    animation-delay: 0.2s !important;
}

/* Global Price Entry Keyframes */
@keyframes strikeThroughAnim {
    to {
        width: 100%;
    }
}

@keyframes priceFadeInAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Minimum Order Text */
.min-order-text {
    font-size: 0.76rem !important;
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px;
    margin-top: auto !important;
    padding-top: 10px;
    border-top: 1px dashed rgba(226, 232, 240, 0.8);
}

/* inquiry button */
/* Inquiry Button styling */
.product-card .btn-inquiry {
    background: #ffffff !important;
    color: var(--orange) !important;
    border: 1.5px solid var(--orange) !important;
    border-radius: 12px !important;
    height: 44px !important;
    padding: 0 16px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin-top: 0 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
}

.product-card:hover .btn-inquiry {
    background: linear-gradient(135deg, var(--orange) 0%, #ff7247 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(255, 84, 34, 0.25) !important;
}

/* WhatsApp Card Button styling */
.product-card .btn-whatsapp-card {
    background: rgba(37, 211, 102, 0.08) !important;
    color: #25d366 !important;
    border: 1px solid rgba(37, 211, 102, 0.2) !important;
    border-radius: 12px !important;
    width: 44px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    flex-shrink: 0;
    text-decoration: none !important;
}

.product-card .btn-whatsapp-card:hover {
    background: #25d366 !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25) !important;
    transform: translateY(-2px) !important;
}


/* --- PRODUCT DETAIL PRICE IMPROVEMENTS --- */
.price-block {
    margin: 20px 0 !important;
}

.detail-price {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: var(--orange) !important;
}

.price-block .actual-price {
    font-size: 1.2rem !important;
    color: #94a3b8 !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
}

.price-block .discount-badge {
    background: linear-gradient(135deg, var(--orange) 0%, #ff7247 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 10px rgba(255, 84, 34, 0.2) !important;
    text-transform: uppercase;
}

/* --- PREMIUM CATEGORY CARDS REDESIGN --- */
.bg-orange-subtle {
    background-color: rgba(255, 84, 34, 0.08) !important;
}

.text-orange {
    color: var(--orange) !important;
}

.premium-cat-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    height: auto !important;
    position: relative !important;
    overflow: visible !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.premium-cat-card:hover {
    transform: translateY(-5px) !important;
}

.pcc-img-wrap {
    width: 120px !important;
    height: 120px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 100% !important;
    border: 4px solid #ffffff !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
    overflow: hidden !important;
    position: relative !important;
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.premium-cat-card:hover .pcc-img-wrap {
    border-color: var(--orange) !important;
    box-shadow: 0 12px 30px rgba(255, 84, 34, 0.25) !important;
    transform: scale(1.06) !important;
}

.pcc-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.premium-cat-card:hover .pcc-img-wrap img {
    transform: scale(1.12) !important;
}

/* Fallback background gradient */
.pcc-placeholder-gradient {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, rgba(255, 84, 34, 0.05) 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
}

.pcc-placeholder-icon {
    font-size: 2.2rem !important;
    color: var(--orange) !important;
    opacity: 0.9 !important;
    transition: transform 0.5s ease !important;
}

.premium-cat-card:hover .pcc-placeholder-icon {
    transform: scale(1.15) rotate(10deg) !important;
}

/* Count badge */
.pcc-count-badge {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    background: var(--orange) !important;
    color: #ffffff !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 4px 10px rgba(255, 84, 34, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    z-index: 2 !important;
}

.premium-cat-card:hover .pcc-count-badge {
    transform: scale(1.1) !important;
}

/* PCC Info section */
.pcc-info {
    padding: 12px 4px 4px 4px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.pcc-title {
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: var(--navy) !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: color 0.3s ease !important;
    line-height: 1.3 !important;
}

.premium-cat-card:hover .pcc-title {
    color: var(--orange) !important;
}

/* Hide legacy subtext explore section */
.pcc-explore {
    display: none !important;
}

/* Responsive Image Sizes */
@media(max-width: 768px) {
    .pcc-img-wrap {
        width: 90px !important;
        height: 90px !important;
        border-width: 3px !important;
    }
    
    .pcc-title {
        font-size: 0.78rem !important;
        letter-spacing: 0.2px !important;
    }
    
    .pcc-placeholder-icon {
        font-size: 1.75rem !important;
    }
}

@media(max-width: 480px) {
    .pcc-img-wrap {
        width: 80px !important;
        height: 80px !important;
    }
    
    .pcc-title {
        font-size: 0.74rem !important;
    }
}

/* Page Banner Gradient Override */
.page-banner {
    background: linear-gradient(135deg, #101761 10%, #360e56 50%, #7c090c 86%) !important;
}

/* Premium Footer Override */
.footer-main {
    background: linear-gradient(135deg, #080e44 10%, #220837 50%, #061040 86%) !important;
    border-top: 3px solid #5b070a !important;
    /* Premium custom wine-red accent border */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    background: rgba(0, 0, 0, 0.15) !important;
}

/* Stats Strip Gradient Override */
.stats-strip {
    background: linear-gradient(135deg, #101756 10%, #280840 50%, #4b0607 86%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* CTA Box Gradient Override */
.cta-box {
    background: linear-gradient(135deg, #101761 10%, #360e56 50%, #7c090c 86%) !important;
}

/* Footer Custom Actions */
.footer-actions {
    display: flex !important;
    gap: 12px !important;
}

.btn-footer-whatsapp,
.btn-footer-call {
    height: 42px !important;
    padding: 0 20px !important;
    border-radius: 10px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-footer-whatsapp {
    background: #25d366 !important;
    color: #ffffff !important;
    border: 1px solid #25d366 !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2) !important;
}

.btn-footer-whatsapp:hover {
    background: #128c7e !important;
    border-color: #128c7e !important;
    box-shadow: 0 6px 16px rgba(18, 140, 126, 0.3) !important;
    transform: translateY(-2px) !important;
}

.btn-footer-call {
    background: var(--orange) !important;
    color: #ffffff !important;
    border: 1px solid var(--orange) !important;
    box-shadow: 0 4px 12px rgba(255, 84, 34, 0.2) !important;
}

.btn-footer-call:hover {
    background: #ff7247 !important;
    border-color: #ff7247 !important;
    box-shadow: 0 6px 16px rgba(255, 114, 71, 0.3) !important;
    transform: translateY(-2px) !important;
}

/* Stats Strip Counter Redesign Overrides */
.stats-strip {
    position: relative !important;
}

.stats-strip::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 60%) !important;
    pointer-events: none !important;
}

.stat-item {
    padding: 56px 20px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    transform: translateY(-4px) !important;
}

.stat-icon {
    width: 58px !important;
    height: 58px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    font-size: 1.4rem !important;
    margin: 0 auto 16px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.stat-item:hover .stat-icon {
    background: linear-gradient(135deg, var(--orange) 0%, #ff7247 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    transform: scale(1.12) rotate(-5deg) !important;
    box-shadow: 0 8px 20px rgba(255, 84, 34, 0.35) !important;
}

.stat-number {
    font-size: 2.80rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.02em !important;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
    line-height: 1 !important;
    display: inline-block !important;
}

.stat-plus {
    font-size: 2rem !important;
    color: var(--orange) !important;
    font-weight: 800 !important;
    margin-left: 2px !important;
    line-height: 1 !important;
    display: inline-block !important;
    vertical-align: top !important;
}

.stat-label {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-top: 12px !important;
    opacity: 0.9 !important;
    line-height: 1.3 !important;
}

/* Popup Modal Premium Custom Styling */
.popup-dialog {
    max-width: 680px !important;
    margin: 1.75rem auto !important;
}

.popup-content {
    border-radius: 8px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4) !important;
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.popup-close {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.popup-close:hover {
    background: #ef4444 !important;
    border-color: transparent !important;
    transform: rotate(90deg) !important;
}

.popup-img-wrap {
    background: #f8fafc !important;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
    overflow: hidden !important;
}

.popup-img {
    width: 100% !important;
    height: auto !important;
    max-height: 480px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

.popup-body {
    padding: 24px 28px 12px 28px !important;
}

.popup-title {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: var(--navy) !important;
    line-height: 1.4 !important;
    letter-spacing: -0.01em !important;
}

.popup-footer {
    padding: 0 28px 28px 28px !important;
}

/* Premium Popup Button */
.btn-popup-action {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 48px !important;
    background: linear-gradient(135deg, var(--orange) 0%, #ff7247 100%) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 6px 20px rgba(255, 84, 34, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-popup-action:hover {
    background: linear-gradient(135deg, #ff7247 0%, var(--orange) 100%) !important;
    box-shadow: 0 8px 24px rgba(255, 84, 34, 0.35) !important;
    transform: translateY(-1px) !important;
    color: #ffffff !important;
}

/* Equal Height Product Cards - scoped to immediate parent row of cards only */
.row.g-3:has(.product-card) > div,
.row.g-4:has(.product-card) > div {
    display: flex !important;
    align-items: stretch !important;
    flex-direction: column !important;
}

/* Ensure outer layout columns (sidebar + product grid) stay vertical */
.col-lg-9, .col-lg-3 {
    display: block !important;
}

.product-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
}

.product-card > a {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    text-decoration: none !important;
}

.product-card .card-body {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.product-card .card-body .min-order-text {
    margin-top: auto !important; /* Push min order details cleanly to the bottom */
}

/* Premium "View All" Button Styling */
.btn-view-all-premium {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 84, 34, 0.04) !important;
    color: var(--orange) !important;
    border: 1.5px solid rgba(255, 84, 34, 0.3) !important;
    padding: 8px 24px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 10px rgba(255, 84, 34, 0.05) !important;
}

.btn-view-all-premium i {
    font-size: 0.85rem !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-view-all-premium:hover {
    background: linear-gradient(135deg, var(--orange) 0%, #ff7247 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 6px 18px rgba(255, 84, 34, 0.25) !important;
    transform: translateY(-2px) !important;
}

.btn-view-all-premium:hover i {
    transform: translateX(4px) !important;
}