:root {
    --primary-color: #00ADEF;
    --secondary-color: #FFD700;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #FFA500 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 1;
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    z-index: 1000;
}


.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 12px 20px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-icon {
    font-size: 20px;
    color: var(--text-dark);
    margin-left: 20px;
    position: relative;
    transition: color 0.3s;
}

.nav-icon:hover {
    color: var(--primary-color);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

/* Mega Menu */
.mega-dropdown:hover .mega-menu {
    display: block;
    animation: fadeInDown 0.4s ease;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 40px 0;
    display: none;
    border-top: 3px solid var(--primary-color);
}

.mega-menu-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.mega-menu-link {
    display: block;
    padding: 8px 0;
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s;
}

.mega-menu-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}



/* Category Cards */
.category-card {
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-overlay i {
    font-size: 48px;
    color: var(--white);
    animation: zoomIn 0.4s ease;
}

.category-content {
    padding: 25px;
    background: var(--white);
    text-align: center;
}

.category-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.category-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.category-link {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-link i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    padding-top: 125%;
    overflow: hidden;
    background: var(--light-color);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.3s;
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.4;
    flex-grow: 1;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Cormorant Garamond', serif;
}

.price-original {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.stars {
    color: var(--secondary-color);
    font-size: 14px;
}

.rating-count {
    font-size: 13px;
    color: var(--text-light);
}

.btn-add-cart {
    background: var(--dark-color);
    color: var(--white);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-add-cart:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Skeleton Loaders */
.skeleton-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    padding: 15px;
}

.skeleton-image {
    width: 100%;
    padding-top: 125%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 10px;
    margin-bottom: 15px;
}

.skeleton-text {
    height: 12px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 10px;
}

.skeleton-title {
    width: 80%;
    height: 16px;
}

.skeleton-subtitle {
    width: 60%;
}

.skeleton-price {
    width: 40%;
    height: 20px;
}

/* Features Section */
.features-section {
    background: var(--light-color);
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s;
    border-radius: 10px;
}

.feature-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-text {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-text {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 16px;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    color: var(--white);
}

/* Search Modal */
.search-box {
    position: relative;
}

.search-box .form-control {
    height: 50px;
    border-radius: 25px;
    padding: 0 60px 0 25px;
    border: 2px solid var(--border-color);
    font-size: 15px;
}

.search-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 173, 239, 0.15);
}

.btn-search {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .mega-menu {
        position: static;
        padding: 20px;
        box-shadow: none;
        border: none;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .category-image {
        height: 220px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-gold {
    background: var(--gradient-gold);
}


/* ===================================
   Custom Mobile Menu Icon (Golden Perfume)
   =================================== */

.custom-toggler {
    border: none;
    padding: 8px 12px;
    background: transparent;
    position: relative;
}

.custom-toggler:focus {
    box-shadow: none;
    outline: none;
}

.custom-toggler-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
}

.custom-toggler-icon svg {
    width: 100%;
    height: 100%;
    fill: #FFD700;          /* Golden color */
    transition: all 0.3s ease;
}

.custom-toggler:hover .custom-toggler-icon svg {
    fill: #FFA500;          /* Darker gold on hover */
    transform: scale(1.1);
}

/* Animation when menu is open */
.custom-toggler[aria-expanded="true"] .custom-toggler-icon svg {
    transform: rotate(180deg);
    fill: #FFA500;
}

/* ===================================
   EXACT FIX FOR YOUR LOGO STRUCTURE
   Target: .brand-logo-container and .brand-logo-img
   =================================== */

/* Your HTML Structure:
   <a class="navbar-brand">
     <div class="brand-logo-container">
       <img class="brand-logo-img">
     </div>
   </a>
*/

/* ===================================
   THE FIX - Add this to your style.css
   =================================== */

/* Navbar container */
.main-header .navbar {
    padding: 0.5rem 0;
    min-height: 80px;
}

/* Brand link - remove extra padding */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0 !important;
    margin-right: 2rem;
}

/* Logo container - no extra space */
.brand-logo-container {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* THE KEY FIX - Your logo image */
.brand-logo-img {
    height: 60px !important;        /* Main fix - reduce from ~200px */
    width: auto;                    /* Keep aspect ratio */
    max-width: 280px;               /* Prevent too wide */
    object-fit: contain;            /* No distortion */
    display: block;
}

/* ===================================
   RESPONSIVE SIZING
   =================================== */

/* Tablet */
@media (max-width: 991px) {
    .main-header .navbar {
        min-height: 70px;
    }
    
    .brand-logo-img {
        height: 50px !important;
        max-width: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .main-header .navbar {
        min-height: 65px;
        padding: 0.3rem 0;
    }
    
    .navbar-brand {
        margin-right: 1rem;
    }
    
    .brand-logo-img {
        height: 45px !important;
        max-width: 180px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .main-header .navbar {
        min-height: 60px;
    }
    
    .brand-logo-img {
        height: 40px !important;
        max-width: 150px;
    }
}

/* ===================================
   OPTIONAL: Hover Effect
   =================================== */

.brand-logo-img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-brand:hover .brand-logo-img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ===================================
   ALTERNATIVE SIZES TO TRY
   =================================== */

/* If 60px feels too small, try 70px */
/*
.brand-logo-img {
    height: 70px !important;
}
*/

/* If 60px feels too large, try 50px */
/*
.brand-logo-img {
    height: 50px !important;
}
*/

/* ===================================
   TEXT LOGO OPTION (If you switch)
   =================================== */

/* If you decide to use text logo instead */
.brand-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-logo-text .brand-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.brand-logo-text .brand-accent {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #FFD700;
    text-transform: uppercase;
    margin-top: -2px;
}

/* Text logo responsive */
@media (max-width: 767px) {
    .brand-logo-text .brand-text {
        font-size: 18px;
    }
    
    .brand-logo-text .brand-accent {
        font-size: 9px;
        letter-spacing: 2px;
    }
}
/* ===================================
   FIXED DIMENSIONS HERO CAROUSEL
   Same Size for Video + Images - Mobile Responsive
   =================================== */

/* ===================================
   1. CONTAINER - FIXED HEIGHT APPROACH
   =================================== */

.hero-carousel-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* CHANGE #1: Fixed, consistent heights for all screens */
#heroCarousel {
    position: relative;
    width: 100%;
    /* Desktop: 700px fixed height */
    height: 700px;
    overflow: hidden;
}

.carousel-inner,
.carousel-item {
    height: 100%;
    width: 100%;
}

/* ===================================
   2. VIDEO SLIDE - COVER FIT WITH FIXED ASPECT
   =================================== */

.hero-video-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000; /* Fallback background */
}

/* CHANGE #2: Video fills container perfectly */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Force 16:9 aspect ratio while covering container */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    transform: translate(-50%, -50%);
    object-fit: cover; /* Crop to fill */
    z-index: 1;
}

/* Fallback image same size */
.hero-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================================
   3. CATEGORY SLIDES - EXACT SAME SIZE AS VIDEO
   =================================== */

.hero-category-slide {
    position: relative;
    width: 100%;
    height: 100%; /* CHANGE #3: Same height as video */
    background-size: cover;
    background-position: center center; /* CHANGE #4: Center the image */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CHANGE #5: Link fills entire slide area */
.hero-category-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}

/* ===================================
   4. COMMON OVERLAY
   =================================== */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
    transition: all 0.5s ease;
}

.hero-category-link:hover .hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(0, 173, 239, 0.8) 0%,
        rgba(0, 173, 239, 0.5) 50%,
        rgba(255, 215, 0, 0.8) 100%
    );
}

