/* Global Styles - Mobile First */
:root {
    /* Enhanced Color Palette */
    --primary-color: #f8b500; /* Slightly more orange gold for sportier feel */
    --primary-dark: #e59400;
    --primary-light: #ffcd4c;
    --primary-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --secondary-color: #1c1f23; /* Darker, more sophisticated */
    --secondary-light: #2d3339;
    --secondary-dark: #14171a;
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --accent-color: #334d5c; /* Dark teal accent for sophistication */
    --accent-light: #4b7285;
    --white-color: #ffffff;
    --off-white: #f7f7f9;
    --light-gray: #f1f3f5;
    --medium-gray: #CED4DA;
    --dark-gray: #343a40;
    --tech-blue: #0084c7;
    --tech-red: #e62739;
    --success-color: #37b24d;
    --warning-color: #f76707;
    --error-color: #e03131;
    
    /* Box Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 30px rgba(0, 0, 0, 0.2);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-fast: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Typography */
    --heading-font: 'Rajdhani', sans-serif;
    --brand-font: 'Orbitron', sans-serif;
    --body-font: 'Titillium Web', sans-serif;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-pill: 50px;
    --border-radius-circle: 50%;
    
    /* Section Spacing */
    --section-padding-y: 5rem;
    --section-padding-x: 1.5rem;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    overflow-x: hidden;
    color: var(--secondary-color);
    background-color: var(--off-white);
    padding-top: 60px; /* Adjusted for new navbar height */
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
}

a:hover {
    color: var(--primary-color);
}

a.underline-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

a.underline-link:hover::after {
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.8;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-italic {
    font-style: italic;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: 700;
}

.section-heading {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2rem;
    text-align: center;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-pill);
}

.text-warning {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--accent-color) !important;
}

