/* ============================================
   RAMAN ARMY GENERAL STORE - MAIN CSS
   Army Green Premium Theme
   ============================================ */

:root {
    --army-green: #2d4a1e;
    --army-dark: #1a2d0f;
    --army-mid: #3d6b2a;
    --army-light: #5a8a3c;
    --army-olive: #708238;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --gold-dark: #9e7c2a;
    --cream: #f8f4e8;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --border: #e5e7eb;
    --red: #dc2626;
    --success: #16a34a;
    --shadow: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
    background: var(--army-dark);
    color: var(--gold-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.announcement-bar span { margin: 0 15px; }

/* ============ HEADER ============ */
.header {
    background: var(--army-green);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 5%;
    gap: 15px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--army-dark);
    font-weight: 900;
    border: 2px solid var(--gold-dark);
    box-shadow: 0 0 12px rgba(201,168,76,0.4);
}

.logo-text h1 {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.logo-text span {
    font-size: 11px;
    color: var(--gold-light);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* SEARCH BAR */
.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 10px 50px 10px 18px;
    border: 2px solid var(--army-light);
    border-radius: 25px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.search-bar input::placeholder { color: rgba(255,255,255,0.6); }

.search-bar input:focus {
    background: rgba(255,255,255,0.2);
    border-color: var(--gold);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--army-dark);
    font-size: 14px;
    transition: var(--transition);
}

.search-bar button:hover { background: var(--gold-light); }

/* HEADER ACTIONS */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--white);
    font-size: 10px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    text-decoration: none;
}

.header-btn i { font-size: 20px; }

.header-btn:hover { background: rgba(255,255,255,0.1); }

.badge {
    position: absolute;
    top: 0;
    right: 5px;
    background: var(--red);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NAVIGATION */
.navbar {
    background: var(--army-dark);
    padding: 0 5%;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
}

.nav-list li a {
    display: block;
    padding: 12px 16px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

.nav-list li a.highlight {
    color: var(--gold-light);
    font-weight: 600;
}

/* HAMBURGER */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--army-dark) 0%, var(--army-green) 50%, var(--army-mid) 100%);
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 5%;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero h2 span { color: var(--gold-light); }

.hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--army-dark);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201,168,76,0.5);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}

.btn-whatsapp:hover {
    background: #22c35e;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat { text-align: center; }
.stat-num {
    font-size: 26px;
    font-weight: 800;
    color: var(--gold-light);
    display: block;
}
.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-area {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-area::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 0;
    bottom: 0;
    width: 160px;
    background: linear-gradient(to right, var(--army-green), transparent);
    z-index: 1;
}

.hero-decorative {
    font-size: 180px;
    opacity: 0.07;
    color: white;
    position: absolute;
}

/* ============ SECTION STYLES ============ */
.section { padding: 60px 5%; }
.section-alt { background: var(--cream); }

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    background: rgba(45,74,30,0.1);
    color: var(--army-green);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--army-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--army-green), var(--gold));
    border-radius: 2px;
    margin: 12px auto 0;
}

/* ============ CATEGORIES GRID ============ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}

.category-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    border: 2px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    border-color: var(--army-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.cat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--army-green), var(--army-mid));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 24px;
    color: white;
    transition: var(--transition);
}

.category-card:hover .cat-icon {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.category-card h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--army-dark);
    margin-bottom: 4px;
}

.category-card span {
    font-size: 11px;
    color: var(--gray);
}

/* ============ PRODUCT CARDS ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
    border-color: var(--army-light);
}

.product-img {
    position: relative;
    height: 220px;
    background: var(--light-gray);
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img img { transform: scale(1.05); }

.product-img .no-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--gray);
    font-size: 40px;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-sale {
    background: var(--red);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.badge-best {
    background: var(--gold);
    color: var(--army-dark);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--gray);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.wishlist-btn:hover, .wishlist-btn.active { color: var(--red); }

.product-info {
    padding: 14px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.stars { color: #f59e0b; font-size: 12px; }

.rating-count { font-size: 11px; color: var(--gray); }

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-current {
    font-size: 18px;
    font-weight: 800;
    color: var(--army-dark);
}

.price-original {
    font-size: 13px;
    color: var(--gray);
    text-decoration: line-through;
}

.price-save {
    font-size: 11px;
    background: rgba(22,163,74,0.1);
    color: var(--success);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-cart {
    flex: 1;
    padding: 9px;
    background: var(--army-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-cart:hover { background: var(--army-dark); }

.btn-buy {
    flex: 1;
    padding: 9px;
    background: var(--gold);
    color: var(--army-dark);
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buy:hover { background: var(--gold-light); }

/* ============ OFFERS BANNER ============ */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.offer-card {
    border-radius: var(--radius-lg);
    padding: 28px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.offer-card.green {
    background: linear-gradient(135deg, var(--army-dark), var(--army-green));
}

.offer-card.gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--army-dark);
}

