/* ==========================================================================
   AL NOOR SOLAR ENERGY - REDESIGNED STYLESHEET (2026)
   Designed by Antigravity AI - Premium E-Commerce Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Noto+Nastaliq+Urdu:wght@400..700&display=swap');

:root {
    --primary: #1A66FF;
    --primary-blue: var(--primary);
    --primary-light: #E7F4FF;
    --primary-dark: #004FE6;
    --accent: #FFB800;
    --accent-light: #FFF8E1;
    --bg-dark: #071E4A;
    --bg-dark-hover: #0A3080;
    --bg-dark-card: rgba(13, 33, 74, 0.9);
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --border-color: #E2E8F0;
    --success: #10B981;
    --danger: #EF4444;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --header-height: 85px;
    --bottom-nav-height: 65px;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 30px rgba(0, 102, 255, 0.06);
    --shadow-lg: 0 20px 40px rgba(7, 30, 74, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    padding-bottom: var(--bottom-nav-height);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--bg-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

button:active {
    transform: scale(0.98);
}

button.primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    box-shadow: 0 8px 20px rgba(26, 102, 255, 0.25);
}

button.primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 12px 24px rgba(26, 102, 255, 0.35);
    transform: translateY(-2px);
}

button.secondary {
    background-color: var(--primary-light);
    color: var(--primary);
    border: 1px solid rgba(26, 102, 255, 0.15);
    padding: 12px 24px;
}

button.secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    transition: var(--transition);
    outline: none;
    background-color: var(--white);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26, 102, 255, 0.1);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 50px;
}

.section-heading h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 8px;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: var(--radius-sm);
}

/* ==========================================================================
   TOP CONTACT BAR
   ========================================================================== */
.header-top {
    background: var(--bg-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.85rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 500;
}

.header-top span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.header-top i {
    color: var(--accent);
}

.header-top a {
    color: var(--white);
    text-decoration: underline;
}

.header-top a:hover {
    color: var(--accent);
}

/* ==========================================================================
   STICKY HEADER & NAVIGATION
   ========================================================================== */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
}

header.shrink {
    height: 70px;
    box-shadow: var(--shadow-sm);
}

header .container.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wrap img {
    height: 45px;
    width: 45px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.logo-text span {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--bg-dark);
    line-height: 1;
    display: block;
}

.logo-text p {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li a {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 8px 0;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: transform 0.3s ease, width 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-content {
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 12px 40px rgba(7, 30, 74, 0.14);
    z-index: 1000;
    padding: 8px 0;
    border-radius: 10px;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.97);
    border: 1px solid #eee;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.22s ease;
    transform-origin: top center;
}

/* Small arrow tip */
.nav-item.dropdown .dropdown-content::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid #eee;
    border-top: 1px solid #eee;
    rotate: 45deg;
}

.nav-item.dropdown:hover .dropdown-content {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.nav-item.dropdown .dropdown-content a {
    color: #333;
    padding: 9px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.88rem;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    position: relative;
}

.nav-item.dropdown .dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transition: transform 0.15s;
}

.nav-item.dropdown .dropdown-content a::after {
    display: none;
}

.nav-item.dropdown .dropdown-content a:hover {
    background-color: #EEF2FF;
    color: var(--primary);
    padding-left: 24px;
}

.nav-item.dropdown .dropdown-content a:hover::before {
    transform: scaleY(1);
}

/* ===== MEGA DROPDOWN (All Products) ===== */
.mega-dropdown {
    min-width: 480px !important;
    padding: 0 !important;
    left: -80px !important;
    transform: translateX(0) translateY(8px) scale(0.97) !important;
    display: flex !important;
    gap: 0 !important;
    overflow: hidden !important;
}

.nav-item.dropdown:hover .mega-dropdown {
    transform: translateX(0) translateY(0) scale(1) !important;
}

.mega-dropdown::before {
    left: 120px !important;
}

.mega-col {
    flex: 1;
    padding: 16px 0;
    min-width: 0;
}

.mega-col:first-child {
    border-right: 1px solid #f0f0f0;
}

.mega-col-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 18px 10px;
}

.mega-brands-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 0 12px;
}

.mega-brand {
    padding: 7px 10px !important;
    background: #f5f7ff !important;
    border-radius: 6px !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #555 !important;
    text-align: center !important;
    justify-content: center !important;
    transition: background 0.15s, color 0.15s !important;
    border: 1px solid transparent !important;
}

.mega-brand::before {
    display: none !important;
}

.mega-brand:hover {
    background: var(--primary) !important;
    color: #fff !important;
    padding-left: 10px !important;
}

/* Search and Cart */
.search-cart {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    position: relative;
}

.search-bar input {
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    width: 200px;
    font-size: 0.88rem;
    margin-bottom: 0;
    background-color: var(--light-gray);
}

.search-bar input:focus {
    width: 280px;
    background-color: var(--white);
}

.search-bar i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.cart-icon {
    position: relative;
    color: var(--text-dark);
    font-size: 1.45rem;
}

.cart-icon:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--danger);
    color: var(--white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.68rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(239, 68, 68, 0.3);
}

/* Hamburger for Mobile */
/* ===== UPGRADED HAMBURGER ANIMATION ===== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    padding: 0;
    z-index: 1001;
    cursor: pointer;
    outline: none;
    position: relative;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--bg-dark);
    border-radius: 4px;
    transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1),
                opacity   0.28s ease,
                width     0.28s ease;
    transform-origin: center;
}

/* Middle bar shortens before rotating */
.hamburger-btn span:nth-child(2) {
    width: 70%;
    transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1),
                opacity   0.2s ease,
                width     0.25s ease;
}

/* On hover, middle bar widens back */
.hamburger-btn:hover span:nth-child(2) {
    width: 100%;
}

/* Open state — morph into X */
.hamburger-btn.open span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
    width: 100%;
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    width: 0;
    transform: scaleX(0);
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
    width: 100%;
}

.hdr-icons {
    display: none;
}

/* Mobile Search Wrap Overlay */
.search-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 30, 74, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.search-wrap.show {
    display: flex;
}

.search-box {
    position: relative;
    max-width: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 10px 24px;
    box-shadow: var(--shadow-lg);
}

.search-box i.fa-search {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-right: 15px;
}

.search-box input {
    border: none;
    margin-bottom: 0;
    font-size: 1.1rem;
    padding: 8px 0;
    background: transparent;
}

.search-box input:focus {
    box-shadow: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    background: radial-gradient(circle at top right, rgba(26, 102, 255, 0.15) 0%, rgba(7, 30, 74, 0.05) 50%, var(--white) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 1.2s ease-in-out;
    backface-visibility: hidden;
    perspective: 1000px;
}

.hero-carousel img.active {
    opacity: 0.15; /* Soft background backplate opacity */
    transform: translate3d(0, 0, 0);
}

.hero-carousel img.exit {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
}

/* Sunlight Ray Animation */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,184,0,0.12) 0%, rgba(255,255,255,0) 60%);
    transform: rotate(-15deg);
    pointer-events: none;
    animation: sunlightPulse 8s infinite alternate ease-in-out;
    z-index: 2;
}

@keyframes sunlightPulse {
    0% { opacity: 0.7; transform: rotate(-15deg) scale(0.95); }
    100% { opacity: 1.2; transform: rotate(-10deg) scale(1.05); }
}