/* ===================================
   5. CONTENT SIZING - RESPONSIVE TEXT
   =================================== */

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
}

/* CHANGE #6: Responsive font sizes */
.hero-subtitle {
    display: block;
    font-size: clamp(12px, 2vw, 16px); /* Scales with viewport */
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFD700;
    margin-bottom: 15px;
}

.hero-title {
    font-size: clamp(32px, 6vw, 64px); /* Scales: 32px to 64px */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: clamp(14px, 2.5vw, 20px); /* Scales: 14px to 20px */
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.category-icon-large {
    font-size: clamp(40px, 8vw, 80px); /* Scales: 40px to 80px */
    color: #FFD700;
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* ===================================
   6. BUTTONS - RESPONSIVE SIZING
   =================================== */

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary,
.btn-hero-cta {
    padding: 14px 32px;
    font-size: clamp(13px, 1.8vw, 16px);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-primary {
    background: #FFD700;
    color: #1a1a1a;
    border: 2px solid #FFD700;
}

.btn-hero-primary:hover {
    background: transparent;
    color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-hero-cta {
    background: #FFD700;
    color: #1a1a1a;
    border: 2px solid #FFD700;
}

.hero-category-link:hover .btn-hero-cta {
    background: white;
    color: #00ADEF;
    transform: translateX(10px);
}

/* ===================================
   7. CONTROLS - RESPONSIVE POSITIONING
   =================================== */

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 215, 0, 0.8);
    border-color: #FFD700;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-icon i {
    font-size: 20px;
    color: white;
}

/* Hide default Bootstrap icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* ===================================
   8. INDICATORS - RESPONSIVE SIZING
   =================================== */

.carousel-indicators {
    bottom: 20px;
    margin: 0;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: 0;
}

.carousel-indicators [data-bs-target] i {
    font-size: 18px;
    color: white;
}

.carousel-indicators [data-bs-target].active {
    background: rgba(255, 215, 0, 0.9);
    border-color: #FFD700;
    opacity: 1;
    transform: scale(1.2);
}

/* ===================================
   9. RESPONSIVE BREAKPOINTS - EXACT HEIGHTS
   =================================== */

/* CHANGE #7: Large Desktop (1920px+) */
@media (min-width: 1920px) {
    #heroCarousel {
        height: 800px; /* Larger screens = taller carousel */
    }
}

/* CHANGE #8: Desktop (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    #heroCarousel {
        height: 700px; /* Standard desktop height */
    }
}

