/* ══════════════════════════════════════════════════════
   AuroraExim — Professional Import/Export Platform CSS
   ═════════════════════════��════════════════════════════ */

/* ── Variables ── */
:root {
    --primary: #2f4a3d;
    --primary-light: #3f6350;
    --accent: #b5502f;
    --accent-hover: #99411f;
    --gold: #c9a227;
    --teal: #2e7d6b;
    --bg: #fdfcf8;
    --text: #2b2b26;
    --text-muted: #6e6a5f;
    --card-shadow: 0 4px 20px rgba(0,0,0,0.06);
    --card-hover-shadow: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 10px;
    --transition: all 0.3s ease;
}

/* ── Reset & Base ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ── Top Bar ── */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    padding: 8px 0;
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--gold); }

/* ── Navbar ── */
.main-navbar {
    background: rgba(255,255,255,0.97) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 12px 0;
    z-index: 1000;
}
.main-navbar .navbar-toggler {
    border: 2px solid var(--primary);
    padding: 4px 10px;
}
.site-logo {
    height: 44px;
    width: auto;
    margin-right: 12px;
    border-radius: 6px;
}
.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.brand-accent { color: var(--accent); }
.main-navbar .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
}
.main-navbar .nav-link:hover {
    color: var(--accent) !important;
    background: rgba(230,57,70,0.06);
}
.user-badge {
    background: rgba(42,157,143,0.1);
    color: var(--teal) !important;
    border-radius: 20px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
}
.btn-accent {
    background: var(--accent);
    color: #fff !important;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    padding: 8px 20px;
    transition: var(--transition);
}
.btn-accent:hover {
    background: var(--accent-hover);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}

/* ── Hero Banner Slider ── */
.hero-banner-section {
    position: relative;
}
.hero-banner-swiper {
    width: 100%;
}
.hero-slide {
    padding: 80px 0 90px;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
}
.hero-slide .hero-particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-slide .particle {
    position: absolute;
    border-radius: 50%;
}
.hero-slide .particle-1 { width: 400px; height: 400px; top: -10%; right: -5%; background: radial-gradient(circle, rgba(230,57,70,0.3), transparent 70%); opacity: 0.3; }
.hero-slide .particle-2 { width: 300px; height: 300px; bottom: -15%; left: -5%; background: radial-gradient(circle, rgba(244,162,97,0.2), transparent 70%); opacity: 0.3; }
.hero-slide .particle-3 { width: 6px; height: 6px; top: 20%; left: 30%; background: #fff; opacity: 0.08; animation: float 6s ease-in-out infinite; }

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-size: 0.82rem;
    color: var(--gold);
    backdrop-filter: blur(10px);
}

.hero-slide h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.hero-slide h1 span {
    background: linear-gradient(135deg, var(--gold), #e8924a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-slide p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    max-width: 480px;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Hero icon circle — right side */
.hero-icon-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(230,57,70,0.15), rgba(244,162,97,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.06);
    animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(230,57,70,0.1), 0 0 60px rgba(244,162,97,0.05); }
    50% { box-shadow: 0 0 50px rgba(230,57,70,0.2), 0 0 100px rgba(244,162,97,0.1); }
}

/* Banner nav/pagination */
.hero-banner-prev, .hero-banner-next {
    color: #fff !important;
    background: rgba(255,255,255,0.1) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.hero-banner-prev:hover, .hero-banner-next:hover {
    background: rgba(255,255,255,0.2) !important;
}
.hero-banner-prev::after, .hero-banner-next::after { font-size: 18px !important; font-weight: 700; }
.hero-banner-pagination .swiper-pagination-bullet {
    width: 30px !important;
    height: 4px !important;
    border-radius: 4px !important;
    background: rgba(255,255,255,0.3) !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}
.hero-banner-pagination .swiper-pagination-bullet-active {
    width: 50px !important;
    background: var(--gold) !important;
}

/* Hero stats bar */
.hero-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 24px 40px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.hero-stats-bar .hero-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 30px;
    text-align: left;
}
.hero-stats-bar .hero-stat i {
    font-size: 1.6rem;
    color: var(--accent);
    opacity: 0.7;
}
.hero-stats-bar .hero-stat .number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1.1;
}
.hero-stats-bar .hero-stat .number-suffix {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent);
}
.hero-stats-bar .hero-stat .label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.08);
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 0.3; }
}

