/* OFFICE MART - Clean B2B Office Supplies Theme */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@500;600;700&display=swap');

:root {
    --primary: #1b2e1b;
    --primary-mid: #2d4a2d;
    --accent: #e07b2e;
    --accent-hover: #c96a1f;
    --accent-light: #fdf0e4;
    --green: #3a7d44;
    --green-light: #e8f5ea;
    --steel: #4b5563;
    --steel-light: #6b7280;
    --steel-lighter: #9ca3af;
    --bg: #faf9f6;
    --bg-alt: #f3f1ec;
    --white: #ffffff;
    --border: #e8e5df;
    --border-light: #f0ede7;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #d97706;
    --text: #1a1a1a;
    --text-light: #4b5563;
    --gold: #d4a017;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 20px; }

/* === TOP BAR === */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    padding: 6px 0;
    letter-spacing: 0.4px;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar a { color: rgba(255,255,255,0.7); }
.top-bar a:hover { color: white; }

/* === HEADER - Clean minimal === */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 20px;
}
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    white-space: nowrap;
}
.logo span { color: var(--accent); }

.search-bar { flex: 1; max-width: 480px; position: relative; }
.search-bar input {
    width: 100%;
    padding: 11px 44px 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    transition: var(--transition);
    background: var(--bg);
    font-family: inherit;
}
.search-bar input:focus { outline: none; border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(224,123,46,0.12); }
.search-bar button {
    position: absolute; right: 4px; top: 4px; bottom: 4px; width: 36px;
    background: var(--accent); color: white; border: none; border-radius: 50%;
    cursor: pointer; font-size: 15px; transition: var(--transition);
}
.search-bar button:hover { background: var(--accent-hover); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions a { color: var(--steel); font-size: 13px; font-weight: 500; white-space: nowrap; }
.header-actions a:hover { color: var(--accent); }
.cart-count {
    background: var(--accent); color: white; font-size: 10px; font-weight: 700;
    width: 20px; height: 20px; border-radius: 50%; display: inline-flex;
    align-items: center; justify-content: center; margin-left: 2px;
}

/* Nav - horizontal pills under header */
.main-nav { background: var(--white); border-bottom: 1px solid var(--border-light); }
.main-nav ul { list-style: none; display: flex; gap: 0; }
.main-nav a {
    display: block; color: var(--steel); padding: 11px 20px;
    font-size: 13px; font-weight: 500; transition: var(--transition);
    position: relative;
}
.main-nav a:hover { color: var(--accent); }
.main-nav a.active { color: var(--accent); font-weight: 600; }
.main-nav a.active::after {
    content: ''; position: absolute; bottom: 0; left: 20px; right: 20px;
    height: 2px; background: var(--accent); border-radius: 2px;
}

.menu-toggle { display: none; background: none; border: none; color: var(--primary); font-size: 22px; cursor: pointer; }

/* === HERO - Split layout with gradient === */
.hero {
    background: linear-gradient(135deg, #1b2e1b 0%, #2d4a2d 50%, #3a6b3a 100%);
    color: white;
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -200px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(224,123,46,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: ''; position: absolute; bottom: -150px; left: 10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.hero .container { position: relative; z-index: 2; }
.hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-content { max-width: 600px; }
.hero-visual {
    display: flex; justify-content: center; align-items: center; position: relative;
}
.hero-cards {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; width: 100%; max-width: 400px;
}
.hero-stat-card {
    background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
    padding: 22px 16px; text-align: center; transition: transform 0.3s ease;
}
.hero-stat-card:hover { transform: translateY(-4px); }
.hero-stat-card:nth-child(2) { transform: translateY(20px); }
.hero-stat-card:nth-child(2):hover { transform: translateY(16px); }
.hero-stat-card:nth-child(3) { transform: translateY(-10px); }
.hero-stat-card:nth-child(3):hover { transform: translateY(-14px); }
.hero-stat-card .hsc-icon { font-size: 28px; margin-bottom: 8px; display: block; }
.hero-stat-card .hsc-number { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: white; display: block; line-height: 1; }
.hero-stat-card .hsc-label { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.hero-badge {
    display: inline-block; background: rgba(224,123,46,0.25);
    border: 1px solid rgba(224,123,46,0.4);
    padding: 5px 14px; border-radius: 50px; font-size: 12px;
    font-weight: 500; color: rgba(255,255,255,0.9); margin-bottom: 18px;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px; font-weight: 700; line-height: 1.12;
    margin-bottom: 16px; letter-spacing: -0.5px;
}
.hero h1 .highlight { color: var(--accent); }
.hero p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 28px; line-height: 1.7; max-width: 480px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* === TRUST STRIP (replaces stats bar) === */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
}
.trust-strip .container {
    display: flex; justify-content: center; align-items: center;
    gap: 32px; flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--steel);
}
.trust-item strong { color: var(--primary); font-weight: 700; font-size: 15px; }
.trust-dot { width: 4px; height: 4px; background: var(--border); border-radius: 50%; }

/* === BUTTONS === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 11px 24px; border-radius: var(--radius); font-size: 13px;
    font-weight: 600; border: none; cursor: pointer; transition: var(--transition);
    font-family: inherit; text-align: center;
}
.btn-primary { background: var(--accent); color: white; }
.btn-primary:hover { background: var(--accent-hover); color: white; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(224,123,46,0.3); }
.btn-secondary { background: var(--white); color: var(--primary); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: rgba(255,255,255,0.92); color: var(--primary); }
.btn-outline-white { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: white; }
.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* === SECTIONS === */
.section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag {
    display: inline-block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--accent); margin-bottom: 8px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px; font-weight: 600; color: var(--primary);
    margin-bottom: 8px;
}
.section-subtitle { color: var(--steel-light); font-size: 15px; max-width: 460px; margin: 0 auto; }

/* === PRODUCT GRID === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex; flex-direction: column;
    border: 1px solid var(--border-light);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: transparent; }
.product-card-img {
    aspect-ratio: 1; background: #fafaf8; position: relative; overflow: hidden;
}
.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: 10px; left: 10px;
    background: var(--accent); color: white; font-size: 10px;
    font-weight: 700; padding: 3px 8px; border-radius: 6px; z-index: 2;
}
.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-brand {
    font-size: 10px; color: var(--accent); text-transform: uppercase;
    letter-spacing: 1.2px; font-weight: 600; margin-bottom: 5px;
}
.product-card-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--accent); }
.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; font-size: 12px; }
.stars { color: var(--gold); }
.rating-count { color: var(--steel-lighter); font-size: 11px; }
.product-price { margin-top: auto; display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.price-current { font-weight: 700; font-size: 18px; color: var(--primary); }
.price-mrp { font-size: 13px; color: var(--steel-lighter); text-decoration: line-through; }
.price-discount { font-size: 11px; color: var(--success); font-weight: 600; }
.product-card .btn { margin-top: auto; }

/* === PRODUCT PAGE === */
.product-detail { padding: 36px 0; }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.product-gallery { position: sticky; top: 90px; }
.product-main-image {
    background: var(--white); border-radius: var(--radius-xl);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow); min-height: 380px; overflow: hidden;
    border: 1px solid var(--border-light);
}
.product-main-image img { max-width: 100%; max-height: 420px; object-fit: contain; }
.product-info h1 { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 8px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 14px; font-size: 13px; color: var(--steel-light); }
.product-detail .product-price { font-size: 14px; margin-bottom: 18px; padding: 16px; background: var(--accent-light); border-radius: var(--radius-lg); border: 1px solid rgba(224,123,46,0.15); }
.product-detail .price-current { font-size: 28px; }
.gst-note { font-size: 11px; color: var(--steel-light); display: block; margin-top: 4px; }
.product-actions { display: flex; gap: 10px; margin-bottom: 20px; }
.qty-selector { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-selector button { width: 40px; height: 40px; border: none; background: var(--bg); font-size: 16px; cursor: pointer; color: var(--steel); }
.qty-selector button:hover { background: var(--border); }
.qty-selector input { width: 44px; height: 40px; border: none; text-align: center; font-size: 15px; font-weight: 600; font-family: inherit; }
.specs-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.specs-table tr:nth-child(even) { background: var(--bg); }
.specs-table td { padding: 10px 14px; border-bottom: 1px solid var(--border-light); font-size: 13px; }
.specs-table td:first-child { font-weight: 600; color: var(--steel); width: 40%; }

/* === CATEGORY GRID === */
.category-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.category-card {
    flex: 0 1 calc(25% - 12px); min-width: 220px;
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px 20px; text-align: center;
    border: 1px solid var(--border-light); transition: var(--transition);
}
.category-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--accent); }
.category-icon {
    width: 56px; height: 56px; background: var(--accent-light);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px; font-size: 24px; color: var(--accent); transition: var(--transition);
}
.category-card:hover .category-icon { background: var(--accent); color: white; }
.category-card h3 { font-size: 15px; color: var(--primary); margin-bottom: 4px; font-weight: 600; }
.category-card p { font-size: 12px; color: var(--steel-light); line-height: 1.5; }

