/* ================================================================
   AJP Impex Private Limited – Main Stylesheet
   ================================================================ */

/* ── CSS Custom Properties ──────────────────────────────────────── */
:root {
    --primary:       #2563eb;
    --primary-dark:  #1d4ed8;
    --primary-light: #dbeafe;
    --accent:        #0d9488;
    --accent-dark:   #0f766e;
    --dark:          #0f172a;
    --medium:        #334155;
    --slate:         #64748b;
    --light:         #f8fafc;
    --border:        #e2e8f0;
    --white:         #ffffff;
    --danger:        #ef4444;
    --success:       #22c55e;
    --warning:       #f59e0b;
    --font:          'Inter', system-ui, -apple-system, sans-serif;
    --radius:        12px;
    --radius-sm:     8px;
    --radius-lg:     20px;
    --shadow-sm:     0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow:        0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
    --shadow-lg:     0 10px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
    --transition:    .25s ease;
}

/* ── Logo Image ─────────────────────────────────────────────────── */
.navbar-logo-img {
    height: 54px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}
.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px 10px;
}
@media (max-width: 768px) {
    .navbar-logo-img { height: 42px; }
}

/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--medium);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: var(--dark); }
.section-heading { font-size: 2rem; font-weight: 800; color: var(--dark); }
.section-subheading { font-size: 1.05rem; color: var(--slate); max-width: 600px; margin: 0 auto; }
.section-label {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    padding: .3rem .9rem;
    border-radius: 30px;
    margin-bottom: .75rem;
}

/* ── Utilities ──────────────────────────────────────────────────── */
.text-primary-custom { color: var(--primary) !important; }
.text-accent   { color: var(--accent) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-light-custom { background: var(--light) !important; }
.rounded-custom { border-radius: var(--radius) !important; }
.shadow-custom  { box-shadow: var(--shadow) !important; }

/* ── Topbar ─────────────────────────────────────────────────────── */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,.75);
    font-size: .8rem;
    padding: .4rem 0;
}
.topbar-item { color: rgba(255,255,255,.8); }
.topbar-item i { color: var(--accent); }
.topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    margin-left: .6rem;
    transition: color var(--transition);
}
.topbar-social:hover { color: var(--accent); }

/* ── Navbar ─────────────────────────────────────────────────────── */
.main-navbar {
    background: var(--white);
    padding: .85rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all .35s ease;
}
.main-navbar.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    padding: .6rem 0;
}
.navbar-brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 10px;
    color: var(--white);
    font-size: 1.2rem;
}
.brand-text { font-weight: 800; font-size: 1.2rem; color: var(--dark); }
.nav-link {
    font-size: .92rem;
    font-weight: 500;
    color: var(--medium) !important;
    padding: .45rem .85rem !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: var(--primary-light); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: .5rem;
    min-width: 220px;
    animation: dropIn .2s ease;
}
@keyframes dropIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.dropdown-item {
    border-radius: var(--radius-sm);
    font-size: .875rem;
    padding: .5rem .85rem;
    color: var(--medium);
    transition: all var(--transition);
}
.dropdown-item:hover { background: var(--primary-light); color: var(--primary); }

/* Buttons */
.btn-cta {
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: .875rem;
    padding: .5rem 1.25rem;
    border-radius: 30px;
    border: none;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(13,148,136,.3);
}
.btn-cta:hover { background: var(--accent-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,148,136,.4); }
.btn-ghost-icon {
    background: transparent;
    border: none;
    color: var(--medium);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.05rem;
    transition: all var(--transition);
}
.btn-ghost-icon:hover { background: var(--light); color: var(--primary); }

/* Hamburger */
.hamburger-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.hamburger-icon span { display: block; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }

