/* ========================================
   DELUX ELECTRICAL INDUSTRIES
   E-Commerce Website Stylesheet
   Updated with Responsive Header & Animations
   ======================================== */

/* CSS Variables */
:root {
    --primary-gradient: linear-gradient(to bottom, #f89f2b, #fbd909);
    --primary-gradient-hover: linear-gradient(to bottom, #fbd909, #f89f2b);
    --primary-gradient-horizontal: linear-gradient(to right, #f89f2b, #fbd909);
    --primary-color: #f89f2b;
    --secondary-color: #fbd909;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #1a1a1a;
    --card-bg-hover: #252525;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: #333333;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(248, 159, 43, 0.3);
    --header-height: 180px;
    --header-height-scrolled: 80px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Gradient Text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 159, 43, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-gradient);
    color: #000;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

/* ========================================
   HEADER & NAVIGATION - FULLY RESPONSIVE
   ======================================== */
.header {
    background: var(--darker-bg);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.header.scrolled .top-bar {
    display: none;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #1a1a1a, #252525);
    padding: 10px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

.top-bar-left i {
    color: var(--primary-color);
}

.top-bar-right {
    display: flex;
    gap: 5px;
}

.top-bar-right a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: 50%;
    transition: var(--transition);
}

.top-bar-right a:hover {
    background: var(--primary-gradient);
    color: #000;
}

/* Main Header */
.main-header {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo .logo-text img{
    width: 170px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.05);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 500px;
}

.search-bar form {
    display: flex;
    background: var(--card-bg);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.search-bar form:focus-within {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
}

.search-bar input::placeholder {
    color: var(--text-muted);
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    padding: 12px 20px;
    background: var(--primary-gradient);
    border: none;
    color: #000;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.search-bar button:hover {
    background: var(--primary-gradient-hover);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: 10px;
    transition: var(--transition);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.header-action:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.header-action i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.header-action-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.header-action-text span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.header-action-text strong {
    font-size: 0.875rem;
}

.cart-count {
    position: relative;
    padding: 12px;
}

.cart-count .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-gradient);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50px;
    min-width: 20px;
    text-align: center;
    transform: translate(25%, -25%);
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.hamburger span {
    display: block;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation */
.nav-header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}

.nav-header .container {
    display: flex;
    justify-content: center;
}

.main-nav {
    display: flex;
    gap: 5px;
}

.main-nav > li {
    position: relative;
}

.main-nav > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 25px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.main-nav > li > a i:first-child {
    font-size: 1rem;
    color: var(--primary-color);
}

.main-nav > li > a .dropdown-arrow {
    font-size: 0.7rem;
    transition: var(--transition);
}

.main-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: var(--transition);
    border-radius: 3px 3px 0 0;
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
    color: var(--primary-color);
}

.main-nav > li > a:hover::after,
.main-nav > li > a.active::after {
    width: 80%;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 0 0 15px 15px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    overflow: hidden;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background: rgba(248, 159, 43, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu li a i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 5px 0;
}

/* Mobile Elements - Hidden by default */
.mobile-search,
.mobile-contact {
    display: none;
}

/* ========================================
   RESPONSIVE HEADER
   ======================================== */
@media (max-width: 1200px) {
    .header-action.hide-tablet {
        display: none;
    }

    .main-nav > li > a {
        padding: 18px 18px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 80px;
    }

    .top-bar {
        display: none;
    }

    .main-header .container {
        gap: 15px;
    }

    .search-bar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-header {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--darker-bg);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 0 30px;
        transition: var(--transition);
        overflow-y: auto;
        border-left: 1px solid var(--border-color);
        z-index: 999;
    }

    .nav-header.active {
        right: 0;
    }

    .nav-header .container {
        flex-direction: column;
        height: auto;
        padding: 0;
    }

    .main-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .main-nav > li > a {
        padding: 15px 25px;
        border-bottom: 1px solid var(--border-color);
        justify-content: flex-start;
    }

    .main-nav > li > a::after {
        display: none;
    }

    .main-nav > li > a .dropdown-arrow {
        margin-left: auto;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 100%;
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--border-color);
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-dropdown.open .dropdown-menu {
        max-height: 500px;
    }

    .has-dropdown.open > a .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu li a {
        padding-left: 45px;
    }

    .dropdown-menu li a:hover {
        padding-left: 50px;
    }

    /* Mobile Search */
    .mobile-search {
        display: block;
        padding: 20px 25px;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-search form {
        display: flex;
        background: var(--card-bg);
        border-radius: 50px;
        overflow: hidden;
        border: 1px solid var(--border-color);
    }

    .mobile-search input {
        flex: 1;
        padding: 12px 20px;
        border: none;
        background: transparent;
        color: var(--text-primary);
        font-size: 0.95rem;
    }

    .mobile-search button {
        padding: 12px 18px;
        background: var(--primary-gradient);
        border: none;
        color: #000;
        cursor: pointer;
    }

    /* Mobile Contact */
    .mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 25px;
        margin-top: auto;
    }

    .mobile-contact .btn {
        width: 100%;
        justify-content: center;
    }

    /* Overlay */
    .nav-header::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: -1;
    }

    .nav-header.active::before {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text span {
        font-size: 0.6rem;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }

    .header-action {
        padding: 10px;
    }

    .nav-header {
        width: 100%;
        right: -100%;
    }
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   CATALOGUE (SLIDER)
   ======================================== */
.catalogue-page {
    padding: 100px 0;
}

.catalogue-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.flipbook-container {
    position: relative;
    margin: 0 auto 30px;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    min-height: 400px;
    overflow: hidden;
}

#catalogueFlipbook {
    width: 100%;
    min-height: 450px;
}

/* Navigation arrows overlay */
.flipbook-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    pointer-events: none;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

.flip-nav-btn {
    pointer-events: all;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.flip-nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
}

.flip-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

/* Dark background to avoid any white gap */
.catalogue-slide-img {
    max-width: 100%;
    max-height: 700px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    object-fit: contain;
    background: #111;
}

.catalogue-page-indicator {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 10px;
}

.catalogue-download {
    text-align: center;
    margin-top: 20px;
}

.catalogue-download .btn {
    min-width: 220px;
}
/* 3D flip effect for catalogue slider */
.catalogue-flip-3d {
    perspective: 2000px;
}

.catalogue-slide-img {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transform: rotateY(0deg);
    transition: transform 0.35s ease;
}
@media (min-width: 992px) {
    #catalogueFlipbook {
        min-height: 600px;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--darker-bg), var(--card-bg));
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 159, 43, 0.08) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, 5%) scale(1.1); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(248, 159, 43, 0.15);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(248, 159, 43, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-main {
    background: var(--primary-gradient);
    border-radius: 30px;
    padding: 5px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-glow);
}

.hero-image-main img {
    width: 100%;
    border-radius: 20px;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    z-index: 2;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.floating-card.card-1 {
    top: 30px;
    left: -40px;
}

.floating-card.card-2 {
    bottom: 50px;
    right: -40px;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 8px;
    display: block;
}

.floating-card h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ========================================
   COUNTER / STATS SECTION
   ======================================== */
.stats-section {
    background: var(--primary-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(0,0,0,0.05)" stroke-width="0.5"/></svg>');
    background-size: 50px 50px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(0, 0, 0, 0.1);
}

.stat-card:last-child::after {
    display: none;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: #000;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number .counter {
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SECTION STYLES
   ======================================== */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    background: rgba(248, 159, 43, 0.15);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   CATEGORIES
   ======================================== */
.categories {
    background: var(--darker-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: rgba(248, 159, 43, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--primary-gradient);
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    padding: 25px;
    background: linear-gradient(135deg, #1a1a1a, #252525);
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-height: 190px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-badge {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.sale {
    background: var(--danger-color);
    color: #fff;
}

.product-badge.featured {
    background: var(--primary-gradient);
    color: #000;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 42px;
    height: 42px;
    background: var(--card-bg);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.product-action-btn:hover {
    background: var(--primary-gradient);
    color: #000;
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.current-price {
    font-size: 1.35rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.original-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-footer {
    display: flex;
    gap: 10px;
}

.product-footer .btn {
    flex: 1;
    padding: 12px;
}

/* ========================================
   FEATURES
   ======================================== */
.features {
    background: var(--darker-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: rgba(248, 159, 43, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.25rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-gradient);
    color: #000;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: linear-gradient(135deg, var(--dark-bg), var(--card-bg));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(248, 159, 43, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

.testimonial-info h4 {
    font-size: 1.15rem;
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonial-rating i {
    color: var(--primary-color);
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--primary-gradient);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.cta-section::before {
    top: -200px;
    left: -100px;
}

.cta-section::after {
    bottom: -200px;
    right: -100px;
}

.cta-content {
    text-align: center;
    color: #000;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: #000;
    color: var(--primary-color);
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-content .btn:hover {
    background: var(--card-bg);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--darker-bg), var(--card-bg));
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    margin-top: var(--header-height);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    width: 100%;
    box-shadow: var(--shadow);
}

.about-image-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: var(--primary-gradient);
    color: #000;
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-image-badge h3 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge p {
    font-size: 0.9rem;
    font-weight: 600;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature i {
    width: 45px;
    height: 45px;
    background: rgba(248, 159, 43, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Timeline */
.timeline {
    background: var(--darker-bg);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    width: calc(100% - 50px);
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50px;
}

.timeline-dot {
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--primary-gradient);
    border-radius: 50%;
    top: 35px;
    box-shadow: 0 0 0 5px var(--darker-bg);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: calc(50% - 11px);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: calc(50% - 11px);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   PRODUCTS PAGE
   ======================================== */
.products-page {
    padding: 50px 0 100px;
}

.products-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar */
.products-sidebar {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-color);
}

.filter-section {
    margin-bottom: 30px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-section h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-section h3 i {
    color: var(--primary-color);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 10px;
    transition: var(--transition);
}

.filter-option:hover {
    background: rgba(248, 159, 43, 0.1);
}

.filter-option input {
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-option label {
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition);
    flex: 1;
}

.filter-option:hover label {
    color: var(--text-primary);
}

.price-range {
    padding: 10px 0;
}

.price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-inputs input {
    flex: 1;
    padding: 12px;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: inherit;
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.price-inputs span {
    color: var(--text-muted);
}

/* Products Toolbar */
.products-main {
    min-width: 0;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 18px 25px;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 15px;
}

.products-count {
    color: var(--text-secondary);
}

.products-count span {
    color: var(--primary-color);
    font-weight: 600;
}

.products-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-sort label {
    color: var(--text-secondary);
}

.products-sort select {
    padding: 10px 18px;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    font-family: inherit;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    padding: 12px 18px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    transition: var(--transition);
    font-weight: 500;
}

.pagination a:hover,
.pagination span.active {
    background: var(--primary-gradient);
    color: #000;
    border-color: transparent;
}

/* ========================================
   PRODUCT DETAIL
   ======================================== */
.product-detail {
    padding: 50px 0 100px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    border: 1px solid var(--border-color);
}

.main-image img {
    max-height: 380px;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 12px;
}

.thumbnail {
    width: 90px;
    height: 90px;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Details */
.product-details {
    padding: 20px 0;
}

.product-details .product-category {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.product-details h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    line-height: 1.3;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.product-details .product-price {
    margin-bottom: 30px;
}

.product-details .current-price {
    font-size: 2.25rem;
}

.product-details .original-price {
    font-size: 1.35rem;
}

.discount-badge {
    background: var(--danger-color);
    color: #fff;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 35px;
    font-size: 1rem;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-item i {
    width: 45px;
    height: 45px;
    background: rgba(248, 159, 43, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.meta-item strong {
    color: var(--text-primary);
    margin-right: 5px;
}

.meta-item span {
    color: var(--text-secondary);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.quantity-selector label {
    font-weight: 600;
    font-size: 1rem;
}

.quantity-input {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.quantity-input button {
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.35rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-input button:hover {
    background: var(--primary-gradient);
    color: #000;
}

.quantity-input input {
    width: 70px;
    height: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: inherit;
}

.add-to-cart-section {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.add-to-cart-section .btn {
    flex: 1;
    padding: 18px 30px;
    font-size: 1rem;
}

/* Product Specs */
.product-specs {
    margin-top: 45px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.product-specs h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-specs h3 i {
    color: var(--primary-color);
}

.specs-table {
    display: grid;
    gap: 0;
}

.spec-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.spec-value {
    color: var(--text-primary);
    font-weight: 500;
}

/* ========================================
   CART PAGE
   ======================================== */
.cart-page {
    padding: 50px 0 100px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.cart-items {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cart-product-image {
    width: 90px;
    height: 90px;
    background: var(--darker-bg);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-product-info h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.cart-product-info h4 a:hover {
    color: var(--primary-color);
}

.cart-product-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cart-price {
    font-weight: 600;
    font-size: 1rem;
}

.cart-quantity .quantity-input {
    transform: scale(0.9);
}

.cart-total {
    font-weight: 700;
    font-size: 1.15rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 12px;
    transition: var(--transition);
    font-size: 1.1rem;
    border-radius: 50%;
}

.cart-remove:hover {
    color: var(--danger-color);
    background: rgba(220, 53, 69, 0.1);
}

/* Cart Summary */
.cart-summary {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-color);
}

.cart-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
}

.summary-row span {
    color: var(--text-secondary);
}

.summary-row.total {
    font-size: 1.35rem;
    font-weight: 700;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 2px solid var(--border-color);
}

.summary-row.total span:last-child {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coupon-input {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.coupon-input input {
    flex: 1;
    padding: 14px 18px;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
}

.coupon-input button {
    padding: 14px 22px;
    background: var(--border-color);
    border: none;
    border-radius: 10px;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.coupon-input button:hover {
    background: var(--primary-gradient);
    color: #000;
}

.cart-summary .btn {
    width: 100%;
    margin-bottom: 12px;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 18px;
}

.secure-checkout i {
    color: var(--success-color);
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 100px 20px;
}

.empty-cart i {
    font-size: 6rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.empty-cart h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.empty-cart p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 1.1rem;
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */
.checkout-page {
    padding: 50px 0 100px;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
}

.checkout-form {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border-color);
}

.form-section {
    margin-bottom: 35px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group label .required {
    color: var(--danger-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: var(--darker-bg);
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.payment-method:hover,
.payment-method.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.payment-method input {
    accent-color: var(--primary-color);
    width: 20px;
    height: 20px;
}

.payment-method i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.payment-method div h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.payment-method div p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Order Summary */
.order-summary {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-color);
}

.order-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 70px;
    height: 70px;
    background: var(--darker-bg);
    border-radius: 10px;
    padding: 10px;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.order-item-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.order-item-price {
    font-weight: 600;
    white-space: nowrap;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-page {
    padding: 50px 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 45px;
    border: 1px solid var(--border-color);
    height: fit-content;
}

.contact-info h2 {
    font-size: 1.85rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: rgba(248, 159, 43, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-social h4 {
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(248, 159, 43, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-gradient);
    color: #000;
    transform: translateY(-5px);
}

.contact-form-section {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 45px;
    border: 1px solid var(--border-color);
}

.contact-form-section h2 {
    font-size: 1.85rem;
    margin-bottom: 12px;
}

.contact-form-section > p {
    color: var(--text-secondary);
    margin-bottom: 35px;
}

/* Map */
.map-section {
    margin-top: 60px;
}

.map-container {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--darker-bg);
    padding-top: 100px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
}

.newsletter-form button {
    padding: 14px 20px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-links i {
    font-size: 0.7rem;
    color: var(--primary-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-item i {
    color: var(--primary-color);
    margin-top: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--text-secondary);
}

.footer-copyright a {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-gradient);
    color: #000;
    border-color: transparent;
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-payments span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.payment-icons {
    display: flex;
    gap: 12px;
}

.payment-icons i {
    font-size: 2rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--text-primary);
}

/* ========================================
   ALERTS
   ======================================== */
.alert {
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid var(--warning-color);
    color: var(--warning-color);
}

.alert-info {
    background: rgba(23, 162, 184, 0.15);
    border: 1px solid var(--info-color);
    color: var(--info-color);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 22px 28px;
    box-shadow: var(--shadow);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 18px;
    transform: translateX(150%);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    max-width: 380px;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.toast-content h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.toast-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
    font-size: 1rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero {
        margin-top: 80px;
        padding: 80px 0 60px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 40px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .about-grid,
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image-badge {
        right: 20px;
    }

    .products-container {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }

    .cart-container,
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .order-summary {
        position: static;
    }

    .page-header {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 70px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px;
    }

    .stat-card::after {
        display: none;
    }

    .stat-number {
        font-size: 2.75rem;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .cart-product {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 10px;
        right: auto;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.85rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .toast {
        left: 20px;
        right: 20px;
        max-width: none;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Print */
@media print {
    .header,
    .footer,
    .btn,
    .cart-remove,
    .scroll-top {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .page-header,
    .hero {
        margin-top: 0;
    }
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.team-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-avatar {
    width: 130px;
    height: 130px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3.5rem;
    color: #000;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(248, 159, 43, 0.3);
}

.team-card:hover .team-avatar {
    transform: scale(1.1) rotate(5deg);
}

.team-card h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.team-card .role {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 18px;
    display: block;
}

.team-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================
   ADDITIONAL RESPONSIVE STYLES
   ======================================== */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-avatar {
        width: 110px;
        height: 110px;
        font-size: 2.75rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HIDE MOBILE ELEMENTS
   ======================================== */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .hide-tablet {
        display: none !important;
    }
}

/* ========================================
   PULSE ANIMATION FOR CART BADGE
   ======================================== */
@keyframes badgePulse {
    0% { transform: translate(25%, -25%) scale(1); }
    50% { transform: translate(25%, -25%) scale(1.2); }
    100% { transform: translate(25%, -25%) scale(1); }
}

.cart-count .badge.pulse {
    animation: badgePulse 0.3s ease;
}

/* ========================================
   LOADING SKELETON
   ======================================== */
.skeleton {
    background: linear-gradient(90deg, var(--card-bg) 25%, var(--card-bg-hover) 50%, var(--card-bg) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gradient-hover);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--darker-bg);
}

/* ========================================
   SELECTION STYLES
   ======================================== */
::selection {
    background: var(--primary-color);
    color: #000;
}

::-moz-selection {
    background: var(--primary-color);
    color: #000;
}

/* ========================================
   FOCUS STYLES FOR ACCESSIBILITY
   ======================================== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(248, 159, 43, 0.5);
}

/* ========================================
   SMOOTH IMAGE LOADING
   ======================================== */
img {
    opacity: 1;
    transition: opacity 0.3s ease;
}

img[data-src] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* ========================================
   PRINT STYLES ENHANCEMENT
   ======================================== */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }

    .gradient-text {
        -webkit-text-fill-color: black !important;
        color: black !important;
    }

    a {
        text-decoration: underline;
    }

    .no-print {
        display: none !important;
    }
}

/* WHATSAPP CHAT BUTTON */
.whatsapp-chat-btn {
    position: fixed;
    bottom: 90px; /* above scroll-top button */
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 9999;
    transition: var(--transition);
}

.whatsapp-chat-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    background: #1ebe5d;
}

/* On very small screens, adjust position */
@media (max-width: 576px) {
    .whatsapp-chat-btn {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}