.offer-card.olive {
    background: linear-gradient(135deg, var(--army-olive), #8a9a4a);
}

.offer-card::after {
    content: '';
    position: absolute;
    right: -20px;
    top: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.offer-title { font-size: 13px; font-weight: 600; opacity: 0.85; }
.offer-main { font-size: 28px; font-weight: 900; line-height: 1.2; }
.offer-sub { font-size: 12px; opacity: 0.8; margin-top: 4px; }

.offer-code {
    background: rgba(255,255,255,0.2);
    border: 2px dashed rgba(255,255,255,0.5);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.offer-code:hover { background: rgba(255,255,255,0.3); }

/* ============ REVIEWS ============ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: white;
    border-radius: var(--radius);
    padding: 22px;
    border: 1px solid var(--border);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: var(--army-green);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--army-green), var(--army-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.reviewer-name { font-weight: 600; font-size: 14px; }
.reviewer-tag {
    font-size: 11px;
    color: var(--army-green);
    font-weight: 500;
}

.review-stars { color: #f59e0b; font-size: 13px; margin-bottom: 8px; }
.review-text { font-size: 13px; color: var(--gray); line-height: 1.7; }
.review-verified {
    margin-top: 10px;
    font-size: 11px;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============ TRUST BADGES ============ */
.trust-bar {
    background: var(--army-dark);
    padding: 20px 5%;
}

.trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.trust-item i {
    font-size: 24px;
    color: var(--gold);
}

.trust-item h4 { font-size: 14px; font-weight: 600; }
.trust-item p { font-size: 11px; color: rgba(255,255,255,0.6); }

/* ============ FOOTER ============ */
.footer {
    background: var(--army-dark);
    color: white;
    padding: 50px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--gold-light); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.8; }

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn:hover { background: var(--gold); color: var(--army-dark); }

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}

.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.5); }

.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icons img { height: 24px; border-radius: 4px; }
.payment-icons span {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-float a {
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    animation: pulse 2s infinite;
    text-decoration: none;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8); }
}

.whatsapp-tooltip {
    background: var(--army-dark);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* ============ CART SIDEBAR ============ */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    box-shadow: -4px 0 25px rgba(0,0,0,0.2);
}

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

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: var(--army-dark);
    color: white;
}

.cart-header h3 { font-size: 18px; font-weight: 700; }

.cart-close {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 4px;
}

.cart-items { flex: 1; overflow-y: auto; padding: 16px; }

.cart-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--light-gray);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--army-dark); }

.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border: 1px solid var(--border);
    background: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-num { font-size: 14px; font-weight: 600; min-width: 24px; text-align: center; }

.remove-item { color: var(--red); background: none; border: none; cursor: pointer; font-size: 14px; }

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--cream);
}

.coupon-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.coupon-row input {
    flex: 1;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    outline: none;
}

.coupon-row button {
    padding: 9px 16px;
    background: var(--army-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-total span:first-child { font-size: 16px; font-weight: 600; }
.cart-total span:last-child { font-size: 20px; font-weight: 800; color: var(--army-dark); }

.checkout-btns { display: flex; flex-direction: column; gap: 10px; }

/* ============ TOAST ============ */
.toast {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background: var(--army-dark);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    z-index: 99999;
    transform: translateX(200%);
    transition: transform 0.3s;
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast.show { transform: translateX(0); }

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.active .modal { transform: scale(1); }

.modal-header {
    padding: 20px 24px;
    background: var(--army-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-header h3 { font-size: 18px; font-weight: 700; }
.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.modal-body { padding: 24px; }

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--army-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--army-green);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-link {
    text-align: center;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray);
}

.form-link a { color: var(--army-green); font-weight: 600; }

/* ============ ABOUT US STRIP ============ */
.about-strip {
    background: linear-gradient(135deg, var(--army-dark), var(--army-green));
    color: white;
    padding: 50px 5%;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text { flex: 1; min-width: 280px; }
.about-text h2 { font-size: 30px; font-weight: 800; margin-bottom: 14px; }
.about-text h2 span { color: var(--gold-light); }
.about-text p { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.8; }

.about-img-box {
    width: 280px;
    height: 220px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.7;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero-image-area { display: none; }
    .hero-content { max-width: 100%; }
    .hero-stats { gap: 20px; }

    .header-top { flex-wrap: wrap; }
    .search-bar { order: 3; max-width: 100%; width: 100%; }
    .hamburger { display: block; }
    .navbar { display: none; }
    .navbar.open { display: block; }
    .nav-list { flex-direction: column; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .trust-grid { gap: 20px; }

    .cart-sidebar { max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }

    .about-strip { padding: 40px 5%; }
    .about-img-box { width: 100%; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-btns { flex-direction: column; }
    .hero-stats { flex-wrap: wrap; gap: 15px; }
    .product-img { height: 170px; }
}

/* ============ LOADING SKELETON ============ */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

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

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; }

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--army-green);
    color: var(--army-green);
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    background: none;
    text-decoration: none;
}

.view-all-btn:hover {
    background: var(--army-green);
    color: white;
}
