/* ========================================================
   1. KOMPONEN HEADER & TEKS UMUM
======================================================== */
.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 24px;
    color: var(--text-color);
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-color);
    opacity: 0.7; /* Membuat abu-abu otomatis di siang/malam */
    font-size: 14px;
}

.highlight-gold {
    color: var(--brand-emas);
}

.section-title h2 {
    font-size: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--brand-emas);
    padding-left: 10px;
    color: var(--text-color);
}

/* ========================================================
   2. HERO BANNER UMUM & HERO KARTU
======================================================== */
.hero {
    margin-top: -32px; 
    margin-left: -20px;
    margin-right: -20px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    transition: background 0.3s;
}

/* Penyesuaian Dark Mode Otomatis Khusus Latar Gradasi Hero */
[data-theme="dark"] .hero, 
[data-theme="dark"] .hero1 {
    background: linear-gradient(145deg, #1A1715 0%, #121212 55%, #2A2522 100%);
}

.hero::before {
    content: ''; position: absolute; right: -30px; top: -30px;
    width: 180px; height: 180px;
    border: 40px solid rgba(201, 168, 76, 0.15); border-radius: 50%; pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; left: -20px; bottom: -20px;
    width: 120px; height: 120px;
    border: 30px solid rgba(201, 168, 76, 0.1); border-radius: 50%; pointer-events: none;
}

.hero1 {
    background: linear-gradient(145deg, var(--brand-emas-muda) 0%, #faf6ef 55%, var(--brand-emas) 100%);
    padding: 40px 25px; 
    position: relative; overflow: hidden;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px; text-align: center;
}

.hero1::before {
    content: ''; position: absolute; right: -40px; top: -80px;
    width: 200px; height: 200px; border: 35px solid rgba(201, 168, 76, 0.15); 
    border-radius: 30px; transform: rotate(45deg); pointer-events: none;
}
.hero1::after {
    content: ''; position: absolute; left: -50px; bottom: -60px;
    width: 140px; height: 140px; border: 20px solid rgba(201, 168, 76, 0.12);
    border-radius: 20px; transform: rotate(45deg); pointer-events: none;
}

.hero-banner {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background: transparent; border-radius: 0; margin-left: 0; margin-right: 0; padding: 10px 0;
}
.hero-banner::after { display: none; }

.hero-graphic {
    width: 100%; display: flex; justify-content: center; margin-bottom: 30px;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.15));
}

