/* ============================================================
   Prestigemetalle – Premium Edelmetall Shop
   ============================================================ */

:root {
    --gold: #c9a84c;
    --gold-light: #e0c97f;
    --gold-dark: #a88a2d;
    --dark: #1a1a2e;
    --dark2: #16213e;
    --dark3: #0f3460;
    --bg: #f8f8f6;
    --white: #ffffff;
    --text: #2d2d2d;
    --text-light: #6c757d;
    --danger: #dc3545;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
    --border: #e2e0db;
    --shadow: 0 2px 15px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.10);
    --radius: 8px;
    --transition: all .25s ease;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 600px; margin: 0 auto; padding: 0 20px; }
.container-md { max-width: 800px; margin: 0 auto; padding: 0 20px; }

/* ---- Top Bar (above navbar) ---- */
.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,.6);
    font-size: .72rem;
    letter-spacing: .3px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(201,168,76,.15);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: var(--gold); }

/* ---- Navbar ---- */
.navbar {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: 2px solid var(--gold);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold) !important;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand span { color: var(--white); font-weight: 300; }
.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,.8);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
.nav-links .badge {
    background: var(--gold);
    color: var(--dark);
    font-size: .7rem;
    padding: 2px 7px;
    border-radius: 50%;
    margin-left: 4px;
    font-weight: 700;
}

/* ---- Hero ---- */
.hero {
    background: linear-gradient(135deg, #0d0d1a 0%, var(--dark) 40%, var(--dark2) 70%, #0d1b30 100%);
    color: var(--white);
    padding: 100px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,.06) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.04) 0%, transparent 60%);
}
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .4;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,20,.35);
    z-index: 0;
}
.hero[style] { background-size: cover !important; }
.hero[style]::before { display: none; }
.hero h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    letter-spacing: -.5px;
    line-height: 1.2;
}
.hero h1 span { color: var(--gold); }
.hero p {
    font-size: 1.15rem;
    opacity: .75;
    max-width: 600px;
    margin: 0 auto 35px;
    position: relative;
    line-height: 1.7;
}

