/* ============================================================
   JS Technologies — Main Stylesheet
   Clean, elegant design. No gradients, no glowing.
   ============================================================ */

/* ── CSS Reset & Variables ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary:            #0d1b3e;
    --secondary:          #00b894;
    --accent:             #f39c12;
    --header-bg:          #0d1b3e;
    --footer-bg:          #0d1b3e;
    --nav-text:           #ffffff;
    --btn-primary-bg:     #00b894;
    --btn-primary-text:   #ffffff;
    --btn-secondary-bg:   #0d1b3e;
    --btn-secondary-text: #ffffff;
    --announcement-bg:    #0d1b3e;
    --announcement-text:  #ffffff;
    --body-bg:            #f7f8fa;
    --white:              #ffffff;
    --gray-50:            #f9fafb;
    --gray-100:           #f3f4f6;
    --gray-200:           #e5e7eb;
    --gray-300:           #d1d5db;
    --gray-400:           #9ca3af;
    --gray-500:           #6b7280;
    --gray-600:           #4b5563;
    --gray-700:           #374151;
    --gray-800:           #1f2937;
    --gray-900:           #111827;
    --text-main:          #1f2937;
    --text-light:         #6b7280;
    --border:             #e5e7eb;
    --shadow-sm:          0 1px 3px rgba(0,0,0,0.08);
    --shadow-md:          0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg:          0 8px 24px rgba(0,0,0,0.12);
    --radius-sm:          6px;
    --radius-md:          10px;
    --radius-lg:          16px;
    --radius-xl:          24px;
    --transition:         0.25s ease;
    --font:               'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
}

body {
    font-family: var(--font);
    background: var(--body-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: clip;
    max-width: 100%;
    width: 100%;
    position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── Container ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ── Announcement Bar ──────────────────────────────────────── */
.announcement-bar {
    background: var(--announcement-bg);
    color: var(--announcement-text);
    font-size: 0.82rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    height: 38px;
    display: flex;
    align-items: center;
}

.announcement-slider-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.announcement-slider {
    display: flex;
    height: 100%;
    transition: none;
}

.announcement-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.announcement-slide a { color: inherit; }
.announcement-slide a:hover { text-decoration: underline; }

.announcement-close {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--announcement-text);
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1;
    padding: 4px;
    z-index: 5;
}
.announcement-close:hover { opacity: 1; }

/* ── Site Header ───────────────────────────────────────────── */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.25s ease;
}

.site-header.is-sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.header-logo .logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

/* Search (Centered) */
.header-search {
    flex: 1 1 540px;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
}

.search-form {
    display: flex;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color var(--transition);
}

.search-form:focus-within {
    border-color: var(--secondary);
}

.search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.6rem 1.1rem;
    font-size: 0.9rem;
    font-family: var(--font);
    background: transparent;
    color: var(--text-main);
    min-width: 0;
}

.search-btn {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    padding: 0.55rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--transition);
    flex-shrink: 0;
}
.search-btn:hover { opacity: 0.9; }

/* Search suggestions */
.search-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    display: none;
    max-height: 320px;
    overflow-y: auto;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    font-size: 0.88rem;
    transition: background var(--transition);
}
.search-suggestion-item:hover { background: var(--gray-50); }
.search-suggestion-item img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* Header Actions (Right-aligned) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
    flex-shrink: 0;
}

.header-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    position: relative;
    transition: background var(--transition), color var(--transition);
}
.header-icon:hover { background: var(--gray-100); color: var(--secondary); }