.mockup-img {
    width: 100%; max-width: 100%; height: auto; border-radius: 25px;
    object-fit: contain; animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-text { text-align: left; position: relative; z-index: 2; }
.hero-text h1 { font-size: 25px; line-height: 1.3; margin-bottom: 15px; color: var(--text-color); font-weight: 800; }
.hero-text p { font-size: 15px; color: var(--text-color); opacity: 0.8; margin-bottom: 25px; line-height: 1.6; }

.hero1 h2 { text-align: left; color: var(--brand-merah); margin-bottom: 10px; position: relative; z-index: 2; }
.hero1 p { text-align: left; color: var(--text-color); opacity: 0.8; position: relative; z-index: 2;}

/* --- TOMBOL UTAMA --- */
.btn-primary {
    display: block; width: fit-content; margin: 0 auto;
    background: linear-gradient(135deg, var(--brand-merah), var(--brand-merah-gelap));
    color: #FFFFFF; text-decoration: none; padding: 12px 28px;
    border-radius: 12px; font-weight: 700; font-size: 15px; border: none; cursor: pointer;
    box-shadow: 0 4px 15px rgba(165, 21, 51, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-primary:hover, .btn-primary:active {
    transform: translateY(-4px); box-shadow: 0 8px 20px rgba(165, 21, 51, 0.5);
}
.hero-text .btn-primary { display: block; width: fit-content; margin: 0 auto; }

.btn-primary-hijau {
    display: block; width: fit-content; margin: 0 auto;
    background: #25D366;
    color: #FFFFFF; text-decoration: none; padding: 12px 28px;
    border-radius: 12px; font-weight: 700; font-size: 15px; border: none; cursor: pointer;
    box-shadow: 0 4px 15px rgba(165, 21, 51, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-primary-hijau:hover, .btn-primary:active {
    transform: translateY(-4px); box-shadow: 0 8px 20px rgba(165, 21, 51, 0.5);
}
.hero1 .btn-primary-hijau { display: block; width: 100%; text-align: center; margin: 10px auto -10px auto; }

/* ========================================================
   3. KONTROL PRODUK (SEARCH & FILTER)
======================================================== */
.product-controls {
    display: flex; flex-direction: column; gap: 15px; margin-bottom: 25px;
    background-color: var(--surface); padding: 20px; border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.search-box input {
    width: 100%; padding: 12px 15px; border: 1.5px solid var(--border-color);
    border-radius: 12px; font-size: 14px; color: var(--text-color);
    background-color: var(--bg-color); outline: none; font-family: inherit;
}
.search-box input:focus {
    border-color: var(--brand-emas); background-color: var(--surface);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.sort-box {
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px dashed var(--border-color); padding-top: 15px;
}
.sort-box label { font-size: 13px; font-weight: 700; color: var(--text-color); opacity: 0.8; }
.sort-box select {
    padding: 8px 12px; border: 1px solid var(--border-color); border-radius: 8px;
    background-color: var(--surface); font-size: 13px; color: var(--text-color);
    font-weight: 500; cursor: pointer; outline: none; font-family: inherit;
}
.sort-box select:focus {
    border-color: var(--brand-merah-gelap); box-shadow: 0 0 0 3px rgba(165, 21, 51, 0.15); 
}
.sort-box select option { padding: 10px; background-color: var(--bg-color); color: var(--text-color); }

/* --- TEKS JUMLAH PRODUK --- */
.product-count-wrapper {
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    font-weight: 500;
}

.product-count-wrapper span {
    font-weight: 600;
    color: var(--text-color);
    font-size: 13px;
}

/* ========================================================
   4. GRID & KARTU PRODUK (GAYA 3D ELEGAN)
======================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.product-card {
    background: var(--surface); border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); cursor: pointer; display: flex;
    flex-direction: column; height: 100%; position: relative;
    border: 1px solid var(--border-color); min-width: 0; width: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card:hover {
    transform: translateY(-8px); border-color: var(--brand-merah);
    box-shadow: 0 20px 40px rgba(165, 21, 51, 0.12);
}

/* Efek Kilap / Shine */
.product-card::after {
    content: ""; position: absolute; top: 0; left: -150%; width: 60%; height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    transform: skewX(-25deg); transition: 0s; pointer-events: none;
}
.product-card:hover::after { left: 150%; transition: left 0.8s ease-in-out; }

.card-image img {
    width: 100%; height: 100%; object-fit: cover; border-bottom: 1px solid var(--border-color);
}
.card-info { padding: 10px; display: flex; flex-direction: column; flex-grow: 1; }
.card-info h2 { font-size: 14px; font-weight: 600; margin-bottom: 5px; line-height: 1.3; color: var(--brand-merah); }
[data-theme="dark"] .card-info h2 {
    color: var(--brand-emas);
}
/* --- 1. BADGE DISKON --- */
.card-image {
    position: relative; /* Menjadi jangkar agar badge tidak lari ke luar gambar */
}
.badge-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--brand-merah), var(--brand-merah-gelap));
    color: #FFFFFF;
    padding: 4px 10px;
    border-radius: 8px 0 8px 0; /* Bentuk asimetris modern */
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(165, 21, 51, 0.3);
}
/* --- 2. META INFO (BERAT & TERJUAL) --- */
.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.weight-info {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.7;
    margin: 0; /* Mereset margin lama */
}
.weight-info i {
    color: var(--brand-emas);
}
.sold-info {
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.9;
    font-weight: 600;
}

.card-meta-secondary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px; /* Jarak sebelum harga */
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--border-color); /* Garis batas tipis pemisah info dan harga */
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 6px; /* Jarak antara deretan bintang dan angka 4.9 */
}

.rating-info .stars {
    display: flex;
    gap: 2px; /* Jarak antar bintang dibuat sangat rapat (menyatu) */
    color: #FDE047; /* Kuning emas cerah */
    filter: drop-shadow(0 1px 2px rgba(253, 224, 71, 0.4)); 
}

.rating-info .stars i {
    font-size: 10px; /* Ukuran bintang sedikit dikecilkan agar terlihat elegan ala UI Tokopedia */
}

.rating-info .rating-score {
    font-size: 11px;
    color: var(--text-color);
}

.stock-info {
    font-size: 11px;
    color: var(--text-color);
    opacity: 0.6; /* Dibuat lebih redup agar pelanggan tetap fokus pada bintang dan terjual */
    font-weight: 500;
}

/* --- 3. BUNGKUSAN HARGA DISKON & CORET --- */
.price-wrapper {
    display: flex;
    align-items: baseline; /* Sejajarkan bagian bawah teks */
    gap: 8px;
    margin-bottom: 15px;
	justify-content: space-between;
}
.price {
    font-size: 16px;
    color: var(--brand-emas);
    font-weight: 800;
    margin: 0; /* Mereset margin lama */
}
.price-coret {
    font-size: 12px;
    color: var(--brand-merah);
    opacity: 0.5; /* Membuatnya redup otomatis di mode siang/malam */
    text-decoration: line-through; /* Efek garis coret */
    font-weight: 500;
}
[data-theme="dark"] .price-coret {
    color: var(--text-color);
}
/* --- 4. KONTROL TOMBOL KERANJANG & WA --- */
.card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto; /* Memastikan tombol selalu terdorong ke bagian paling bawah kartu */
}
.btn-cart {
    flex: 1; /* Membuat tombol memanjang mengisi sisa ruang */
    background: linear-gradient(135deg, var(--brand-merah), var(--brand-merah-gelap));
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-cart:hover {
    box-shadow: 0 4px 10px rgba(165, 21, 51, 0.3);
    transform: translateY(-2px);
}
.btn-wa {
    width: 38px;
    height: 38px;
    flex-shrink: 0; /* Mencegah tombol WA gepeng tertekan tombol keranjang */
    background-color: #25D366;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-wa:hover {
    background-color: #1eb85a;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}
/* Penyesuaian Tombol WA khusus Mode Malam */
[data-theme="dark"] .btn-wa {
    background-color: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.4);
}
[data-theme="dark"] .btn-wa:hover {
    background-color: #25D366;
    color: #121212;
}

/* ========================================================
   5. DETAIL PRODUK (Mobile-First)
======================================================== */
.btn-back {
    display: inline-flex; align-items: center; gap: 8px; color: var(--text-color);
    text-decoration: none; font-weight: 600; font-size: 14px; margin-bottom: 25px; transition: all 0.3s ease;
}
.btn-back:hover { color: var(--brand-emas); transform: translateX(-5px); }

.product-detail-container {
    background-color: var(--surface); border-radius: 16px; padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03); display: flex; flex-direction: column;
    gap: 30px; margin-bottom: 40px; border: 1px solid var(--border-color);
}

.detail-image {
    width: 100%; border-radius: 12px; overflow: hidden; background-color: var(--bg-color);
    display: flex; justify-content: center; align-items: center; padding: 20px;
}
.detail-image img { width: 100%; max-width: 300px; height: auto; object-fit: contain; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1)); }

