/* =========================================
   FANOMART - Components Styles
   ========================================= */

/* --- Header Styles --- */
.header-main { background-color: var(--white); padding: 15px 0; box-shadow: var(--shadow-light); }
.header-container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.logo a { font-size: 28px; font-weight: bold; color: var(--primary-color); letter-spacing: 1px; }
.search-bar { display: flex; flex: 1; min-width: 250px; margin: 0 20px; }
.search-bar input { width: 100%; padding: 10px 15px; border: 1px solid #ddd; border-radius: var(--border-radius) 0 0 var(--border-radius); outline: none; font-family: var(--main-font); }
.search-bar input:focus { border-color: var(--primary-color); }
.search-bar button { padding: 10px 20px; background-color: var(--primary-color); color: var(--white); border: none; border-radius: 0 var(--border-radius) var(--border-radius) 0; cursor: pointer; font-weight: bold; transition: background var(--transition-fast); }
.search-bar button:hover { background-color: #e84150; }
.header-icons { display: flex; gap: 15px; }
.header-icons a { color: var(--text-main); font-weight: bold; display: flex; align-items: center; gap: 5px; }
.header-icons a:hover { color: var(--primary-color); }
.header-nav { background-color: var(--secondary-color); }
.header-nav ul { display: flex; padding: 12px 0; gap: 25px; overflow-x: auto; }
.header-nav ul li a { color: var(--white); font-size: 15px; font-weight: 500; }
.header-nav ul li a:hover { color: var(--primary-color); }

/* --- Hero Banner Styles --- */
.hero-section { background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)); color: var(--white); padding: 60px 40px; border-radius: var(--border-radius); margin-top: 20px; display: flex; align-items: center; justify-content: space-between; box-shadow: var(--shadow-light); }
.hero-content { max-width: 50%; }
.hero-content h1 { font-size: 42px; margin-bottom: 15px; line-height: 1.2; }
.hero-content p { font-size: 16px; margin-bottom: 25px; opacity: 0.9; line-height: 1.6; }
.hero-btn { display: inline-block; padding: 12px 30px; background-color: var(--white); color: var(--primary-color); font-weight: bold; border-radius: var(--border-radius); font-size: 16px; box-shadow: var(--shadow-light); }
.hero-btn:hover { background-color: var(--secondary-color); color: var(--white); transform: translateY(-2px); }
.hero-image { max-width: 45%; width: 100%; }
@media (max-width: 768px) { .hero-section { flex-direction: column; text-align: center; padding: 40px 20px; } .hero-content { max-width: 100%; margin-bottom: 30px; } .hero-content h1 { font-size: 32px; } .hero-image { max-width: 100%; } }

/* --- Categories Section Styles --- */
.categories-section { margin-top: 40px; }
.section-title { font-size: 22px; color: var(--text-main); margin-bottom: 20px; text-align: left; border-left: 4px solid var(--primary-color); padding-left: 10px; }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 15px; }
.category-card { background-color: var(--white); border-radius: var(--border-radius); padding: 20px 10px; text-align: center; box-shadow: var(--shadow-light); transition: var(--transition-fast); cursor: pointer; border: 1px solid #eee; }
.category-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: var(--primary-color); }
.category-icon { font-size: 30px; margin-bottom: 10px; }
.category-card h4 { font-size: 14px; color: var(--text-main); }