.whatsapp-icon { color: #25d366; }
.whatsapp-icon:hover { background: #e8fdf1; color: #25d366; }

.cart-count {
    position: absolute;
    top: 3px;
    right: 3px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Navigation ─────────────────────────────────────────────── */
.site-nav {
    background: var(--header-bg);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    display: block;
    padding: 0.85rem 1rem;
    color: var(--nav-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition), background var(--transition);
    white-space: nowrap;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
    color: var(--secondary);
}

.arrow { font-size: 0.7rem; margin-left: 2px; }

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 500;
    border-top: 3px solid var(--secondary);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: relative;
    border-bottom: 1px solid var(--gray-100);
}
.dropdown-menu li:last-child { border-bottom: none; }

.dropdown-menu li a {
    display: block;
    padding: 0.65rem 1.1rem;
    color: var(--text-main);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color var(--transition), background var(--transition), padding var(--transition);
}
.dropdown-menu li a:hover {
    color: var(--secondary);
    background: var(--gray-50);
    padding-left: 1.4rem;
}

/* Sub-dropdown */
.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    border-top: 3px solid var(--accent);
}
.dropdown-menu li:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Nav phone */
.nav-phone a {
    color: var(--nav-text);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    opacity: 0.9;
}
.nav-phone a:hover { opacity: 1; color: var(--secondary); }

/* Mobile Search */
.mobile-search { display: none; padding: 0.5rem 1rem; background: var(--white); border-top: 1px solid var(--border); }
.mobile-search .search-form { border-radius: var(--radius-xl); }

/* Mobile Navigation Drawer (Desktop Default: Hidden) */
.mobile-drawer { display: none; }

/* Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 47, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 99998;
}
.nav-overlay.active { display: block; }

/* ── Flash Message ─────────────────────────────────────────── */
.flash-message {
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.flash-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.flash-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.flash-warning { background: #fef3c7; color: #92400e; border-left: 4px solid #f59e0b; }
.flash-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }
.flash-message button { opacity: 0.6; font-size: 1rem; }
.flash-message button:hover { opacity: 1; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-primary {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border-color: var(--btn-primary-bg);
}
.btn-primary:hover {
    opacity: 0.88;
    color: var(--btn-primary-text);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,184,148,0.3);
}

.btn-secondary {
    background: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
    border-color: var(--btn-secondary-bg);
}
.btn-secondary:hover {
    opacity: 0.88;
    color: var(--btn-secondary-text);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--btn-primary-bg);
    border-color: var(--btn-primary-bg);
}
.btn-outline:hover {
    background: var(--btn-primary-bg);
    color: var(--btn-primary-text);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}
.btn-whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
}

.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-full { width: 100%; }

/* ── Section Headings ─────────────────────────────────────────── */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.section-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.3rem;
    font-weight: 400;
}

.section-link {
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.section-link:hover { text-decoration: underline; }

/* ── Hero Banner ─────────────────────────────────────────────── */
.hero-section {
    position: relative;
    background: #0d1b3e;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    max-width: 620px;
    padding: 3.5rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.btn-hero {
    padding: 0.6rem 1.35rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-md);
}

/* ── Product Card ─────────────────────────────────────────────── */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.product-card-img {
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
    aspect-ratio: 1 / 1;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    background: #ef4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-sm);
    line-height: 1;
}
.product-badge.new-badge { background: var(--secondary); }
.product-badge.featured-badge { background: var(--accent); color: #333; }

.product-card-body {
    padding: 0.9rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.product-category-label {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-name {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 0.4rem;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
}

.product-price-original {
    font-size: 0.82rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-delivery {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.product-card-actions {
    padding: 0 0.9rem 0.9rem;
    display: flex;
    gap: 0.5rem;
}

.product-card-actions .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
}

/* ── Category Card ─────────────────────────────────────────────── */
.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}
.category-card:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--secondary);
}

.category-card-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.category-card-img img { width: 100%; height: 100%; object-fit: cover; }
.category-card-img .cat-icon { font-size: 2rem; }

.category-card-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}
.category-card:hover .category-card-name { color: var(--secondary); }

/* ── Brand Logo Card ─────────────────────────────────────────── */
.brand-logo-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all var(--transition);
}
.brand-logo-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}
.brand-logo-card img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: filter var(--transition);
}
.brand-logo-card:hover img { filter: grayscale(0); }