.detail-info h1 { font-size: 24px; font-weight: 800; color: var(--brand-merah); margin-bottom: 10px; line-height: 1.3; }
[data-theme="dark"] .detail-info h1 {
    color: var(--brand-emas);
}
.detail-price { font-size: 22px; font-weight: 700; color: var(--brand-emas); margin-bottom: 25px; border-bottom: 1px solid var(--border-color); padding-bottom: 15px; }
.detail-price .unit { font-size: 13px; color: var(--text-color); opacity: 0.6; font-weight: 400; }

.detail-description h3 { font-size: 15px; margin-bottom: 10px; color: var(--text-color); }
.detail-description ul { list-style-type: none; padding: 0; margin: 0 0 25px 0; }
.detail-description ul li { font-size: 14px; color: var(--text-color); opacity: 0.8; margin-bottom: 8px; padding-left: 20px; position: relative; }
.detail-description ul li::before { content: '✓'; position: absolute; left: 0; color: var(--brand-emas); font-weight: bold; }

.order-form { background-color: var(--bg-color); padding: 20px; border-radius: 12px; }
.order-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 10px; color: var(--text-color); opacity: 0.9; }

.qty-control {
    display: flex; align-items: center; background-color: var(--surface);
    border: 1.5px solid var(--border-color); border-radius: 10px; width: fit-content; overflow: hidden; margin-bottom: 20px;
}
.qty-control button {
    background: none; border: none; width: 40px; height: 40px; font-size: 18px;
    font-weight: bold; color: var(--text-color); cursor: pointer; transition: background 0.3s ease;
}
.qty-control button:active { background-color: var(--border-color); }
.qty-control input {
    width: 50px; height: 40px; border: none; text-align: center; font-size: 16px;
    font-weight: 700; color: var(--text-color); background: transparent; -moz-appearance: textfield; 
}
.qty-control input::-webkit-outer-spin-button, .qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.btn-add-cart {
    width: 100%; background: linear-gradient(135deg, var(--brand-merah), var(--brand-merah-gelap)); color: #FFF; border: none; padding: 15px;
    border-radius: 8px; font-size: 16px; font-weight: 600; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: all 0.3s ease;
}
.btn-add-cart:hover {
    transform: translateY(-2px); box-shadow: 0 8px 15px rgba(165, 21, 51, 0.3);
}
/* ========================================================
   --- EFEK ZOOM GAMBAR (LIGHTBOX) ---
======================================================== */
.detail-image {
    position: relative;
    cursor: zoom-in; /* Mengubah kursor jadi kaca pembesar di PC */
}