/* === FEATURES === */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card {
    background: var(--white); padding: 28px; border-radius: var(--radius-lg);
    border: 1px solid var(--border-light); transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.feature-icon {
    width: 48px; height: 48px; background: var(--accent-light);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 22px; color: var(--accent);
}
.feature-card:hover .feature-icon { background: var(--accent); color: white; }
.feature-card h3 { font-size: 16px; color: var(--primary); margin-bottom: 6px; font-weight: 600; }
.feature-card p { font-size: 13px; color: var(--steel-light); line-height: 1.6; }

/* === BRANDS === */
.brands-strip { padding: 32px 0; background: var(--white); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.brands-grid { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.brand-item { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 700; color: var(--steel-lighter); letter-spacing: 1.5px; transition: var(--transition); }
.brand-item:hover { color: var(--accent); }

/* === CTA === */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2d4a2d 50%, var(--accent) 120%);
    padding: 56px 0; color: white; text-align: center;
}
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 600; margin-bottom: 10px; }
.cta-section p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 24px; max-width: 460px; margin-left: auto; margin-right: auto; }

/* === CART === */
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.cart-table th { background: var(--primary); color: white; padding: 12px 14px; font-size: 11px; font-weight: 600; text-align: left; text-transform: uppercase; letter-spacing: 0.5px; }
.cart-table td { padding: 14px; border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 12px; }
.cart-product img { width: 56px; height: 56px; object-fit: cover; background: var(--bg); border-radius: var(--radius); }
.cart-summary { background: var(--white); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.cart-summary h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--primary); padding-bottom: 12px; border-bottom: 1.5px solid var(--border); margin-bottom: 12px; }
.summary-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 13px; }
.summary-total { font-size: 17px; font-weight: 700; color: var(--primary); border-top: 2px solid var(--primary); padding-top: 12px; margin-top: 8px; }

