/* FASTSHOPPINGLINK - Premium E-Commerce Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --primary-light: rgba(249,115,22,0.1);
    --primary-glow: rgba(249,115,22,0.3);
    --dark: #0a0a0a;
    --dark-2: #111111;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --dark-card: #1a1a1a;
    --text: #e5e5e5;
    --text-muted: #888888;
    --text-light: #aaaaaa;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.12);
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 30px rgba(249,115,22,0.15);
    --glass-bg: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.08);
    --glass-shadow: 0 8px 32px rgba(0,0,0,0.3);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
    --dark: #ffffff;
    --dark-2: #f8f8f8;
    --dark-3: #f0f0f0;
    --dark-4: #e8e8e8;
    --dark-card: #ffffff;
    --text: #1a1a1a;
    --text-muted: #666666;
    --text-light: #888888;
    --border: rgba(0,0,0,0.08);
    --border-light: rgba(0,0,0,0.12);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --glass-bg: rgba(255,255,255,0.7);
    --glass-border: rgba(255,255,255,0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: var(--transition);
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

::selection { background: var(--primary); color: #fff; }

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* Loading */
.loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 20px; }
.loader-logo span { color: var(--primary); }
.loader-spinner {
    width: 50px; height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.glass-card:hover {
    border-color: rgba(249,115,22,0.2);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

/* Navbar */
.top-bar {
    background: var(--dark-2);
    border-bottom: 1px solid var(--border);
    padding: 6px 0;
    font-size: 12px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: var(--text-muted); margin: 0 10px; }
.top-bar a:hover { color: var(--primary); }

.navbar {
    background: rgba(10,10,10,0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1000;
}
[data-theme="light"] .navbar { background: rgba(255,255,255,0.9); }
.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 8px 0;
}
.navbar-brand { font-size: 24px; font-weight: 900; color: #fff !important; }
.navbar-brand span { color: var(--primary); }
[data-theme="light"] .navbar-brand { color: var(--dark-2) !important; }

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; background: var(--primary-light); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.nav-icons { display: flex; align-items: center; gap: 8px; }
.nav-icons .btn-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}
.nav-icons .btn-icon:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
}
.nav-icons .badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--dark);
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    display: none;
    z-index: 999;
    padding: 6px 0;
    justify-content: space-around;
}
[data-theme="light"] .mobile-bottom-nav { background: rgba(255,255,255,0.95); }
.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 10px;
    padding: 6px 12px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}
.mobile-bottom-nav a i { font-size: 20px; margin-bottom: 2px; }
.mobile-bottom-nav a.active { color: var(--primary); }
.mobile-bottom-nav a .badge-count {
    position: absolute;
    top: 2px;
    right: 4px;
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide .overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    max-width: 650px;
}
.hero-content .subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(249,115,22,0.15);
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(249,115,22,0.2);
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}
.hero-content h1 span { color: var(--primary); }
.hero-content p {
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* Buttons */
.btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none !important;
}
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(249,115,22,0.3);
}
.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249,115,22,0.4);
}
.btn-outline-custom {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: rgba(249,115,22,0.1);
    transform: translateY(-3px);
}
.btn-sm-custom { padding: 10px 22px; font-size: 13px; border-radius: 10px; }
.btn-lg-custom { padding: 18px 40px; font-size: 17px; border-radius: 14px; }