/* ── Clean Homepage Sections (Unboxed, Natural Canvas) ──────── */
.homepage-section {
    padding: 3rem 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.homepage-section.bg-alt {
    background: #f8fafc;
}

.boxed-section {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden !important;
}

.boxed-section.bg-light {
    background: transparent;
}

.slider-arrows {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.slider-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.slider-arrow-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    transform: scale(1.05);
}

.slider-arrow-btn:active {
    transform: scale(0.95);
}

/* ── Slider / Carousel ─────────────────────────────────────────── */
.slider-section { padding: 1rem 0; width: 100%; max-width: 100%; overflow: hidden; }

[data-infinite-slider] {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden !important; /* CRITICAL: prevents horizontal screen overflow */
    contain: paint;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    padding: 0.5rem 0;
    box-sizing: border-box;
}

.slider-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    width: max-content;
    box-sizing: border-box;
    align-items: stretch;
}

.slider-track > * {
    flex-shrink: 0;
    box-sizing: border-box;
}

/* ── Banner Section ─────────────────────────────────────────── */
.banner-section {
    padding: 1.5rem 0;
}

.banner-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.banner-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.banner-placeholder {
    background: linear-gradient(135deg, #0d1b3e 0%, #172d63 60%, #00b894 100%);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 16px rgba(13, 27, 62, 0.12);
}

.banner-placeholder-text h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}
.banner-placeholder-text p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

/* ── Reviews Section ─────────────────────────────────────────── */
.reviews-section { padding: 3.5rem 0; background: var(--gray-50); }

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 0.05em; }
.review-text {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-main);
    font-style: italic;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-author-name { font-weight: 700; font-size: 0.875rem; }
.review-author-loc { font-size: 0.78rem; color: var(--text-light); }

/* ── Trust Badges ─────────────────────────────────────────────── */
.trust-section { padding: 3rem 0; background: var(--white); }
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}
.trust-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}
.trust-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}
.trust-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.trust-title { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.trust-desc { font-size: 0.78rem; color: var(--text-light); }

/* ── WhatsApp Reviews ─────────────────────────────────────────── */
.wa-reviews-section { padding: 3.5rem 0; background: var(--gray-50); }

.wa-review-card {
    width: 100%;
    min-width: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: var(--white);
    box-sizing: border-box;
}
.wa-review-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* ── Product Page ─────────────────────────────────────────────── */
.product-page { padding: 2.5rem 0 3rem; }
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Product Gallery */
.product-gallery { position: sticky; top: 90px; }
.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-50);
    aspect-ratio: 1;
    margin-bottom: 0.75rem;
    position: relative;
}
.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition);
}
.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.gallery-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: border-color var(--transition);
    flex-shrink: 0;
}
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--secondary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-info { display: flex; flex-direction: column; gap: 1rem; }

.product-breadcrumb {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}
.product-breadcrumb a:hover { color: var(--secondary); }

.product-info-title {
    font-size: clamp(1.3rem, 3vw, 1.7rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-main);
}

.product-sku { font-size: 0.8rem; color: var(--text-light); }
.product-sku span { color: var(--text-main); font-weight: 600; }

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.product-current-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}
.product-old-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}
.product-discount-badge {
    background: #ef4444;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
}