/* ── Trust Marquee ── */
.trust-marquee {
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    gap: 50px;
    animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.marquee-track span {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.marquee-track span i { color: var(--gold); font-size: 0.75rem; }

/* ── Section Tags ── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(230,57,70,0.08);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* ── Trending Slider enhancements ── */
.trending-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #fff 0%, #f0f4ff 50%, #fff 100%);
}
.trending-card { display: block; text-decoration: none; }
.trending-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}
.trending-img-wrap .slide-img { transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.trending-card:hover .slide-img { transform: scale(1.12); }
.trending-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.trending-card:hover .trending-overlay { opacity: 1; }
.trending-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--accent), #ff6b6b);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(230,57,70,0.3);
    z-index: 2;
}
.trending-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}
.trending-card:hover .trending-category { opacity: 1; transform: translateY(0); }
.trending-swiper .swiper-slide {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.04);
}
.trending-swiper .swiper-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.trending-swiper .slide-info {
    padding: 18px;
}
.trending-swiper .slide-info h5 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text);
}
.slide-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slide-price {
    color: var(--accent);
    font-weight: 800;
    font-size: 1.1rem;
}
.slide-price small {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.8rem;
}
.slide-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    transform: translateX(-5px);
    opacity: 0;
}
.trending-card:hover .slide-action {
    opacity: 1;
    transform: translateX(0);
}
.slide-action:hover { background: var(--accent); }
.trending-swiper .slide-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.4);
}

/* ── Feature cards enhancements ── */
.feature-icon.icon-red { background: rgba(230,57,70,0.08); color: var(--accent); }
.feature-icon.icon-teal { background: rgba(42,157,143,0.08); color: var(--teal); }
.feature-icon.icon-gold { background: rgba(244,162,97,0.08); color: var(--gold); }
.feature-icon.icon-dark { background: rgba(13,27,42,0.08); color: var(--primary); }
.feature-link {
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}
.feature-card:hover .feature-link { opacity: 1; transform: translateX(0); }
.feature-card:hover .feature-icon { transform: scale(1.1); }
.feature-card .feature-icon { transition: transform 0.3s ease; }

/* ── Product card enhancements ── */
.card-trending-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 10px rgba(230,57,70,0.4);
}
.card-cat {
    font-size: 0.75rem;
    color: var(--teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}
.product-card .card-body .price small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}
.products-section { padding: 60px 0; }

/* ── CTA Section ── */
.cta-section { padding: 0 0 60px; }
.cta-card {
    background: linear-gradient(135deg, var(--primary), #1b3a4b);
    border-radius: 20px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230,57,70,0.2), transparent 70%);
    border-radius: 50%;
}
.cta-card h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}
.cta-card p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    margin: 0;
    position: relative;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}
.hero-btn-primary {
    background: var(--accent);
    color: #fff;
}
.hero-btn-primary:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230,57,70,0.35);
}
.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.25);
}
.hero-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(244,162,97,0.08);
}

/* ── Section Headings ── */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
}
.section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.section-heading .accent-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto 12px;
}
.section-heading p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
}

/* ── Trending Slider (base) ── */
.trending-swiper {
    padding-bottom: 50px !important;
}
.trending-swiper .swiper-slide a { display: block; }
.trending-swiper .slide-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.trending-pagination .swiper-pagination-bullet-active {
    background: var(--accent) !important;
}
.trending-prev,
.trending-next {
    color: var(--accent) !important;
    background: rgba(255,255,255,0.95);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.trending-prev::after,
.trending-next::after {
    font-size: 16px;
    font-weight: 700;
}

/* ── Category Tabs ── */
.category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 10px 0;
}
.category-tabs a {
    padding: 8px 22px;
    border-radius: 25px;
    background: #fff;
    border: 2px solid #e8e8e8;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}
.category-tabs a:hover,
.category-tabs a.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(230,57,70,0.25);
}

/* ── Product Grid ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}
.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-hover-shadow);
}
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover img { transform: scale(1.05); }
.product-card .img-wrapper {
    overflow: hidden;
    position: relative;
}
.product-card .no-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
}
.product-card .card-body {
    padding: 18px;
}
.product-card .card-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}
.product-card .card-body .price {
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 8px 0;
}
.product-card .card-body .meta {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 12px;
}
.product-card .card-body .btn-interest {
    display: block;
    width: 100%;
    padding: 10px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}
.product-card .card-body .btn-interest:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(230,57,70,0.3);
}

/* ── Why Choose Us ── */
.features-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}
.feature-card {
    text-align: center;
    padding: 35px 25px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}