/* Search Overlay */
.search-overlay {
    background: var(--white);
    border-bottom: 2px solid var(--primary-light);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    display: none;
    animation: slideDown .25s ease;
}
.search-overlay.active { display: block; }
@keyframes slideDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
.search-input {
    border: 2px solid var(--border);
    border-radius: var(--radius) 0 0 var(--radius);
    padding: .65rem 1rem;
    font-size: .95rem;
    outline: none;
    box-shadow: none;
}
.search-input:focus { border-color: var(--primary); box-shadow: none; }
.btn-search {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: .65rem 1.25rem;
    font-size: 1rem;
}
.btn-search:hover { background: var(--primary-dark); color: var(--white); }
.btn-close-search {
    background: var(--light);
    border: 2px solid var(--border);
    border-left: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: .65rem 1rem;
    color: var(--slate);
}
.btn-close-search:hover { background: var(--danger); color: var(--white); border-color: var(--danger); }

/* ── Hero Section ───────────────────────────────────────────────── */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 50%, #0f3460 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 5rem 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(13,148,136,.15);
    border: 1px solid rgba(13,148,136,.4);
    color: #5eead4;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.hero-title span { background: linear-gradient(90deg, #38bdf8, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.72); margin-bottom: 2rem; max-width: 540px; line-height: 1.7; }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.btn-hero-primary {
    background: var(--primary);
    color: var(--white);
    padding: .85rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    box-shadow: 0 8px 25px rgba(37,99,235,.4);
    transition: all .3s;
}
.btn-hero-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,99,235,.5); }
.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: .85rem 2rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,.35);
    transition: all .3s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat { text-align: center; }
.hero-stat-number { font-size: 1.8rem; font-weight: 800; color: var(--white); display: block; }
.hero-stat-label { font-size: .75rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    padding: .75rem 1.25rem;
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
    box-shadow: var(--shadow-lg);
    animation: float 4s ease-in-out infinite;
}
.hero-float-card i { color: #34d399; font-size: 1.1rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-float-card:nth-child(2) { animation-delay: 1.5s; }
.hero-float-card:nth-child(3) { animation-delay: 3s; }
.hero-product-showcase {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
}
.hero-icon-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1rem; }
.hero-icon-item { display: flex; flex-direction: column; align-items: center; gap: .4rem; color: rgba(255,255,255,.7); font-size: .75rem; }
.hero-icon-item i { font-size: 1.6rem; color: #38bdf8; }

/* ── Section Spacing ────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ── Category Cards ─────────────────────────────────────────────── */
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    border: 1px solid var(--border);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.category-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-light), #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}
.category-icon-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary);
}
.category-card-body { padding: 1.25rem; }
.category-card-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.category-card-desc { font-size: .82rem; color: var(--slate); line-height: 1.5; margin-bottom: .5rem; }
.category-card-count { font-size: .78rem; font-weight: 600; color: var(--accent); }
.category-card-arrow { position: absolute; top: 1rem; right: 1rem; background: var(--white); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); color: var(--primary); font-size: .9rem; opacity: 0; transform: translateX(8px); transition: all var(--transition); }
.category-card:hover .category-card-arrow { opacity: 1; transform: translateX(0); }

/* ── Product Cards ──────────────────────────────────────────────── */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.product-card-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--light);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-card-img-wrap img { transform: scale(1.05); }
.product-no-img { font-size: 5rem; color: var(--border); }
.product-card-badges { position: absolute; top: .75rem; left: .75rem; display: flex; flex-direction: column; gap: .4rem; }
.badge-featured { background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; font-size: .7rem; font-weight: 700; padding: .25rem .6rem; border-radius: 20px; }
.product-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.product-card-category { font-size: .75rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .35rem; }
.product-card-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; line-height: 1.3; }
.product-card-sku { font-size: .75rem; color: var(--slate); font-family: monospace; margin-bottom: .5rem; }
.product-card-desc { font-size: .83rem; color: var(--slate); line-height: 1.55; margin-bottom: .75rem; flex: 1; }
.product-card-price { margin-bottom: 1rem; }
.price-label { font-size: .72rem; color: var(--slate); text-transform: uppercase; letter-spacing: .05em; }
.price-value { font-size: 1.3rem; font-weight: 800; color: var(--primary); }
.price-unit { font-size: .78rem; color: var(--slate); font-weight: 400; }
.product-card-actions { display: flex; gap: .5rem; }
.btn-product-primary {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: .5rem .75rem;
    font-size: .83rem;
    font-weight: 600;
    transition: all var(--transition);
    text-align: center;
}
.btn-product-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-product-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: .5rem .75rem;
    font-size: .83rem;
    font-weight: 600;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-product-outline:hover { background: var(--accent); color: var(--white); }