.product-stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
}
.in-stock { color: #10b981; }
.out-of-stock { color: #ef4444; }

/* Delivery options */
.delivery-options-box {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.delivery-options-box .box-header {
    background: var(--gray-50);
    padding: 0.75rem 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}
.delivery-option-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}
.delivery-option-item:last-child { border-bottom: none; }
.delivery-option-item:hover { background: var(--gray-50); }
.delivery-option-icon { font-size: 1.3rem; flex-shrink: 0; }
.delivery-option-text strong { font-size: 0.9rem; display: block; margin-bottom: 0.2rem; }
.delivery-option-text span { font-size: 0.8rem; color: var(--text-light); }

/* Qty + Add to Cart */
.add-to-cart-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}
.qty-input-wrap {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    flex-shrink: 0;
}
.qty-btn {
    width: 40px;
    height: 44px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    background: none;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.qty-btn:hover { background: var(--gray-100); }
.qty-num {
    width: 44px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    outline: none;
    color: var(--text-main);
    -moz-appearance: textfield;
}
.qty-num::-webkit-inner-spin-button { display: none; }

.product-desc-tabs { margin-top: 0.5rem; }
.tab-buttons {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
}
.tab-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
    background: none;
    cursor: pointer;
}
.tab-btn.active {
    color: var(--secondary);
    border-color: var(--secondary);
}
.tab-content { padding: 1.25rem 0; display: none; }
.tab-content.active { display: block; }
.tab-content p { font-size: 0.9rem; line-height: 1.75; color: var(--text-main); }
.tab-content table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.tab-content table tr { border-bottom: 1px solid var(--border); }
.tab-content table td { padding: 0.65rem; }
.tab-content table td:first-child { font-weight: 600; color: var(--text-light); width: 40%; }

/* ── Cart Page ─────────────────────────────────────────────── */
.cart-page { padding: 2.5rem 0; }
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
}
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); }
.cart-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--gray-50);
    border-bottom: 1px solid var(--border);
}
.cart-table td { padding: 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-table tr:last-child td { border-bottom: none; }
.cart-item-img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item-name { font-weight: 600; font-size: 0.9rem; }
.cart-item-del { font-size: 0.78rem; color: var(--text-light); }

.cart-summary {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}
.cart-summary h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; }
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total-row {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 0.5rem;
    border-top: 2px solid var(--border);
    padding-top: 0.75rem;
}

/* ── Checkout Page ─────────────────────────────────────────── */
.checkout-page { padding: 2.5rem 0; }
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}
.checkout-form-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}
.checkout-form-section h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

/* ── Forms ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-main); }
.form-label .required { color: #ef4444; margin-left: 2px; }
.form-control {
    width: 100%;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--text-main);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition);
    appearance: none;
}
.form-control:focus { border-color: var(--secondary); }
.form-control.is-invalid { border-color: #ef4444; }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }

/* Delivery Radio Options */
.delivery-radio-group { display: flex; flex-direction: column; gap: 0.75rem; }
.delivery-radio {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}
.delivery-radio:hover { border-color: var(--secondary); background: var(--gray-50); }
.delivery-radio.selected { border-color: var(--secondary); background: rgba(0,184,148,0.05); }
.delivery-radio input[type="radio"] { margin-top: 3px; accent-color: var(--secondary); flex-shrink: 0; }
.delivery-radio-label strong { display: block; font-size: 0.9rem; margin-bottom: 0.2rem; }
.delivery-radio-label span { font-size: 0.8rem; color: var(--text-light); }

/* ── Page Layout (About, Contact, etc.) ────────────────────── */
.inner-page { padding: 2.5rem 0 3.5rem; }
.inner-page-hero {
    background: var(--primary);
    padding: 2.5rem 0;
    margin-bottom: 2.5rem;
}
.inner-page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: #fff; margin-bottom: 0.5rem; }
.inner-page-hero p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.breadcrumb-nav a { color: var(--text-light); }
.breadcrumb-nav a:hover { color: var(--secondary); }
.breadcrumb-nav .sep { color: var(--gray-300); }
.breadcrumb-nav .current { color: var(--text-main); font-weight: 600; }