.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
}
.feature-card h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}
.feature-list li {
    font-size: 0.82rem;
    color: var(--text-muted);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(0,0,0,0.04);
}
.feature-list li:first-child { border-top: 1px solid rgba(0,0,0,0.06); padding-top: 10px; margin-top: 4px; }
.feature-list li i {
    color: var(--teal);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ── Modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.modal-overlay.active { display: flex; }
.modal-overlay .enquiry-modal {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    width: 90%;
    max-width: 460px;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
@keyframes slideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.modal-overlay .enquiry-modal h2 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.3rem;
}
.modal-overlay .enquiry-modal .close-btn {
    position: absolute;
    top: 16px; right: 16px;
    background: #f0f0f0;
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: #666;
    transition: var(--transition);
}
.modal-overlay .enquiry-modal .close-btn:hover {
    background: var(--accent);
    color: #fff;
}

/* ── Forms ── */
.form-group { margin-bottom: 15px; }
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: inherit;
    transition: var(--transition);
    background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(230,57,70,0.08);
}

/* ── Custom Buttons (non-Bootstrap) ── */
.btn {
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: inherit;
    transition: var(--transition);
}
.btn-primary { background: var(--accent) !important; color: #fff !important; border-color: var(--accent) !important; }
.btn-primary:hover { background: var(--accent-hover) !important; border-color: var(--accent-hover) !important; }
.btn-secondary { background: #6c757d; color: #fff; }
.btn-secondary:hover { background: #545b62; }
.btn-success { background: var(--teal); color: #fff; }
.btn-success:hover { background: #228b7e; }
.btn-danger { background: #dc3545; color: #fff; }
.btn-danger:hover { background: #c82333; }
.btn-sm { padding: 6px 14px; font-size: 0.82rem; }

/* ── Admin Table ── */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.admin-table th {
    background: var(--primary);
    color: #fff;
    padding: 13px 16px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.admin-table td {
    padding: 13px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}
.admin-table tr:hover { background: #fafbfd; }
.admin-table img { width: 60px; height: 40px; object-fit: cover; border-radius: 6px; }

/* ── Badge ── */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-green { background: #d4edda; color: #155724; }
.badge-red { background: #f8d7da; color: #721c24; }
.badge-yellow { background: #fff3cd; color: #856404; }

/* ── Product Detail ── */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    background: #fff;
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--card-shadow);
}
.product-detail img { width: 100%; border-radius: 10px; }
.product-detail .info h1 { font-size: 1.8rem; font-weight: 700; margin-bottom: 10px; }
.product-detail .info .price { color: var(--accent); font-size: 1.5rem; font-weight: 700; margin: 15px 0; }
.product-detail .info .desc { color: #666; line-height: 1.7; margin-bottom: 20px; }
.product-detail .info .meta-info { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

/* ── Register Page ── */
.auth-container {
    max-width: 420px;
    margin: 60px auto;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}
.auth-container h2 { text-align: center; margin-bottom: 25px; color: var(--primary); }

/* ── OTP Section ── */
.otp-section { display: none; }
.otp-section.active { display: block; }

/* ── Alert ── */
.alert {
    padding: 14px 22px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── Admin Header ── */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.admin-header h2 { color: var(--primary); font-weight: 700; }

/* ── Footer ── */
.site-footer {
    background: var(--primary);
    color: rgba(255,255,255,0.65);
    padding: 50px 0 25px;
    margin-top: 0;
}
.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
.footer-brand span { color: var(--gold); }
.footer-heading {
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}
.footer-contact i { color: var(--gold); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .hero-slide h1 { font-size: 2.4rem; }
    .hero-slide { padding: 60px 0 70px; min-height: 400px; }
    .hero-stats-bar { flex-wrap: wrap; gap: 15px; padding: 20px; }
    .hero-stats-bar .hero-stat { padding: 0 15px; }
    .stat-divider { display: none; }
    .cta-card { padding: 35px 25px; }
    .cta-card h2 { font-size: 1.6rem; }
    .hero-banner-prev, .hero-banner-next { display: none !important; }
}
@media (max-width: 768px) {
    .product-detail { grid-template-columns: 1fr; }
    .hero-slide h1 { font-size: 2rem; }
    .hero-slide { padding: 50px 0 60px; min-height: 360px; }
    .hero-stats-bar .hero-stat .number { font-size: 1.4rem; }
    .top-bar .d-flex { flex-wrap: wrap; gap: 8px !important; }
    .top-bar { text-align: center; }
    .trending-prev,
    .trending-next { display: none !important; }
    .trust-marquee { display: none; }
    .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
}