/* Petunjuk kaca pembesar di pojok kanan bawah gambar */
.zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    pointer-events: none; /* Agar tidak mengganggu klik gambar */
    transition: all 0.3s ease;
}

.detail-image:hover .zoom-hint {
    background: var(--brand-emas);
    transform: scale(1.1);
}

/* --- KOTAK GELAP FULL SCREEN --- */
.lightbox-modal {
    display: none; /* Sembunyikan secara default */
    position: fixed;
    z-index: 10000; /* Paling depan menutupi header & bottom nav */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Hitam transparan */
    backdrop-filter: blur(5px); /* Efek kaca buram premium */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

/* --- GAMBAR YANG DIPERBESAR --- */
.lightbox-content {
    max-width: 95%;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    
    /* Animasi membal saat muncul */
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

/* --- TOMBOL SILANG --- */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #FFFFFF;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--brand-emas);
}

/* --- META INFO HALAMAN DETAIL (Bintang, Terjual, Berat) --- */
.detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Mencegah elemen bertumpuk jika layar sangat kecil */
    gap: 12px;
    margin-bottom: 12px;
}

.meta-divider {
    color: var(--border-color);
    font-size: 14px;
}

/* --- INFORMASI STOK HALAMAN DETAIL --- */
.detail-stock {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border-color); /* Garis pembatas sebelum masuk ke Harga */
}

.detail-stock strong {
    color: var(--brand-emas);
    font-weight: 700;
    opacity: 1;
}

/* --- BUNGKUSAN HARGA HALAMAN DETAIL --- */
.detail-price-wrapper {
    display: flex;
    align-items: baseline; /* Menyamaratakan garis bawah teks harga */
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

/* Mereset margin bawah pada harga utama karena sudah dipindah ke wrapper */
.detail-price {
    margin-bottom: 0; 
    border-bottom: none;
    padding-bottom: 0;
	color: var(--brand-merah);
}
[data-theme="dark"] .detail-price {
    color: var(--brand-emas);
}
.detail-price-coret {
    font-size: 16px;
    color: var(--text-color);
    opacity: 0.5;
    text-decoration: line-through;
    font-weight: 500;
    margin: 0;
}

/* ========================================================
   6. KERANJANG (CHECKOUT)
======================================================== */
.checkout-container {
    background-color: var(--surface); border-radius: 16px; padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin-bottom: 40px;
}
#cart-items-list { list-style-type: none; padding: 0; margin: 0; }

/* Struktur Item Keranjang dengan Thumbnail */
.cart-item { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 15px; /* Jarak antara gambar, teks, dan tombol hapus */
    padding: 15px 0; 
    border-bottom: 1px solid var(--border-color); 
    transition: all 0.3s ease; 
}
.cart-item:last-child { border-bottom: none; }

/* --- GAYA THUMBNAIL GAMBAR (BARU) --- */
.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 10px; /* Sudut membulat modern */
    object-fit: cover; /* Menjaga proporsi gambar agar tidak gepeng */
    border: 1px solid var(--border-color);
    flex-shrink: 0; /* Mengunci ukuran gambar agar tidak mengecil tertekan teks */
}