.brand-text {
    font-family: var(--brand-font);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    background: linear-gradient(to right, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Section Spacing */
.section {
    padding: var(--section-padding-y) var(--section-padding-x);
}

.section-light {
    background-color: var(--light-gray);
}

.section-dark {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.section-accent {
    background-color: var(--accent-color);
    color: var(--white-color);
}

/* Button Styling */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(100%);
    transition: 0.75s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--secondary-color);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: var(--white-color);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-outline-light {
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

.btn-outline-light:hover {
    background: var(--white-color);
    color: var(--secondary-color);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Enhanced Navbar */
.navbar {
    box-shadow: var(--shadow-md);
    background: var(--secondary-gradient) !important;
    padding: 0.4rem 1rem;
    z-index: 1030;
    position: fixed;
    top: 0;
    width: 100%;
    transition: var(--transition);
    height: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Enhanced sidebar toggle button */
.sidebar-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-circle);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.sidebar-toggle:hover, 
.sidebar-toggle:focus {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: scale(1.05);
}

.sidebar-toggle:active {
    transform: scale(0.95);
}

.navbar-brand {
    padding: 0;
    position: relative;
}

.navbar-brand::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.navbar-brand:hover::after {
    transform: scaleX(1);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 1rem 1.25rem;
    transition: var(--transition);
    position: relative;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 30%;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Enhanced Dropdown Menu */
.dropdown-menu {
    border: none;
    border-radius: var(--border-radius-md);
    background-color: var(--secondary-light);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    border-top: 2px solid var(--primary-color);
    min-width: 12rem;
    display: none; /* Hide by default */
}

.dropdown-menu.show {
    display: block; /* Show when .show class is applied */
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    transition: var(--transition);
    font-family: var(--heading-font);
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(248, 181, 0, 0.15);
    color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown-divider {
    border-top-color: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Responsive Navbar */
.navbar-collapse {
    background: var(--secondary-gradient);
    padding: 1rem;
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 80vh;
    overflow-y: auto;
}

.dropdown-submenu {
    position: static;
}

.dropdown-submenu > .dropdown-menu {
    position: static;
    margin-left: 1.5rem;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
    border-top: none;
    box-shadow: none;
}

.dropdown-submenu > .dropdown-toggle::after {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.dropdown-submenu > .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(-90deg);
}

/* Enhanced Hero Section */
.hero-section {
    background-image: url('https://media.discordapp.net/attachments/1353552465139859488/1366860861125165297/bag.webp?ex=68127be0&is=68112a60&hm=edc67eb1f893a94d05275fe2124b8bbc7724b62b4db4a8b7de5f479948b8045a&=&format=webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    min-height: 600px;
    position: relative;
    color: var(--white-color);
    overflow: hidden;
    text-align: center;
    margin-top: -60px; /* Offset navbar height */
    padding-top: 60px; /* Add padding to account for navbar */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

/* Speed Lines Animation */
.hero-section .speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    perspective: 1000px;
}

.hero-section .speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.7;
    transform-origin: left center;
    animation: speedLines 2.5s linear infinite;
    border-radius: 50px;
}

.hero-section .speed-line:nth-child(1) {
    top: 15%;
    width: 70%;
    animation-delay: 0s;
    transform: rotate(-2deg);
}

.hero-section .speed-line:nth-child(2) {
    top: 35%;
    width: 85%;
    animation-delay: 0.15s;
    transform: rotate(-1deg);
}

.hero-section .speed-line:nth-child(3) {
    top: 55%;
    width: 75%;
    animation-delay: 0.3s;
    transform: rotate(1deg);
}

.hero-section .speed-line:nth-child(4) {
    top: 75%;
    width: 90%;
    animation-delay: 0.45s;
    transform: rotate(2deg);
}

/* Enhanced speed lines animation */
@keyframes speedLines {
    0% {
        transform: translateX(100%) scaleX(0.8);
        opacity: 0;
    }
    5% {
        opacity: 0.7;
    }
    95% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(-20%) scaleX(1.2);
        opacity: 0;
    }
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.hero-section h1 {
    font-family: var(--brand-font);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.hero-section h1 span {
    position: relative;
    display: inline-block;
}

.hero-section h1 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    animation: revealFromLeft 1.5s ease-out forwards;
    animation-delay: 1.2s;
}

.hero-section p.lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1.2s ease-out;
    position: relative;
    padding-left: 0;
    font-family: var(--heading-font);
}

.hero-section .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius-pill);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1.4s ease-out;
    margin-bottom: 0.5rem;
    display: inline-block;
    max-width: 200px;
    width: 100%;
}

.hero-section .btn:nth-child(2) {
    margin-left: 0;
    margin-top: 0.5rem;
}

/* Store Header Styling */
.store-header {
    background-image: url('https://media.discordapp.net/attachments/1353552465139859488/1366860861125165297/bag.webp?ex=68127be0&is=68112a60&hm=edc67eb1f893a94d05275fe2124b8bbc7724b62b4db4a8b7de5f479948b8045a&=&format=webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    position: relative;
    color: var(--white-color);
    text-align: center;
    margin-top: -60px; /* Offset navbar height */
    padding-top: 100px; /* Add padding to push content below navbar */
    overflow: hidden; /* For speed lines */
}

.store-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.store-header .container {
    position: relative;
    z-index: 2;
}

.store-header h1 {
    font-family: var(--brand-font);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 2.5rem;
}

.store-header .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0.5rem 0;
}

.store-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.store-header .breadcrumb-item a {
    color: white;
    transition: var(--transition);
}

.store-header .breadcrumb-item a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Speed lines for store header */
.store-header .speed-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.store-header .speed-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    opacity: 0.6;
    animation: speedLines 3s linear infinite;
    border-radius: 50px;
}

.store-header .speed-line:nth-child(1) {
    top: 25%;
    width: 70%;
    animation-delay: 0s;
}

.store-header .speed-line:nth-child(2) {
    top: 55%;
    width: 85%;
    animation-delay: 0.3s;
}

/* Enhanced Brand Cards */
.brand-card {
    transition: var(--transition-slow);
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    position: relative;
    z-index: 1;
    background: var(--white-color);
    margin-bottom: 1.5rem;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248,181,0,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.brand-card:hover::before {
    opacity: 1;
}

.brand-card .card-body {
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.brand-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

.brand-card:hover::after {
    transform: scaleX(1);
}

.brand-icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--secondary-color);
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg), inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    transition: var(--transition-slow);
    position: relative;
    z-index: 1;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.brand-card:hover .brand-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl), inset 0 -5px 0 rgba(0, 0, 0, 0.2);
}

.brand-card:hover .brand-icon::before {
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.brand-icon i {
    font-size: 2.8rem;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.brand-card h3 {
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--heading-font);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    color: var(--secondary-color);
}

.brand-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    min-height: 60px;
}

.brand-card .btn {
    border-radius: var(--border-radius-pill);
    padding: 0.8rem 2rem;
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

/* Enhanced Service Cards */
.service-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, #2d3339 0%, #1c1f23 100%);
    height: 100%;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248,181,0,0.05) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-slow);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 90px;
    height: 90px;
    line-height: 90px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--secondary-color);
    box-shadow: var(--shadow-lg), inset 0 -5px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition-slow);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl), inset 0 -5px 10px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon::before {
    opacity: 0.5;
    animation: pulse 2s infinite;
}

.service-icon i {
    font-size: 2.5rem;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: var(--white-color);
    font-family: var(--heading-font);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 0;
    min-height: 80px;
}