/* === CHECKOUT === */
.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--steel); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius);
    font-size: 13px; transition: var(--transition); font-family: inherit; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(224,123,46,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* === FOOTER - Warm dark === */
.site-footer { background: #1a1a1a; color: rgba(255,255,255,0.65); padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 28px; padding-bottom: 36px; }
.footer-col h4 { color: white; font-size: 13px; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p { font-size: 13px; line-height: 1.7; margin-bottom: 6px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 13px; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0; text-align: center; font-size: 12px; color: rgba(255,255,255,0.35); }

/* === PAGE HEADERS === */
.page-header { background: linear-gradient(135deg, var(--primary) 0%, #2d4a2d 100%); color: white; padding: 40px 0; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 600; }
.page-header p { color: rgba(255,255,255,0.65); margin-top: 6px; font-size: 14px; }
.page-content { padding: 44px 0; }
.page-content h2 { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--primary); margin: 26px 0 10px; }
.page-content h3 { font-size: 17px; color: var(--text); margin: 20px 0 8px; }
.page-content p { margin-bottom: 12px; line-height: 1.7; color: var(--text-light); font-size: 14px; }
.page-content ul, .page-content ol { margin: 8px 0 16px 20px; color: var(--text-light); }
.page-content li { margin-bottom: 5px; line-height: 1.6; font-size: 14px; }

/* === BREADCRUMB === */
.breadcrumb { padding: 12px 0; font-size: 12px; color: var(--steel-light); }
.breadcrumb a { color: var(--steel-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 5px; }

/* === PAGINATION === */
.pagination { display: flex; justify-content: center; gap: 5px; margin-top: 36px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius); font-size: 13px; font-weight: 500; border: 1px solid var(--border); color: var(--steel); transition: var(--transition); }
.pagination a:hover { background: var(--accent); color: white; border-color: var(--accent); }
.pagination .active { background: var(--primary); color: white; border-color: var(--primary); }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-info-card { background: var(--white); padding: 18px; border-radius: var(--radius-lg); border: 1px solid var(--border-light); margin-bottom: 14px; display: flex; gap: 12px; transition: var(--transition); }
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.contact-info-card .icon { width: 42px; height: 42px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--accent); flex-shrink: 0; }

/* === PAYMENT === */
.payment-container { max-width: 480px; margin: 36px auto; background: var(--white); border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-md); text-align: center; border: 1px solid var(--border-light); }
.upi-qr { max-width: 240px; margin: 18px auto; }
.payment-timer { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 700; color: var(--accent); margin: 8px 0; }

/* === STATUS PAGES === */
.status-page { text-align: center; padding: 70px 0; }
.status-icon { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 32px; }
.status-icon.success { background: #dcfce7; color: var(--success); }
.status-icon.failed { background: #fee2e2; color: var(--danger); }

/* === TRACK ORDER === */
.track-form { max-width: 480px; margin: 0 auto; background: var(--white); padding: 28px; border-radius: var(--radius-xl); box-shadow: var(--shadow); border: 1px solid var(--border-light); }
.order-timeline { padding: 18px 0; }
.timeline-step { display: flex; gap: 12px; padding-bottom: 22px; position: relative; }
.timeline-step::before { content: ''; position: absolute; left: 14px; top: 30px; bottom: 0; width: 2px; background: var(--border); }
.timeline-step:last-child::before { display: none; }
.timeline-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; color: white; flex-shrink: 0; }
.timeline-step.active .timeline-dot { background: var(--success); }
.timeline-step.current .timeline-dot { background: var(--accent); }

/* === ALERTS === */
.alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 14px; font-size: 13px; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-info { background: #fdf0e4; color: #9a3412; border: 1px solid #fed7aa; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* === ADMIN === */
.admin-sidebar { width: 230px; background: #1a1a1a; min-height: 100vh; position: fixed; left: 0; top: 0; }
.admin-sidebar .logo { padding: 18px; color: white; font-size: 17px; font-family: 'Playfair Display', serif; }
.admin-nav { list-style: none; padding: 8px 0; }
.admin-nav a { display: block; padding: 11px 18px; color: rgba(255,255,255,0.55); font-size: 13px; border-left: 3px solid transparent; transition: var(--transition); }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.04); color: white; border-left-color: var(--accent); }
.admin-content { margin-left: 230px; padding: 18px 28px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.admin-table th { background: var(--bg-alt); padding: 10px 12px; font-size: 10px; text-transform: uppercase; color: var(--steel); text-align: left; letter-spacing: 0.5px; }
.admin-table td { padding: 10px 12px; border-bottom: 1px solid var(--border-light); font-size: 13px; }
.admin-table tr:hover { background: var(--bg); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 10px; font-weight: 600; }
.badge-success { background: #dcfce7; color: #166534; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-info { background: var(--accent-light); color: #9a3412; }
.badge-default { background: var(--bg-alt); color: var(--steel); }

/* === SPINNER === */
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.7s linear infinite; margin: 18px auto; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .header-main { flex-wrap: wrap; padding: 8px 0; }
    .logo { font-size: 22px; }
    .header-actions { gap: 12px; }
    .search-bar { order: 3; max-width: 100%; flex-basis: 100%; margin-top: 6px; }
    .menu-toggle { display: block; }
    .main-nav ul { display: none; flex-direction: column; }
    .main-nav.open ul { display: flex; }
    .hero { padding: 40px 0 50px; }
    .hero h1 { font-size: 30px; }
    .hero-layout { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .trust-strip .container { gap: 16px; }
    .trust-dot { display: none; }
    .product-layout { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .checkout-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 12px; }
    .product-card-body { padding: 10px; }
    .product-card-title { font-size: 12px; }
    .admin-sidebar { display: none; }
    .admin-content { margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .footer-grid { grid-template-columns: 1fr; }
    .top-bar { display: none; }
    .hero h1 { font-size: 26px; }
    .trust-strip .container { gap: 12px; justify-content: flex-start; }
}