/* Section Styling */
.section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header .label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}
.section-header h2 span { color: var(--primary); }
.section-header p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    height: 100%;
}
.product-card:hover {
    border-color: rgba(249,115,22,0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.product-card .badges {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.product-card .badge-custom {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-discount { background: var(--danger); color: #fff; }
.badge-new { background: var(--success); color: #fff; }
.badge-featured { background: var(--primary); color: #fff; }

.product-card .wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.product-card .wishlist-btn:hover { background: var(--danger); border-color: var(--danger); transform: scale(1.1); }
.product-card .wishlist-btn.active { background: var(--danger); border-color: var(--danger); }

.product-card .product-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
    position: relative;
    overflow: hidden;
}
.product-card .product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-slow);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}
.product-card:hover .product-image img {
    transform: scale(1.1) rotate(-3deg);
}
.product-card .product-image .quick-view {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: var(--transition);
    width: 80%;
}
.product-card:hover .quick-view {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.product-card .product-info {
    padding: 20px;
}
.product-card .product-category {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
}
.product-card .product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card .product-name a { color: var(--text); }
.product-card .product-name a:hover { color: var(--primary); }

.product-card .product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
    font-size: 12px;
}
.product-card .product-rating .stars { color: var(--warning); }
.product-card .product-rating .count { color: var(--text-muted); }

.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-card .product-price .current {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}
.product-card .product-price .original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-card .product-actions {
    display: flex;
    gap: 8px;
    padding: 0 20px 20px;
}
.product-card .product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
}

/* Category Card */
.category-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.category-card:hover::before { transform: scaleX(1); }
.category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,0.2);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.category-card .icon {
    width: 70px; height: 70px;
    margin: 0 auto 18px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}
.category-card:hover .icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}
.category-card h5 { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.category-card p { color: var(--text-muted); font-size: 13px; margin: 0; }

/* Testimonial */
.testimonial-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 30px;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(249,115,22,0.2);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.testimonial-card .stars { color: var(--warning); font-size: 14px; margin-bottom: 15px; }
.testimonial-card .text {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .author .avatar {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}
.testimonial-card .author .name { font-weight: 600; font-size: 14px; }
.testimonial-card .author .title { font-size: 12px; color: var(--text-muted); }

/* Logistics Service Card */
.service-card {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249,115,22,0.2);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.service-card .icon {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition);
}
.service-card:hover .icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    border-radius: 50%;
}
.service-card h4 { font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* Feature Box */
.feature-box {
    text-align: center;
    padding: 30px 20px;
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(249,115,22,0.2);
    box-shadow: var(--shadow-md);
}
.feature-box .icon {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}
.feature-box h5 { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.feature-box p { color: var(--text-muted); font-size: 13px; margin: 0; }

/* Stats Counter */
.stat-item {
    text-align: center;
    padding: 30px 20px;
}
.stat-item .number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item .label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.newsletter-section::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -100px; right: -100px;
}
.newsletter-section::after {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    bottom: -80px; left: -80px;
}
.newsletter-content { position: relative; z-index: 1; }
.newsletter-content h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.newsletter-content p { color: rgba(255,255,255,0.8); font-size: 15px; }
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 5px;
    backdrop-filter: blur(10px);
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: #fff;
    font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
    padding: 14px 30px;
    background: #fff;
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.newsletter-form button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

/* Footer */
.footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}
.footer-widget { margin-bottom: 30px; }
.footer-widget h5 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}
.footer-widget p { color: var(--text-muted); font-size: 13px; line-height: 1.8; }
.footer-widget ul { list-style: none; padding: 0; }
.footer-widget ul li { margin-bottom: 10px; }
.footer-widget ul li a {
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-widget ul li a:hover { color: var(--primary); padding-left: 5px; }
.footer-widget .social-links { display: flex; gap: 10px; }
.footer-widget .social-links a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition);
}
.footer-widget .social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 12px; margin: 0; }

/* WhatsApp Floating */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 999;
    width: 55px; height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Flash Sale */
.flash-sale {
    background: linear-gradient(135deg, var(--dark-2), #1a0a0a);
    position: relative;
    overflow: hidden;
}
.flash-sale::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.05), transparent);
    top: -200px; right: -200px;
    border-radius: 50%;
}
.flash-timer {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}
.flash-timer .time-block {
    text-align: center;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    border: 1px solid var(--border);
    min-width: 70px;
}
.flash-timer .time-block .num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.flash-timer .time-block .label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}

/* Form Styling */
.form-control-custom {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
}
.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
    background: var(--dark-2);
}
.form-control-custom::placeholder { color: var(--text-muted); }
select.form-control-custom { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }

/* Modal */
.modal-content-custom {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.modal-content-custom .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 20px 25px;
}
.modal-content-custom .modal-body { padding: 25px; }
.modal-content-custom .modal-footer { border-top: 1px solid var(--border); padding: 15px 25px; }
.modal-content-custom .btn-close { filter: invert(1); opacity: 0.5; }

/* Page Header */
.page-header {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(249,115,22,0.05), transparent);
    top: -200px; right: -200px;
    border-radius: 50%;
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
}
.page-header .breadcrumb { background: transparent; padding: 0; margin: 10px 0 0; }
.page-header .breadcrumb-item { color: var(--text-muted); font-size: 13px; }
.page-header .breadcrumb-item a { color: var(--text-muted); }
.page-header .breadcrumb-item a:hover { color: var(--primary); }
.page-header .breadcrumb-item.active { color: var(--primary); }

/* Auth Pages */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.auth-card {
    background: var(--dark-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 460px;
    margin: 0 auto;
}
.auth-card .logo-text {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 5px;
}
.auth-card .logo-text span { color: var(--primary); }
.auth-card .subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 13px;
}
.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Cart */
.cart-item {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
}
.cart-item:hover {
    border-color: rgba(249,115,22,0.2);
}
.cart-item .product-image {
    width: 100px; height: 100px;
    background: var(--dark-3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.cart-item .product-image img { max-height: 80px; max-width: 80px; object-fit: contain; }
.quantity-input {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--dark-3);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    width: fit-content;
}
.quantity-input button {
    width: 36px; height: 36px;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}
.quantity-input button:hover { background: var(--primary-light); color: var(--primary); }
.quantity-input input {
    width: 40px; height: 36px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}
.quantity-input input:focus { outline: none; }
.quantity-input input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Order Summary */
.order-summary {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 25px;
    position: sticky;
    top: 90px;
}
.order-summary h5 { font-weight: 700; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid var(--border); }
.order-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}
.order-summary .summary-row .label { color: var(--text-muted); }
.order-summary .summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

/* Tracking */
.tracking-timeline { position: relative; padding-left: 30px; }
.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}
.tracking-item {
    position: relative;
    padding-bottom: 30px;
}
.tracking-item:last-child { padding-bottom: 0; }
.tracking-item .dot {
    position: absolute;
    left: -26px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--dark-3);
    border: 2px solid var(--border);
    top: 2px;
}
.tracking-item.completed .dot { background: var(--success); border-color: var(--success); }
.tracking-item.active .dot { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 0 4px rgba(249,115,22,0.2); }
.tracking-item .status { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.tracking-item .date { color: var(--text-muted); font-size: 12px; }
.tracking-item .desc { color: var(--text-muted); font-size: 13px; margin-top: 4px; }

/* Dashboard */
.dashboard-sidebar {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 25px;
    position: sticky;
    top: 90px;
}
.dashboard-sidebar .user-info { text-align: center; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.dashboard-sidebar .avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    font-weight: 700;
    margin: 0 auto 12px;
}
.dashboard-sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 14px;
    transition: var(--transition);
    margin-bottom: 4px;
}
.dashboard-sidebar .nav-link:hover, .dashboard-sidebar .nav-link.active {
    background: var(--primary-light);
    color: var(--primary);
}

