@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #F5B400;
    --primary-rgb: 245, 180, 0;
    --secondary: #1A1A1A;
    --secondary-rgb: 26, 26, 26;
    --dark-bg: #0A0A0B;
    --dark-card: #121214;
    --light-bg: #F5F5F7;
    --light-card: #FFFFFF;
    --accent-gold: #D4AF37;
    --text-white: #FFFFFF;
    --text-dark: #1D1D1F;
    --text-muted: #86868B;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glass-light: 1px solid rgba(0, 0, 0, 0.06);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 8px 30px rgba(245, 180, 0, 0.15);
}

/* Font Size Utility Classes */
.font-size-xs { font-size: 0.75rem !important; }
.font-size-sm { font-size: 0.875rem !important; }
.font-size-md { font-size: 1rem !important; }
.font-size-lg { font-size: 1.25rem !important; }
.font-size-xl { font-size: 1.5rem !important; }

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    scroll-behavior: initial; /* Handled by Lenis */
}

body.light-mode {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
body.light-mode ::-webkit-scrollbar-track {
    background: var(--light-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
    border: 2px solid var(--dark-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Custom Animated Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    display: none;
}
@media (min-width: 1024px) {
    .custom-cursor {
        display: block;
    }
}
.custom-cursor.hovered {
    width: 40px;
    height: 40px;
    background-color: rgba(245, 180, 0, 0.2);
    border-color: var(--primary);
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #050505;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.loader-logo {
    max-width: 120px;
    animation: loaderPulse 1.8s infinite ease-in-out;
}
.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.loader-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    position: absolute;
    animation: loaderSlide 1.5s infinite linear;
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(0.9); opacity: 0.8; filter: drop-shadow(0 0 10px rgba(245,180,0,0)); }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 25px rgba(245,180,0,0.6)); }
}
@keyframes loaderSlide {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(18, 18, 20, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
}
body.light-mode .glass-panel {
    background: rgba(255, 255, 255, 0.7);
    border: var(--border-glass-light);
}

/* Header & Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}
header.scrolled {
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(245, 180, 0, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
body.light-mode header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.brand-logo-img {
    height: 58px;
    object-fit: contain;
    transition: var(--transition-smooth);
}
header.scrolled .brand-logo-img {
    height: 48px;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-smooth);
}
body.light-mode .nav-link {
    color: var(--text-dark) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}
.nav-link:hover {
    color: var(--primary) !important;
}
.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Navbar Search Suggestion Container */
.search-container {
    position: relative;
}
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 8px;
    background: var(--dark-card);
    border: var(--border-glass);
    display: none;
    z-index: 1001;
    box-shadow: var(--shadow-premium);
}
body.light-mode .search-suggestions {
    background: var(--light-card);
    border: var(--border-glass-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}
body.light-mode .suggestion-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.suggestion-item:hover {
    background: rgba(245, 180, 0, 0.1);
}
.suggestion-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 4px;
}
.suggestion-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}
body.light-mode .suggestion-name {
    color: var(--text-dark);
}
.suggestion-price {
    font-size: 0.8rem;
    color: var(--primary);
    margin-top: 2px;
}

/* Badge Cart Counter */
.cart-btn {
    position: relative;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    padding: 8px 12px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}
body.light-mode .cart-btn {
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-dark);
}
.cart-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(245, 180, 0, 0.4);
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Section Common Titles */
.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: inline-block;
}
.section-title {
    font-weight: 800;
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 180, 0, 0.08) 0%, rgba(245, 180, 0, 0) 70%);
    top: -10%;
    right: -10%;
    pointer-events: none;
    z-index: 1;
}
.hero-glow-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0) 70%);
    bottom: -10%;
    left: -10%;
    pointer-events: none;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 5;
}
.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
}
.hero-title span {
    color: var(--primary);
}
.hero-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.6;
}

/* Particles Canvas */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

/* Floating Shapes in Hero */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245,180,0,0.1) 0%, rgba(212,175,55,0.01) 100%);
    filter: blur(10px);
    animation: floatShape 20s infinite ease-in-out;
}
.shape-1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 120px; height: 120px; bottom: 15%; right: 15%; animation-delay: 5s; }
.shape-3 { width: 60px; height: 60px; top: 40%; right: 40%; animation-delay: 2s; }
@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(180deg) scale(1.1); }
}