/* ── About Page ───────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; border-radius: var(--radius-lg); }
.about-content h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; }
.about-content p { font-size: 0.95rem; line-height: 1.75; color: var(--text-light); margin-bottom: 1rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-50); }
.faq-question.open { color: var(--secondary); }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding var(--transition);
}
.faq-answer.open {
    max-height: 500px;
    padding: 0 1.25rem 1.25rem;
}
.faq-answer p { font-size: 0.9rem; line-height: 1.75; color: var(--text-light); }

/* ── Contact ──────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; }
.contact-info-block h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.25rem; }
.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-detail-text a { color: var(--text-light); font-size: 0.9rem; }
.contact-detail-text a:hover { color: var(--secondary); }
.contact-form-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; }

/* ── Pagination ──────────────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.page-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-main);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
}
.page-btn:hover,
.page-btn.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

/* ── Shop / Filter ───────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; align-items: start; }
.filter-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.25rem; position: sticky; top: 90px; }
.filter-group { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-group h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.filter-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    padding: 0.35rem 0;
    cursor: pointer;
    color: var(--text-main);
}
.filter-option input { accent-color: var(--secondary); }
.filter-option:hover { color: var(--secondary); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}

/* ── Order Success ────────────────────────────────────────── */
.order-success-page { padding: 4rem 0; text-align: center; }
.success-icon { font-size: 5rem; margin-bottom: 1.5rem; }
.order-success-page h1 { font-size: 2rem; font-weight: 800; color: var(--primary); margin-bottom: 0.75rem; }
.order-success-page p { font-size: 1rem; color: var(--text-light); max-width: 480px; margin: 0 auto 2rem; }
.order-detail-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; max-width: 480px; margin: 0 auto 2rem; text-align: left; }
.order-detail-box h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.order-detail-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.88rem; border-bottom: 1px solid var(--border); }
.order-detail-row:last-child { border-bottom: none; }

/* ── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    z-index: 999;
    transition: all var(--transition);
}
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.08);
    color: #fff;
}
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    background: #1f2937;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: #1f2937;
}

/* ── Utility Classes ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ── No Image Placeholder ────────────────────────────────── */
.no-img {
    width: 100%;
    height: 100%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 2.5rem;
}