/* Dashboard Cards */
.stat-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: var(--transition);
}
.stat-card:hover {
    border-color: rgba(249,115,22,0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stat-card .icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}
.stat-card .icon.orange { background: var(--primary-light); color: var(--primary); }
.stat-card .icon.green { background: rgba(34,197,94,0.15); color: var(--success); }
.stat-card .icon.blue { background: rgba(59,130,246,0.15); color: var(--info); }
.stat-card .icon.red { background: rgba(239,68,68,0.15); color: var(--danger); }
.stat-card .number {
    font-size: 28px;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}
.stat-card .label { color: var(--text-muted); font-size: 13px; }

/* Table */
.table-custom {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}
.table-custom table { margin: 0; }
.table-custom th {
    background: var(--dark-3);
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    font-weight: 600;
}
.table-custom td {
    padding: 15px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
    vertical-align: middle;
}
.table-custom tr:last-child td { border-bottom: none; }
.table-custom tr:hover td { background: rgba(255,255,255,0.02); }

/* Toast */
.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 99999;
}
.toast-custom {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    animation: slideInRight 0.3s ease;
    min-width: 300px;
    backdrop-filter: blur(20px);
}
.toast-custom .icon { font-size: 20px; }
.toast-custom .icon.success { color: var(--success); }
.toast-custom .icon.error { color: var(--danger); }
.toast-custom .icon.info { color: var(--info); }
.toast-custom .icon.warning { color: var(--warning); }
.toast-custom .content { flex: 1; }
.toast-custom .content .title { font-weight: 600; font-size: 14px; }
.toast-custom .content .msg { font-size: 12px; color: var(--text-muted); }
.toast-custom .close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}
.toast-custom .close:hover { color: #fff; }
.toast-custom.removing { animation: slideOutRight 0.3s ease forwards; }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.5s ease, transform 0.5s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

/* 404 Page */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}
.page-404 .number {
    font-family: var(--font-display);
    font-size: 150px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 20px 60px rgba(249,115,22,0.3);
}
.page-404 h2 { font-size: 28px; font-weight: 800; margin-bottom: 15px; }
.page-404 p { color: var(--text-muted); max-width: 400px; margin: 0 auto 25px; }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}
.empty-state .icon {
    font-size: 80px;
    color: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.3;
}
.empty-state h4 { font-weight: 700; margin-bottom: 10px; }
.empty-state p { color: var(--text-muted); margin-bottom: 20px; }

