/* General Body Styles */ body { font-family: 'Vazirmatn', sans-serif; background-color: #f8f9fa; color: #212529; font-weight: 400; direction: rtl; text-align: right; } .overflow-hidden { overflow-x: hidden; } /* Header Styles */ .site-header { background-color: rgba(255, 255, 255, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid #dee2e6; } .site-header .navbar-brand { letter-spacing: 1.5px; } .site-header .nav-link { color: #6c757d; font-weight: 500; transition: color 0.3s ease; } .site-header .nav-link:hover, .site-header .nav-link.active { color: #000; } .site-header .dropdown-menu { border-radius: 0.5rem; border: 1px solid #dee2e6; } .site-header .btn-primary { background-color: #000; border-color: #000; border-radius: 20px; padding: 0.5rem 1rem; transition: all 0.3s ease; } .site-header .btn-primary:hover { background-color: #333; border-color: #333; } /* Main Content Styles */ .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background-size: cover; background-position: center; color: white; } .hero-content { background: rgba(0, 0, 0, 0.5); padding: 4rem; border-radius: 1rem; max-width: 800px; } /* Shop Page Styles */ .product-card { border: none; border-radius: 1rem; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; background-color: #fff; } .product-card:hover { transform: translateY(-10px); box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important; } .product-card .card-img-top { border-radius: 1rem 1rem 0 0; height: 300px; object-fit: cover; } .product-card .card-body { padding: 1.5rem; } /* Footer Styles */ .footer { background-color: #000; color: #fff; padding: 4rem 0; } .footer a { color: #adb5bd; text-decoration: none; transition: color 0.3s ease; } .footer a:hover { color: #fff; } /* Cart Page Styles */ .cart-item img { width: 100px; height: 100px; object-fit: cover; border-radius: 0.5rem; } /* Dark Luxury Theme Specifics */ :root { --luxury-bg: #121212; --luxury-surface: #1e1e1e; --luxury-primary: #c09f80; /* Gold */ --luxury-text: #e0e0e0; --luxury-text-muted: #8e8e8e; --luxury-border: #333; } .dark-luxury body { background-color: var(--luxury-bg); color: var(--luxury-text); } .dark-luxury .site-header { background-color: rgba(30, 30, 30, 0.8); /* Dark surface with transparency */ border-bottom-color: var(--luxury-border); } .dark-luxury .nav-link { color: var(--luxury-text-muted); } .dark-luxury .nav-link:hover, .dark-luxury .nav-link.active { color: var(--luxury-primary); } .dark-luxury .navbar-brand { color: var(--luxury-text); } /* Add any other specific overrides for dark luxury theme */ .dark-luxury .footer { background-color: #0c0c0c; } .track-container { max-width: 600px; margin: 50px auto; padding: 40px; background-color: var(--luxury-surface); border-radius: 15px; border: 1px solid var(--luxury-border); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); text-align: right; } .track-container h1 { font-weight: 700; color: var(--luxury-text); margin-bottom: 20px; } .track-container p { color: var(--luxury-text-muted); } #result-message { color: var(--luxury-text-muted); } .form-group { margin-bottom: 20px; } .form-group label { font-weight: 600; color: var(--luxury-text-muted); display: block; margin-bottom: 8px; } .form-group input { width: 100%; padding: 12px; border-radius: 8px; background-color: var(--luxury-bg); border: 1px solid var(--luxury-border); color: var(--luxury-text); transition: all 0.3s ease; } .form-group input:focus { border-color: var(--luxury-primary); box-shadow: 0 0 8px rgba(192, 159, 128, 0.25); background-color: var(--luxury-bg); } .btn-track { width: 100%; padding: 15px; background-color: var(--luxury-primary); color: var(--luxury-bg); border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; } .btn-track:hover { background-color: #d4b090; /* A lighter shade of gold */ transform: translateY(-2px); box-shadow: 0 5px 15px rgba(192, 159, 128, 0.2); } /* Modal Styles */ .modal { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); } .modal-content { background-color: var(--luxury-surface); margin: 5% auto; padding: 40px; border: 1px solid var(--luxury-border); width: 90%; max-width: 800px; border-radius: 15px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4); animation: slide-down 0.5s ease-out; color: var(--luxury-text); } @keyframes slide-down { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } .close-btn { color: var(--luxury-text-muted); float: left; font-size: 32px; font-weight: bold; cursor: pointer; transition: color 0.3s ease; } .close-btn:hover, .close-btn:focus { color: var(--luxury-primary); } .modal-header { border-bottom: 1px solid var(--luxury-border); padding-bottom: 15px; margin-bottom: 25px; text-align: right; } .modal-header h2 { margin: 0; font-weight: 700; color: var(--luxury-text); } .modal-header p { margin: 5px 0 0; color: var(--luxury-text-muted); font-size: 0.9rem; } .order-details-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 25px; } .detail-box { background-color: var(--luxury-bg); padding: 25px; border-radius: 10px; border: 1px solid var(--luxury-border); } .detail-box h3 { margin-top: 0; margin-bottom: 20px; font-size: 1.2rem; font-weight: 600; color: var(--luxury-primary); border-bottom: 1px solid var(--luxury-border); padding-bottom: 10px; } .detail-box p { margin: 10px 0; color: var(--luxury-text); font-size: 1rem; line-height: 1.7; } .detail-box p strong { color: var(--luxury-text-muted); min-width: 120px; display: inline-block; } .products-table { width: 100%; border-collapse: collapse; margin-top: 10px; } .products-table th, .products-table td { padding: 15px; text-align: right; border-bottom: 1px solid var(--luxury-border); } .products-table th { color: var(--luxury-primary); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; } .products-table tr:last-child td { border-bottom: none; } .products-table img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; vertical-align: middle; margin-left: 15px; } .total-price-container { text-align: left; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--luxury-border); } .total-price-container p { font-size: 1.6rem; font-weight: 700; color: var(--luxury-primary); margin: 0; }