/* Premium Buttons */
.btn-premium {
    background: linear-gradient(135deg, var(--primary) 0%, #D4AF37 100%);
    color: var(--secondary) !important;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 8px 25px rgba(245, 180, 0, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
}
.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(245, 180, 0, 0.5);
    color: #000000 !important;
}

.btn-premium-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
body.light-mode .btn-premium-outline {
    background: rgba(0, 0, 0, 0.03);
    color: var(--text-dark) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-premium-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary) !important;
    transform: translateY(-3px);
}
body.light-mode .btn-premium-outline:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--primary) !important;
}

/* Statistics Counter */
.stat-item {
    padding: 18px 12px;
    border-radius: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: var(--border-glass);
    transition: var(--transition-smooth);
    height: 100%;
}
.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(245, 180, 0, 0.03);
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    display: inline-block;
}
.stat-title {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Phone Mockup Hero Wrapper */
.hero-mockup-wrapper {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-mockup-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 180, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(20px);
    z-index: 1;
}
/* Hero Abstract Phone Animation styling */
.hero-abstract-animation {
    width: 300px;
    height: 540px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    perspective: 1000px;
    animation: phoneFloat 6s infinite ease-in-out;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotateY(0); }
    50% { transform: translateY(-15px) rotateY(4deg); }
}

.glass-phone-showcase {
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 20, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 40px;
    padding: 20px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(255,255,255,0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}

.phone-camera-island {
    width: 90px;
    height: 22px;
    background: #000000;
    border-radius: 20px;
    margin: 0 auto 10px auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.phone-screen-content {
    height: calc(100% - 32px);
    background: radial-gradient(circle at top right, rgba(245, 180, 0, 0.15), transparent 75%);
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 24px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    position: relative;
    z-index: 4;
}

.phone-header-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-white);
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(255,255,255,0.4);
}

.phone-active-app {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.app-chip {
    width: 32px;
    height: 5px;
    background: var(--primary);
    border-radius: 10px;
    margin: 0 auto 12px auto;
    box-shadow: 0 0 8px var(--primary);
}

.app-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.app-spec-glow {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 15px;
    text-shadow: 0 0 15px rgba(245, 180, 0, 0.6);
    animation: textGlowPulse 2s infinite alternate;
}

@keyframes textGlowPulse {
    0% { text-shadow: 0 0 10px rgba(245, 180, 0, 0.4); }
    100% { text-shadow: 0 0 25px rgba(245, 180, 0, 0.8); }
}

/* Floating colored orbs behind the glass device */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
}
.glow-orb-1 {
    width: 160px;
    height: 160px;
    background: rgba(245, 180, 0, 0.22);
    top: 15%;
    left: -40px;
    animation: orbMove1 8s infinite alternate ease-in-out;
}
.glow-orb-2 {
    width: 220px;
    height: 220px;
    background: rgba(212, 175, 55, 0.12);
    bottom: 12%;
    right: -50px;
    animation: orbMove2 10s infinite alternate ease-in-out;
}
.glow-orb-3 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    top: 45%;
    left: 35%;
    animation: orbMove3 12s infinite alternate ease-in-out;
}

@keyframes orbMove1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.2); }
}
@keyframes orbMove2 {
    0% { transform: translate(0, 0) scale(1.1); }
    100% { transform: translate(-30px, 35px) scale(0.95); }
}
@keyframes orbMove3 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(15px, -30px); }
}