/* Enhanced Product Cards */
.product-card {
    transition: var(--transition-slow);
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    background: var(--white-color);
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    border-top: 3px solid var(--primary-color);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(248,181,0,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: var(--transition-slow);
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.product-card .badge {
    z-index: 3;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius-pill);
    letter-spacing: 1px;
    font-family: var(--heading-font);
    top: 1rem;
    right: 1rem;
}

.product-img-container {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    overflow: hidden;
    position: relative;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    position: relative;
    transition: var(--transition);
}

.product-card:hover .placeholder-img {
    transform: scale(1.08);
}

.placeholder-img::after {
    content: 'ForCARS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #adb5bd;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: var(--brand-font);
    letter-spacing: 2px;
}

.product-card .card-body {
    padding: 1.8rem;
    position: relative;
}

.product-card .card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-family: var(--heading-font);
    letter-spacing: 0.5px;
    height: 2.8rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-family: var(--heading-font);
    letter-spacing: 0.5px;
}

.product-card .btn {
    border-radius: var(--border-radius-pill);
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
    width: 100%;
    background: var(--primary-gradient);
    border: none;
    color: var(--secondary-color);
}

.product-card .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(var(--primary-color-rgb), 0.3);
}

/* Custom Scrollbar for the sidebar and other scrollable elements */
/* Webkit browsers (Chrome, Safari, newer Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
    transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.1);
}

/* Enhanced Sidebar - Full menu for mobile with custom scrollbar */
.sidebar {
    background: var(--secondary-gradient);
    color: white;
    height: 100%;
    width: 85%;
    max-width: 350px;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 1050;
    padding: 1.5rem;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-xl);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    /* Custom scrollbar specific to sidebar (for more specific styling) */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.2);
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

.sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

.sidebar.show {
    left: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1040;
    backdrop-filter: blur(3px);
    display: none;
}

.sidebar-overlay.show {
    display: block;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.sidebar-brand {
    font-family: var(--brand-font);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sidebar-brand span {
    color: var(--primary-color);
}

.sidebar-categories h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 2rem 0 1rem;
    letter-spacing: 1px;
    color: var(--primary-color);
    position: relative;
    padding-left: 15px;
}

.sidebar-categories h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu a {
    color: rgba(255, 255, 255, 0.85);
    display: block;
    transition: var(--transition);
    padding: 0.6rem 0;
    font-family: var(--heading-font);
    font-weight: 500;
}

.sidebar-menu a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.sidebar-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-menu a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    transition: var(--transition);
}

.sidebar-menu a:hover i {
    transform: scale(1.2);
}

.filter-section {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.filter-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.filter-group {
    margin-bottom: 1.8rem;
}

.filter-group h5 {
    font-size: 0.95rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 12px;
    letter-spacing: 0.5px;
}

.filter-group h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--primary-color);
}

.form-check {
    margin-bottom: 0.7rem;
    transition: var(--transition);
}

.form-check:hover {
    transform: translateX(5px);
}

.form-check-input {
    margin-right: 10px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-label {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.form-check-input:checked + .form-check-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Product Detail Page */
.product-breadcrumb {
    margin: 20px 0;
    font-size: 0.95rem;
}

.product-breadcrumb .breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.product-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.product-breadcrumb .breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.product-img-large {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 400px;
    background-color: var(--light-gray);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.product-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-family: var(--heading-font);
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.product-price-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--heading-font);
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(248, 181, 0, 0.1);
    border-radius: var(--border-radius-md);
}

.product-meta {
    margin-bottom: 2rem;
}

.product-meta p {
    margin-bottom: 0.5rem;
}

.product-meta strong {
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-block;
    width: 100px;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
    padding-left: 15px;
    color: var(--secondary-color);
}

.product-description h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
}

.product-description p {
    line-height: 1.8;
    color: #444;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.product-features ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 1rem;
    color: #444;
}

.product-features ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.product-specs {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.spec-row {
    display: flex;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    background-color: rgba(248, 181, 0, 0.05);
}

.spec-name {
    flex: 1;
    padding: 12px 15px;
    background-color: var(--light-gray);
    font-weight: 600;
    border-right: 1px solid var(--medium-gray);
    font-family: var(--heading-font);
}

.spec-value {
    flex: 2;
    padding: 12px 15px;
    color: #444;
}

.product-buttons {
    margin-top: 2rem;
}

.product-buttons .btn {
    border-radius: var(--border-radius-pill);
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.wishlist-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    line-height: 44px;
    text-align: center;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.quantity-selector {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.quantity-selector .input-group {
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-pill);
    overflow: hidden;
}

.quantity-selector .btn {
    background-color: var(--light-gray);
    border: none;
    color: var(--secondary-color);
    font-weight: 700;
}

.quantity-selector .form-control {
    border: none;
    text-align: center;
    font-weight: 600;
}

/* Enhanced Footer */
footer {
    background: var(--secondary-gradient);
    color: white;
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 15px;
    display: inline-block;
}

footer h5::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

footer .list-unstyled li {
    margin-bottom: 0.7rem;
}

footer .list-unstyled a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: block;
    padding: 0.3rem 0;
    position: relative;
}

footer .list-unstyled a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

footer .list-unstyled a:hover::after {
    width: 100%;
}

footer .list-unstyled a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    margin-right: 0.8rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 3rem;
}