/* ── Pricing Table ──────────────────────────────────────────────── */
.pricing-table { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.pricing-table thead { background: var(--dark); color: var(--white); }
.pricing-table thead th { padding: .85rem 1.25rem; font-size: .82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; border: none; }
.pricing-table tbody tr { transition: background var(--transition); }
.pricing-table tbody tr:hover { background: var(--primary-light); }
.pricing-table tbody td { padding: .85rem 1.25rem; font-size: .9rem; color: var(--medium); border-color: var(--border); }
.pricing-slab-best { background: linear-gradient(90deg, #ecfdf5, #d1fae5) !important; border-left: 4px solid var(--success) !important; }
.pricing-slab-best td { color: var(--dark); font-weight: 600; }
.pricing-slab-best .price-highlight { color: #15803d; font-size: 1.05rem; font-weight: 800; }

/* ── Product Detail Page ─────────────────────────────────────────── */
.product-gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--light);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: relative;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity .3s; }
.gallery-thumbs { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .75rem; }
.gallery-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
    background: var(--light);
}
.gallery-thumb.active { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.gallery-thumb:hover { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-meta-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .5rem; }
.product-sku-badge { font-family: monospace; background: var(--light); border: 1px solid var(--border); padding: .2rem .6rem; border-radius: 4px; font-size: .85rem; color: var(--medium); }
.moq-badge { background: var(--primary-light); color: var(--primary); font-weight: 700; font-size: .82rem; padding: .25rem .65rem; border-radius: 20px; }

/* Product detail price calculator */
.price-calculator {
    background: linear-gradient(135deg, var(--primary-light), #f0f9ff);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.price-calculator h6 { font-weight: 700; color: var(--primary); margin-bottom: .75rem; }
.calc-result { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.calc-total { color: var(--accent); font-weight: 700; }

/* Detail Tabs */
.product-tabs { border-bottom: 2px solid var(--border); margin-bottom: 1.5rem; }
.product-tabs .nav-link { color: var(--slate); font-weight: 600; font-size: .9rem; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; padding: .75rem 1.25rem; border-radius: 0; }
.product-tabs .nav-link.active { color: var(--primary); border-bottom-color: var(--primary); background: transparent; }
.product-tabs .nav-link:hover { color: var(--primary); }
.specs-table td:first-child { font-weight: 600; color: var(--dark); width: 40%; }
.related-section { padding-top: 4rem; border-top: 1px solid var(--border); margin-top: 3rem; }

/* ── Why Choose Us ───────────────────────────────────────────────── */
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all .3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); opacity: 0; transition: opacity var(--transition); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.why-card:hover::before { opacity: 1; }
.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-light), #ede9fe);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: all .3s;
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white); }
.why-card h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.why-card p { font-size: .88rem; color: var(--slate); line-height: 1.6; margin: 0; }

/* ── CTA Section ─────────────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--primary), #1e40af);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.cta-section::after { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; border-radius: 50%; background: rgba(255,255,255,.04); }
.cta-section h2 { color: var(--white); font-size: 2.25rem; font-weight: 800; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: 2rem; }
.btn-cta-white { background: var(--white); color: var(--primary); font-weight: 700; padding: .85rem 2rem; border-radius: 40px; border: none; transition: all .3s; }
.btn-cta-white:hover { background: var(--light); color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,.2); }
.btn-cta-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); font-weight: 600; padding: .85rem 2rem; border-radius: 40px; transition: all .3s; }
.btn-cta-outline-white:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }

/* ── Stats Section ───────────────────────────────────────────────── */
.stats-section { background: var(--dark); padding: 4rem 0; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--white); display: block; background: linear-gradient(90deg, #38bdf8, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; margin-top: .25rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,.1); height: 60px; margin: 0 auto; }

/* ── Contact Page ────────────────────────────────────────────────── */
.contact-card { background: var(--white); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); box-shadow: var(--shadow-sm); text-align: center; transition: all .3s; height: 100%; }
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-icon { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--primary-light), #ede9fe); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--primary); margin: 0 auto 1rem; }
.contact-card h5 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.contact-card p, .contact-card a { font-size: .9rem; color: var(--slate); }

/* Contact Form */
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); border: 1px solid var(--border); }