.hero-content-wrap {
    position: relative;
    z-index: 5;
    max-width: 750px;
    padding-left: 20px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.82rem;
    margin-bottom: 24px;
    border: 1px solid rgba(26, 102, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-section h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    color: var(--bg-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-section h1 span {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #42A5F5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-btns button {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Experience & Trust Badges */
.hero-badges {
    display: flex;
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hero-badge-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-badge-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Floating Solar Panel Shape Decorator */
.floating-decorations {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    z-index: 4;
    pointer-events: none;
}

.decor-panel {
    position: absolute;
    width: 260px;
    height: 180px;
    background: radial-gradient(circle at center, #1b305a, #0A1D37);
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    border-radius: var(--radius-md);
    transform: rotateX(40deg) rotateY(-20deg) rotateZ(10deg);
    animation: floatPanel 6s infinite alternate ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decor-panel::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border: 1.5px dashed rgba(255, 184, 0, 0.4);
    border-radius: calc(var(--radius-md) - 4px);
}

@keyframes floatPanel {
    0% { transform: rotateX(40deg) rotateY(-20deg) rotateZ(10deg) translateY(0); }
    100% { transform: rotateX(38deg) rotateY(-18deg) rotateZ(8deg) translateY(-25px); }
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator .mouse {
    width: 22px;
    height: 38px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
    animation: scrollDot 2s infinite ease-in-out;
}

@keyframes scrollDot {
    0% { top: 6px; opacity: 1; }
    80% { top: 22px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

/* ==========================================================================
   SHOP BY CATEGORY
   ========================================================================== */
.cat-section {
    padding: 60px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cat-col-left {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cat-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-dark);
}

.cat-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    transform: scale(1.02);
}

.cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(7, 30, 74, 0.05) 0%, rgba(7, 30, 74, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.cat-overlay h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.cat-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cat-overlay p i {
    transition: var(--transition);
}

.cat-item:hover img {
    transform: scale(1.08);
}

.cat-item:hover .cat-overlay p i {
    transform: translateX(6px);
}

/* Right Tall Banner (Accessories/VFD) */
.cat-col-right {
    display: flex;
    flex-direction: column;
}

.cat-col-right .cat-item {
    height: 100%;
}

/* ==========================================================================
   BRANDS SECTION
   ========================================================================== */
.brands-we-love {
    background-color: var(--light-gray);
    padding: 50px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.brand-carousel-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.brands-marquee-wrap, .logo-slider {
    overflow: hidden;
    width: 100%;
}

.brands-marquee-track, .logo-track {
    display: flex;
    width: 200%;
    animation: infiniteScroll 90s linear infinite;
    align-items: center;
    justify-content: space-around;
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translateZ(0);
}

.brands-marquee-track a, .logo-track a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.brands-marquee-track img, .logo-track img {
    height: 40px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
    backface-visibility: hidden;
}

.brands-marquee-track img:hover, .logo-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08) translate3d(0,0,0);
}

@keyframes infiniteScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ==========================================================================
   PRODUCT SECTIONS & CARDS
   ========================================================================== */
.prod-section {
    padding: 60px 0;
}

.prod-flex {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 30px;
}

/* Sidebar Banners inside Product sections */
.prod-banner {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow-md);
}

.prod-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 102, 255, 0.1) 0%, rgba(7, 30, 74, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.banner-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.banner-overlay p {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 1px;
}

.prod-banner:hover img {
    transform: scale(1.05);
}

.prod-cards {
    position: relative;
    overflow: hidden;
}

/* Slick Carousel Custom styling */
.cards-carousel {
    position: relative;
    width: 100%;
}

.cards-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cards-slide {
    flex: 0 0 100%;
    display: grid;
    gap: 20px;
}

.grid4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Product Card - Redesigned */
/* ===== PRODUCT CARD - KAMALSOLAR STYLE ===== */
.pc, .product-card {
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    height: 100%;
}

.pc:hover, .product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.pc-img, .product-card-img {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

.pc-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
    padding: 16px;
}

.pc:hover .pc-img img {
    transform: scale(1.06);
}

/* Quick View Overlay */
.pc-quick-view {
    position: absolute;
    bottom: -44px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.72);
    color: #fff;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 0;
    transition: bottom 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
    text-transform: uppercase;
}

.pc:hover .pc-quick-view {
    bottom: 0;
    opacity: 1;
}

/* Custom badges on cards */
.card-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-discount {
    background-color: #e44;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 3px;
    text-transform: uppercase;
}

.badge-stock {
    background-color: #2d9e5a;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 3px;
}

.badge-stock.out {
    background-color: #999;
}

/* Action hover overlays */
.card-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 5;
    transition: var(--transition);
    opacity: 0;
    padding: 10px 0;
}

.pc:hover .card-actions {
    bottom: 10px;
    opacity: 1;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--bg-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.action-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Card Body */
.pc-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0;
}

.pc-body .vendor {
    font-size: 0.72rem;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.pc-body h3 {
    font-size: 0.88rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5rem;
}

/* Rating Stars */
.rating-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
    color: #f5a623;
    font-size: 0.72rem;
}

.pc-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 14px;
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pc-price span {
    font-size: 0.85rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}

/* Add to Cart Button - Full width, bordered */
.pc-btn {
    width: 100%;
    background-color: transparent;
    color: #333;
    padding: 10px;
    border-radius: 0;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid #333;
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
}

.pc-btn:hover:not([disabled]) {
    background-color: #333;
    color: #fff;
}

.pc-btn.out {
    border-color: #ccc;
    color: #aaa;
    cursor: not-allowed;
}

/* Carousel Control Arrows */
.cc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--bg-dark);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    font-size: 1.8rem;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-arrow:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cc-arrow.prev { left: -24px; }
.cc-arrow.next { right: -24px; }

.cc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.cc-dot {
    width: 24px;
    height: 6px;
    background-color: var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.cc-dot.active {
    background-color: var(--primary);
    width: 36px;
}

/* ==========================================================================
   SPECIAL OFFER & TRENDING
   ========================================================================== */
.special-offer-section {
    background: linear-gradient(135deg, #071E4A 0%, #0A3080 60%, #1565C0 100%);
    color: var(--white);
    padding: 80px 0;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 60px 0;
}

/* Particle Effects */
.special-offer-section .particle {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp infinite linear;
}

@keyframes floatUp {
    0% { transform: translateY(100%) scale(1); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(1.2); opacity: 0; }
}

.special-offer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

.special-offer-gallery {
    position: relative;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.special-offer-gallery img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.special-offer-gallery img.active {
    opacity: 1;
}

.special-offer-details {
    display: flex;
    flex-direction: column;
}

.special-offer-details .offer-badge {
    background-color: var(--accent);
    color: var(--bg-dark);
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    align-self: flex-start;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(255, 184, 0, 0.3);
}

.special-offer-details h2 {
    color: var(--white);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.special-offer-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.so-capacity {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.so-capacity button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.so-capacity button.selected {
    background-color: var(--white);
    color: var(--bg-dark);
    border-color: var(--white);
}

.price-flex {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--accent);
}

.old-price-offer {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

/* Quantity Control */
.qty-checkout {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}

.qty-control {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 48px;
}

.qty-control button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 44px;
    border-radius: 0;
}

.qty-control input {
    background: transparent;
    color: var(--white);
    border: none;
    width: 60px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0;
}

.so-toc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.so-toc a {
    color: var(--accent);
    text-decoration: underline;
}

.so-toc input[type="checkbox"] {
    width: auto;
    margin-bottom: 0;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-group button {
    height: 52px;
}

.btn-group .primary {
    background-color: var(--accent);
    color: var(--bg-dark);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.25);
}

.btn-group .primary:hover {
    background-color: #E6A600;
    transform: translateY(-2px);
}

/* Trending Products */
.trending-section {
    padding: 60px 0;
}

/* ==========================================================================
   PROMOTIONAL BANNERS SLIDER
   ========================================================================== */
.promo-slider-section {
    position: relative;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 60px 0;
    box-shadow: var(--shadow-md);
}

.promo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.promo-slide.active {
    opacity: 1;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(7, 30, 74, 0.9) 0%, rgba(7, 30, 74, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.promo-slide-tag {
    background-color: var(--accent);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.72rem;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.promo-slide-title {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    max-width: 600px;
    line-height: 1.2;
}

.promo-slide-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 500px;
}

.promo-slide-btn {
    align-self: flex-start;
    background-color: var(--white);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.promo-slide-btn:hover {
    background-color: var(--primary);
    color: var(--white);
}

.promo-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    background-color: var(--accent);
    width: 0%;
    z-index: 10;
}

.promo-dots {
    position: absolute;
    bottom: 25px;
    right: 40px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.promo-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
}

.promo-dot.active {
    background-color: var(--white);
    transform: scale(1.3);
}

/* Image Links Grid */
.image-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.image-link-item {
    position: relative;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.image-link-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-link-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 30, 74, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 15px;
}

.image-link-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
}

.image-link-content button {
    padding: 8px 18px;
    font-size: 0.85rem;
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.image-link-item:hover img {
    transform: scale(1.08);
}

.image-link-item:hover .image-link-content button {
    background-color: var(--white);
    color: var(--bg-dark);
}

/* ==========================================================================
   FEATURES / WHY CHOOSE US
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(26, 102, 255, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 10px;
}

.feature-card p.short-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.feature-card .more-text {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    font-size: 0.82rem;
    color: var(--text-dark);
    margin-top: 0;
    line-height: 1.5;
    opacity: 0;
}

.feature-card.active {
    background-color: var(--primary-light);
    border-color: rgba(26, 102, 255, 0.2);
}

.feature-card.active .more-text {
    max-height: 200px;
    margin-top: 15px;
    opacity: 1;
}

/* ==========================================================================
   MINI CART SIDEBAR
   ========================================================================== */
.mini-cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background-color: var(--white);
    box-shadow: -10px 0 40px rgba(7, 30, 74, 0.15);
    z-index: 1500;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mini-cart-sidebar.open {
    right: 0;
}

.mini-cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-cart-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
}

.mini-cart-header .close-btn {
    background: transparent;
    color: var(--text-dark);
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.mini-cart-header .close-btn:hover {
    background-color: var(--light-gray);
}

.mini-cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: var(--text-muted);
    gap: 15px;
}

.empty-cart i {
    font-size: 3rem;
    color: var(--border-color);
}

/* Mini Cart Item Card */
.cart-item-card {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-card img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    border: 1px solid var(--border-color);
}

.cart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-info p.vendor {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.cart-item-qty {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.cart-item-qty button {
    background-color: var(--light-gray);
    width: 28px;
    height: 28px;
    border-radius: 0;
}

.cart-item-qty span {
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    font-size: 1.05rem;
}

.remove-item-btn {
    color: var(--danger);
    background: transparent;
    font-size: 0.85rem;
    padding: 0;
}

/* Recommended cross sell inside Cart */
.also-like-sec {
    border-top: 1px solid var(--border-color);
    padding: 20px 24px;
    background-color: var(--light-gray);
}

.als-title {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.prod-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.prod-scroll::-webkit-scrollbar {
    height: 4px;
}

.prod-scroll::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 4px;
}

.prod-scroll .product-card {
    flex: 0 0 160px;
    height: auto;
}

.prod-scroll .product-card img {
    height: 100px;
}

.prod-scroll .product-card-content {
    padding: 10px;
}

.prod-scroll .product-card h3 {
    font-size: 0.8rem;
    height: 2.2rem;
}

.mini-cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background-color: var(--white);
}

.del-options {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.del-opt {
    flex: 1;
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.del-opt.selected {
    border-color: var(--primary);
    background-color: var(--primary-light);
    color: var(--primary);
}

.mini-cart-summary {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.mini-cart-summary span:nth-child(2) {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--bg-dark);
}

.mini-cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.mini-cart-actions button {
    height: 48px;
}

/* ==========================================================================
   PAGES SYSTEM & LAYOUT
   ========================================================================== */
.page {
    display: none;
}

.page.active {
    display: block;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #0A3080 100%);
    color: var(--white);
    padding: 50px 0;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle, rgba(26,102,255,0.15) 0%, transparent 70%);
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.breadcrumbs {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

.breadcrumbs a {
    color: var(--white);
}

/* Info Pages general padding */
.authenticity-page-content,
.info-page-container {
    padding: 40px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.authenticity-page-content p,
.info-page-container p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
}

.authenticity-page-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.authenticity-page-content li {
    padding: 16px 20px;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.authenticity-page-content li a {
    font-weight: 700;
    color: var(--primary);
    text-decoration: underline;
}

/* ==========================================================================
   COLLECTION / CATEGORY PAGES
   ========================================================================== */

/* Clean Products Breadcrumb Bar - kamalsolar style */
.products-breadcrumb-bar {
    background-color: #fff;
    border-bottom: 1px solid #ebebeb;
    padding: 18px 0 14px;
}

.products-breadcrumb-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.products-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #888;
}

.products-breadcrumbs a {
    color: #555;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}

.products-breadcrumbs a:hover {
    color: var(--primary);
}

.products-breadcrumbs span {
    color: #bbb;
}

.products-breadcrumb-bar h1 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    letter-spacing: -0.02em;
}

.category-page-header {
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
    margin-bottom: 40px;
}

.category-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.filter-group select {
    width: auto;
    margin-bottom: 0;
    height: 36px;
    padding: 6px 12px;
    font-size: 0.84rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 60px;
}

/* ===== PRODUCT CONTROLS TOOLBAR - KAMALSOLAR STYLE ===== */
.product-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0 16px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

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

.view-as span {
    font-size: 0.72rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-right: 4px;
}

.vc-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
}

.vc-btn:hover, .vc-btn.active {
    background: #333;
    border-color: #333;
    color: #fff;
}

.pc-controls-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.items-per-page,
.sort-by {
    display: flex;
    align-items: center;
    gap: 8px;
}

.items-per-page label,
.sort-by label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.items-per-page select,
.sort-by select {
    height: 34px;
    padding: 0 28px 0 10px;
    font-size: 0.82rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #333;
    background: #fff;
    cursor: pointer;
    margin-bottom: 0;
    width: auto;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.product-detail-container {
    padding: 40px 0 80px;
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.pdp-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdp-main-image {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
}

.pdp-main-image img {
    max-height: 90%;
    max-width: 90%;
    object-fit: contain;
}

.pdp-info {
    display: flex;
    flex-direction: column;
}

.pdp-vendor {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pdp-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.pdp-rating-availability {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.pdp-stock-status {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--success);
}

.pdp-stock-status.out {
    color: var(--danger);
}

.pdp-price-box {
    margin-bottom: 30px;
}

.pdp-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.pdp-old-price {
    font-size: 1.4rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.pdp-description {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 35px;
}

.pdp-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 35px;
}

.pdp-qty {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    height: 52px;
    overflow: hidden;
}

.pdp-qty button {
    width: 44px;
    background-color: var(--light-gray);
    border-radius: 0;
}

.pdp-qty input {
    width: 50px;
    border: none;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0;
}

.pdp-actions button.primary {
    height: 52px;
    flex-grow: 1;
    font-size: 1.05rem;
}

.pdp-datasheet {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 700;
}

.pdp-datasheet i {
    color: var(--danger);
    font-size: 1.2rem;
}

/* ==========================================================================
   CART & CHECKOUT PAGES
   ========================================================================== */
.cart-full {
    padding: 40px 0 80px;
}

.cft-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.urgency-bar {
    background-color: #FEF2F2;
    border: 1px solid #FEE2E2;
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: var(--danger);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.cart-full-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-full-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.cart-full-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.cart-full-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-full-product img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    border: 1px solid var(--border-color);
}

.cart-full-product h4 {
    font-size: 1rem;
    font-weight: 700;
}

.comment-box {
    margin-top: 20px;
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 30px;
}

.order-summary {
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    max-width: 480px;
    margin-left: auto;
}

.os-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
}

.os-total {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--bg-dark);
}

.cart-full .proceed-btn {
    width: 100%;
    height: 52px;
    font-size: 1.05rem;
    margin-top: 20px;
}

.cart-full .continue-btn {
    width: 100%;
    height: 52px;
    margin-top: 12px;
}

/* Checkout Page Grid */
.chk-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    padding: 40px 0 80px;
}

.chk-section {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.chk-section h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.fg label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.fg input {
    margin-bottom: 0;
}

.shipping-method {
    border: 1px solid var(--border-color);
    background-color: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 20px;
}

.payment-info {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-top: 20px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(7,30,74,0.1);
    font-size: 0.88rem;
}

.bank-label {
    font-weight: 700;
}

.copy-btn {
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 4px;
}

.screenshot-area {
    border: 2px dashed var(--primary);
    border-radius: var(--radius-sm);
    padding: 30px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    background-color: var(--primary-light);
}

.screenshot-area i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.screenshot-preview {
    max-width: 100%;
    max-height: 200px;
    display: none;
    margin: 15px auto 0;
    border-radius: var(--radius-sm);
}

.chk-summary {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.chk-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.chk-item-name {
    font-weight: 700;
    max-width: 70%;
}

.cost-table {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.cost-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.35rem;
    font-weight: 800;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
    color: var(--primary);
}

.wa-submit-btn {
    width: 100%;
    height: 54px;
    background-color: #25D366;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    margin-top: 20px;
}

.wa-submit-btn:hover {
    background-color: #20BA56;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   WHY CHOOSE US / SERVICES & ABOUT PAGE
   ========================================================================== */
.services-container {
    padding: 40px 0 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-horizontal-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.project-horizontal-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.project-horizontal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-horizontal-info .tag {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 30px;
    align-self: flex-start;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.project-horizontal-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.project-horizontal-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 8px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
}

.footer-column p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-column.important-links a,
.footer-column.further-info a {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: underline;
}

/* ==========================================================================
   MOBILE RESPONSIVE BOTTOM NAVIGATION
   ========================================================================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    display: none;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
}

.bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    gap: 4px;
    flex-grow: 1;
    height: 100%;
    transition: var(--transition);
}

.bnav-item i {
    font-size: 1.25rem;
}

.bnav-item.active {
    color: var(--primary);
}

/* ==========================================================================
   STICKY BOTTOM CONTACT BUTTONS FOR MOBILE
   ========================================================================== */
.mobile-sticky-actions {
    display: none;
    position: fixed;
    bottom: var(--bottom-nav-height);
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    padding: 10px 15px;
    z-index: 999;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
}

/* ==========================================================================
   TOASTS & EXIT POPUP
   ========================================================================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    z-index: 2000;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Overlay general */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 30, 74, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1400;
}

.overlay.show {
    display: block;
}

/* Exit Popup */
.exit-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    z-index: 2100;
    max-width: 480px;
    width: 90%;
    text-align: center;
    transition: var(--transition);
}

.exit-popup.show {
    display: block;
    transform: translate(-50%, -50%) scale(1);
}

.exit-popup-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.exit-popup h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.exit-popup p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.exit-popup-btns {
    display: flex;
    gap: 16px;
}

.exit-popup-btns button {
    flex: 1;
    height: 48px;
}

/* ==========================================================================
   MEDIA QUERIES & RESPONSIVENESS
   ========================================================================== */
@media(max-width: 1024px) {
    .cat-section {
        grid-template-columns: 1fr;
    }
    
    .cat-col-right {
        height: auto;
    }
    
    .cat-col-right .cat-item {
        height: 260px;
    }
    
    .prod-flex {
        grid-template-columns: 1fr;
    }
    
    .prod-banner {
        min-height: auto;
        height: 200px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .grid4 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .chk-wrap {
        grid-template-columns: 1fr;
    }
    
    .pdp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media(max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    body {
        padding-bottom: calc(var(--bottom-nav-height) + 10px);
    }
    
    .header-top {
        display: none;
    }
    
    .nav-links, .search-cart {
        display: none;
    }
    
    .hamburger-btn, .hdr-icons {
        display: flex;
    }
    
    .hdr-icons {
        align-items: center;
        gap: 15px;
    }
    
    .hdr-icon {
        font-size: 1.3rem;
        color: var(--bg-dark);
        position: relative;
        cursor: pointer;
    }
    
    .hdr-icon .cart-badge {
        position: absolute;
        top: -6px;
        right: -8px;
        background-color: var(--danger);
        color: var(--white);
        font-size: 0.65rem;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
    
    /* Mobile slide menu panel */
    .mobile-nav-panel {
        display: block;
        position: fixed;
        top: var(--header-height);
        left: -280px;
        width: 280px;
        height: calc(100vh - var(--header-height));
        background-color: var(--white);
        z-index: 999;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-right: 1px solid var(--border-color);
        padding: 30px 24px;
        box-shadow: 10px 0 30px rgba(0,0,0,0.05);
    }
    
    .mobile-nav-panel.open {
        left: 0;
    }
    
    .mob-menu {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .mob-menu a {
        color: var(--text-dark);
        font-weight: 700;
        font-size: 1.1rem;
        display: block;
    }
    
    .mob-menu .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mob-dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
        padding-left: 15px;
    }
    
    .mob-dropdown-content.show {
        max-height: 500px;
        margin-top: 10px;
    }
    
    .mob-dropdown-content a {
        font-size: 0.95rem;
        font-weight: 500;
        padding: 8px 0;
    }
    
    .mob-overlay {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(7,30,74,0.3);
        backdrop-filter: blur(4px);
        z-index: 998;
    }
    
    .mob-overlay.open {
        display: block;
    }
    
    .hero-section {
        height: calc(100vh - var(--header-height));
        min-height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        margin-bottom: 30px;
    }
    
    .floating-decorations {
        display: none;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .grid4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bottom-nav {
        display: flex;
    }
    
    .mini-cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .special-offer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .special-offer-gallery {
        height: 280px;
    }
    
    .project-horizontal-card {
        grid-template-columns: 1fr;
    }
    
    .project-horizontal-card img {
        height: 220px;
    }
    
    .image-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .image-link-item {
        height: 160px;
    }
}

@media(max-width: 560px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .grid4, .grid3 {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cat-col-left {
        grid-template-columns: 1fr;
    }
    
    .special-offer-details h2 {
        font-size: 2rem;
    }
    
    .current-price {
        font-size: 2rem;
    }
    
    .promo-slider-section {
        height: 320px;
    }
    
    .promo-slide-title {
        font-size: 1.6rem;
    }
    
    .promo-slide-overlay {
        padding: 30px;
    }
    
    .qty-checkout {
        flex-direction: column;
        align-items: stretch;
    }
    
    .qty-checkout .qty-control {
        justify-content: center;
    }
}

/* Global Mobile Navigation Hiding (Desktop fallback) */
@media(min-width: 769px) {
    .mobile-nav-panel, .mob-overlay {
        display: none !important;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    animation: waPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.65);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

@keyframes waPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media(max-width: 768px) {
    .whatsapp-float {
        bottom: 85px; /* Float above mobile bottom nav bar */
        right: 20px;
    }
}

/* ===== PRODUCTS PAGE CATALOG LAYOUT - KAMALSOLAR STYLE ===== */
.products-page-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    margin-top: 30px;
    margin-bottom: 60px;
    align-items: start;
}

/* ===== SIDEBAR ===== */
.sidebar {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 0;
    height: fit-content;
    position: sticky;
    top: 90px;
}

/* Sidebar collapsible section header */
.sidebar-section {
    border-bottom: 1px solid #ebebeb;
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
}

.sidebar-section-header h4 {
    font-size: 0.78rem;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.sidebar-section-header .toggle-icon {
    font-size: 0.75rem;
    color: #888;
    transition: transform 0.2s;
}

.sidebar-section.collapsed .sidebar-section-body {
    display: none;
}

.sidebar-section.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.sidebar-section-body {
    padding: 4px 16px 16px;
}

.filter-toggle-btn {
    display: none !important;
}

.sidebar-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-section ul li a {
    color: #555;
    font-weight: 400;
    font-size: 0.88rem;
    transition: color 0.2s;
    display: block;
    padding: 4px 0;
}

.sidebar-section ul li a:hover,
.sidebar-section ul li a.active-cat {
    color: var(--primary);
}

.sidebar-section ul li a.active-cat {
    font-weight: 600;
}

/* Price range inputs */
.price-range {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.price-range input {
    flex: 1;
    min-width: 55px;
    padding: 6px 8px;
    margin-bottom: 0;
    font-size: 0.82rem;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.price-range span {
    font-size: 0.82rem;
    color: #888;
}

.price-range button {
    width: 100%;
    margin-top: 10px;
    height: 36px;
    padding: 0 12px;
    font-size: 0.8rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.price-range button:hover {
    background: #111;
}

/* Availability checkboxes */
.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: #555;
    margin-bottom: 8px;
    cursor: pointer;
}

.filter-group input[type="checkbox"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

/* Mobile Navigation Slide Panel & Overlay Layouts */
@media(max-width: 768px) {
    /* Hamburger and header icon alignments to balance header logo */
    .hamburger-btn {
        order: 1 !important;
        width: 50px !important;
        justify-content: flex-start !important;
        display: flex !important;
    }
    .logo-wrap {
        order: 2 !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    .hdr-icons {
        order: 3 !important;
        width: 50px !important;
        justify-content: flex-end !important;
        display: flex !important;
    }

    /* Products Grid & Sidebar stacking */
    .products-page-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Hero vertical stacking & decoration hiding */
    #hero .container {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 20px !important;
        text-align: center !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        height: auto !important;
    }
    .floating-decorations {
        display: none !important;
    }
    .hero-btns {
        justify-content: center !important;
    }
    .hero-badges {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    /* Ensure main header is always on top on mobile, even above the navigation slide menu overlay */
    header {
        z-index: 10005 !important;
        position: sticky !important;
        top: 0 !important;
    }

    /* Mobile Slide Panel & overlays starting below header */
    .mobile-nav-panel {
        display: flex !important;
        position: fixed !important;
        top: var(--header-height) !important;
        left: 0 !important;
        width: 300px !important;
        height: calc(100vh - var(--header-height)) !important;
        background-color: var(--white) !important;
        z-index: 10000 !important;
        transform: translateX(-100%) !important;
        transition: transform 0.42s cubic-bezier(0.23, 1, 0.32, 1) !important;
        box-shadow: 6px 0 32px rgba(7, 30, 74, 0.2) !important;
        flex-direction: column !important;
        padding: 0 !important;
        will-change: transform;
    }

    .mobile-nav-panel.open {
        transform: translateX(0) !important;
    }

    .mob-overlay {
        display: block !important;
        position: fixed !important;
        top: var(--header-height) !important;
        left: 0 !important;
        width: 100% !important;
        height: calc(100vh - var(--header-height)) !important;
        background-color: rgba(7, 30, 74, 0.5) !important;
        backdrop-filter: blur(4px) !important;
        z-index: 9999 !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: opacity 0.3s ease !important;
    }

    .mob-overlay.open {
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Hide the redundant close header inside the menu panel since main header is always on top */
    .mnp-header {
        display: none !important;
    }

    .mnp-logo {
        display: none !important;
        align-items: center !important;
        gap: 12px !important;
        font-weight: 700 !important;
        color: #fff !important;
        font-size: 1rem !important;
    }

    .mnp-logo img {
        height: 38px !important;
        width: 38px !important;
        object-fit: contain !important;
        border-radius: 8px !important;
        background: rgba(255,255,255,0.15) !important;
        padding: 4px !important;
    }

    .mnp-close {
        background: rgba(255,255,255,0.15) !important;
        border: none !important;
        font-size: 1.1rem !important;
        color: #fff !important;
        padding: 6px 10px !important;
        cursor: pointer !important;
        border-radius: 6px !important;
        transition: background 0.2s !important;
        line-height: 1 !important;
    }

    .mnp-close:hover {
        background: rgba(255,255,255,0.28) !important;
    }

    .mnp-links {
        display: flex !important;
        flex-direction: column !important;
        padding: 16px 12px !important;
        gap: 4px !important;
        overflow-y: auto !important;
        flex: 1 !important;
    }

    /* Stagger slide-in for each nav link */
    @keyframes mnpLinkIn {
        from { opacity: 0; transform: translateX(-18px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    .mobile-nav-panel.open .mnp-link {
        animation: mnpLinkIn 0.35s cubic-bezier(0.23, 1, 0.32, 1) both !important;
    }

    .mobile-nav-panel.open .mnp-link:nth-child(1) { animation-delay: 0.05s !important; }
    .mobile-nav-panel.open .mnp-link:nth-child(2) { animation-delay: 0.10s !important; }
    .mobile-nav-panel.open .mnp-link:nth-child(3) { animation-delay: 0.15s !important; }
    .mobile-nav-panel.open .mnp-link:nth-child(4) { animation-delay: 0.20s !important; }
    .mobile-nav-panel.open .mnp-link:nth-child(5) { animation-delay: 0.25s !important; }
    .mobile-nav-panel.open .mnp-link:nth-child(6) { animation-delay: 0.28s !important; }
    .mobile-nav-panel.open .mnp-link:nth-child(7) { animation-delay: 0.31s !important; }
    .mobile-nav-panel.open .mnp-link:nth-child(8) { animation-delay: 0.34s !important; }
    .mobile-nav-panel.open .mnp-link:nth-child(9) { animation-delay: 0.37s !important; }

    .mnp-section-label {
        font-size: 0.68rem !important;
        font-weight: 700 !important;
        color: #aaa !important;
        text-transform: uppercase !important;
        letter-spacing: 1.2px !important;
        padding: 12px 14px 4px !important;
    }

    .mnp-link {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 11px 14px !important;
        border-radius: 8px !important;
        color: #333 !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        transition: background 0.18s, color 0.18s, transform 0.18s !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .mnp-link::before {
        content: '' !important;
        position: absolute !important;
        left: 0; top: 0; bottom: 0 !important;
        width: 3px !important;
        background: var(--primary) !important;
        border-radius: 0 3px 3px 0 !important;
        transform: scaleY(0) !important;
        transition: transform 0.2s !important;
    }

    .mnp-link:hover, .mnp-link.active {
        background-color: #EEF2FF !important;
        color: var(--primary) !important;
        transform: translateX(3px) !important;
    }

    .mnp-link:hover::before, .mnp-link.active::before {
        transform: scaleY(1) !important;
    }

    .mnp-icon {
        font-size: 1.15rem !important;
        width: 22px !important;
        text-align: center !important;
        flex-shrink: 0 !important;
    }

    .mnp-brands-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
        padding: 4px 0 !important;
    }

    .mnp-brand-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 8px 6px !important;
        border-radius: 6px !important;
        background: #f5f5f5 !important;
        border: 1px solid #eee !important;
        font-size: 0.78rem !important;
        font-weight: 600 !important;
        color: #444 !important;
        cursor: pointer !important;
        transition: background 0.18s, color 0.18s, border-color 0.18s !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }

    .mnp-brand-btn:hover {
        background: var(--primary) !important;
        color: #fff !important;
        border-color: var(--primary) !important;
    }

    .mnp-footer {
        padding: 18px 20px !important;
        border-top: 1px solid #eee !important;
        background-color: #fafafa !important;
        flex-shrink: 0 !important;
    }

    .mnp-contact-row {
        font-size: 0.82rem !important;
        color: #888 !important;
        margin-bottom: 6px !important;
    }

    .mnp-contact-row a {
        color: var(--primary) !important;
        font-weight: 600 !important;
    }
}

/* Urdu Promotional Banner Styles */
.urdu-slide {
    text-align: right;
    align-items: flex-end !important;
}
.urdu-title {
    font-family: 'Noto Nastaliq Urdu', serif !important;
    font-size: 2.2rem !important;
    line-height: 2.0 !important;
    font-weight: 700;
    margin-bottom: 8px;
}
.urdu-sub {
    font-family: 'Noto Nastaliq Urdu', serif !important;
    font-size: 1.25rem !important;
    line-height: 2.0 !important;
    opacity: 0.95;
    margin-bottom: 16px;
    max-width: 80%;
}
.promo-slide-contact {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.phone-badge {
    background-color: var(--accent);
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 184, 0, 0.2);
    text-decoration: none;
    transition: transform 0.2s ease;
}
.phone-badge:hover {
    transform: translateY(-2px);
}
.phone-badge.secondary {
    background-color: var(--white);
    color: var(--bg-dark);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

@media(max-width: 768px) {
    .urdu-title {
        font-size: 1.6rem !important;
        line-height: 1.8 !important;
    }
    .urdu-sub {
        font-size: 1.0rem !important;
        line-height: 1.8 !important;
        max-width: 100%;
    }
    .promo-slide-contact {
        justify-content: center;
        gap: 10px;
    }
    .urdu-slide {
        text-align: center;
        align-items: center !important;
    }
}

/* Cart Addition Pulse Animation */
@keyframes cartPulse {
    0% { transform: scale(1); }
    30% { transform: scale(1.4); }
    60% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.pulse-anim {
    animation: cartPulse 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both !important;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE (PDP) — Professional E-Commerce Layout
   ========================================================================== */
.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.pdp-main-img-wrap {
    position: relative;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.pdp-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.pdp-sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--danger);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 2;
}

.pdp-tabs-header {
    display: flex;
    border-bottom: 2px solid var(--border-color);
    gap: 30px;
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.pdp-tabs-header::-webkit-scrollbar {
    display: none;
}

.pdp-tab-btn {
    background: none;
    border: none;
    padding: 15px 5px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.pdp-tab-btn.active {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
}

.pdp-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

/* ==========================================================================
   FAQ Page Accordion
   ========================================================================== */
.faq-item h4 {
    position: relative;
    padding-right: 30px;
    transition: color 0.3s ease;
}

.faq-item h4::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item h4.open::after {
    content: '−';
}

/* ==========================================================================
   Blog Cards
   ========================================================================== */
.blog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ==========================================================================
   COMPREHENSIVE MOBILE-FIRST RESPONSIVE DESIGN
   Progressive Enhancement from 320px upward
   ========================================================================== */

/* ── Base Mobile Fixes (320px+) ── */
@media (max-width: 768px) {
    /* PDP: Stack to single column */
    .pdp-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .pdp-main-img-wrap {
        max-height: 400px;
    }
    
    /* PDP Reviews: Stack form and list */
    .pdp-reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* PDP Tabs: Scrollable */
    .pdp-tabs-header {
        gap: 20px !important;
    }
    
    .pdp-tab-btn {
        font-size: 1rem !important;
        padding: 12px 5px !important;
    }
    
    /* PDP Action buttons: Stack on small screens */
    .pdp-actions > div:last-child {
        grid-template-columns: 1fr !important;
    }
    
    /* Header: Hide top bar, compact header */
    .header-top {
        display: none !important;
    }
    
    header .navbar {
        padding: 0 12px !important;
    }
    
    /* Desktop nav hidden on mobile */
    .nav-links {
        display: none !important;
    }
    
    /* Hamburger visible */
    .hamburger-btn {
        display: flex !important;
    }
    
    /* Hero section responsive */
    .hero-section {
        min-height: auto !important;
        height: auto !important;
        padding: 30px 0 !important;
    }
    
    .hero-section h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        line-height: 1.2 !important;
    }
    
    .hero-section p {
        font-size: clamp(0.9rem, 3vw, 1.1rem) !important;
    }
    
    /* Section headings responsive */
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-top: 30px;
    }
    
    .section-heading h2 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
    
    /* Category grid: 2 columns on mobile */
    .categories-grid,
    .cat-col-left {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    /* Product grid: 2 columns on mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    /* Product card mobile tweaks */
    .pc-img {
        height: 160px !important;
    }

    .pc-body {
        padding: 10px 10px 12px !important;
    }

    .pc-body h3 {
        font-size: 0.78rem !important;
        min-height: auto !important;
    }

    .pc-price {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }

    .pc-btn {
        font-size: 0.72rem !important;
        padding: 8px 4px !important;
    }

    /* Product controls toolbar mobile */
    .product-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px !important;
    }

    .pc-controls-right {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px !important;
    }

    .items-per-page, .sort-by {
        width: 100%;
    }

    .items-per-page select, .sort-by select {
        flex: 1;
    }

    /* Breadcrumb bar on mobile */
    .products-breadcrumb-bar h1 {
        font-size: 1.2rem !important;
    }
    

    /* Footer: Stack columns */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        text-align: center;
    }
    
    .footer-content .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
        font-size: 0.8rem;
    }
    
    /* Bottom nav always visible */
    .bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9998;
        background: var(--white);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
        padding: 8px 0;
        justify-content: space-around;
    }
    
    .bnav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        font-size: 0.7rem;
        color: var(--text-muted);
        min-width: 50px;
        padding: 4px 8px;
        cursor: pointer;
        transition: color 0.2s ease;
        position: relative;
    }
    
    .bnav-item i {
        font-size: 1.15rem;
    }
    
    .bnav-item.active {
        color: var(--primary);
    }
    
    .bnav-item.active::after {
        content: '';
        position: absolute;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 3px;
        background: var(--primary);
        border-radius: 0 0 3px 3px;
    }
    
    /* Ensure body padding for bottom nav */
    body {
        padding-bottom: 70px !important;
    }
    
    /* WhatsApp above bottom nav */
    .whatsapp-float {
        bottom: 85px !important;
        right: 20px !important;
    }
    
    /* Promo slider mobile */
    .promo-slider {
        height: auto !important;
        min-height: 200px !important;
    }
    
    .promo-slide h2 {
        font-size: clamp(1.2rem, 4vw, 1.8rem) !important;
    }
    
    .promo-slide p {
        font-size: clamp(0.8rem, 2.5vw, 1rem) !important;
    }
    
    /* Special Offer Section Mobile */
    .special-offer-section {
        padding: 40px 15px !important;
    }
    
    .special-offer-details h2 {
        font-size: clamp(1.3rem, 5vw, 2rem) !important;
    }
    
    /* Brand Marquee smaller */
    .brand-logos img {
        height: 40px !important;
    }
    
    /* Cart page mobile */
    .cart-full {
        padding: 15px !important;
    }
    
    .cart-item-row {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    /* Checkout page mobile */
    .checkout-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Search overlay mobile */
    .search-overlay {
        padding: 15px !important;
    }
    
    /* Container padding */
    .container {
        padding: 0 15px !important;
    }
    
    /* Page header text */
    .page-header h1 {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
    
    /* Info pages */
    .page h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem) !important;
    }
    
    .page h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.4rem) !important;
    }
    
    /* Sidebar on Products Page */
    .products-page-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .sidebar {
        display: none !important; /* Hidden on mobile by default */
        order: -1;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .sidebar.open {
        display: block !important; /* Shown when toggled open */
        animation: fadeIn 0.4s ease;
    }
    
    .filter-toggle-btn {
        display: flex !important;
        width: 100%;
        padding: 12px;
        background: linear-gradient(135deg, var(--bg-dark) 0%, #0A3080 100%);
        color: var(--white);
        border: none;
        border-radius: var(--radius-md);
        font-weight: bold;
        font-size: 0.95rem;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-bottom: 10px;
        box-shadow: var(--shadow-sm);
        transition: transform 0.2s, opacity 0.2s;
    }
    
    .filter-toggle-btn:active {
        transform: scale(0.98);
    }
    
    /* Mini Cart responsive */
    .mini-cart-sidebar {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ── Very small screens (320px-359px) ── */
@media (max-width: 359px) {
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .categories-grid,
    .cat-col-left {
        grid-template-columns: 1fr !important;
    }
    
    .hero-section h1 {
        font-size: 1.5rem !important;
    }
    
    .pdp-main-img-wrap {
        max-height: 300px;
    }
    
    .section-heading h2 {
        font-size: 1.3rem !important;
    }
}

/* ── Tablet screens (768px-1023px) ── */
@media (min-width: 769px) and (max-width: 1023px) {
    .pdp-grid {
        gap: 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    /* Bottom nav hidden on tablet */
    .bottom-nav {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
}

/* ── Desktop (1024px+) ── */
@media (min-width: 1024px) {
    .bottom-nav {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
    
    .hamburger-btn {
        display: none !important;
    }
    
    .mobile-nav-panel {
        display: none !important;
    }
    
    .mob-overlay {
        display: none !important;
    }
}

/* ==========================================================================
   SMOOTH ANIMATIONS
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
   TOUCH-FRIENDLY IMPROVEMENTS
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
    /* Minimum tap targets for touch devices */
    button, a, .bnav-item, .mnp-link, select {
        min-height: 44px;
    }
    
    /* Remove hover effects on touch */
    .product-card:hover {
        transform: none;
    }
    
    /* Better touch scrolling */
    .prod-scroll, .pdp-tabs-header {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .prod-scroll > * {
        scroll-snap-align: start;
    }
}

/* ==========================================================================
   PRINT STYLES (for invoices/datasheets)
   ========================================================================== */
@media print {
    .header-top, header, .bottom-nav, .whatsapp-float,
    .mobile-nav-panel, .mob-overlay, .mini-cart-sidebar,
    .overlay, #exitPopup {
        display: none !important;
    }
    
    body {
        padding: 0 !important;
    }
}

/* ==========================================================================
   ENHANCED TOAST NOTIFICATIONS (typed variants)
   ========================================================================== */

/* Override the basic toast — typed variants override base */
.toast.toast-success {
    background: linear-gradient(135deg, #065f46, #10B981);
    border-left: 4px solid #6ee7b7;
}

.toast.toast-warning {
    background: linear-gradient(135deg, #78350f, #F59E0B);
    border-left: 4px solid #fcd34d;
    color: #1a1a1a;
}

.toast.toast-error {
    background: linear-gradient(135deg, #7f1d1d, #EF4444);
    border-left: 4px solid #fca5a5;
}

/* On mobile, toast appears above bottom nav */
@media (max-width: 768px) {
    .toast {
        bottom: calc(var(--bottom-nav-height) + 16px);
        font-size: 0.85rem;
        padding: 12px 20px 12px 16px;
        max-width: 85vw;
        white-space: normal;
        text-align: center;
    }
}

/* ==========================================================================
   SCROLL-REVEAL ANIMATIONS (IntersectionObserver driven)
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for child elements in grids */
.features-grid .scroll-reveal:nth-child(2),
.cat-col-left .scroll-reveal:nth-child(2) { transition-delay: 0.08s; }
.features-grid .scroll-reveal:nth-child(3),
.cat-col-left .scroll-reveal:nth-child(3) { transition-delay: 0.16s; }
.features-grid .scroll-reveal:nth-child(4),
.cat-col-left .scroll-reveal:nth-child(4) { transition-delay: 0.24s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   LOADING SKELETON PULSE
   ========================================================================== */
.skeleton {
    background: linear-gradient(90deg, #f0f4ff 25%, #e8eef8 50%, #f0f4ff 75%);
    background-size: 200% 100%;
    animation: skeletonPulse 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeletonPulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================================================
   ENHANCED SECTION PRODUCT HEADINGS (.sh)
   ========================================================================== */
.sh {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 10px;
    flex-wrap: wrap;
    gap: 15px;
}

.sh h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--bg-dark);
    position: relative;
    padding-bottom: 10px;
}

.sh h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
}

.sh-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ==========================================================================
   ENHANCED GLOW BUTTONS (section headers)
   ========================================================================== */
.glow-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: var(--primary-light);
    color: var(--primary);
    border: 1.5px solid rgba(26, 102, 255, 0.2);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.glow-button:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(26, 102, 255, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   ENHANCED CATEGORY OVERLAY & SHOP-NOW BUTTON
   ========================================================================== */
.cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.cat-item:hover .cat-btn {
    background: var(--white);
    color: var(--bg-dark);
    border-color: var(--white);
    transform: translateX(4px);
}

/* ==========================================================================
   BRANDS MARQUEE — Pause on hover
   ========================================================================== */
.brands-marquee-wrap:hover .brands-marquee-track {
    animation-play-state: paused;
}

.bwl-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.bwl-inner h2 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

/* ==========================================================================
   IMPROVED PRODUCT CARD BORDER HIGHLIGHT ON HOVER
   ========================================================================== */
.pc {
    position: relative;
}

.pc::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    opacity: 0;
    border: 2px solid var(--primary);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pc:hover::after {
    opacity: 0.35;
}

/* ==========================================================================
   ENHANCED SPECIAL OFFER SECTION
   ========================================================================== */
.special-offer-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5;
}

@media (max-width: 900px) {
    .special-offer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.special-offer-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    aspect-ratio: 4/3;
}

.special-offer-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.special-offer-image img.active {
    opacity: 1;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
    pointer-events: none;
}
.corner.tl { top: 10px; left: 10px; border-top: 2px solid rgba(255,184,0,0.6); border-left: 2px solid rgba(255,184,0,0.6); }
.corner.tr { top: 10px; right: 10px; border-top: 2px solid rgba(255,184,0,0.6); border-right: 2px solid rgba(255,184,0,0.6); }
.corner.bl { bottom: 10px; left: 10px; border-bottom: 2px solid rgba(255,184,0,0.6); border-left: 2px solid rgba(255,184,0,0.6); }
.corner.br { bottom: 10px; right: 10px; border-bottom: 2px solid rgba(255,184,0,0.6); border-right: 2px solid rgba(255,184,0,0.6); }

.carousel-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
    z-index: 5;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* ==========================================================================
   SPECIAL OFFER DETAILS COLUMN
   ========================================================================== */
.special-offer-details {
    color: var(--white);
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.shop-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,184,0,0.35);
    color: var(--bg-dark);
}

.sale-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.3);
}

.sold-info {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.description {
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.85);
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.old-price {
    font-size: 1.3rem;
    text-decoration: line-through;
    opacity: 0.5;
    color: var(--white);
}

.shipping-info {
    font-size: 0.82rem;
    opacity: 0.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
}

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

.options-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--white);
}

.capacity-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.capacity-selector button {
    padding: 8px 20px;
    border: 1.5px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    transition: var(--transition);
}

.capacity-selector button.selected,
.capacity-selector button:hover {
    background: var(--white);
    color: var(--bg-dark);
    border-color: var(--white);
}

.quantity-selector {
    display: flex;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-sm);
    overflow: hidden;
    width: fit-content;
}

.quantity-selector button {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 0;
    font-size: 1.2rem;
    border: none;
}

.quantity-selector button:hover {
    background: rgba(255,255,255,0.2);
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    background: transparent;
    color: var(--white);
    border: none;
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
    font-weight: 700;
    margin-bottom: 0;
    padding: 8px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    background: var(--white);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.add-to-cart-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255,184,0,0.3);
}

.share-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    opacity: 0.85;
    color: var(--white);
}

.copy-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    transition: var(--transition);
    font-size: 0.82rem;
    color: var(--white);
}

.copy-link:hover {
    background: rgba(255,255,255,0.15);
}

.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    opacity: 0.75;
    color: rgba(255,255,255,0.75);
}

.terms-checkbox input {
    width: auto;
    margin-bottom: 0;
    accent-color: var(--accent);
}

/* ==========================================================================
   TRENDING SECTION
   ========================================================================== */
.trending-section {
    padding: 60px 0;
}

.trending-inner-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.trending-inner-head h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--bg-dark);
}

.trending-inner-head a {
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.trending-inner-head a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.trending-hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-md);
}

.trending-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trending-hero:hover img {
    transform: scale(1.04);
}

.show-more-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,30,74,0.05) 0%, rgba(7,30,74,0.75) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
}

.show-more-link {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.show-more-link:hover {
    background: var(--white);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .trending-hero {
        height: 220px;
    }
}

/* ==========================================================================
   FOOTER — Top accent line
   ========================================================================== */
footer {
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
}

/* ==========================================================================
   PAGE BANNER (Checkout header)
   ========================================================================== */
.page-banner {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1565C0 100%);
    padding: 40px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
}

.page-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 8px;
}

.page-banner p {
    color: rgba(255,255,255,0.75);
}

/* ==========================================================================
   BANNER LINK STYLING
   ========================================================================== */
.banner-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

/* ==========================================================================
   ACCESSIBILITY — Visible focus rings
   ========================================================================== */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ==========================================================================
   TAP HIGHLIGHT — Remove default mobile blue flash
   ========================================================================== */
* {
    -webkit-tap-highlight-color: rgba(26, 102, 255, 0.08);
}

/* ==========================================================================
   COUNTER ANIMATION — Hero badge text
   ========================================================================== */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge-text h4 {
    animation: countUp 0.8s ease both;
    animation-delay: 0.4s;
}

/* ==========================================================================
   WHATSAPP FLOAT — Image hover rotate effect
   ========================================================================== */
.whatsapp-float img {
    transition: transform 0.35s ease;
}

.whatsapp-float:hover img {
    transform: rotate(-10deg) scale(1.1);
}

/* ==========================================================================
   IMPROVED DROPDOWN — Left accent line
   ========================================================================== */
.nav-item.dropdown .dropdown-content {
    border-top: 3px solid var(--primary);
}

/* ==========================================================================
   MOBILE HERO — centered text alignment
   ========================================================================== */
@media (max-width: 768px) {
    .hero-content-wrap {
        padding-left: 0;
    }
    .hero-tag {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-section p.hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .special-offer-image {
        aspect-ratio: 16/10;
    }
}

/* ==========================================================================
   SECTION SPACING
   ========================================================================== */
.prod-section {
    border-bottom: 1px solid var(--border-color);
}

.prod-section:last-of-type {
    border-bottom: none;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS FIXES (OVERRIDING ALL PREVIOUS CONFLICTS)
   ========================================================================== */
html, body {
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    /* 1. Global Typography & Buttons */
    h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        line-height: 1.2;
    }
    
    h2, .section-heading h2, .sh h2 {
        font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
    }
    
    .primary, .secondary, .glow-button, .add-to-cart-btn, .shop-now-btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }

    /* 2. Hero Section Adjustments */
    .hero-section {
        height: auto !important;
        min-height: 80vh;
        padding-top: var(--header-height);
        padding-bottom: 40px;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center;
    }
    
    .hero-content-wrap {
        padding-left: 0 !important;
        padding-top: 20px;
    }
    
    .hero-carousel {
        position: absolute;
        inset: 0;
        z-index: 0;
    }
    
    .hero-carousel img {
        object-fit: cover !important;
    }
    
    .decor-panel {
        display: none !important; /* Hide decorative floating panels on mobile */
    }

    .hero-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 20px;
    }

    /* 3. Categories Layout (.cat-section) */
    .cat-section {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .cat-col-left {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .cat-item, .cat-col-right .cat-item {
        height: 180px !important;
    }

    /* 4. Features Grid */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .feature-card {
        padding: 20px !important;
    }

    /* 5. Product Cards & Grids */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .product-card, .pc {
        padding: 10px !important;
    }
    
    .pc-img {
        height: 140px !important;
    }
    
    .pc-title {
        font-size: 0.85rem !important;
        margin-bottom: 5px !important;
    }
    
    .pc-price {
        font-size: 1rem !important;
    }
    
    .pc-btn {
        padding: 8px !important;
        font-size: 0.8rem !important;
    }

    /* 6. Special Offer Section */
    .special-offer-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .special-offer-image {
        aspect-ratio: 4/3 !important;
    }
    
    .current-price {
        font-size: 1.8rem !important;
    }
    
    .old-price {
        font-size: 1.1rem !important;
    }

    /* 7. Trending Section */
    .trending-hero {
        height: 200px !important;
    }
    
    .trending-inner-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* 8. Footer Layout */
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    /* 9. PDP (Product Detail Page) Layout */
    .pdp-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .pdp-main-img-wrap {
        aspect-ratio: 4/3 !important;
    }

    .pd-price-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }

    .pdp-reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Ensure padding for containers */
    .container {
        padding: 0 15px !important;
    }

    .prod-section {
        padding: 40px 0 !important;
    }
}

/* Fix for even smaller devices (e.g., iPhone SE) */
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr !important; /* Stack products on very small screens to avoid cramping */
    }
    
    .pc-img {
        height: 200px !important;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   NEW UX FEATURES: Order Persistence, WhatsApp Badge & Nav Animations
   ========================================================================== */

/* 1. WhatsApp Button Badge & White Icon */
.whatsapp-float img {
    filter: brightness(0) invert(1); /* Makes the icon pure white */
}

.whatsapp-float {
    overflow: visible !important; /* ensure badge is not clipped */
}

.wa-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff3b30;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    animation: gentle-pulse 2s infinite ease-in-out;
}

@keyframes gentle-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(255, 59, 48, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

/* 2. Pending Order Banner */
.pending-order-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1565C0, #0D47A1);
    color: white;
    z-index: 2000;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pending-order-banner.show {
    transform: translateY(0);
}

.pending-order-banner .po-text {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pending-order-banner .po-btn {
    background: white;
    color: #1565C0;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.pending-order-banner .po-btn:hover {
    background: #e3f2fd;
}

/* 3. Mobile Nav Panel smooth transition styles are handled in base CSS declaration */