/* Filter Panel */
.filter-panel {
    background: var(--dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 25px;
    position: sticky;
    top: 90px;
}
.filter-panel h6 { font-weight: 700; font-size: 14px; margin-bottom: 15px; }
.filter-section { margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

/* Quick View Modal */
.quick-view-image {
    width: 100%;
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.quick-view-image img { max-height: 280px; object-fit: contain; }

/* Filter Tags */
.filter-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-tag {
    padding: 5px 12px;
    border-radius: 20px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.filter-tag:hover, .filter-tag.active {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* Pagination */
.pagination-custom { display: flex; gap: 5px; justify-content: center; }
.pagination-custom .page-link {
    padding: 10px 16px;
    border-radius: var(--radius-md);
    background: var(--dark-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
}
.pagination-custom .page-link:hover, .pagination-custom .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Product Gallery */
.product-gallery { position: relative; }
.product-gallery .main-image {
    background: var(--dark-3);
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-bottom: 15px;
    border: 1px solid var(--border);
}
.product-gallery .main-image img { max-height: 350px; object-fit: contain; transition: var(--transition); }
.product-gallery .thumbnails { display: flex; gap: 10px; }
.product-gallery .thumbnails .thumb {
    width: 80px; height: 80px;
    border-radius: var(--radius-sm);
    background: var(--dark-3);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.product-gallery .thumbnails .thumb:hover, .product-gallery .thumbnails .thumb.active { border-color: var(--primary); }
.product-gallery .thumbnails .thumb img { max-height: 60px; object-fit: contain; }

/* Delivery Info */
.delivery-info {
    background: var(--dark-3);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.delivery-info .icon { font-size: 24px; color: var(--primary); }
.delivery-info .text { font-size: 13px; }
.delivery-info .text strong { display: block; font-size: 14px; }

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 { font-size: 38px; }
    .hero-slider { min-height: 60vh; }
    .section-header h2 { font-size: 28px; }
    .mobile-bottom-nav { display: flex; }
    .navbar .nav-icons { display: none; }
    body { padding-bottom: 65px; }
    .whatsapp-float { bottom: 80px; }
    .page-header h1 { font-size: 32px; }
    .stat-item .number { font-size: 36px; }
}

@media (max-width: 767px) {
    .hero-content h1 { font-size: 30px; }
    .hero-content { padding: 100px 0 60px; text-align: center; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-slider { min-height: 50vh; }
    .section { padding: 50px 0; }
    .section-header h2 { font-size: 24px; }
    .section-header { margin-bottom: 30px; }
    .newsletter-form { flex-direction: column; background: transparent; padding: 0; }
    .newsletter-form input { background: rgba(255,255,255,0.1); border-radius: 10px; margin-bottom: 10px; }
    .newsletter-content h3 { font-size: 24px; }
    .flash-timer .time-block { padding: 8px 12px; min-width: 55px; }
    .flash-timer .time-block .num { font-size: 20px; }
    .product-card .product-image { height: 200px; }
    .page-header { padding: 80px 0 30px; }
    .page-header h1 { font-size: 26px; }
    .auth-card { padding: 25px; }
    .cart-item .product-image { width: 70px; height: 70px; }
    .cart-item .product-image img { max-height: 55px; max-width: 55px; }
    .order-summary { position: static; margin-top: 20px; }
    .stat-item .number { font-size: 28px; }
    .page-404 .number { font-size: 100px; }
    .footer { padding: 40px 0 20px; }
    .feature-box { padding: 20px; }
    .filter-panel { position: static; margin-bottom: 20px; }
    .product-gallery .main-image { padding: 30px; min-height: 280px; }
    .product-gallery .main-image img { max-height: 220px; }
    .navbar-brand img { height: 30px !important; }
}

@media (max-width: 480px) {
    .navbar-brand img { height: 24px !important; }
    .hero-content h1 { font-size: 24px; }
    .hero-content .subtitle { font-size: 11px; }
    .btn-custom { padding: 12px 24px; font-size: 13px; }
    .section-header h2 { font-size: 20px; }
    .product-card .product-image { height: 180px; padding: 20px; }
    .stat-item { padding: 15px; }
}

/* ===== Cart Sidebar ===== */
.cart-overlay {
    display:none; position:fixed; inset:0; background:rgba(0,0,0,0.6); z-index:9999;
}
.cart-sidebar {
    position:fixed; top:0; right:-400px; width:400px; max-width:100%; height:100vh;
    background:var(--dark-card); z-index:10000; transition:right 0.35s ease;
    display:flex; flex-direction:column; border-left:1px solid var(--border);
}
.cart-sidebar.open { right:0; }
.cart-sidebar-header {
    display:flex; align-items:center; justify-content:space-between;
    padding:20px; border-bottom:1px solid var(--border);
}
.cart-sidebar-header h5 { font-weight:700; margin:0; }
.btn-close-cart {
    background:none; border:none; color:var(--text-muted); font-size:20px;
    cursor:pointer; padding:5px; transition:0.3s;
}
.btn-close-cart:hover { color:var(--primary); }
.cart-sidebar-body { flex:1; overflow-y:auto; padding:15px; }
.cart-sidebar-footer {
    padding:20px; border-top:1px solid var(--border);
}
.cart-sidebar .cart-item {
    display:flex; align-items:center; gap:12px;
    padding:12px; border-radius:10px; margin-bottom:8px;
    background:rgba(255,255,255,0.03); transition:0.3s;
}
.cart-sidebar .cart-item:hover { background:rgba(255,255,255,0.06); }
.cart-sidebar .cart-item img {
    width:60px; height:60px; object-fit:contain; border-radius:8px;
    background:var(--dark-3); padding:5px;
}
.cart-sidebar .cart-item .info { flex:1; }
.cart-sidebar .cart-item .info h6 { font-size:13px; font-weight:600; margin:0 0 3px; }
.cart-sidebar .cart-item .info .price { font-size:13px; color:var(--primary); font-weight:700; }
.cart-sidebar .cart-item .qty { font-size:12px; color:var(--text-muted); }

.variation-option.selected { border-color:var(--primary) !important; background:var(--primary-light); }
.variation-option:hover { border-color:var(--primary); }

@media (max-width:480px) {
    .cart-sidebar { width:100%; right:-100%; }
}