/* ── About Page ──────────────────────────────────────────────────── */
.about-hero { background: linear-gradient(135deg, #1e3a5f, var(--dark)); padding: 6rem 0; color: var(--white); }
.about-card { background: var(--white); border-radius: var(--radius); padding: 2rem; border: 1px solid var(--border); height: 100%; box-shadow: var(--shadow-sm); }
.about-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1rem; }

/* ── Filter Sidebar ──────────────────────────────────────────────── */
.filters-sidebar { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); padding: 1.5rem; }
.filter-section { margin-bottom: 1.75rem; }
.filter-section:last-child { margin-bottom: 0; }
.filter-heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--slate); margin-bottom: .85rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border); }
.filter-link { display: flex; align-items: center; justify-content: space-between; padding: .4rem 0; font-size: .875rem; color: var(--medium); cursor: pointer; transition: color var(--transition); border: none; background: none; width: 100%; text-align: left; }
.filter-link:hover, .filter-link.active { color: var(--primary); }
.filter-link .filter-count { font-size: .75rem; background: var(--light); border-radius: 10px; padding: .1rem .45rem; color: var(--slate); font-weight: 600; }
.filter-link.active .filter-count { background: var(--primary-light); color: var(--primary); }
.active-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.filter-tag { display: inline-flex; align-items: center; gap: .35rem; background: var(--primary-light); color: var(--primary); font-size: .78rem; font-weight: 600; padding: .3rem .7rem; border-radius: 20px; }
.filter-tag button { background: none; border: none; color: var(--primary); display: flex; align-items: center; padding: 0; cursor: pointer; font-size: .85rem; }