/* ---- Spot Price Ticker ---- */
.ticker-bar {
    background: linear-gradient(180deg, #0a0a16 0%, #101024 100%);
    border-bottom: 1px solid rgba(201,168,76,.12);
    padding: 0;
    overflow: hidden;
    position: relative;
}
.ticker-inner {
    display: flex;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-set {
    display: flex;
    flex-shrink: 0;
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-right: 1px solid rgba(255,255,255,.04);
    white-space: nowrap;
}
.ticker-item .metal-name {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.45);
}
.ticker-item .metal-price {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Inter', monospace;
}
.ticker-item .metal-unit {
    font-size: .65rem;
    color: rgba(255,255,255,.3);
}
.ticker-item .metal-change {
    font-size: .75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}
.ticker-item .metal-change.up { color: #4caf50; background: rgba(76,175,80,.1); }
.ticker-item .metal-change.down { color: #ef5350; background: rgba(239,83,80,.1); }
.ticker-item .metal-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 800;
    flex-shrink: 0;
}
.ticker-item .metal-icon.gold { background: linear-gradient(135deg, #d4af37, #b8942e); color: #fff; }
.ticker-item .metal-icon.silver { background: linear-gradient(135deg, #c0c0c0, #888); color: #fff; }
.ticker-item .metal-icon.platin { background: linear-gradient(135deg, #e5e4e2, #b0b0b0); color: #333; }
.ticker-item .metal-icon.palladium { background: linear-gradient(135deg, #cec8c0, #9a9080); color: #fff; }

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Spot Price Cards ---- */
.spot-section {
    background: linear-gradient(180deg, #0a0a16 0%, #0f0f22 50%, var(--bg) 100%);
    padding: 40px 0 50px;
}
.spot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
.spot-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--radius);
    padding: 22px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.spot-card:hover {
    border-color: rgba(201,168,76,.25);
    background: rgba(255,255,255,.05);
    transform: translateY(-2px);
}
.spot-card .spot-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
}
.spot-card .spot-label {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.4);
    margin-bottom: 6px;
}
.spot-card .spot-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
.spot-card .spot-unit {
    font-size: .7rem;
    color: rgba(255,255,255,.28);
    margin-top: 2px;
}
.spot-card .spot-change {
    display: inline-block;
    margin-top: 8px;
    font-size: .75rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.spot-card .spot-change.up { color: #4caf50; background: rgba(76,175,80,.1); }
.spot-card .spot-change.down { color: #ef5350; background: rgba(239,83,80,.1); }
.spot-card .spot-oz {
    font-size: .8rem;
    color: rgba(255,255,255,.28);
    margin-top: 6px;
}
.spot-card .mini-chart {
    margin-top: 12px;
    height: 35px;
    opacity: .35;
}

/* Transparency note */
.transparency-note {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(15,15,30,.9);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-top: 10px;
}
.transparency-note .tn-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201,168,76,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
}
.transparency-note .tn-text {
    color: rgba(255,255,255,.8);
    font-size: .82rem;
    line-height: 1.7;
}
.transparency-note .tn-text strong {
    color: var(--gold);
    font-size: .85rem;
}

@media (max-width: 768px) {
    .spot-grid { grid-template-columns: 1fr 1fr; }
    .transparency-note { flex-direction: column; gap: 10px; }
}
@media (max-width: 480px) {
    .spot-grid { grid-template-columns: 1fr; }
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.5;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(201,168,76,.35); color: var(--dark); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark2); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #c82333; color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-success:hover { background: #218838; color: #fff; }
.btn-sm { padding: 6px 14px; font-size: .8rem; }
.btn-lg { padding: 14px 36px; font-size: 1rem; letter-spacing: .3px; }

/* ---- Cards ---- */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,.04);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-body { padding: 20px; }

/* ---- Product Grid ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
}
.product-card {
    border-top: 2px solid var(--gold);
}
.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: #fafaf8;
}
.product-card .product-image { height: 220px; }
.product-image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-image .img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image .img-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    filter: blur(20px) saturate(.5);
    opacity: .35;
    transform: scale(1.2);
}
.product-card .product-image .no-image {
    font-size: 3rem;
    color: var(--gold);
    opacity: .5;
}
.product-card .card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--dark);
    font-weight: 700;
}
.product-card .material-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: .7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}
.product-card .price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin: 10px 0;
}
.product-card .weight { font-size: .85rem; color: var(--text-light); }

/* ---- Section Titles ---- */
.section { padding: 50px 0; }
.section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    letter-spacing: -.3px;
}
.section-subtitle { color: var(--text-light); margin-bottom: 30px; font-size: .95rem; }

/* ---- Testimonials ---- */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg) 0%, #f3f1ec 100%);
    padding: 70px 0;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 45px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,.04);
    border-top: 2px solid var(--gold);
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.testimonial-card .card-body { padding: 28px; }
.testimonial-stars { display: flex; gap: 1px; margin-bottom: 14px; }
.testimonial-text {
    font-size: .9rem;
    line-height: 1.75;
    color: var(--text);
    margin-bottom: 18px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .8rem;
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: .85rem; color: var(--dark); }
.testimonial-meta { font-size: .72rem; color: var(--text-light); }

/* ---- Trust Strip ---- */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201,168,76,.08);
    border: 1px solid rgba(201,168,76,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.trust-title { font-weight: 700; font-size: .85rem; color: var(--dark); }
.trust-sub { font-size: .72rem; color: var(--text-light); }

/* ---- Filter Bar ---- */
.filter-bar {
    display: flex;
    gap: 10px;
    padding: 20px 0;
    flex-wrap: wrap;
    align-items: center;
}
.filter-bar a {
    padding: 6px 18px;
    border-radius: 20px;
    font-size: .85rem;
    font-weight: 600;
    border: 2px solid var(--border);
    color: var(--text);
}
.filter-bar a:hover, .filter-bar a.active {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--dark);
}

/* ---- Tables ---- */
.table-wrapper { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
thead { background: var(--dark); color: var(--white); }
th, td { padding: 12px 16px; text-align: left; font-size: .9rem; }
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:hover { background: #fafaf8; }
tbody tr:last-child { border-bottom: none; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: .9rem;
    color: var(--dark);
}
.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: .95rem;
    transition: var(--transition);
    background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }

/* ---- Alerts ---- */
.alert {
    padding: 12px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeaa7; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ---- Cart ---- */
.cart-table img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; }
.cart-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}
.cart-summary .total-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1.1rem;
}
.cart-summary .total-line.grand {
    border-top: 2px solid var(--dark);
    font-weight: 800;
    font-size: 1.3rem;
    margin-top: 10px;
    padding-top: 15px;
}
.qty-input {
    width: 60px;
    padding: 4px 8px;
    border: 2px solid var(--border);
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
}

/* ---- Checkout ---- */
.payment-options { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}
.payment-option.active {
    border-color: var(--gold);
    background: rgba(201,168,76,.04);
}
.payment-option.disabled {
    opacity: .4;
    cursor: not-allowed;
    background: #f5f5f5;
}
.payment-option input[type="radio"] { accent-color: var(--gold); }
.payment-option .payment-icon { flex-shrink: 0; color: var(--gold); }
.payment-option.disabled .payment-icon { color: var(--text-light); }
.payment-option .label { font-weight: 600; }
.payment-option .sublabel { font-size: .8rem; color: var(--text-light); }

/* ---- Order Status ---- */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.status-pending { background: #fff3cd; color: #856404; }
.status-paid { background: #d4edda; color: #155724; }
.status-ready { background: #e8daef; color: #6c3483; }
.status-shipped { background: #d1ecf1; color: #0c5460; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* ---- Admin Sidebar Layout ---- */
.admin-layout { display: flex; min-height: calc(100vh - 70px); }
.admin-sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 30px 0;
    flex-shrink: 0;
}
.admin-sidebar .nav-item {
    display: block;
    padding: 12px 30px;
    color: rgba(255,255,255,.7);
    font-size: .9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}
.admin-sidebar .nav-item:hover, .admin-sidebar .nav-item.active {
    color: var(--gold);
    background: rgba(255,255,255,.05);
    border-left-color: var(--gold);
}
.admin-sidebar .sidebar-title {
    color: rgba(255,255,255,.4);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 30px 10px;
}
.admin-content { flex: 1; padding: 30px 40px; overflow-y: auto; }

/* ---- Stat Cards ---- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 30px; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
}
.stat-card .stat-value { font-size: 2rem; font-weight: 800; color: var(--dark); }
.stat-card .stat-label { font-size: .85rem; color: var(--text-light); margin-top: 5px; }

/* ---- Footer ---- */
.footer {
    background: linear-gradient(180deg, #141428 0%, var(--dark) 100%);
    color: rgba(255,255,255,.55);
    padding: 50px 0 20px;
    margin-top: auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}
.footer h4 {
    color: var(--gold);
    margin-bottom: 18px;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.footer p { font-size: .85rem; line-height: 1.7; }
.footer a { color: rgba(255,255,255,.55); font-size: .85rem; display: block; margin-bottom: 10px; }
.footer a:hover { color: var(--gold); }
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    margin: 0 0 20px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .78rem;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom-badges {
    display: flex;
    gap: 16px;
    align-items: center;
    color: rgba(255,255,255,.4);
    font-size: .72rem;
}
.footer-bottom-badges svg { opacity: .5; }

/* ---- Auth Form ---- */
.auth-card {
    max-width: 480px;
    margin: 60px auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.auth-card .auth-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 30px;
    text-align: center;
    color: var(--white);
}
.auth-card .auth-header h2 { font-size: 1.5rem; }
.auth-card .auth-header p { opacity: .7; font-size: .9rem; }
.auth-card .auth-body { padding: 30px; }

/* ---- Order Detail ---- */
.order-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.info-card h4 { color: var(--dark); margin-bottom: 10px; font-size: 1rem; }
.info-card p { font-size: .9rem; color: var(--text-light); margin-bottom: 4px; }

/* ---- Blog Content ---- */
.blog-content h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 35px 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.blog-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 25px 0 10px;
}
.blog-content p { margin-bottom: 16px; }
.blog-content ul, .blog-content ol {
    margin: 12px 0 20px;
    padding-left: 24px;
}
.blog-content li {
    margin-bottom: 8px;
    line-height: 1.75;
}
.blog-content strong { color: var(--dark); }

/* ---- Bank Info Box ---- */
.bank-info-box {
    background: linear-gradient(135deg, #fdf6e3 0%, #fef9ee 100%);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 25px;
    margin: 20px 0;
}
.bank-info-box h4 { color: var(--dark); margin-bottom: 15px; }
.bank-info-box .info-row { display: flex; gap: 10px; margin-bottom: 8px; font-size: .95rem; }
.bank-info-box .info-row strong { min-width: 160px; color: var(--dark); }

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .navbar .container { flex-direction: column; height: auto; padding: 15px 20px; gap: 10px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
    .hero h1 { font-size: 2rem; }
    .hero { padding: 60px 0 50px; }
    .product-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-strip { gap: 25px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; padding: 10px 0; }
    .admin-content { padding: 20px; }
    .order-info-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .top-bar .container { flex-direction: column; gap: 2px; text-align: center; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}
