/* ══════════════════════════════════════════════════════════
   URBAN ARTIES — MOBILE RESPONSIVE + APP-LIKE EXPERIENCE
   Applied on top of style.css for screens ≤ 991px
══════════════════════════════════════════════════════════ */

/* ── Smooth scroll ── */
html { scroll-behavior: smooth; }

/* ── Hero banner top spacing ── */
.hero-section { margin-top: 30px; }

/* ══════════════════════════════════════
   HERO TYPE 2 — FULL IMAGE BANNER
══════════════════════════════════════ */
.hs-2 { position: relative; overflow: hidden; }
.hs2-slide {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}
.hs2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10,20,35,0.80) 0%, rgba(23,55,92,0.55) 60%, rgba(10,20,35,0.30) 100%);
}
.hs2-content {
    padding: 120px 0 80px;
    max-width: 680px;
}
.hs2-sub {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(212,175,55,0.4);
}
.hs2-title {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hs2-title span { color: #d4af37; }
.hs2-desc {
    font-size: 17px;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 520px;
}
.hs2-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Owl nav for Type 2 */
.hs-2 .owl-nav { margin: 0; }
.hs-2 .owl-nav button {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 52px !important; height: 52px !important;
    background: rgba(255,255,255,0.12) !important;
    border: 2px solid rgba(255,255,255,0.28) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 16px !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background .2s, border-color .2s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.hs-2 .owl-nav button:hover { background: #d4af37 !important; border-color: #d4af37 !important; color: #1a1200 !important; }
.hs-2 .owl-prev { left: 28px !important; }
.hs-2 .owl-next { right: 28px !important; }
.hs-2 .owl-dots {
    position: absolute;
    bottom: 28px; left: 0; right: 0;
    text-align: center;
    z-index: 10;
    margin: 0 !important;
}
.hs-2 .owl-dot span { background: rgba(255,255,255,0.35) !important; width: 10px !important; height: 10px !important; border-radius: 50% !important; transition: all .3s !important; }
.hs-2 .owl-dot.active span { background: #d4af37 !important; width: 28px !important; border-radius: 5px !important; }

@media (max-width: 991px) {
    .hs2-slide { min-height: 75vh; }
    .hs2-title { font-size: 38px; }
    .hs2-content { padding: 100px 0 70px; }
    .hs-2 .owl-nav button { width: 40px !important; height: 40px !important; font-size: 13px !important; }
    .hs-2 .owl-prev { left: 14px !important; }
    .hs-2 .owl-next { right: 14px !important; }
}
@media (max-width: 575px) {
    .hs2-slide { min-height: 65vh; }
    .hs2-title { font-size: 28px; }
    .hs2-desc { font-size: 14px; }
    .hs2-btns { gap: 10px; }
    .hs-2 .owl-nav button { display: none !important; }
}

/* ══════════════════════════════════════
   PRODUCT IMAGE — FIXED HEIGHT (all pages)
   Ensures consistent card height regardless
   of image dimensions
══════════════════════════════════════ */
.product-img {
    background: transparent;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .35s ease;
}
.product-item:hover .product-img img {
    transform: scale(1.06);
}
/* Keep type badge positioned correctly */
.product-item .type {
    z-index: 2;
}

/* ── Home page product sliders — white card, transparent image bg ── */
.product-slider {
    padding: 0 10px;
}
.product-slider .owl-stage-outer {
    overflow: hidden;
    padding: 14px 10px;
    margin: -14px -10px;
}
.product-slider .product-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.08);
    overflow: hidden;
    padding: 0;
}
.product-slider .product-item::before { display: none; }
.product-slider .product-img { padding: 0; }
.product-slider .product-content { padding: 12px 16px 16px; }
.product-slider .product-action-wrap { display: none !important; }

/* ── Action icons: overlay inside image, not outside ── */
.product-action-wrap {
    position: absolute !important;
    inset: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: flex-end !important;
    justify-content: center !important;
    padding-bottom: 14px !important;
    background: rgba(23,55,92,0) !important;
    transition: background .3s, opacity .3s, visibility .3s !important;
    opacity: 0 !important;
    visibility: hidden !important;
}
.product-item:hover .product-action-wrap {
    opacity: 1 !important;
    visibility: visible !important;
    background: rgba(23,55,92,0.22) !important;
    bottom: auto !important;
}

@media (max-width: 575px) {
    .product-img { height: 170px; }
}

/* ── Body: extra bottom padding for fixed bottom nav ── */
@media (max-width: 991px) {
    body { padding-bottom: 68px; }
}

/* ══════════════════════════════════════
   BOTTOM APP NAVIGATION BAR
══════════════════════════════════════ */
.mobile-bottom-nav {
    display: none;
}
@media (max-width: 991px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 9999;
        background: #fff;
        border-top: 1px solid #eaecf0;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        height: 64px;
        align-items: stretch;
    }
    .mbn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-decoration: none;
        color: #9aa3b2;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        transition: color .2s;
        padding: 6px 4px;
        position: relative;
    }
    .mbn-item i {
        font-size: 20px;
        transition: transform .2s, color .2s;
    }
    .mbn-item:hover,
    .mbn-item.active {
        color: #17375c;
    }
    .mbn-item.active i {
        color: #d4af37;
        transform: translateY(-2px);
    }
    .mbn-item.active::before {
        content: '';
        position: absolute;
        top: 0; left: 20%; right: 20%;
        height: 3px;
        background: #d4af37;
        border-radius: 0 0 4px 4px;
    }
    /* Center "Products" item with a raised pill */
    .mbn-item.mbn-featured {
        position: relative;
    }
    .mbn-item.mbn-featured .mbn-icon-wrap {
        width: 46px; height: 46px;
        background: linear-gradient(135deg, #17375c, #1f4e80);
        border-radius: 14px;
        display: flex; align-items: center; justify-content: center;
        margin-top: -18px;
        box-shadow: 0 4px 16px rgba(23,55,92,0.35);
        transition: transform .2s, box-shadow .2s;
    }
    .mbn-item.mbn-featured .mbn-icon-wrap i {
        color: #d4af37;
        font-size: 20px;
    }
    .mbn-item.mbn-featured:hover .mbn-icon-wrap,
    .mbn-item.mbn-featured.active .mbn-icon-wrap {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 8px 24px rgba(23,55,92,0.45);
    }
    .mbn-item.mbn-featured.active .mbn-icon-wrap {
        background: linear-gradient(135deg, #d4af37, #f0c040);
    }
    .mbn-item.mbn-featured.active .mbn-icon-wrap i { color: #17375c; }
    .mbn-item.mbn-featured.active::before { display: none; }
}

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
@media (max-width: 991px) {
    /* Hide top bar with email/phone on mobile — bottom nav replaces navigation */
    .header-top { display: none; }

    /* Slimmer sticky header */
    .main-navigation .navbar {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navbar-brand img {
        width: 110px !important;
    }

    /* WhatsApp float: shift up above bottom nav */
    .whatsapp-float {
        bottom: 80px !important;
    }
    #scroll-top {
        bottom: 80px !important;
    }
}

/* ══════════════════════════════════════
   TYPOGRAPHY — mobile scale-down
══════════════════════════════════════ */
@media (max-width: 767px) {
    h1, .h1 { font-size: 26px !important; line-height: 1.2 !important; }
    h2, .h2 { font-size: 22px !important; line-height: 1.25 !important; }
    h3, .h3 { font-size: 20px !important; }
    h4, .h4 { font-size: 18px !important; }
    h5, .h5 { font-size: 16px !important; }

    .site-title { font-size: 24px !important; }
    .site-title-tagline { font-size: 12px !important; }
}

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
@media (max-width: 767px) {
    .site-breadcrumb { padding: 40px 0 !important; }
    .breadcrumb-title { font-size: 20px !important; }
    .site-breadcrumb-wrap { gap: 8px; }
}

/* ══════════════════════════════════════
   HERO / HOME SLIDER
══════════════════════════════════════ */
@media (max-width: 767px) {
    .hs-1 .hero-single {
        padding: 40px 16px 50px !important;
        text-align: center;
    }
    .hero-single .hero-content { align-items: center; }
    .hero-single .hero-img { margin-top: 30px; }
    .hero-single .hero-img img { border-radius: 16px; }

    /* Hero text */
    .hero-single .hero-title { font-size: 26px !important; }
    .hero-single .hero-sub-title { font-size: 12px !important; letter-spacing: 1.5px; }
    .hero-single p { font-size: 14px !important; }

    /* Hero buttons */
    .hero-btn-wrap { justify-content: center; flex-wrap: wrap; gap: 10px; }
    .hero-btn-wrap .theme-btn { font-size: 13px; padding: 10px 22px; }
}

/* ══════════════════════════════════════
   SECTION SPACING
══════════════════════════════════════ */
@media (max-width: 767px) {
    .py-5   { padding-top: 36px !important; padding-bottom: 36px !important; }
    .pt-80  { padding-top: 40px !important; }
    .pb-50  { padding-bottom: 32px !important; }
    section, .section-padding { padding: 40px 0 !important; }
    .products-wrap  { padding: 32px 0 50px !important; }
    .collections-wrap { padding: 32px 0 50px !important; }
    .col-products-wrap { padding: 32px 0 50px !important; }
    .contact-wrap { padding: 32px 0 50px !important; }
    .shop-area { padding: 32px 0 50px !important; }
    .other-collections-wrap { padding: 32px 0 40px !important; }
    .enquiry-section { padding: 32px 0 !important; }
}

/* ══════════════════════════════════════
   PRODUCTS INDEX PAGE
══════════════════════════════════════ */
@media (max-width: 991px) {
    .products-sidebar { position: static !important; margin-bottom: 20px; }
    /* Collapsed sidebar on mobile */
    .sidebar-card-body { max-height: 240px; overflow-y: auto; }
}
@media (max-width: 575px) {
    /* 2 product cards per row on small mobile */
    .products-wrap .col-sm-6 { width: 50%; }

    .products-toolbar {
        padding: 10px 14px;
        font-size: 12px;
    }
    .pt-active-filter { font-size: 11px; padding: 4px 10px; }
}

/* ══════════════════════════════════════
   PRODUCT CARD
══════════════════════════════════════ */
@media (max-width: 575px) {
    .product-img { padding: 10px 10px 0 !important; }
    .product-content { padding: 8px 10px 12px !important; }
    .product-content .product-title { font-size: 13px !important; }
    .product-content .theme-btn { font-size: 11px !important; padding: 6px 14px !important; }
}

/* ══════════════════════════════════════
   PRODUCT DETAIL PAGE
══════════════════════════════════════ */
@media (max-width: 767px) {
    /* Gallery: 2 thumbnails per row on small screens */
    .shop-single-gallery .flex-control-thumbs li {
        width: calc(25% - 6px) !important;
    }

    /* Share icons row */
    .shop-single-share { gap: 5px !important; }
    .shop-single-share a { width: 34px !important; height: 34px !important; font-size: 13px !important; }

    /* Product info */
    .shop-single-content { padding-top: 20px; }

    /* Enquiry form padding */
    .enquiry-card-header { padding: 18px 20px !important; }
    .enquiry-card-body   { padding: 20px 16px !important; }
    .ef-row { grid-template-columns: 1fr !important; }

    /* WhatsApp button */
    .enquiry-wa-btn { font-size: 12px !important; padding: 8px 14px !important; }
}
@media (max-width: 480px) {
    /* 2 thumbs per row on very small screens */
    .shop-single-gallery .flex-control-thumbs li {
        width: calc(50% - 4px) !important;
    }
}

/* ══════════════════════════════════════
   COLLECTIONS INDEX
══════════════════════════════════════ */
@media (max-width: 767px) {
    .collections-heading h2 { font-size: 22px !important; }
    .collections-heading p  { font-size: 13px !important; }
    .col-card-img { height: 200px !important; }

    .col-cta { padding: 36px 24px !important; margin-top: 36px !important; border-radius: 16px !important; }
    .col-cta h3 { font-size: 20px !important; }
    .col-cta p  { font-size: 13px !important; }
}

/* ══════════════════════════════════════
   COLLECTION DETAIL PAGE
══════════════════════════════════════ */
@media (max-width: 767px) {
    .col-hero { min-height: 280px !important; }
    .col-hero-content { padding: 40px 0 32px !important; }
    .col-hero-content h1 { font-size: 24px !important; }
    .col-hero-content p  { font-size: 13px !important; }

    /* Stats: compact on mobile */
    .col-hero-stats { gap: 14px !important; }
    .col-hero-divider { height: 24px !important; }
    .col-hero-stat .stat-icon { width: 34px !important; height: 34px !important; border-radius: 8px !important; }
    .col-hero-stat .stat-icon i { font-size: 13px !important; }
    .col-hero-stat .stat-value { font-size: 15px !important; }
    .col-hero-stat .stat-label { font-size: 9px !important; }

    /* Buttons */
    .col-hero-actions { gap: 8px !important; }
    .col-enquiry-btn, .col-browse-btn { font-size: 13px !important; padding: 10px 18px !important; }

    /* Other collections */
    .oc-card-img { height: 160px !important; }
    .oc-section-title { font-size: 18px !important; }

    /* toolbar */
    .col-toolbar { padding: 12px 14px !important; font-size: 13px !important; }
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
@media (max-width: 575px) {
    .cp-left { padding: 28px 18px !important; }
    .cp-right { padding: 28px 18px !important; }
    .cp-left h2 { font-size: 22px !important; }
    .cp-info-item { gap: 12px; margin-bottom: 18px; }
    .cp-info-item .ci-icon { width: 38px !important; height: 38px !important; border-radius: 10px !important; }
    .cf-field .cf-input { padding: 16px 40px 6px 14px; font-size: 14px; }
    .cf-submit-btn { padding: 14px 24px; font-size: 14px; }
}

/* ══════════════════════════════════════
   FOOTER — mobile compact
══════════════════════════════════════ */
@media (max-width: 767px) {
    .footer-widget { padding: 0; }
    .footer-widget .pt-80 { padding-top: 36px !important; }
    .footer-widget .pb-50 { padding-bottom: 24px !important; }
    .footer-widget .row { --bs-gutter-y: 1.5rem !important; }

    /* Stack all footer columns single */
    .footer-widget .col-lg-4,
    .footer-widget .col-lg-2,
    .footer-widget .col-lg-3,
    .footer-widget .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .footer-widget-box { padding-bottom: 0; }
    .footer-desc { font-size: 13px; margin-bottom: 16px; }
    .footer-widget-title { font-size: 14px; margin-bottom: 12px !important; }
    .footer-list li a { font-size: 13px; padding: 4px 0; }

    /* Contact list compact */
    .footer-contact-list li { gap: 10px; margin-bottom: 14px; }

    /* Copyright */
    .footer-bottom-wrap { flex-direction: column; text-align: center; gap: 6px; }
    .footer-bottom-wrap p { font-size: 12px; }
}

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
@media (max-width: 767px) {
    .about-hero-section { padding: 40px 0 !important; }
    .about-hero-title { font-size: 24px !important; }
    .about-img-stack { padding: 0 0 16px 0 !important; margin-bottom: 24px; }
    .about-img-stack .img-primary { height: 260px !important; border-radius: 4px 40px 4px 4px !important; }
    .about-img-stack .img-secondary { display: none !important; }
    .about-badge { left: 8px !important; top: 8px !important; padding: 12px 14px !important; }
    .about-badge .badge-number { font-size: 26px !important; }
    .about-checklist { grid-template-columns: 1fr !important; gap: 8px !important; }
    .stat-item { padding: 20px 14px !important; }
    .about-cta-inner { padding: 36px 20px !important; border-radius: 16px !important; }
    .about-cta-inner h2 { font-size: 22px !important; }
    .about-cta-inner p { font-size: 13px !important; margin-bottom: 24px !important; }
    .mv-card-body { padding: 22px 18px !important; }
    .about-img { margin-bottom: 24px; }
    .counter-area { padding: 32px 0 !important; }
}

/* ══════════════════════════════════════
   GENERAL TOUCH IMPROVEMENTS
══════════════════════════════════════ */
@media (max-width: 991px) {
    /* Larger touch targets for buttons */
    .theme-btn { min-height: 44px; display: inline-flex !important; align-items: center !important; justify-content: center !important; }

    /* Cards — no hover transform (touch devices) */
    .product-item:hover,
    .col-card:hover,
    .oc-card:hover {
        transform: none !important;
    }

    /* Remove hover box-shadow animations on touch */
    .product-item { transition: none !important; }
}

/* ══════════════════════════════════════
   SITE-WIDE CARD BORDER RADIUS ON MOBILE
══════════════════════════════════════ */
@media (max-width: 575px) {
    .sidebar-card,
    .products-toolbar,
    .enquiry-card,
    .contact-split,
    .col-cta {
        border-radius: 12px !important;
    }
    .col-card { border-radius: 14px !important; }
    .oc-card  { border-radius: 10px !important; }
}

/* ══════════════════════════════════════
   PRELOADER
══════════════════════════════════════ */
@media (max-width: 767px) {
    .preloader { z-index: 99999; }
}

/* ══════════════════════════════════════
   BRANDED PAGE LOADER
══════════════════════════════════════ */
.preloader {
    position: fixed; inset: 0;
    background: #ffffff;
    z-index: 999999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
.preloader.pl-done { opacity: 0; visibility: hidden; pointer-events: none; }
.pl-inner { text-align: center; }
.pl-logo { height: 65px; width: auto; margin-bottom: 28px; animation: plPulse 1.8s ease-in-out infinite; }
.pl-bar { width: 180px; height: 3px; background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden; margin: 0 auto 14px; }
.pl-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, #d4af37, #f5e08a, #d4af37); background-size: 200% 100%; border-radius: 2px; animation: plLoad 1.4s ease-in-out forwards, plShimmer 1.4s linear infinite; }
.pl-tagline { color: #94a3b8; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; margin: 0; }
.loader-ripple { display: none; }
@keyframes plPulse { 0%,100%{opacity:1;} 50%{opacity:.55;} }
@keyframes plLoad  { to { width: 100%; } }
@keyframes plShimmer { 0%{background-position:200% 0;} 100%{background-position:-200% 0;} }

/* ══════════════════════════════════════
   WHATSAPP CHAT POPUP
══════════════════════════════════════ */
.wa-wrap { position: fixed; right: 24px; bottom: 30px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
@media (max-width: 991px) { .wa-wrap { bottom: 82px; right: 16px; } }

.whatsapp-float {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c4e);
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: transform .25s, box-shadow .25s;
    color: #fff; font-size: 26px;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }
#waIcoClose { font-size: 20px; display: none; }

.wa-popup {
    width: 300px; background: #fff; border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    overflow: hidden;
    transform: scale(.85) translateY(20px);
    opacity: 0; visibility: hidden;
    transform-origin: bottom right;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .25s ease, visibility .25s;
}
.wa-popup.open { transform: scale(1) translateY(0); opacity: 1; visibility: visible; }

.wa-popup-head {
    background: #075e54;
    padding: 14px 16px; display: flex; align-items: center; gap: 10px;
}
.wa-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #fff; flex-shrink: 0;
}
.wa-brand-name { color: #fff; font-size: 13.5px; font-weight: 700; line-height: 1.2; }
.wa-status { color: rgba(255,255,255,0.7); font-size: 11.5px; display: flex; align-items: center; gap: 5px; }
.wa-dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; display: inline-block; animation: waPulse 2s ease infinite; }
.wa-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 14px; cursor: pointer; padding: 4px 6px; line-height: 1; transition: color .2s; flex-shrink: 0; }
.wa-close:hover { color: #fff; }
@keyframes waPulse { 0%,100%{opacity:1;} 50%{opacity:.4;} }

.wa-popup-body { background: #e5ddd5; padding: 16px; }
.wa-bubble {
    background: #fff; border-radius: 0 12px 12px 12px;
    padding: 10px 14px; max-width: 240px; display: inline-block;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    position: relative;
}
.wa-bubble::before { content:''; position:absolute; left:-8px; top:0; border:8px solid transparent; border-top-color:#fff; border-left:0; }
.wa-bubble p { margin: 0 0 4px; font-size: 13px; color: #333; line-height: 1.5; }
.wa-time { font-size: 10.5px; color: #999; float: right; margin-top: 2px; }

.wa-popup-foot { padding: 12px 14px; border-top: 1px solid #f0f0f0; }
.wa-popup-foot textarea {
    width: 100%; border: 1.5px solid #e0e0e0; border-radius: 10px;
    padding: 9px 12px; font-size: 13px; resize: none; outline: none;
    font-family: inherit; color: #333; background: #fafafa;
    transition: border-color .2s;
    margin-bottom: 10px;
}
.wa-popup-foot textarea:focus { border-color: #25d366; background: #fff; }
.wa-start-btn {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    width: 100%; background: linear-gradient(135deg, #25d366, #128c4e);
    color: #fff; border: none; border-radius: 10px; padding: 10px;
    font-size: 13.5px; font-weight: 700; text-decoration: none;
    transition: opacity .2s, transform .2s;
}
.wa-start-btn:hover { color: #fff; opacity: .9; transform: translateY(-1px); }

/* ══════════════════════════════════════
   GALLERY LIGHTBOX ZOOM BUTTON
══════════════════════════════════════ */
.gallery-zoom-btn {
    position: absolute; top: 12px; right: 12px; z-index: 10;
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(23,55,92,0.82); border: none; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; cursor: pointer; backdrop-filter: blur(4px);
    transition: background .2s, transform .2s;
}
.gallery-zoom-btn:hover { background: #17375c; transform: scale(1.1); }
.shop-single-gallery { position: relative; }
@media (pointer:fine) { .flex-viewport { cursor: zoom-in; } }

/* ══════════════════════════════════════
   RECENTLY VIEWED
══════════════════════════════════════ */
.rv-section { padding: 50px 0 60px; background: #f4f6fb; }
.rv-strip { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: thin; scrollbar-color: #d0d8e8 transparent; }
.rv-strip::-webkit-scrollbar { height: 4px; }
.rv-strip::-webkit-scrollbar-thumb { background: #d0d8e8; border-radius: 2px; }
.rv-item { flex: 0 0 148px; background: #fff; border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; box-shadow: 0 2px 14px rgba(0,0,0,0.07); transition: transform .22s, box-shadow .22s; display: block; }
.rv-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.rv-img { height: 110px; display: flex; align-items: center; justify-content: center; padding: 10px; overflow: hidden; }
.rv-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.rv-name { padding: 7px 10px 12px; font-size: 12px; font-weight: 600; color: #17375c; line-height: 1.35; }

/* ══════════════════════════════════════
   CATALOGUE DOWNLOAD BUTTON
══════════════════════════════════════ */
.catalogue-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #d4af37, #b8972a);
    color: #fff; font-size: 13px; font-weight: 700; text-decoration: none;
    padding: 9px 20px; border-radius: 8px;
    box-shadow: 0 4px 14px rgba(212,175,55,0.35);
    transition: transform .2s, box-shadow .2s, opacity .2s;
    white-space: nowrap;
}
.catalogue-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(212,175,55,0.5); }
.catalogue-btn i { font-size: 14px; }
@media (max-width: 991px) { .catalogue-btn { margin: 10px 0 4px; } }

/* ══════════════════════════════════════
   QUICK VIEW BUTTON (on product card)
══════════════════════════════════════ */
.product-action-wrap {
    position: absolute; inset: 0;
    display: flex; align-items: flex-end; justify-content: center;
    pointer-events: none;
}
.quick-view-btn {
    pointer-events: all;
    width: 100%;
    background: rgba(23,55,92,0.88);
    backdrop-filter: blur(6px);
    color: #fff;
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 6px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .22s ease, transform .22s ease;
    font-family: inherit;
    letter-spacing: .3px;
}
.quick-view-btn:hover { background: rgba(23,55,92,1); }
.product-item:hover .quick-view-btn { opacity: 1; transform: translateY(0); }
/* Hide on slider (home page) — action-wrap already hidden there */

/* ══════════════════════════════════════
   QUICK VIEW MODAL
══════════════════════════════════════ */
.qv-modal {
    border: none; border-radius: 18px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    min-height: 380px;
    position: relative;
}
.qv-close-btn {
    position: absolute; top: 14px; right: 16px; z-index: 10;
    width: 34px; height: 34px; border-radius: 50%;
    background: #f1f5f9; border: none; color: #64748b;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; cursor: pointer;
    transition: background .2s, color .2s;
}
.qv-close-btn:hover { background: #ef4444; color: #fff; }

/* Loading spinner */
.qv-loading {
    display: flex; align-items: center; justify-content: center;
    min-height: 380px;
}
.qv-spinner {
    width: 44px; height: 44px; border-radius: 50%;
    border: 3px solid #e2e8f0;
    border-top-color: #17375c;
    animation: qvSpin .7s linear infinite;
}
@keyframes qvSpin { to { transform: rotate(360deg); } }

/* Body layout */
.qv-body {
    display: flex;
    flex-direction: row;
}
@media (max-width: 767px) { .qv-body { flex-direction: column; } }

/* Gallery side */
.qv-gallery {
    width: 45%; flex-shrink: 0;
    background: #f8fafc;
    padding: 24px;
    display: flex; flex-direction: column; gap: 12px;
}
@media (max-width: 767px) { .qv-gallery { width: 100%; padding: 16px; } }

.qv-main-img-wrap {
    flex: 1; display: flex; align-items: center; justify-content: center;
    min-height: 260px; background: #fff; border-radius: 12px;
    overflow: hidden; padding: 12px;
}
.qv-main-img {
    max-width: 100%; max-height: 280px;
    object-fit: contain; transition: opacity .2s;
}
.qv-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.qv-thumb {
    width: 60px; height: 50px; object-fit: contain;
    border: 2px solid #e2e8f0; border-radius: 8px;
    cursor: pointer; background: #fff; padding: 4px;
    transition: border-color .18s;
}
.qv-thumb:hover, .qv-thumb.active { border-color: #17375c; }

/* Info side */
.qv-info {
    flex: 1; padding: 28px 28px 28px 24px;
    display: flex; flex-direction: column; gap: 8px;
    overflow-y: auto; max-height: 500px;
}
@media (max-width: 767px) { .qv-info { padding: 16px; max-height: none; } }

.qv-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.qv-badge {
    display: inline-flex; align-items: center;
    padding: 4px 12px; border-radius: 20px;
    font-size: 11px; font-weight: 700;
}
.qv-feat  { background: linear-gradient(135deg,#d4af37,#f0cc60); color: #1a1200; }
.qv-trend { background: linear-gradient(135deg,#17375c,#2a5f9e); color: #fff; }

.qv-cat-label {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: #17375c; margin: 0;
}
.qv-title {
    font-size: 20px; font-weight: 800; color: #1e293b;
    line-height: 1.25; margin: 0;
}
.qv-code { font-size: 12px; color: #94a3b8; font-family: monospace; margin: 0; }
.qv-desc { font-size: 13.5px; color: #4a5568; line-height: 1.65; margin: 0; }

.qv-specs { border-top: 1px solid #f1f5f9; padding-top: 10px; }
.qv-spec-row {
    display: flex; gap: 12px; font-size: 13px; padding: 5px 0;
    border-bottom: 1px solid #f8fafc; color: #4a5568;
}
.qv-spec-row span { font-weight: 700; color: #1e293b; min-width: 90px; flex-shrink: 0; }

.qv-actions {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-top: auto; padding-top: 16px;
}
.qv-detail-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 20px; border: 2px solid #17375c;
    border-radius: 8px; color: #17375c; font-size: 13px;
    font-weight: 700; text-decoration: none;
    transition: background .2s, color .2s;
}
.qv-detail-btn:hover { background: #17375c; color: #fff; }

/* ══════════════════════════════════════
   ENQUIRY SUCCESS ANIMATION
══════════════════════════════════════ */
.enq-success-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(15,37,64,0.65);
    display: flex; align-items: center; justify-content: center;
    animation: enqFadeIn .35s ease;
    backdrop-filter: blur(4px);
}
@keyframes enqFadeIn { from { opacity: 0; } to { opacity: 1; } }

.enq-success-card {
    background: #fff; border-radius: 24px; padding: 44px 40px;
    text-align: center; max-width: 380px; width: 90%;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    animation: enqSlideUp .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes enqSlideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.enq-checkmark-wrap {
    width: 80px; height: 80px; margin: 0 auto 22px;
}
.enq-checkmark-wrap svg { width: 80px; height: 80px; }
.enq-circle {
    stroke: #10b981; stroke-width: 2.5;
    stroke-dasharray: 160; stroke-dashoffset: 160;
    animation: drawCircle .6s ease .1s forwards;
}
.enq-check {
    stroke: #10b981; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 48; stroke-dashoffset: 48;
    animation: drawCheck .4s ease .65s forwards;
}
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes drawCheck  { to { stroke-dashoffset: 0; } }

.enq-success-card h3 { font-size: 22px; font-weight: 800; color: #1e293b; margin: 0 0 8px; }
.enq-success-card .enq-msg { font-size: 14px; color: #4a5568; margin: 0 0 6px; }
.enq-success-card .enq-sub { font-size: 12.5px; color: #94a3b8; margin: 0 0 24px; }
.enq-dismiss-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 10px 28px; background: linear-gradient(135deg,#17375c,#1f4e80);
    color: #fff; border: none; border-radius: 10px;
    font-size: 14px; font-weight: 700; cursor: pointer;
    font-family: inherit; transition: opacity .2s;
}
.enq-dismiss-btn:hover { opacity: .88; }