/* ── Pagination ──────────────────────────────────────────────────── */
.pagination-wrap { margin-top: 3rem; }
.pagination .page-link { border-color: var(--border); color: var(--medium); border-radius: var(--radius-sm) !important; margin: 0 2px; font-size: .875rem; transition: all var(--transition); }
.pagination .page-link:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 5rem 0 4rem; }
.footer-logo { display: flex; align-items: center; gap: .6rem; color: var(--white); font-weight: 800; font-size: 1.1rem; text-decoration: none; margin-bottom: 1rem; }
.footer-tagline { color: var(--accent); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .75rem; }
.footer-about { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: 1rem; transition: all var(--transition); }
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-heading { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { padding: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-list { padding: 0; }
.footer-contact-list li { display: flex; gap: .85rem; margin-bottom: .85rem; align-items: flex-start; }
.footer-contact-list li i { color: var(--accent); font-size: 1rem; margin-top: .15rem; flex-shrink: 0; }
.footer-contact-list li span, .footer-contact-list li a { font-size: .875rem; color: rgba(255,255,255,.6); }
.footer-contact-list li a:hover { color: var(--accent); }
.btn-footer-cta { background: var(--accent); color: var(--white); border-radius: 30px; font-size: .85rem; font-weight: 600; padding: .5rem 1.25rem; border: none; transition: all var(--transition); }
.btn-footer-cta:hover { background: var(--accent-dark); color: var(--white); }
/* ── Our Brands Dropdown ────────────────────────────────────────── */
.our-brands-link { color: var(--primary) !important; font-weight: 600 !important; }
.our-brands-link:hover { color: var(--primary-dark) !important; }
.brands-dropdown { min-width: 280px; padding: .5rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.brands-item { display: flex !important; align-items: center; gap: .75rem; padding: .6rem .75rem !important; border-radius: var(--radius-sm); transition: background var(--transition); }
.brands-item:hover { background: var(--light) !important; }
.brands-item .brand-dot { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.brands-item span:not(.brand-dot) { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.brands-item strong { font-size: .88rem; color: var(--dark); line-height: 1.2; }
.brands-item small { font-size: .72rem; color: var(--slate); }

/* ── Footer Brands List ─────────────────────────────────────────── */
.footer-brands-list li a { display: flex; align-items: center; gap: .45rem; }
.footer-ext-icon { font-size: .65rem; opacity: .55; flex-shrink: 0; margin-top: 2px; }
.footer-brands-list li a:hover .footer-ext-icon { opacity: 1; color: var(--accent); }

.footer-bottom { background: rgba(0,0,0,.25); padding: 1.25rem 0; font-size: .82rem; color: rgba(255,255,255,.45); border-top: 1px solid rgba(255,255,255,.08); }
.footer-badge { font-size: .75rem; color: rgba(255,255,255,.45); }
.footer-badge i { color: var(--accent); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37,211,102,.5);
    z-index: 999;
    transition: all .3s;
    animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { background: #128c7e; color: var(--white); transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); } 50% { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1); } }

/* ── Inquiry Modal ───────────────────────────────────────────────── */
.inquiry-modal-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 1.5rem 2rem;
}
.modal-content { border-radius: var(--radius); }
.form-control, .form-select { border-color: var(--border); border-radius: var(--radius-sm); padding: .6rem 1rem; font-size: .9rem; color: var(--dark); transition: border-color var(--transition), box-shadow var(--transition); }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.form-label { font-size: .88rem; color: var(--medium); margin-bottom: .4rem; }

/* ── Toast Notifications ─────────────────────────────────────────── */
.toast-custom {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 280px;
}
.toast-custom.toast-success { border-left: 4px solid var(--success); }
.toast-custom.toast-error { border-left: 4px solid var(--danger); }

/* ── Loading States ──────────────────────────────────────────────── */
.skeleton { background: linear-gradient(90deg, var(--light) 25%, #e2e8f0 50%, var(--light) 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ── Page Hero (inner pages) ─────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--dark), #1e3a5f);
    padding: 4rem 0;
    color: var(--white);
}
.page-hero h1 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.7); margin: 0; }
.breadcrumb-hero { background: transparent; padding: 0; margin: 0; }
.breadcrumb-hero .breadcrumb-item { color: rgba(255,255,255,.55); font-size: .88rem; }
.breadcrumb-hero .breadcrumb-item.active { color: var(--white); }
.breadcrumb-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
.breadcrumb-hero a { color: rgba(255,255,255,.65); }
.breadcrumb-hero a:hover { color: var(--white); }

/* ── Badges ──────────────────────────────────────────────────────── */
.badge { font-weight: 600; letter-spacing: .03em; }

/* ── Privacy / Terms ──────────────────────────────────────────────── */
.policy-content h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: .75rem; color: var(--dark); }
.policy-content h3 { font-size: 1.1rem; margin-top: 1.75rem; margin-bottom: .5rem; color: var(--dark); }
.policy-content p { color: var(--slate); line-height: 1.75; margin-bottom: 1rem; }
.policy-content ul { padding-left: 1.5rem; }
.policy-content ul li { color: var(--slate); margin-bottom: .4rem; line-height: 1.65; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-section { min-height: auto; padding: 4rem 0; }
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 1.5rem; }
    .main-navbar { padding: .75rem 0; }
    .section { padding: 3.5rem 0; }
    .hero-visual { display: none; }
}
@media (max-width: 767.98px) {
    .hero-title { font-size: 1.75rem; }
    .section-heading { font-size: 1.6rem; }
    .hero-stats { gap: 1rem; }
    .hero-stat-number { font-size: 1.4rem; }
    .category-icon-placeholder { height: 150px; font-size: 3rem; }
    .product-card-img-wrap { height: 180px; }
    .footer-top { padding: 3rem 0 2rem; }
    .stats-section { padding: 3rem 0; }
    .stat-number { font-size: 2rem; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; bottom: 1.25rem; right: 1.25rem; }
}
@media (max-width: 575.98px) {
    .hero-cta-group { flex-direction: column; }
    .btn-hero-primary, .btn-hero-outline { width: 100%; text-align: center; }
    .hero-stats { justify-content: space-around; }
    .product-card-actions { flex-direction: column; }
}
