/* ═══════════════════════════════════════════════
   PETGARDEN PARAGUAY — E-Commerce Pet, Jardín & Florería
   v2.0 — High-conversion design system
   ═══════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
    --mp-primary: #1A4D2E;
    --mp-primary-light: #276840;
    --mp-secondary: #4A8B5C;
    --mp-secondary-light: #6BAF7B;
    --mp-accent: #E07B3C;
    --mp-accent-hover: #C96A2E;
    --mp-accent-glow: rgba(224,123,60,.25);
    --mp-bg: #F5F7FA;
    --mp-bg-warm: #FAFBFC;
    --mp-surface: #FFFFFF;
    --mp-dark: #1A1A2E;
    --mp-text: #2D3748;
    --mp-text-secondary: #718096;
    --mp-text-muted: #A0AEC0;
    --mp-border: #E2E8F0;
    --mp-border-light: #EDF2F7;
    --mp-success: #38B2AC;
    --mp-success-bg: #E6FFFA;
    --mp-danger: #E53E3E;
    --mp-danger-bg: #FFF5F5;
    --mp-warning: #ECC94B;
    --mp-warning-bg: #FFFFF0;
    --mp-info: #4299E1;
    --mp-star: #F6AD55;
    --mp-whatsapp: #25D366;
    --mp-radius-sm: 6px;
    --mp-radius: 10px;
    --mp-radius-lg: 16px;
    --mp-radius-xl: 24px;
    --mp-shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --mp-shadow: 0 4px 14px rgba(0,0,0,.06);
    --mp-shadow-md: 0 8px 24px rgba(0,0,0,.08);
    --mp-shadow-lg: 0 20px 40px rgba(0,0,0,.1);
    --mp-shadow-accent: 0 8px 24px var(--mp-accent-glow);
    --mp-transition: all .25s cubic-bezier(.4,0,.2,1);
    --mp-transition-bounce: all .35s cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--mp-bg);
    color: var(--mp-text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6,.font-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: .3px;
}
a { color: var(--mp-secondary); text-decoration: none; transition: var(--mp-transition); }
a:hover { color: var(--mp-primary); }
img { max-width: 100%; height: auto; }
::selection { background: var(--mp-secondary); color: #fff; }

/* ── Top Bar ── */
.top-bar {
    background: var(--mp-primary);
    color: rgba(255,255,255,.8);
    font-size: 12.5px;
    padding: 7px 0;
    letter-spacing: .2px;
}
.top-bar a { color: rgba(255,255,255,.8); font-weight: 600; }
.top-bar a:hover { color: #fff; }
.top-bar i { font-size: 13px; }

/* ── Header ── */
.main-header {
    background: var(--mp-surface);
    box-shadow: 0 1px 0 var(--mp-border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,.97);
}
.main-header .logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--mp-primary);
    letter-spacing: 2px;
    line-height: 1;
}
.main-header .logo-text span {
    color: var(--mp-accent);
    position: relative;
}