/* ── Empty State ─────────────────────────────────────────── */
.empty-state { text-align: center; padding: 4rem 1rem; }
.empty-state-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
   ═══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    .shop-layout { grid-template-columns: 220px 1fr; }
    .product-layout { grid-template-columns: 1fr; gap: 1.75rem; }
    .product-gallery { position: relative; top: 0; }
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: relative; top: 0; }
    .checkout-layout { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-layout { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5rem 0.5rem;
        gap: 0.5rem;
    }
    .header-logo .logo-img { height: 38px; }
    .header-search { display: none; }
    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        margin-left: auto;
    }
    .header-icon {
        width: 36px;
        height: 36px;
    }
    .hamburger { display: flex; padding: 6px; }

    /* Hide desktop nav bar on mobile */
    .desktop-nav { display: none !important; }

    /* Mobile Drawer — Full-height slide-out drawer from the right */
    .mobile-drawer {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        bottom: 0 !important;
        left: auto !important;
        width: 84% !important;
        max-width: 320px !important;
        height: 100% !important;
        height: 100dvh !important;
        background: var(--white) !important;
        z-index: 99999 !important;
        flex-direction: column !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.22) !important;
        transition: right 0.32s cubic-bezier(0.16, 1, 0.3, 1) !important;
        overflow: hidden !important;
    }

    .mobile-drawer.open {
        right: 0 !important;
    }

    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        background: var(--header-bg);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        flex-shrink: 0;
    }

    .drawer-logo img {
        height: 36px;
        width: auto;
        object-fit: contain;
    }

    .drawer-close {
        background: rgba(255, 255, 255, 0.12);
        border: none;
        color: #ffffff;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        font-size: 1.15rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, transform 0.2s;
        line-height: 1;
    }
    .drawer-close:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1.08);
    }
    .drawer-close:active {
        transform: scale(0.95);
    }

    .drawer-body {
        flex: 1;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.5rem 0;
    }

    .drawer-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .drawer-nav-list > li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.85rem 1.25rem;
        color: var(--primary);
        font-size: 0.95rem;
        font-weight: 500;
        border-bottom: 1px solid var(--gray-100);
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
    }

    .drawer-nav-list > li > a:hover,
    .drawer-nav-list > li > a.active {
        background: var(--gray-50);
        color: var(--secondary);
    }

    .drawer-arrow {
        font-size: 0.75rem;
        transition: transform 0.25s ease;
    }

    .has-dropdown.open .drawer-arrow {
        transform: rotate(180deg);
    }

    .drawer-sub-menu {
        display: none;
        list-style: none;
        padding: 0.25rem 0 0.5rem 1.25rem;
        margin: 0;
        background: var(--gray-50);
        border-bottom: 1px solid var(--gray-200);
    }

    .has-dropdown.open .drawer-sub-menu {
        display: block;
    }

    .drawer-sub-menu li a {
        display: block;
        padding: 0.55rem 1rem;
        font-size: 0.88rem;
        color: var(--text-main);
        text-decoration: none;
    }

    .drawer-sub-menu li a:hover {
        color: var(--secondary);
    }

    .drawer-subs {
        list-style: none;
        padding-left: 0.75rem;
        margin: 0.25rem 0;
    }

    .drawer-subs li a {
        padding: 0.35rem 0.75rem;
        font-size: 0.82rem;
        color: var(--text-light);
    }

    .drawer-footer {
        padding: 1rem 1.25rem;
        border-top: 1px solid var(--border);
        background: var(--gray-50);
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        flex-shrink: 0;
    }

    .drawer-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.88rem;
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
        padding: 0.4rem;
    }

    .shop-layout { grid-template-columns: 1fr; }
    .filter-sidebar { position: relative; top: 0; display: none; }
    .filter-sidebar.open { display: block; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }

    /* Product Card Vertical Buttons on Mobile */
    .product-card-actions {
        flex-direction: column;
        gap: 0.45rem;
        padding: 0 0.85rem 0.85rem;
    }
    .product-card-actions .btn {
        width: 100%;
        display: flex;
        font-size: 0.84rem;
        padding: 0.6rem 0.75rem;
        justify-content: center;
        text-align: center;
    }

    .hero-section { min-height: 340px; }
    .hero-content { max-width: 100%; padding: 2.5rem 0; }
    .hero-title { font-size: 1.55rem; }
    .hero-actions { flex-direction: column; width: 100%; gap: 0.6rem; }
    .hero-actions .btn { width: 100%; justify-content: center; }

    .homepage-section { padding: 2rem 0; }
    .boxed-section { padding: 0; }
    .section-title { font-size: 1.3rem; }
    .section-header { flex-direction: row; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 1.25rem; }

    .announcement-slide { font-size: 0.78rem; padding: 0 2.5rem; }

    .form-row { grid-template-columns: 1fr; }

    .cart-table .hide-mobile { display: none; }
    .cart-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .cart-summary { position: static; }
    .checkout-layout { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-layout { grid-template-columns: 1fr; gap: 1.75rem; }
    .product-gallery { position: static; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .admin-table-wrap { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); }

    .whatsapp-float { width: 50px; height: 50px; bottom: 1.25rem; right: 1.25rem; }

    .banner-placeholder { padding: 2rem 1.25rem; flex-direction: column; text-align: center; }
    .banner-placeholder-text h2 { font-size: 1.25rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
    /* Clean minimal spacing on small mobile */
    .slider-arrow-btn { width: 32px; height: 32px; font-size: 1.05rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
    .product-card-body { padding: 0.7rem; }
    .product-name { font-size: 0.82rem; }
    .product-price { font-size: 0.95rem; }
    .header-logo .logo-img { height: 42px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* ── Footer Grid ─────────────────────────────────────────── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
}
.footer-logo img { height: 44px; object-fit: contain; margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-bottom: 1rem; line-height: 1.5; }
.footer-address { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.9; }
.footer-address a { color: rgba(255,255,255,0.6); }
.footer-address a:hover { color: var(--secondary); }
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.85); }
.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--secondary); padding-left: 3px; }
.footer-social { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.65);
    transition: all var(--transition);
}
.social-link:hover { border-color: var(--secondary); color: var(--secondary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--secondary); }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ── Slider Arrows ─────────────────────────────────────────── */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: all var(--transition);
    font-size: 1rem;
}
.slider-arrow:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ── Page Specific Padding ──────────────────────────────────── */
.section-pad { padding: 3rem 0; }
.section-pad-sm { padding: 2rem 0; }

/* ── Related Products ─────────────────────────────────────── */
.related-products { padding: 3rem 0; background: var(--gray-50); }