/* Brand Cards Section */
.brand-card {
    background: var(--dark-card);
    border: var(--border-glass);
    border-radius: 18px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
body.light-mode .brand-card {
    background: var(--light-card);
    border: var(--border-glass-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.brand-card i {
    font-size: 2.5rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.brand-name {
    font-weight: 700;
    margin-top: 12px;
    font-size: 1.1rem;
    color: var(--text-white);
    transition: var(--transition-smooth);
}
body.light-mode .brand-name {
    color: var(--text-dark);
}
.brand-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(245, 180, 0, 0.15);
}
.brand-card:hover i {
    color: var(--primary);
    transform: scale(1.1);
}
.brand-card:hover .brand-name {
    color: var(--primary);
}

/* Products Section Filter Styling */
.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}
body.light-mode .filter-btn {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--secondary) !important;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Filter Dropdowns Card */
.filter-sidebar-card {
    background: var(--dark-card);
    border: var(--border-glass);
    border-radius: 18px;
    padding: 25px;
    box-shadow: var(--shadow-premium);
}
body.light-mode .filter-sidebar-card {
    background: var(--light-card);
    border: var(--border-glass-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.filter-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}
body.light-mode .filter-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.filter-group {
    margin-bottom: 20px;
}
.filter-group-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.filter-checkbox {
    margin-bottom: 8px;
}
.filter-checkbox label {
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Price Range Slider */
.price-range-container {
    padding: 0 5px;
}

/* Loading Skeletons */
.skeleton-card {
    background: var(--dark-card);
    border: var(--border-glass);
    border-radius: 20px;
    height: 420px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.skeleton-shimmer {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    position: absolute;
    top: 0;
    left: -100%;
    animation: shimmerSlide 1.5s infinite;
}
@keyframes shimmerSlide {
    0% { left: -100%; }
    100% { left: 100%; }
}
.skeleton-img { width: 100%; height: 180px; background: rgba(255,255,255,0.03); border-radius: 12px; }
.skeleton-title { width: 70%; height: 20px; background: rgba(255,255,255,0.03); border-radius: 4px; margin-top: 20px; }
.skeleton-text { width: 90%; height: 14px; background: rgba(255,255,255,0.03); border-radius: 4px; margin-top: 10px; }
.skeleton-price { width: 40%; height: 24px; background: rgba(255,255,255,0.03); border-radius: 4px; margin-top: 20px; }
.skeleton-btn { width: 100%; height: 40px; background: rgba(255,255,255,0.03); border-radius: 20px; margin-top: 30px; }

/* Product Cards */
.product-card {
    background: var(--dark-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
body.light-mode .product-card {
    background: var(--light-card);
    border: var(--border-glass-light);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 180, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(245, 180, 0, 0.1);
}
body.light-mode .product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-badge-container {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 5;
}
.card-badge-sale {
    background: linear-gradient(135deg, #FF3B30 0%, #E60000 100%);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.card-badge-featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-gold) 100%);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-action-btns {
    position: absolute;
    top: 15px;
    right: -50px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
    transition: var(--transition-smooth);
}
.product-card:hover .product-action-btns {
    right: 15px;
}
.action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(18, 18, 20, 0.85);
    border: var(--border-glass);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
body.light-mode .action-btn {
    background: rgba(255, 255, 255, 0.85);
    border: var(--border-glass-light);
    color: var(--text-dark);
}
.action-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(245, 180, 0, 0.3);
}

.product-img-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}
.product-img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
}
.product-name {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
    height: 2.4rem;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-rating {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 10px;
}
.product-rating span {
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-left: 5px;
}

.product-spec-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}
.spec-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}
body.light-mode .spec-pill {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-pricing {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}
.price-current {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-white);
}
body.light-mode .price-current {
    color: var(--text-dark);
}
.price-discount {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.stock-status {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.stock-status.in-stock { color: #34C759; }
.stock-status.out-of-stock { color: #FF3B30; }

.btn-add-cart {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-white);
    font-weight: 700;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
body.light-mode .btn-add-cart {
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--text-dark);
}
.btn-add-cart:hover {
    background: var(--primary);
    color: var(--secondary) !important;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* Featured Swiper Section */
.featured-slider-section {
    background: radial-gradient(circle at center, #131315 0%, var(--dark-bg) 100%);
    padding: 80px 0;
}
body.light-mode .featured-slider-section {
    background: radial-gradient(circle at center, #FFFFFF 0%, var(--light-bg) 100%);
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary);
}
.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* Countdown Deals Section */
.deals-section {
    background: linear-gradient(135deg, #0D0D0E 0%, #151518 100%);
    border-top: 1px solid rgba(245, 180, 0, 0.1);
    border-bottom: 1px solid rgba(245, 180, 0, 0.1);
}
body.light-mode .deals-section {
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.countdown-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.countdown-item {
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    border-radius: 12px;
    padding: 15px;
    min-width: 80px;
    text-align: center;
}
body.light-mode .countdown-item {
    background: #FFFFFF;
    border: var(--border-glass-light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.countdown-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1.1;
}
.countdown-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Why Choose Us Cards */
.why-card {
    background: var(--dark-card);
    border: var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-smooth);
    height: 100%;
}
body.light-mode .why-card {
    background: var(--light-card);
    border: var(--border-glass-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 180, 0, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition-smooth);
}
.why-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}
.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(245, 180, 0, 0.1);
}
.why-card:hover .why-icon {
    background: var(--primary);
}
.why-card:hover .why-icon i {
    color: var(--secondary);
    transform: rotate(10deg);
}

/* Shopping Cart Drawer */
.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.cart-drawer-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 440px;
    height: 100%;
    background: #0F0F11;
    border-left: var(--border-glass);
    z-index: 1050;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
body.light-mode .cart-drawer {
    background: #FFFFFF;
    border-left: var(--border-glass-light);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.cart-drawer.active {
    right: 0;
}
.cart-drawer-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body.light-mode .cart-drawer-header {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.cart-drawer-title {
    font-size: 1.3rem;
    font-weight: 800;
}
.cart-drawer-close {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
body.light-mode .cart-drawer-close {
    color: var(--text-dark);
}
.cart-drawer-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-items-wrapper {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
body.light-mode .cart-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 5px;
}
.cart-item-details {
    flex: 1;
}
.cart-item-name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.cart-item-price {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}
.cart-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 8px;
    width: fit-content;
}
body.light-mode .cart-qty-ctrl {
    border: 1px solid rgba(0,0,0,0.1);
}
.cart-qty-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    padding: 3px 10px;
    cursor: pointer;
    font-size: 0.85rem;
}
body.light-mode .cart-qty-btn {
    color: var(--text-dark);
}
.cart-qty-btn:hover {
    background: rgba(255,255,255,0.05);
    color: var(--primary);
}
.cart-qty-val {
    padding: 0 10px;
    font-size: 0.85rem;
    font-weight: 700;
}
.cart-item-remove {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.cart-item-remove:hover {
    color: #FF3B30;
}

.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #141417;
}
body.light-mode .cart-drawer-footer {
    border-top: 1px solid rgba(0,0,0,0.08);
    background: #F8F9FA;
}
.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
}
.cart-summary-total {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-white);
}
body.light-mode .cart-summary-total {
    color: var(--text-dark);
}
.cart-summary-total span {
    color: var(--primary);
}
.btn-checkout {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #D4AF37 100%);
    color: var(--secondary) !important;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 15px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,180,0,0.3);
}

/* Form Styles for Checkout / Contact */
.glass-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: var(--text-white) !important;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    transition: var(--transition-smooth) !important;
}
body.light-mode .glass-input {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: var(--text-dark) !important;
}
.glass-input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 12px rgba(245, 180, 0, 0.2) !important;
}

/* FAQ Accordion Section */
.accordion-item {
    background: var(--dark-card) !important;
    border: var(--border-glass) !important;
    border-radius: 14px !important;
    margin-bottom: 12px;
    overflow: hidden;
}
body.light-mode .accordion-item {
    background: var(--light-card) !important;
    border: var(--border-glass-light) !important;
}
.accordion-button {
    background: transparent !important;
    color: var(--text-white) !important;
    font-weight: 700;
    padding: 20px;
    box-shadow: none !important;
}
body.light-mode .accordion-button {
    color: var(--text-dark) !important;
}
.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
}
.accordion-button::after {
    filter: invert(1);
}
body.light-mode .accordion-button::after {
    filter: none;
}
.accordion-body {
    color: var(--text-muted);
    padding: 0 20px 20px 20px;
    line-height: 1.6;
}

/* Reviews Panel & Form */
.review-item {
    background: rgba(255, 255, 255, 0.03);
    border: var(--border-glass);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}
body.light-mode .review-item {
    background: rgba(0, 0, 0, 0.02);
    border: var(--border-glass-light);
}

/* Testimonials Slide Cards Redesign */
.testimonial-card {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 24px !important;
    padding: 45px 35px !important;
    text-align: center;
    max-width: 550px;
    margin: 15px auto;
    position: relative;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 25px;
    font-size: 8rem;
    font-family: serif;
    color: rgba(245, 180, 0, 0.08);
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(245, 180, 0, 0.3) !important;
    box-shadow: 0 25px 45px rgba(245, 180, 0, 0.15) !important;
}

body.light-mode .testimonial-card {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

body.light-mode .testimonial-card::before {
    color: rgba(245, 180, 0, 0.06);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid var(--primary);
    box-shadow: 0 0 15px rgba(245, 180, 0, 0.3);
}

.testimonial-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

body.light-mode .testimonial-quote {
    color: #333333 !important;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.testimonial-stars {
    color: var(--primary) !important;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Floating Actions Buttons (WhatsApp / Back To Top) */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}
.float-wa {
    background-color: #25D366;
    color: white !important;
    animation: wiggleWA 3s infinite ease-in-out;
}
.float-wa:hover {
    background-color: #20BA56;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
.float-call {
    background-color: var(--primary);
    color: var(--secondary) !important;
}
.float-call:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(245, 180, 0, 0.5);
}
.float-top {
    background-color: var(--secondary);
    color: var(--primary) !important;
    border: 1px solid rgba(245, 180, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}
.float-top.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.float-top:hover {
    background-color: var(--primary);
    color: var(--secondary) !important;
    border-color: var(--primary);
}

@keyframes wiggleWA {
    0%, 90%, 100% { transform: rotate(0); }
    92% { transform: rotate(-10deg) scale(1.05); }
    94% { transform: rotate(12deg) scale(1.05); }
    96% { transform: rotate(-12deg) scale(1.05); }
    98% { transform: rotate(10deg) scale(1.05); }
}

/* Premium Footer Redesign Styling */
.footer-premium {
    background: linear-gradient(180deg, #0b0b0d 0%, #050506 100%) !important;
    border-top: 2px solid rgba(245, 180, 0, 0.25) !important;
    padding: 70px 0 35px 0 !important;
    position: relative;
    overflow: hidden;
}

body.light-mode .footer-premium {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border-top: 2px solid var(--primary) !important;
}

.footer-premium .footer-logo {
    max-width: 130px;
    filter: drop-shadow(0 0 10px rgba(245, 180, 0, 0.15));
}

.footer-premium .footer-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-premium .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.footer-premium .footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-premium .footer-links li {
    margin-bottom: 12px;
}

.footer-premium .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

body.light-mode .footer-premium .footer-links a {
    color: rgba(0, 0, 0, 0.6);
}

.footer-premium .footer-links a:hover {
    color: var(--primary) !important;
    transform: translateX(6px);
}

.footer-premium .footer-contact-info li {
    font-size: 0.9rem;
}

.footer-premium .footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.footer-premium .footer-social-icon:hover {
    background: var(--primary) !important;
    color: #0b0b0d !important;
    border-color: var(--primary) !important;
    transform: translateY(-4px) rotate(8deg);
    box-shadow: 0 5px 15px rgba(245, 180, 0, 0.3);
}

body.light-mode .footer-premium .footer-social-icon {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #0b0b0d;
}

body.light-mode .footer-premium .footer-social-icon:hover {
    color: #ffffff !important;
}

/* Detail Popup Zoom Layout */
.detail-modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.detail-img-main-wrapper {
    height: 350px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: var(--border-glass);
}
.detail-img-main {
    max-height: 320px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}
.detail-img-main:hover {
    transform: scale(1.3);
}
.detail-gallery-thumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.detail-thumb {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    border: var(--border-glass);
    background: rgba(255,255,255,0.02);
    padding: 5px;
    cursor: pointer;
    transition: var(--transition-smooth);
    object-fit: contain;
}
.detail-thumb.active, .detail-thumb:hover {
    border-color: var(--primary);
    background: rgba(245, 180, 0, 0.05);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-desc {
        margin: 0 auto 2.5rem auto;
    }
    .hero-abstract-animation {
        margin-top: 40px;
    }
    .section-title {
        font-size: 2rem;
    }
}
@media (max-width: 575px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-abstract-animation {
        width: 250px;
        height: 450px;
    }
    .phone-screen-content {
        padding: 15px 10px;
    }
    .phone-header-brand {
        font-size: 1.1rem;
    }
    .app-title {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    .app-spec-glow {
        font-size: 1rem;
        margin-top: 10px;
    }
    .countdown-box {
        gap: 8px;
    }
    .countdown-item {
        padding: 8px;
        min-width: 60px;
    }
    .countdown-val {
        font-size: 1.5rem;
    }
    .countdown-lbl {
        font-size: 0.6rem;
    }
    .stat-item {
        padding: 12px 6px;
        border-radius: 12px;
    }
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 2px;
    }
    .stat-title {
        font-size: 0.65rem;
        letter-spacing: 0px;
    }
}

/* Gallery Showcase Styles Redesign */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.gallery-card:hover {
    border-color: rgba(245, 180, 0, 0.4) !important;
    box-shadow: 0 15px 35px rgba(245, 180, 0, 0.15) !important;
    transform: translateY(-5px);
}

.gallery-card .gallery-img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08) rotate(1deg) !important;
}

.gallery-card .gallery-overlay {
    opacity: 0 !important;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%) !important;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1 !important;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .footer-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    .footer-links {
        padding-left: 0 !important;
    }
}

/* Hero Banner Grid Styles */
.hero-left-swiper, .hero-right-swiper {
    height: 536px;
}
.hero-middle-swiper {
    height: 340px;
}
.hero-bottom-left-swiper, .hero-bottom-right-swiper {
    height: 180px;
    transition: var(--transition-smooth);
}
.hero-bottom-left-swiper:hover, .hero-bottom-right-swiper:hover {
    transform: translateY(-5px);
    border-color: var(--primary) !important;
}
.promo-card {
    transition: var(--transition-smooth);
}
.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary) !important;
}
.banner-overlay {
    z-index: 2;
}
.hero-title-slide {
    font-size: 2rem;
    font-weight: 800;
}
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-left-swiper, .hero-right-swiper {
        height: 380px;
    }
    .hero-middle-swiper {
        height: 280px;
    }
    .hero-title-slide {
        font-size: 1.6rem;
    }
}

.hero-banner-contain {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
    display: block;
    position: relative;
    z-index: 1;
}
.hero-banner-cover {
    object-fit: cover !important;
    width: 100%;
    height: 100%;
}

/* Reviews form visibility enhancements */
#product-review-form .form-control {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

#product-review-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

#product-review-form .form-control:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 0.25rem rgba(245, 180, 0, 0.25) !important;
}