/* ── Search ── */
.search-box { position: relative; max-width: 520px; width: 100%; }
.search-box input {
    border-radius: 50px;
    padding: 11px 24px;
    padding-right: 50px;
    border: 2px solid var(--mp-border);
    font-size: 14px;
    background: var(--mp-bg);
    transition: var(--mp-transition);
}
.search-box input:focus {
    border-color: var(--mp-secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(46,117,182,.1);
    outline: none;
}
.search-box input::placeholder { color: var(--mp-text-muted); }
.search-box button {
    position: absolute; right: 5px; top: 5px; bottom: 5px;
    border: none; background: var(--mp-accent); color: #fff;
    border-radius: 50px; padding: 0 18px; font-size: 15px;
    transition: var(--mp-transition); cursor: pointer;
}
.search-box button:hover { background: var(--mp-accent-hover); transform: scale(1.02); }

/* ── Navbar ── */
.main-navbar { background: var(--mp-primary); border-top: 3px solid var(--mp-accent); }
.main-navbar .nav-link {
    color: rgba(255,255,255,.88) !important; font-weight: 600;
    font-size: 13px; padding: 11px 18px !important;
    text-transform: uppercase; letter-spacing: .8px;
    transition: var(--mp-transition); position: relative;
}
.main-navbar .nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--mp-accent); transition: var(--mp-transition); transform: translateX(-50%);
}
.main-navbar .nav-link:hover, .main-navbar .nav-link.active { color: #fff !important; }
.main-navbar .nav-link:hover::after, .main-navbar .nav-link.active::after { width: 70%; }
.main-navbar .dropdown-menu {
    border: none; box-shadow: var(--mp-shadow-md); border-radius: var(--mp-radius);
    padding: 8px; margin-top: 0; animation: dropIn .2s ease;
}
.main-navbar .dropdown-item {
    border-radius: var(--mp-radius-sm); padding: 8px 14px; font-size: 14px;
    transition: var(--mp-transition);
}
.main-navbar .dropdown-item:hover { background: var(--mp-bg); color: var(--mp-primary); }
@keyframes dropIn { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }

/* ── Header Icons ── */
.header-icon {
    position: relative; color: var(--mp-primary); font-size: 1.35rem;
    padding: 8px 10px; border-radius: 50%; transition: var(--mp-transition);
}
.header-icon:hover { color: var(--mp-accent); background: rgba(255,107,53,.06); }
.cart-badge {
    position: absolute; top: 2px; right: 2px;
    background: var(--mp-accent); color: #fff;
    font-size: 10px; font-weight: 800; width: 18px; height: 18px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px var(--mp-accent-glow);
    animation: badgePop .3s var(--mp-transition-bounce);
}
@keyframes badgePop { from { transform: scale(0); } to { transform: scale(1); } }

/* ═══ PRODUCT CARD — Premium Design ═══ */
.product-card {
    background: var(--mp-surface);
    border-radius: var(--mp-radius);
    overflow: hidden;
    box-shadow: var(--mp-shadow-sm);
    transition: var(--mp-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--mp-border-light);
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mp-shadow-lg);
    border-color: transparent;
}
.product-card .card-img-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #fafbfc 0%, #f0f4f8 100%);
}
.product-card .card-img-top {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .card-img-top { transform: scale(1.06); }
.product-card .card-body {
    flex: 1; display: flex; flex-direction: column; padding: 16px 18px 18px;
}
.product-card .product-category {
    font-size: 11px; color: var(--mp-text-muted); text-transform: uppercase;
    letter-spacing: 1px; font-weight: 700; margin-bottom: 4px;
}
.product-card .product-brand {
    font-size: 12px; color: var(--mp-secondary); font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
}
.product-card .product-name {
    font-size: 14.5px; font-weight: 700; color: var(--mp-dark);
    margin: 6px 0 8px; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card .product-name:hover { color: var(--mp-secondary); }
.product-card .product-rating { margin-bottom: 6px; }
.product-card .product-rating i { font-size: 12px; }
.product-card .product-price-box {
    margin-top: auto; padding-top: 10px;
    border-top: 1px solid var(--mp-border-light);
}
.product-card .product-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--mp-primary); line-height: 1.2;
}
.product-card .product-price-old {
    font-size: .8rem; color: var(--mp-text-muted);
    text-decoration: line-through; font-weight: 400;
    font-family: 'Nunito', sans-serif;
}
.product-card .product-price-discount {
    display: inline-block; background: var(--mp-danger);
    color: #fff; font-size: 11px; font-weight: 800;
    padding: 2px 7px; border-radius: 4px; margin-left: 6px;
    vertical-align: middle;
}
.product-card .product-actions {
    display: flex; gap: 6px; margin-top: 10px;
}
.product-card .btn-add-cart {
    flex: 1; font-size: 13px; font-weight: 700;
    padding: 8px 12px; border-radius: var(--mp-radius-sm);
    text-transform: uppercase; letter-spacing: .5px;
}
.product-card .btn-fav {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--mp-radius-sm); padding: 0;
}
.product-card .btn-fav.active { color: var(--mp-danger); border-color: var(--mp-danger); }