/* --- Product Cards Styles --- */
.products-section { margin-top: 50px; margin-bottom: 50px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.product-card { background-color: var(--white); border-radius: var(--border-radius); padding: 15px; box-shadow: var(--shadow-light); transition: var(--transition-fast); border: 1px solid #eee; position: relative; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); border-color: var(--primary-color); }
.product-badge { position: absolute; top: 10px; left: 10px; background-color: var(--primary-color); color: var(--white); padding: 4px 8px; font-size: 12px; font-weight: bold; border-radius: 4px; z-index: 1; }
.product-image-box { background-color: #f8f9fa; height: 180px; border-radius: var(--border-radius); margin-bottom: 15px; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 14px; border: 1px dashed #ddd; }
.product-title { font-size: 16px; color: var(--text-main); margin-bottom: 10px; font-weight: 500; line-height: 1.4; }
.product-price-box { margin-bottom: 15px; flex-grow: 1; }
.product-price { font-size: 18px; font-weight: bold; color: var(--primary-color); }
.old-price { font-size: 14px; color: var(--text-muted); text-decoration: line-through; margin-left: 5px; }
.add-to-cart-btn { width: 100%; padding: 10px; background-color: var(--secondary-color); color: var(--white); border: none; border-radius: var(--border-radius); cursor: pointer; font-weight: bold; transition: var(--transition-fast); }
.add-to-cart-btn:hover { background-color: var(--primary-color); }

/* --- Footer Styles --- */
.footer-main { background-color: var(--secondary-color); color: var(--white); padding: 50px 0 20px; margin-top: 50px; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 30px; }
.footer-column h3 { color: var(--primary-color); margin-bottom: 20px; font-size: 18px; }
.footer-column p, .footer-column ul li a { color: #ccc; font-size: 14px; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul li a:hover { color: var(--primary-color); padding-right: 5px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; color: #ccc; }

/* --- Cart Page Styles --- */
.cart-page-section { margin: 40px 0; }
.cart-container { display: flex; flex-wrap: wrap; gap: 30px; }
.cart-items-wrapper { flex: 2; min-width: 300px; background: var(--white); padding: 20px; border-radius: var(--border-radius); box-shadow: var(--shadow-light); }
.cart-summary { flex: 1; min-width: 250px; background: var(--white); padding: 20px; border-radius: var(--border-radius); box-shadow: var(--shadow-light); height: fit-content; }
.cart-item { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #eee; flex-wrap: wrap; gap: 10px; }
.cart-item:last-child { border-bottom: none; }
.cart-item-info { display: flex; align-items: center; gap: 15px; flex: 2; min-width: 200px; }
.cart-item-img { width: 60px; height: 60px; background: #f8f9fa; display: flex; align-items: center; justify-content: center; border-radius: 4px; border: 1px dashed #ddd; font-size: 10px; color: #aaa; }
.cart-item-title { font-weight: 500; color: var(--text-main); font-size: 15px; }
.cart-quantity { display: flex; align-items: center; gap: 10px; }
.qty-btn { background: #eee; border: none; width: 25px; height: 25px; border-radius: 4px; cursor: pointer; font-weight: bold; }
.qty-btn:hover { background: #ddd; }
.cart-item-price { font-weight: bold; color: var(--primary-color); min-width: 80px; text-align: right; }
.remove-btn { color: #ff4757; background: none; border: none; cursor: pointer; font-size: 18px; margin-left: 10px; }
.summary-line { display: flex; justify-content: space-between; margin-bottom: 15px; color: var(--text-main); }
.summary-total { font-size: 18px; font-weight: bold; color: var(--primary-color); border-top: 1px solid #eee; padding-top: 15px; }
.checkout-btn { width: 100%; padding: 12px; background: var(--primary-color); color: var(--white); border: none; border-radius: var(--border-radius); font-weight: bold; cursor: pointer; margin-top: 20px; transition: var(--transition-fast); text-align: center; display: block; }
.checkout-btn:hover { background: #e84150; }
.empty-cart-msg { text-align: center; padding: 40px 20px; }
.empty-cart-msg h3 { margin-bottom: 10px; color: var(--text-main); }
.empty-cart-msg p { color: var(--text-muted); margin-bottom: 20px; }

/* --- Checkout Page Styles --- */
.checkout-container { display: flex; flex-wrap: wrap; gap: 30px; margin: 40px 0; }
.checkout-form-wrapper { flex: 2; min-width: 300px; background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow-light); }
.checkout-form-wrapper h3 { margin-bottom: 20px; color: var(--primary-color); border-bottom: 2px solid #eee; padding-bottom: 10px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: var(--text-main); font-size: 14px; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--main-font); outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary-color); }
.checkout-summary-wrapper { flex: 1; min-width: 250px; background: #f8f9fa; padding: 25px; border-radius: var(--border-radius); border: 1px solid #ddd; height: fit-content; }
.place-order-btn { width: 100%; padding: 15px; background: #2ecc71; color: var(--white); border: none; border-radius: var(--border-radius); font-size: 18px; font-weight: bold; cursor: pointer; margin-top: 20px; transition: var(--transition-fast); }
.place-order-btn:hover { background: #27ae60; transform: translateY(-2px); }

/* --- Login & Registration Page Styles --- */
.auth-section { margin: 50px auto; max-width: 500px; background: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow-hover); overflow: hidden; }
.auth-header { text-align: center; padding: 30px 20px 20px; background: #f8f9fa; border-bottom: 1px solid #ddd; }
.auth-header h2 { color: var(--primary-color); margin-bottom: 10px; }
.auth-header p { color: var(--text-muted); font-size: 14px; }
.auth-toggle-box { display: flex; border-bottom: 2px solid #eee; }
.toggle-btn { flex: 1; padding: 15px; border: none; background: transparent; font-weight: bold; font-size: 16px; cursor: pointer; color: var(--text-muted); transition: var(--transition-fast); }
.toggle-btn.active { color: var(--primary-color); border-bottom: 3px solid var(--primary-color); background: #fffafb; }
.auth-form-container { padding: 30px; }
.auth-form { display: none; }
.auth-form.active { display: block; }
.auth-input-group { margin-bottom: 20px; }
.auth-input-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 14px; color: var(--text-main); }
.auth-input-group input { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--main-font); outline: none; transition: var(--transition-fast); }
.auth-input-group input:focus { border-color: var(--primary-color); box-shadow: 0 0 5px rgba(255, 71, 87, 0.2); }
.auth-submit-btn { width: 100%; padding: 12px; background: var(--primary-color); color: var(--white); border: none; border-radius: 4px; font-size: 16px; font-weight: bold; cursor: pointer; transition: var(--transition-fast); }
.auth-submit-btn:hover { background: #e84150; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-muted); }
.auth-footer a { color: var(--accent-color); font-weight: bold; }

/* =========================================
   Dashboard Styles (Customer & Partner)
   ========================================= */
.dashboard-wrapper { display: flex; gap: 30px; margin: 40px 0; flex-wrap: wrap; }
.dashboard-sidebar { flex: 1; min-width: 250px; background: var(--white); padding: 25px 20px; border-radius: var(--border-radius); box-shadow: var(--shadow-light); height: fit-content; }
.user-profile-brief { text-align: center; border-bottom: 1px solid #eee; padding-bottom: 20px; margin-bottom: 20px; }
.user-avatar { font-size: 40px; background: #f1f2f6; width: 80px; height: 80px; line-height: 80px; border-radius: 50%; margin: 0 auto 10px; color: var(--primary-color); }
.user-profile-brief h4 { color: var(--text-main); font-size: 18px; margin-bottom: 5px; }
.user-profile-brief p { color: var(--text-muted); font-size: 14px; }

.dashboard-nav { list-style: none; }
.dashboard-nav li { margin-bottom: 10px; }
.dashboard-nav li a { display: block; padding: 12px 15px; color: var(--text-main); font-weight: 500; border-radius: 4px; transition: var(--transition-fast); }
.dashboard-nav li a:hover, .dashboard-nav li.active a { background: #f8f9fa; color: var(--primary-color); border-left: 3px solid var(--primary-color); }

.dashboard-content { flex: 3; min-width: 300px; background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow-light); }
.dashboard-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
.stat-card { background: #f8f9fa; padding: 20px; border-radius: var(--border-radius); text-align: center; border: 1px solid #eee; }
.stat-card h3 { color: var(--primary-color); font-size: 28px; margin-bottom: 5px; }
.stat-card p { color: var(--text-muted); font-size: 14px; font-weight: 500; }

.table-responsive { overflow-x: auto; margin-top: 15px; }
.dashboard-table { width: 100%; border-collapse: collapse; min-width: 500px; }
.dashboard-table th, .dashboard-table td { padding: 15px; border-bottom: 1px solid #eee; text-align: left; font-size: 14px; }
.dashboard-table th { background: #f8f9fa; color: var(--text-main); font-weight: bold; }
.status-badge { padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: bold; }
.status-badge.processing { background: #f39c12; color: white; }
.status-badge.delivered { background: #2ecc71; color: white; }
.view-btn { padding: 6px 12px; background: var(--secondary-color); color: white; border: none; border-radius: 4px; cursor: pointer; transition: 0.3s; }
.view-btn:hover { background: var(--primary-color); }

/* =========================================
   Fano Partner Specific Styles
   ========================================= */
.fano-link-box {
    background: #f1f2f6;
    padding: 20px;
    border-radius: var(--border-radius);
    margin: 25px 0;
    border: 1px dashed var(--primary-color);
}

.fano-link-box h4 {
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 16px;
}

.link-input-group {
    display: flex;
    gap: 10px;
}

.link-input-group input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--main-font);
    background: var(--white);
    color: var(--text-muted);
}

.copy-btn {
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    background: var(--primary-color);
}

/* =========================================
   Product Details Page Styles
   ========================================= */
.single-product-section { margin: 50px 0; }
.single-product-container { display: flex; flex-wrap: wrap; gap: 40px; background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow-light); }

.product-gallery { flex: 1; min-width: 300px; background: #f8f9fa; border-radius: var(--border-radius); display: flex; align-items: center; justify-content: center; min-height: 400px; border: 1px dashed #ddd; font-size: 24px; color: #aaa; }

.product-info { flex: 1; min-width: 300px; display: flex; flex-direction: column; justify-content: center; }
.product-info .sp-badge { display: inline-block; padding: 5px 12px; background: var(--primary-color); color: var(--white); border-radius: 4px; font-size: 13px; font-weight: bold; margin-bottom: 20px; width: fit-content; }
.product-info h1 { font-size: 32px; color: var(--text-main); margin-bottom: 15px; line-height: 1.3; }

.product-info .price-box { margin-bottom: 25px; display: flex; align-items: center; gap: 15px; }
.product-info .price-box .current-price { font-size: 30px; font-weight: bold; color: var(--primary-color); }
.product-info .price-box .old-price { font-size: 20px; color: var(--text-muted); text-decoration: line-through; }

.product-info .sp-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 30px; font-size: 15px; }

.action-box { display: flex; gap: 15px; align-items: center; border-top: 1px solid #eee; padding-top: 25px; }
.btn-add-cart-large { flex: 1; padding: 15px; background: var(--secondary-color); color: var(--white); border: none; border-radius: var(--border-radius); font-size: 18px; font-weight: bold; cursor: pointer; transition: var(--transition-fast); display: flex; justify-content: center; align-items: center; gap: 10px; }
.btn-add-cart-large:hover { background: var(--primary-color); transform: translateY(-2px); }

/* =========================================
   About Us Page Styles
   ========================================= */
.about-section { margin: 50px 0; }
.about-hero { text-align: center; margin-bottom: 50px; background: #f8f9fa; padding: 50px 20px; border-radius: var(--border-radius); border: 1px solid #eee; }
.about-hero h1 { color: var(--primary-color); font-size: 36px; margin-bottom: 15px; }
.about-hero p { color: var(--text-muted); font-size: 16px; max-width: 700px; margin: 0 auto; line-height: 1.6; }

.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-bottom: 50px; }
.about-card { background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow-light); border-top: 4px solid var(--secondary-color); }
.about-card.partner-card { border-top-color: #2ecc71; }
.about-card h3 { color: var(--text-main); margin-bottom: 15px; font-size: 22px; }
.about-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 15px; }
.about-card ul { list-style-type: none; padding-left: 0; }
.about-card ul li { margin-bottom: 10px; color: var(--text-muted); font-size: 14px; position: relative; padding-left: 25px; }
.about-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary-color); font-weight: bold; }

/* =========================================
   Home Page Image Slider Styles
   ========================================= */
.slider-container { position: relative; max-width: 100%; margin-top: 20px; overflow: hidden; border-radius: var(--border-radius); box-shadow: var(--shadow-light); }
.slide { display: none; padding: 60px 40px; background-size: cover; background-position: center; color: var(--white); min-height: 350px; align-items: center; }
.slide.active { display: flex; animation: fade 0.8s ease-in-out; }
@keyframes fade { from { opacity: 0.4; } to { opacity: 1; } }

/* Slide Backgrounds */
.slide-1 { background: linear-gradient(135deg, rgba(44,62,80,0.9), rgba(232,65,80,0.9)), url('https://via.placeholder.com/1200x500/2c3e50/ffffff?text=Slide+1') no-repeat center; }
.slide-2 { background: linear-gradient(135deg, rgba(46,204,113,0.9), rgba(39,174,96,0.9)), url('https://via.placeholder.com/1200x500/2ecc71/ffffff?text=Slide+2') no-repeat center; }
.slide-3 { background: linear-gradient(135deg, rgba(243,156,18,0.9), rgba(211,84,0,0.9)), url('https://via.placeholder.com/1200x500/f39c12/ffffff?text=Slide+3') no-repeat center; }

.slide-content { max-width: 50%; z-index: 2; position: relative; }
.slide-content h1 { font-size: 42px; margin-bottom: 15px; line-height: 1.2; }
.slide-content p { font-size: 16px; margin-bottom: 25px; opacity: 0.9; }

/* Slider Controls */
.slider-btn { cursor: pointer; position: absolute; top: 50%; width: auto; padding: 16px; margin-top: -22px; color: white; font-weight: bold; font-size: 20px; transition: 0.6s ease; border-radius: 0 3px 3px 0; user-select: none; background-color: rgba(0,0,0,0.3); border: none; z-index: 5; }
.slider-btn.next { right: 0; border-radius: 3px 0 0 3px; }
.slider-btn:hover { background-color: rgba(0,0,0,0.8); }

/* Dots */
.dot-container { text-align: center; position: absolute; bottom: 20px; width: 100%; z-index: 5; }
.dot { cursor: pointer; height: 12px; width: 12px; margin: 0 5px; background-color: rgba(255,255,255,0.5); border-radius: 50%; display: inline-block; transition: background-color 0.6s ease; }
.dot.active, .dot:hover { background-color: var(--white); }

@media (max-width: 768px) { .slide-content { max-width: 100%; text-align: center; } .slide-content h1 { font-size: 28px; } }

/* =========================================
   Wishlist Heart Button Styles
   ========================================= */
.wishlist-btn { position: absolute; top: 10px; right: 10px; background: var(--white); border: 1px solid #ddd; border-radius: 50%; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; color: #ccc; z-index: 2; transition: var(--transition-fast); }
.wishlist-btn:hover { color: #ff4757; border-color: #ff4757; transform: scale(1.1); }
.wishlist-btn.active { color: #ff4757; border-color: #ff4757; background: #fff0f1; }

/* =========================================
   Product Reviews & Ratings Styles
   ========================================= */
.reviews-section { margin-top: 40px; background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow-light); width: 100%; }
.reviews-section h3 { margin-bottom: 20px; color: var(--text-main); font-size: 22px; border-bottom: 2px solid #eee; padding-bottom: 10px; }

.review-card { border-bottom: 1px solid #eee; padding: 20px 0; }
.review-card:last-child { border-bottom: none; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.reviewer-info { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar { width: 40px; height: 40px; background: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.reviewer-name { font-weight: bold; color: var(--text-main); }
.review-date { color: var(--text-muted); font-size: 13px; }
.stars { color: #f39c12; font-size: 16px; margin-bottom: 8px; letter-spacing: 2px; }
.review-text { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.add-review-box { margin-top: 30px; background: #f8f9fa; padding: 25px; border-radius: var(--border-radius); border: 1px dashed #ddd; }
.add-review-box h4 { margin-bottom: 15px; color: var(--text-main); }
.rating-select { padding: 10px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--main-font); width: 100%; max-width: 200px; outline: none; }

/* =========================================
   Toast Notifications (Pop-up Messages)
   ========================================= */
#toast-container { position: fixed; bottom: 80px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--secondary-color); color: var(--white); padding: 12px 25px; border-radius: var(--border-radius); box-shadow: var(--shadow-hover); font-size: 15px; font-weight: 500; opacity: 0; transform: translateY(20px); animation: showToast 0.3s forwards, hideToast 0.3s forwards 2.7s; display: flex; align-items: center; gap: 10px; }
.toast.success { background: #2ecc71; border-left: 4px solid #27ae60; }
.toast.error { background: #e74c3c; border-left: 4px solid #c0392b; }
@keyframes showToast { to { opacity: 1; transform: translateY(0); } }
@keyframes hideToast { to { opacity: 0; transform: translateY(-20px); } }

/* =========================================
   Mobile Bottom Navigation Bar
   ========================================= */
.mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: var(--white); box-shadow: 0 -5px 15px rgba(0,0,0,0.05); z-index: 1000; justify-content: space-around; padding: 10px 0 15px; border-top: 1px solid #eee; }
.nav-item { display: flex; flex-direction: column; align-items: center; color: var(--text-muted); text-decoration: none; font-size: 12px; font-weight: 500; transition: var(--transition-fast); }
.nav-item.active, .nav-item:hover { color: var(--primary-color); }
.nav-icon { font-size: 22px; margin-bottom: 4px; position: relative; }
.nav-badge { position: absolute; top: -5px; right: -10px; background: var(--primary-color); color: white; font-size: 10px; padding: 2px 6px; border-radius: 10px; font-weight: bold; }

/* صرف موبائل پر دکھانے کے لیے */
@media (max-width: 768px) {
    .mobile-bottom-nav { display: flex; }
    #toast-container { bottom: 90px; left: 20px; right: 20px; align-items: center; }
    body { padding-bottom: 70px; /* موبائل مینیو کے لیے نیچے جگہ چھوڑنا */ }
}

/* =========================================
   Site Logo Styles
   ========================================= */
.site-logo {
    max-height: 50px; /* آپ یہاں سے لوگو کی اونچائی کم یا زیادہ کر سکتے ہیں */
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-fast);
}
.site-logo:hover {
    transform: scale(1.05);
}

/* موبائل اسکرین کے لیے لوگو کا سائز */
@media (max-width: 768px) {
    .site-logo {
        max-height: 40px;
    }
}