/* CHANGE #9: Laptop/Tablet Landscape (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    #heroCarousel {
        height: 600px; /* Slightly shorter */
    }
    
    .hero-content {
        padding: 30px 20px;
    }
}

/* CHANGE #10: Tablet (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    #heroCarousel {
        height: 500px; /* Tablet height */
    }
    
    .hero-content {
        padding: 25px 15px;
        max-width: 700px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 40px;
        height: 40px;
        margin: 0 5px;
    }
    
    .carousel-indicators [data-bs-target] i {
        font-size: 16px;
    }
}

/* CHANGE #11: Mobile Landscape (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    #heroCarousel {
        height: 450px; /* Mobile landscape */
    }
    
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-actions {
        gap: 10px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-icon i {
        font-size: 18px;
    }
}

/* CHANGE #12: Mobile Portrait (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    #heroCarousel {
        height: 400px; /* Mobile portrait */
    }
    
    .hero-content {
        padding: 15px 10px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-cta {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 35px;
        height: 35px;
        margin: 0 4px;
    }
    
    .carousel-indicators [data-bs-target] i {
        font-size: 14px;
    }
}

/* CHANGE #13: Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    #heroCarousel {
        height: 350px; /* Small mobile */
    }
    
    .hero-content {
        padding: 15px 10px;
    }
    
    .hero-subtitle {
        margin-bottom: 10px;
        letter-spacing: 2px;
    }
    
    .hero-title {
        margin-bottom: 10px;
    }
    
    .hero-description {
        margin-bottom: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-cta {
        width: 100%;
        max-width: 250px;
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-control-icon i {
        font-size: 16px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 30px;
        height: 30px;
        margin: 0 3px;
    }
    
    .carousel-indicators [data-bs-target] i {
        font-size: 12px;
    }
}

/* ===================================
   10. SCROLL INDICATOR
   =================================== */

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    font-size: 18px;
}

/* ===================================
   11. ANIMATIONS
   =================================== */

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ===================================
   12. ACCESSIBILITY & PERFORMANCE
   =================================== */

@media (prefers-reduced-motion: reduce) {
    .hero-video,
    .carousel-item,
    .scroll-indicator,
    .category-icon-large {
        animation: none;
        transition: none;
    }
}

/* ===================================
   SUMMARY OF CHANGES FOR CONSISTENCY
   =================================== */

/*
CHANGE #1: Fixed height: 700px desktop (scales down on mobile)
CHANGE #2: Video object-fit: cover (fills container exactly)
CHANGE #3: Category slides height: 100% (matches video)
CHANGE #4: Background-position: center center (consistent cropping)
CHANGE #5: Links fill 100% (clickable everywhere)
CHANGE #6: Clamp() for responsive text (scales smoothly)
CHANGE #7-13: Exact heights per breakpoint:
  - 1920px+:    800px
  - 1200-1919:  700px
  - 992-1199:   600px
  - 768-991:    500px
  - 576-767:    450px
  - 480-575:    400px
  - 320-479:    350px

RESULT: Video and images always same dimensions, perfectly responsive!
*/