/* ── Product Badges ── */
.product-badges {
    position: absolute; top: 10px; left: 10px;
    display: flex; flex-direction: column; gap: 4px; z-index: 5;
}
.product-badges .badge-tag {
    display: inline-block; padding: 4px 10px;
    font-size: 10.5px; font-weight: 800; letter-spacing: .8px;
    text-transform: uppercase; border-radius: 4px;
    backdrop-filter: blur(4px);
}
.badge-new { background: linear-gradient(135deg, var(--mp-accent), #ff8a5c); color: #fff; }
.badge-sale { background: linear-gradient(135deg, #e53e3e, #fc8181); color: #fff; }
.badge-featured { background: linear-gradient(135deg, var(--mp-secondary), var(--mp-secondary-light)); color: #fff; }
.badge-digital { background: linear-gradient(135deg, #805ad5, #b794f4); color: #fff; }
.badge-out { background: rgba(0,0,0,.65); color: #fff; }

/* Favorite button on image */
.product-card .fav-overlay {
    position: absolute; top: 10px; right: 10px; z-index: 5;
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    color: var(--mp-text-muted); font-size: 16px;
    cursor: pointer; transition: var(--mp-transition);
    border: none; box-shadow: var(--mp-shadow-sm);
    opacity: 0; transform: scale(.8);
}
.product-card:hover .fav-overlay { opacity: 1; transform: scale(1); }
.product-card .fav-overlay:hover { color: var(--mp-danger); transform: scale(1.15); }
.product-card .fav-overlay.active { opacity: 1; color: var(--mp-danger); }

/* Stock indicator */
.stock-indicator {
    font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 4px; margin-top: 6px;
}
.stock-indicator.available { color: var(--mp-success); }
.stock-indicator.low { color: #DD6B20; }
.stock-indicator.out { color: var(--mp-danger); }
.stock-indicator .stock-dot {
    width: 6px; height: 6px; border-radius: 50%; display: inline-block;
}
.stock-indicator.available .stock-dot { background: var(--mp-success); animation: pulse 2s infinite; }
.stock-indicator.low .stock-dot { background: #DD6B20; }
.stock-indicator.out .stock-dot { background: var(--mp-danger); }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

/* ═══ BUTTONS ═══ */
.btn-primary { background: var(--mp-primary); border-color: var(--mp-primary); font-weight: 600; }
.btn-primary:hover { background: var(--mp-primary-light); border-color: var(--mp-primary-light); }
.btn-accent {
    background: var(--mp-accent); border-color: var(--mp-accent); color: #fff;
    font-weight: 700; letter-spacing: .3px;
    box-shadow: 0 4px 12px var(--mp-accent-glow);
}
.btn-accent:hover {
    background: var(--mp-accent-hover); border-color: var(--mp-accent-hover); color: #fff;
    box-shadow: 0 6px 20px var(--mp-accent-glow); transform: translateY(-1px);
}
.btn-whatsapp {
    background: var(--mp-whatsapp); border-color: var(--mp-whatsapp); color: #fff;
    font-weight: 700;
}
.btn-whatsapp:hover { background: #1fb855; color: #fff; transform: translateY(-1px); }

/* ═══ BENEFITS STRIP ═══ */
.benefits-strip {
    background: var(--mp-surface);
    border-top: 3px solid var(--mp-accent);
    padding: 24px 0;
}
.benefit-item {
    text-align: center; padding: 14px 10px;
    transition: var(--mp-transition);
}
.benefit-item:hover { transform: translateY(-3px); }
.benefit-item i {
    font-size: 2.2rem; color: var(--mp-secondary);
    margin-bottom: 10px; display: block;
}
.benefit-item strong { color: var(--mp-dark); font-size: 14px; }
.benefit-item small { font-size: 12.5px; }

/* ═══ SECTION HEADERS ═══ */
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem; color: var(--mp-primary);
    position: relative; padding-bottom: 14px; margin-bottom: 28px;
    letter-spacing: .5px;
}
.section-title::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 50px; height: 3px; background: var(--mp-accent);
    border-radius: 3px;
}
.section-title.text-center::after { left: 50%; transform: translateX(-50%); }
.section-title .section-link {
    font-family: 'Nunito', sans-serif; font-size: 14px;
    font-weight: 600; color: var(--mp-secondary);
    float: right; margin-top: 8px;
}
.section-title .section-link:hover { color: var(--mp-accent); }

/* ═══ CATEGORY CARDS ═══ */
.category-card {
    background: var(--mp-surface); border-radius: var(--mp-radius);
    padding: 24px 16px; text-align: center;
    transition: var(--mp-transition); border: 1px solid var(--mp-border-light);
    height: 100%;
}
.category-card:hover {
    transform: translateY(-5px); box-shadow: var(--mp-shadow-md);
    border-color: var(--mp-secondary);
}
.category-card i {
    font-size: 2.4rem; color: var(--mp-secondary);
    margin-bottom: 10px; transition: var(--mp-transition);
}
.category-card:hover i { color: var(--mp-accent); transform: scale(1.1); }
.category-card .cat-name {
    font-size: 13.5px; font-weight: 700; color: var(--mp-dark);
    line-height: 1.3;
}
.category-card .cat-count {
    font-size: 11px; color: var(--mp-text-muted); margin-top: 4px;
}

/* ═══ PRODUCT DETAIL ═══ */
.product-gallery { background: var(--mp-surface); border-radius: var(--mp-radius); overflow: hidden; box-shadow: var(--mp-shadow); }
.product-gallery .main-image-wrap {
    aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
    padding: 24px; cursor: zoom-in; overflow: hidden;
    background: linear-gradient(135deg, #fafbfc, #f0f4f8);
}
.product-gallery .main-image-wrap img {
    max-width: 100%; max-height: 100%; object-fit: contain;
    transition: transform .4s ease;
}
.product-gallery .main-image-wrap:hover img { transform: scale(1.15); }
.product-gallery .thumbs {
    display: flex; gap: 8px; padding: 12px 16px;
    overflow-x: auto; border-top: 1px solid var(--mp-border-light);
}
.product-gallery .thumb-item {
    width: 64px; height: 64px; flex-shrink: 0;
    border: 2px solid var(--mp-border); border-radius: var(--mp-radius-sm);
    overflow: hidden; cursor: pointer; transition: var(--mp-transition);
    padding: 4px;
}
.product-gallery .thumb-item:hover, .product-gallery .thumb-item.active {
    border-color: var(--mp-accent);
}
.product-gallery .thumb-item img { width: 100%; height: 100%; object-fit: contain; }

.product-info { padding: 0; }
.product-info .product-brand-tag {
    display: inline-block; background: var(--mp-bg);
    color: var(--mp-secondary); font-size: 12px; font-weight: 700;
    padding: 4px 12px; border-radius: 20px; text-transform: uppercase;
    letter-spacing: .8px; margin-bottom: 8px;
}
.product-info .product-title {
    font-size: 1.55rem; color: var(--mp-dark); line-height: 1.3;
    margin-bottom: 6px;
}
.product-info .product-meta {
    font-size: 13px; color: var(--mp-text-muted); margin-bottom: 12px;
}
.product-info .price-block {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: var(--mp-radius); padding: 18px 20px; margin: 16px 0;
    border: 1px solid var(--mp-border-light);
}
.product-info .price-current {
    font-family: 'Oswald', sans-serif; font-size: 2.2rem;
    font-weight: 700; color: var(--mp-primary); line-height: 1;
}
.product-info .price-old {
    font-size: 1.1rem; color: var(--mp-text-muted);
    text-decoration: line-through; margin-left: 10px;
}
.product-info .price-savings {
    display: inline-block; background: var(--mp-danger-bg);
    color: var(--mp-danger); font-size: 13px; font-weight: 700;
    padding: 4px 10px; border-radius: 6px; margin-top: 6px;
}
.product-info .price-usd {
    font-size: 12px; color: var(--mp-text-muted); margin-top: 4px;
}
.product-info .qty-selector {
    display: flex; align-items: center; gap: 0;
    border: 2px solid var(--mp-border); border-radius: var(--mp-radius-sm);
    overflow: hidden; width: fit-content;
}
.product-info .qty-selector button {
    width: 40px; height: 40px; border: none; background: var(--mp-bg);
    font-size: 18px; font-weight: 700; cursor: pointer;
    transition: var(--mp-transition); color: var(--mp-text);
}
.product-info .qty-selector button:hover { background: var(--mp-border); }
.product-info .qty-selector input {
    width: 50px; height: 40px; border: none; text-align: center;
    font-size: 15px; font-weight: 700; background: #fff;
}

/* Tabs */
.product-tabs { background: var(--mp-surface); border-radius: var(--mp-radius); box-shadow: var(--mp-shadow-sm); overflow: hidden; }
.product-tabs .nav-tabs { border: none; padding: 0 20px; background: var(--mp-bg); }
.product-tabs .nav-tabs .nav-link {
    border: none; border-bottom: 3px solid transparent;
    font-weight: 700; font-size: 14px; color: var(--mp-text-secondary);
    padding: 14px 20px; text-transform: uppercase; letter-spacing: .5px;
    transition: var(--mp-transition);
}
.product-tabs .nav-tabs .nav-link.active {
    color: var(--mp-primary); border-bottom-color: var(--mp-accent);
    background: transparent;
}
.product-tabs .tab-content { padding: 24px; line-height: 1.8; color: var(--mp-text); }

/* ═══ TRUST SIGNALS ═══ */
.trust-badges {
    display: flex; gap: 16px; flex-wrap: wrap; margin: 16px 0;
}
.trust-badge {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--mp-text-secondary);
}
.trust-badge i { font-size: 18px; color: var(--mp-success); }

/* ═══ FOOTER ═══ */
.main-footer {
    background: var(--mp-primary); color: rgba(255,255,255,.75); padding: 56px 0 0;
}
.main-footer h5 {
    font-family: 'Oswald', sans-serif; color: #fff; font-size: 1.05rem;
    margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px;
    position: relative; padding-bottom: 10px;
}
.main-footer h5::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 30px; height: 2px; background: var(--mp-accent);
}
.main-footer a { color: rgba(255,255,255,.65); font-size: 14px; }
.main-footer a:hover { color: var(--mp-accent); padding-left: 4px; }
.main-footer ul li { margin-bottom: 8px; }
.footer-bottom {
    background: rgba(0,0,0,.25); padding: 18px 0; margin-top: 40px;
    font-size: 13px; text-align: center;
}
.footer-social a {
    display: inline-flex; width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.08); align-items: center; justify-content: center;
    font-size: 16px; transition: var(--mp-transition);
}
.footer-social a:hover { background: var(--mp-accent); color: #fff; transform: translateY(-3px); }

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px;
    width: 58px; height: 58px;
    background: var(--mp-whatsapp); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 28px;
    box-shadow: 0 6px 20px rgba(37,211,102,.4);
    z-index: 1050; transition: var(--mp-transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.12); color: #fff; animation: none; }
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ═══ STARS ═══ */
.stars { color: var(--mp-star); }
.stars-empty { color: #E2E8F0; }

/* ═══ TOAST ═══ */
.toast-notification {
    position: fixed; bottom: 90px; right: 24px;
    padding: 14px 24px; border-radius: var(--mp-radius);
    color: #fff; font-weight: 700; font-size: 14px;
    z-index: 9999; opacity: 0; transform: translateY(20px) scale(.95);
    transition: all .3s cubic-bezier(.34,1.56,.64,1);
    box-shadow: var(--mp-shadow-lg); backdrop-filter: blur(10px);
}
.toast-notification.show { opacity: 1; transform: translateY(0) scale(1); }
.toast-success { background: linear-gradient(135deg, #38B2AC, #4FD1C5); }
.toast-error { background: linear-gradient(135deg, #E53E3E, #FC8181); }
.toast-info { background: linear-gradient(135deg, var(--mp-secondary), var(--mp-secondary-light)); }

/* ═══ PROMO BANNER (CTA Section) ═══ */
.promo-section {
    background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-secondary) 100%);
    position: relative; overflow: hidden;
}
.promo-section::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 500px; height: 500px; border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.promo-section::after {
    content: ''; position: absolute; bottom: -30%; left: -10%;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,107,53,.08);
}

/* ═══ BREADCRUMBS ═══ */
.breadcrumb { background: transparent; padding: 12px 0; font-size: 13px; }
.breadcrumb-item a { color: var(--mp-text-muted); }
.breadcrumb-item a:hover { color: var(--mp-secondary); }
.breadcrumb-item.active { color: var(--mp-text); font-weight: 600; }

/* ═══ ADMIN (complementario) ═══ */
.admin-sidebar {
    background: linear-gradient(180deg, var(--mp-primary) 0%, #0a1f33 100%);
    min-height: 100vh; width: 260px;
    position: fixed; top: 0; left: 0; z-index: 1030;
    overflow-y: auto; transition: var(--mp-transition);
}
.admin-sidebar .sidebar-brand { padding: 22px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.06); }
.admin-sidebar .sidebar-brand h4 { color: #fff; font-family: 'Oswald', sans-serif; margin: 0; font-size: 1.3rem; }
.admin-sidebar .nav-link {
    color: rgba(255,255,255,.6); padding: 10px 20px; font-size: 13.5px;
    border-left: 3px solid transparent; transition: var(--mp-transition);
}
.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
    color: #fff; background: rgba(255,255,255,.06); border-left-color: var(--mp-accent);
}
.admin-sidebar .nav-link i { width: 22px; text-align: center; margin-right: 10px; font-size: 15px; }
.admin-content { margin-left: 260px; padding: 20px 30px; min-height: 100vh; }
.admin-header {
    background: #fff; padding: 14px 30px; margin: -20px -30px 24px;
    box-shadow: var(--mp-shadow-sm); display: flex; align-items: center; justify-content: space-between;
}
.stat-card {
    background: #fff; border-radius: var(--mp-radius); padding: 22px;
    box-shadow: var(--mp-shadow-sm); border-left: 4px solid var(--mp-secondary);
    transition: var(--mp-transition);
}
.stat-card:hover { box-shadow: var(--mp-shadow); }
.stat-card .stat-value { font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--mp-primary); }
.stat-card .stat-label { font-size: 12px; color: var(--mp-text-muted); text-transform: uppercase; letter-spacing: .8px; margin-top: 2px; }
.stat-card.accent { border-left-color: var(--mp-accent); }
.stat-card.success { border-left-color: var(--mp-success); }
.stat-card.danger { border-left-color: var(--mp-danger); }
.admin-table { background: #fff; border-radius: var(--mp-radius); overflow: hidden; box-shadow: var(--mp-shadow-sm); }
.admin-table thead th { background: var(--mp-primary); color: #fff; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; padding: 12px 16px; border: none; }
.admin-table tbody td { padding: 10px 16px; vertical-align: middle; font-size: 14px; border-bottom: 1px solid var(--mp-border-light); }
.admin-table tbody tr:hover { background: rgba(46,117,182,.02); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
    .admin-sidebar { transform: translateX(-100%); } .admin-sidebar.show { transform: translateX(0); }
    .admin-content { margin-left: 0; }
}
@media (max-width: 767px) {
    .main-header .logo-text { font-size: 1.5rem; }
    .product-card .product-price { font-size: 1.15rem; }
    .product-card .card-body { padding: 12px 14px 14px; }
    .product-card .product-name { font-size: 13.5px; }
    .product-info .price-current { font-size: 1.8rem; }
    .section-title { font-size: 1.4rem; }
    .benefits-strip .row > div { border-bottom: 1px solid var(--mp-border-light); }
}