/* Memastikan area teks mengisi sisa ruang yang ada */
.item-details {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-details strong { color: var(--text-color); font-size: 14px; display: block; margin-bottom: 4px; line-height: 1.2; }
.item-details small { color: var(--text-color); opacity: 0.7; font-size: 12px; }
.item-total { font-weight: 700; color: var(--brand-emas); margin-right: 10px; font-size: 14px; white-space: nowrap; }

/* Tombol Hapus */
.btn-remove {
    background-color: rgba(207, 29, 63, 0.1); color: var(--brand-merah); border: none; border-radius: 8px;
    width: 32px; height: 32px; flex-shrink: 0; cursor: pointer; font-weight: bold; display: flex; justify-content: center; align-items: center; transition: all 0.3s ease;
}
.btn-remove:hover { background-color: var(--brand-merah); color: #FFFFFF; transform: scale(1.1); }
.total-section { padding: 20px 0; border-top: 2px dashed var(--border-color); border-bottom: 2px dashed var(--border-color); margin: 20px 0; text-align: right; }
.total-section h3 { font-size: 18px; color: var(--text-color); margin-bottom: 5px; }
.total-weight-display { font-size: 13px; color: var(--text-color); opacity: 0.7; margin: 0; }
.total-weight-display span { font-weight: 600; color: var(--text-color); opacity: 1;}

.customer-form { background-color: var(--bg-color); padding: 20px; border-radius: 12px; margin-top: 25px; }
.customer-form label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 600; color: var(--text-color); }
.customer-form input, .customer-form textarea {
    width: 100%; padding: 12px 15px; margin-bottom: 20px; border: 1.5px solid var(--border-color); border-radius: 8px;
    font-size: 14px; font-family: inherit; transition: border-color 0.3s; color: var(--text-color); background-color: var(--surface); outline: none;
}
.customer-form input:focus, .customer-form textarea:focus { border-color: var(--brand-emas); box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1); }


/* ========================================================
   7. ABOUT US & LOKASI
======================================================== */
.promo-reseller, .about-details {
    background: var(--surface); padding: 30px 25px; border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin-bottom: 40px; text-align: center;
}
.promo-reseller h2, .about-details h2 {
    color: var(--brand-emas); font-size: 20px; margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color); padding-bottom: 10px;
}
.promo-reseller p, .about-details p { color: var(--text-color); opacity: 0.8; line-height: 1.6; margin-bottom: 25px; font-size: 14px; }
.about-details { text-align: left; }
.about-details ul { color: var(--text-color); opacity: 0.8; line-height: 1.7; font-size: 14px; padding-left: 20px; margin-bottom: 25px; }
.about-details ul li { margin-bottom: 10px; }
.about-action { text-align: center; margin-top: 35px; }
.about-action .btn-primary { width: 100%; display: block; box-sizing: border-box; }

.map-section { text-align: center; }
.map-section p { margin-bottom: 20px !important; }
.map-container {
    position: relative; width: 100%; height: 0; padding-bottom: 56.25%;
    border-radius: 12px; overflow: hidden; box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}
.map-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }


/* ========================================================
   8. TOAST NOTIFICATION
======================================================== */
.app-toast {
    position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%);
    background-color: #2A2522; color: #FFFFFF; padding: 12px 24px; border-radius: 50px;
    font-size: 13.5px; font-weight: 600; display: flex; align-items: center; gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); border: 1px solid rgba(201, 168, 76, 0.25);
    z-index: 9999; width: max-content; max-width: 90%; pointer-events: none;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease; opacity: 0;
}
.app-toast svg { flex-shrink: 0; }
.app-toast span { line-height: 1.4; }
.app-toast.show { bottom: 100px; opacity: 1; }