.footer-bottom p {
    margin-bottom: 1rem;
    text-align: center;
}

.footer-links {
    text-align: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.8rem;
    transition: var(--transition);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes revealFromLeft {
    0% { transform: scaleX(0); transform-origin: left; }
    100% { transform: scaleX(1); transform-origin: left; }
}

@keyframes rotateGear {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Whatsapp Float */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 999;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: var(--secondary-color);
    padding: 8px 12px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    font-weight: 600;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 65px;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: rotateGear 2s linear infinite;
}

.loader p {
    color: white;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.2rem;
}

/* Media Queries for Larger Screens */
@media (min-width: 576px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.25rem;
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section p.lead {
        font-size: 1.35rem;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .product-img-container {
        height: 220px;
    }
    
    .product-img-large {
        height: 450px;
    }
    
    .product-title {
        font-size: 2.3rem;
    }
    
    .product-buttons .btn {
        margin-bottom: 0;
    }
    
    .hero-section .btn {
        width: auto;
        margin-right: 0.8rem;
    }
    
    .hero-section .btn:nth-child(2) {
        margin-left: 0.8rem;
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .navbar-brand {
        font-size: 1.8rem;
    }
    
    .hero-section {
        height: 90vh;
        text-align: left;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .hero-section p.lead {
        font-size: 1.5rem;
        padding-left: 18px;
    }
    
    .hero-section p.lead::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: var(--primary-color);
        animation: fadeInLeft 1.5s ease-out;
    }
    
    .navbar-dark .navbar-nav .nav-link::after {
        display: block;
    }
    
    .sidebar {
        width: 350px;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .product-price-value {
        font-size: 2.5rem;
    }
    
    .footer-bottom p {
        text-align: left;
    }
    
    .footer-links {
        text-align: right;
    }
}

@media (min-width: 992px) {
    body {
        padding-top: 76px;
    }
    
    .navbar {
        padding: 0.5rem 2rem;
        height: 76px;
    }
    
    .navbar-brand {
        font-size: 2rem;
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 1.5rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .navbar-collapse {
        background: none;
        padding: 0;
        box-shadow: none;
    }
    
    /* Desktop Dropdown Styling */
    .dropdown-menu {
        position: absolute;
        float: none;
        padding: 0.75rem 0;
    }
    
    .dropdown-submenu {
        position: relative;
    }
    
    .dropdown-submenu > .dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-top: -0.75rem;
        border-radius: var(--border-radius-md);
        border-top: 2px solid var(--primary-color);
        background-color: var(--secondary-light);
        padding: 0.75rem 0;
        box-shadow: var(--shadow-lg);
        min-width: 12rem;
    }
    
    .dropdown-submenu > .dropdown-toggle::after {
        content: '';
        display: inline-block;
        width: 0.4em;
        height: 0.4em;
        margin-left: 0.5em;
        vertical-align: 0.1em;
        border-top: 0.3em solid transparent;
        border-right: 0;
        border-bottom: 0.3em solid transparent;
        border-left: 0.3em solid;
        transition: transform 0.3s ease;
    }
    
    .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: translateX(3px);
    }
    
    /* Fix for Bootstrap dropdown hover on desktop */
    @media (hover: hover) {
        .dropdown:hover > .dropdown-menu {
            display: block;
        }
        
        .dropdown-submenu:hover > .dropdown-menu {
            display: block;
        }
    }
    
    .hero-section {
        margin-top: -76px;
        padding-top: 76px;
    }
    
    .store-header {
        margin-top: -76px;
        padding-top: 120px;
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .hero-section p.lead {
        font-size: 1.6rem;
    }
    
    .section-heading {
        font-size: 2.5rem;
    }
    
    .product-img-container {
        height: 250px;
    }
    
    .product-img-large {
        height: 500px;
    }
}

@media (min-width: 1200px) {
    .hero-section h1 {
        font-size: 4.5rem;
    }
    
    .navbar-brand {
        font-size: 2.2rem;
    }
    
    .container {
        max-width: 1320px;
    }
    
    .product-img-container {
        height: 280px;
    }
    
    .product-img-large {
        height: 550px;
    }
}