/* Promo Swiper Cards Design */
.promo-swiper-card {
    display: block;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    padding: 25px !important;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    position: relative;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    backdrop-filter: blur(10px);
}

.promo-swiper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 180, 0, 0.1) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.promo-swiper-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(245, 180, 0, 0.3) !important;
    box-shadow: 0 20px 40px rgba(245, 180, 0, 0.15) !important;
}

.promo-swiper-card:hover::before {
    opacity: 1;
}

.promo-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(245, 180, 0, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.promo-card-img-wrap {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.promo-swiper-card:hover .promo-card-img-wrap {
    transform: scale(1.08);
}

.promo-card-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.promo-card-content {
    position: relative;
    z-index: 1;
}

.promo-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.promo-card-subtitle {
    font-size: 0.85rem;
    height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

.btn-promo-action {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.promo-swiper-card:hover .btn-promo-action {
    letter-spacing: 1.5px;
}

.btn-promo-action i {
    font-size: 1.1rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.promo-swiper-card:hover .btn-promo-action i {
    transform: translateX(4px);
}

/* WhatsApp Checkout Form visibility enhancements */
#checkout-modal .form-label,
.modal-dialog label.form-label {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 6px !important;
}

body.light-mode #checkout-modal .form-label,
body.light-mode .modal-dialog label.form-label {
    color: rgba(0, 0, 0, 0.7) !important;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

body.light-mode .glass-input::placeholder {
    color: rgba(0, 0, 0, 0.4) !important;
}

/* Mobile Responsive Optimization Overrides */
@media (max-width: 575px) {
    /* Promo Swiper Cards (Preorders, New Arrivals, Hot Deals) */
    .promo-swiper-card {
        height: auto !important;
        min-height: 350px !important;
        padding: 16px !important;
        border-radius: 16px !important;
    }
    .promo-card-img-wrap {
        height: 140px !important;
        margin-bottom: 12px !important;
    }
    .promo-card-title {
        font-size: 1rem !important;
    }
    .promo-card-subtitle {
        font-size: 0.8rem !important;
        height: 32px !important;
        margin-bottom: 10px !important;
    }
    .btn-promo-action {
        font-size: 0.75rem !important;
    }

    /* Product Cards Grid Showcase */
    .product-card {
        padding: 12px !important;
        border-radius: 16px !important;
    }
    .product-img-wrapper {
        height: 110px !important;
        margin-bottom: 10px !important;
    }
    .product-img {
        max-height: 100px !important;
    }
    .product-name {
        font-size: 0.85rem !important;
        margin-bottom: 4px !important;
        height: auto !important;
        min-height: 36px !important;
    }
    .product-brand {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }
    .product-pricing {
        margin-top: 4px !important;
        font-size: 0.8rem !important;
    }
    .price-current {
        font-size: 0.9rem !important;
    }
    .price-discount {
        font-size: 0.75rem !important;
        display: block !important;
        margin-left: 0 !important;
        margin-top: 2px !important;
    }
    .product-rating {
        font-size: 0.75rem !important;
        margin-bottom: 6px !important;
    }
    .btn-add-cart, .btn-checkout {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
        border-radius: 10px !important;
        margin-top: 10px !important;
    }

    /* General Form elements */
    .glass-input {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
        border-radius: 10px !important;
    }
    #checkout-modal .modal-body {
        padding: 20px 16px !important;
    }
    .modal-title {
        font-size: 1.1rem !important;
    }
}
