/* ============================================
   OJAS SOLUTIONS - Professional E-commerce Styles
   Brand Colors: Orange #E0703A, Blue #1E5AA8
   ============================================ */

/* CSS Variables - Enhanced */
:root {
    --primary-orange: #E0703A;
    --primary-orange-dark: #c55a2e;
    --primary-orange-light: #f08a5c;
    --primary-orange-pale: #fff5f2;
    --primary-orange-glow: rgba(224, 112, 58, 0.3);
    --primary-blue: #1E5AA8;
    --primary-blue-dark: #154580;
    --primary-blue-light: #3a7bc8;
    --primary-blue-pale: #f0f6ff;
    --primary-blue-glow: rgba(30, 90, 168, 0.3);
    
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --danger: #ef4444;
    --danger-light: #fee2e2;
    --info: #3b82f6;
    --info-light: #dbeafe;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow-orange: 0 0 20px rgba(224, 112, 58, 0.4);
    --shadow-glow-blue: 0 0 20px rgba(30, 90, 168, 0.4);
    
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   Base Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

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

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

/* ============================================
   Announcement Bar - Enhanced
   ============================================ */

.announcement-bar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer-slide 3s infinite;
}

@keyframes shimmer-slide {
    100% { left: 100%; }
}

.announcement-text {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.announcement-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.announcement-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}


   /*============================================ */

#mainNavbar {
    background: #fff;
    padding: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

#mainNavbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    padding: 0.75rem 0;
}

.brand-logo {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

#mainNavbar.scrolled .brand-logo {
    height: 40px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-ojas {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
}

.brand-solutions {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-nav {
    gap: 0.25rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 1.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
    border-radius: var(--radius-sm);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-orange);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange) !important;
}

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

/* Dropdown - Enhanced */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    margin-top: 0.5rem !important;
    animation: dropdownSlide 0.2s ease-out;
}

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

.dropdown-item {
    padding: 0.625rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-item:hover {
    background: var(--primary-orange-pale);
    color: var(--primary-orange);
    transform: translateX(4px);
}

.dropdown-item i {
    font-size: 1rem;
    opacity: 0.7;
}

.dropdown-item:hover i {
    opacity: 1;
}

.dropdown-divider {
    margin: 0.5rem;
    border-color: var(--gray-200);
}

/* Navigation Actions */
.nav-actions {
    gap: 0.5rem;
}

.nav-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    color: var(--gray-700);
    font-size: 1.25rem;
    transition: var(--transition);
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-action-btn:hover {
    background: var(--gray-100);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--primary-orange);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-pop 0.3s ease-out;
}

@keyframes badge-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ============================================
   Search Modal
   ============================================ */

.search-modal {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: var(--gray-100);
    border-radius: 50%;
    padding: 0.5rem;
}

.search-form {
    padding: 2rem;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    font-size: 1.25rem;
    color: var(--gray-400);
}

.search-input {
    padding: 1rem 1rem 1rem 3.5rem;
    font-size: 1.125rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    border-right: none;
}

.search-input:focus {
    border-color: var(--primary-orange);
    box-shadow: none;
}

.search-btn {
    padding: 1rem 2rem;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-weight: 600;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 14px rgba(224, 112, 58, 0.35);
}

.btn-primary-orange:hover {
    background: linear-gradient(135deg, var(--primary-orange-dark) 0%, var(--primary-orange) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 112, 58, 0.45);
}

.btn-primary-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 14px rgba(30, 90, 168, 0.35);
}

.btn-primary-blue:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 90, 168, 0.45);
}

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

.btn-outline-orange:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-dark {
    border: 2px solid var(--gray-700);
    color: var(--gray-700);
}

.btn-outline-dark:hover {
    background: var(--gray-700);
    color: #fff;
    transform: translateY(-2px);
}

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

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

/* ============================================
   Forms
   ============================================ */

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(224, 112, 58, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

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

/* ============================================
   Cards
   ============================================ */

.card {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
    padding: 1rem 1.25rem;
    font-weight: 600;
}

/* ============================================
   COMPACT SECTION SPACING
   ============================================ */

/* Compact product sections - ultra compact */
.section-products {
    padding: 1.5rem 0;
}

.section-products .section-header {
    margin-bottom: 1rem;
}

.section-products .section-label {
    font-size: 0.5625rem;
    padding: 0.2rem 0.5rem;
    margin-bottom: 0.375rem;
}

.section-products .section-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.section-products .section-subtitle {
    font-size: 0.75rem;
}

/* Grid gap reduction for compact layout */
.section-products .row.g-4 {
    gap: 0.75rem !important;
}

/* Ultra compact product card */
.product-card-ultra .card-body {
    padding: 0.375rem 0.5rem 0.5rem !important;
}

.product-card-ultra .product-category {
    font-size: 0.5rem !important;
    margin-bottom: 0.125rem !important;
}

.product-card-ultra .card-title {
    font-size: 0.75rem !important;
    margin-bottom: 0.125rem !important;
    min-height: 1.5em !important;
}

.product-card-ultra .product-rating {
    margin-bottom: 0.125rem !important;
}

.product-card-ultra .product-rating i {
    font-size: 0.5625rem !important;
}

.product-card-ultra .product-price {
    margin-bottom: 0.375rem !important;
}

.product-card-ultra .price-current {
    font-size: 0.875rem !important;
}

.product-card-ultra .price-original {
    font-size: 0.625rem !important;
}

.product-card-ultra .price-discount {
    font-size: 0.5rem !important;
    padding: 0.0625rem 0.25rem !important;
}

.product-card-ultra .btn-add-cart {
    padding: 0.375rem 0.5rem !important;
    font-size: 0.625rem !important;
    border-width: 1px !important;
}

.product-card-ultra .stock-status {
    margin-bottom: 0.375rem !important;
    font-size: 0.5625rem !important;
    padding: 0.0625rem 0.375rem !important;
}

.product-card-ultra .badge-new,
.product-card-ultra .badge-featured,
.product-card-ultra .badge-sale,
.product-card-ultra .badge-out-of-stock {
    padding: 0.1rem 0.25rem !important;
    font-size: 0.5rem !important;
}

.product-card-ultra .card-action-btn {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.75rem !important;
}

.product-card-ultra .card-actions {
    gap: 0.125rem !important;
}

.product-card-ultra .card-img-wrapper {
    padding: 0.5rem !important;
}

.product-card-ultra .card-img-top {
    padding: 0.25rem !important;
}

/* Compact category cards */
.category-card-compact {
    min-height: 140px !important;
}

.category-card-compact .category-icon-bg {
    width: 48px !important;
    height: 48px !important;
}

.category-card-compact .category-icon-bg i {
    font-size: 1.25rem !important;
}

.category-card-compact .category-card-title {
    font-size: 0.8125rem !important;
}

/* Compact features bar */
.features-bar-compact {
    padding: 0.75rem 0 !important;
}

.features-bar-compact .feature-icon-wrapper {
    width: 36px !important;
    height: 36px !important;
}

.features-bar-compact .feature-icon-wrapper i {
    font-size: 1.25rem !important;
}

.features-bar-compact .fw-bold {
    font-size: 0.8125rem !important;
}

.features-bar-compact small {
    font-size: 0.6875rem !important;
}

/* Compact section spacing for other sections */
.section-compact {
    padding: 1.5rem 0 !important;
}

.section-compact-sm {
    padding: 1rem 0 !important;
}

/* ============================================
   COMPACT PRODUCT CARD STYLES
   ============================================ */

/* Compact product card body */
.product-card-compact .card-body {
    padding: 0.5rem 0.75rem 0.75rem !important;
}

/* Compact category text */
.product-card-compact .product-category {
    font-size: 0.625rem !important;
    margin-bottom: 0.25rem !important;
}

/* Compact product title */
.product-card-compact .card-title {
    font-size: 0.8125rem !important;
    margin-bottom: 0.25rem !important;
    min-height: 1.65em !important;
}

/* Compact rating */
.product-card-compact .product-rating {
    margin-bottom: 0.25rem !important;
}

.product-card-compact .product-rating i {
    font-size: 0.625rem !important;
}

/* Compact price */
.product-card-compact .product-price {
    margin-bottom: 0.5rem !important;
    gap: 0.375rem !important;
}

.product-card-compact .price-current {
    font-size: 1rem !important;
}

/* Compact add to cart button */
.product-card-compact .btn-add-cart {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.75rem !important;
}

/* Compact stock status */
.product-card-compact .stock-status {
    margin-bottom: 0.5rem !important;
    font-size: 0.625rem !important;
    padding: 0.125rem 0.375rem !important;
}

/* Compact badges */
.product-card-compact .product-badges {
    gap: 0.25rem !important;
}

.product-card-compact .badge-new,
.product-card-compact .badge-featured,
.product-card-compact .badge-sale,
.product-card-compact .badge-out-of-stock {
    padding: 0.125rem 0.375rem !important;
    font-size: 0.5625rem !important;
}

/* Compact card actions */
.product-card-compact .card-actions {
    gap: 0.25rem !important;
}

.product-card-compact .card-action-btn {
    width: 20px !important;
    height: 30px !important;
    font-size: 0.875rem !important;
}

/* ============================================
   Product Card - Enhanced
   ============================================ */

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s ease;
    height: 100%;
    position: relative;
    border: 1px solid var(--gray-200);
    background: #fff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-color: #F26522;
}

.card-img-wrapper {
    position: relative;
    aspect-ratio: 1;
    background: var(--gray-50);
    overflow: hidden;
    padding: 0.75rem;
}

.card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    transition: transform 0.4s ease;
}

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

/* Product Badges */
.product-badges {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 3;
}

.badge-new {
    background: var(--success);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-featured {
    background: var(--info);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-sale {
    background: var(--danger);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.badge-out-of-stock {
    background: var(--gray-500);
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 600;
}

/* Card Actions - Enhanced */
.card-actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    z-index: 3;
}

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

.card-action-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    background: #fff;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.card-action-btn:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: scale(1.1);
}

.card-action-btn.active {
    background: var(--danger);
    color: #fff;
}

/* Product Card Body */
.product-card .card-body {
    padding: 0.625rem 0.75rem 0.75rem;
}

.product-category {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
    display: block;
}

.product-card .card-title {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.25rem;
    color: var(--gray-800);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    min-height: 1.8em;
}

.product-card .card-title a {
    color: inherit;
}

.product-card .card-title a:hover {
    color: var(--primary-orange);
}

/* Rating Stars */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    margin-bottom: 0.25rem;
}

.product-rating i {
    color: var(--gray-300);
    font-size: 0.6875rem;
}

.product-rating i.filled {
    color: #fbbf24;
}

.product-rating .rating-count {
    font-size: 0.6875rem;
    color: var(--gray-500);
    margin-left: 0.25rem;
}

/* Price Styling */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.price-current {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-original {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--success);
    background: var(--success-light);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
}

/* Add to Cart Button - Enhanced */
.btn-add-cart {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: var(--radius);
    color: #fff;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: var(--primary-orange-dark);
    border-color: var(--primary-orange-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 112, 58, 0.3);
}

.btn-add-cart:disabled {
    background: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-400);
    cursor: not-allowed;
    transform: none;
}

.btn-add-cart:disabled:hover {
    background: var(--gray-100);
    border-color: var(--gray-200);
    color: var(--gray-400);
    box-shadow: none;
}

.btn-add-cart i {
    transition: transform 0.25s ease;
}

.btn-add-cart:hover i {
    transform: translateX(4px);
}

/* Stock Status */
.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
}

.stock-status.in-stock {
    background: var(--success-light);
    color: var(--success);
}

.stock-status.low-stock {
    background: var(--warning-light);
    color: var(--warning);
}

.stock-status.out-of-stock {
    background: var(--danger-light);
    color: var(--danger);
}

/* ============================================
   Hero Section - Compact & Professional
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    color: #1a1a1a;
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(224, 112, 58, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: auto;
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge i {
    font-size: 0.875rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.hero-title span {
    color: var(--primary-orange);
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.2em;
    background: var(--primary-orange-light);
    opacity: 0.25;
    z-index: -1;
}

.hero-subtitle {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    text-decoration: none;
}

.hero-btn-primary {
    background: var(--primary-orange);
    color: #fff;
    border: none;
    box-shadow: 0 3px 10px rgba(224, 112, 58, 0.3);
}

.hero-btn-primary:hover {
    background: var(--primary-orange-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 112, 58, 0.4);
}

.hero-btn-secondary {
    background: #fff;
    color: var(--gray-700);
    border: 2px solid var(--gray-200);
}

.hero-btn-secondary:hover {
    background: var(--gray-50);
    color: var(--gray-700);
    border-color: var(--gray-300);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-200);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

.hero-stat-label strong {
    color: var(--primary-orange);
}

/* Feature Icon Wrapper */
.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--primary-orange-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-main {
    width: 100%;
    max-width: 400px;
    opacity: 0.85; /* ← Adjust this value: 0.1 (transparent) to 1 (fully visible) */
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px -8px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.hero-float-card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.hero-float-card-icon.green {
    background: var(--success-light);
    color: var(--success);
}

.hero-float-card-icon.orange {
    background: var(--primary-orange-pale);
    color: var(--primary-orange);
}

.hero-float-card-icon.blue {
    background: var(--primary-blue-pale);
    color: var(--primary-blue);
}

.hero-float-card-text {
    display: flex;
    flex-direction: column;
}

.hero-float-card-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
}

.hero-float-card-subtitle {
    font-size: 0.6875rem;
    color: var(--gray-500);
}

.hero-float-card-1 {
    top: 10%;
    left: -5%;
}

.hero-float-card-2 {
    bottom: 20%;
    right: -5%;
}

.hero-float-card-3 {
    top: 40%;
    left: 0%;
}

/* ============================================
   Hero Banner Carousel - Compact
   ============================================ */

.hero-carousel {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-carousel .carousel-inner {
    position: relative;
}

.hero-carousel .carousel-item {
    min-height: 350px;
    height: auto;
    padding: 1.5rem 0;
}

.hero-banner-wrapper {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 350px;
    padding: 1.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1); /* ← Adjust: 0.1 (lighter) to 0.7 (darker) */
    z-index: 1;
}

.hero-mobile-image {
    display: none;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 450px;
}

.hero-banner-content .hero-badge {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #059669;
}

.hero-banner-content .hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.625rem;
    color: #fff;
}

.hero-banner-content .hero-title span {
    color: #fbbf24;
}

.hero-banner-content .hero-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.hero-banner-content .hero-actions {
    margin-bottom: 1rem;
}

/* Carousel Indicators */
.hero-carousel .carousel-indicators {
    margin-bottom: 1rem;
    z-index: 10;
}

.hero-carousel .carousel-indicators button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    background: var(--primary-orange);
    width: 20px;
    border-radius: 3px;
}

.hero-carousel .carousel-indicators button:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 36px;
    height: 36px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 0 0.75rem;
    transition: all 0.2s ease;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: var(--primary-orange);
    box-shadow: 0 4px 10px rgba(224, 112, 58, 0.3);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    background-size: 50% 50%;
    filter: none;
    filter: invert(1) grayscale(100);
}

.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(1);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-image-wrapper {
        margin-top: 1.5rem;
    }
    
    .hero-image-main {
        max-width: 300px;
    }
    
    .hero-banner-content .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-carousel .carousel-item {
        min-height: 300px;
    }
    
    .hero-banner-wrapper {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .hero-content {
        justify-content: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.25rem;
    }
    
    .hero-image-wrapper {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .hero-image-main {
        max-width: 220px;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .hero-banner-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-banner-content .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-carousel .carousel-item {
        min-height: 280px;
    }
    
    .hero-banner-wrapper {
        min-height: 280px;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 32px;
        height: 32px;
        margin: 0 0.5rem;
    }
}

/* ============================================
   Section Styles
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(224, 112, 58, 0.1);
    color: var(--primary-orange);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Category Cards - Enhanced
   ============================================ */

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    background: #fff;
    border: 1px solid var(--gray-200);
    transition: all 0.35s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange-light);
}

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

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

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(224, 112, 58, 0.9) 0%, rgba(224, 112, 58, 0.4) 100%);
}

.category-card-title {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.3;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-title {
    transform: translateY(-4px);
}

.category-card-count {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8125rem;
    font-weight: 500;
    transform: translateY(0);
    transition: transform 0.3s ease 0.05s;
}

.category-card:hover .category-card-count {
    transform: translateY(-4px);
}

/* Category Icon Card Style (for default categories) */
.category-card-icon {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    height: 100%;
}

.category-card-icon:hover {
    background: var(--gray-50);
}

.category-card-icon .category-icon-bg {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.35s ease;
}

.category-card-icon .category-icon-bg i {
    font-size: 1.75rem;
    color: #fff;
}

.category-card:hover .category-card-icon .category-icon-bg {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    transform: scale(1.1) rotate(5deg);
}

.category-card-icon .category-card-title {
    color: var(--gray-800);
    text-align: center;
    font-size: 1rem;
}

.category-card-icon .category-card-overlay {
    display: none;
}

/* ============================================
   Testimonials - Enhanced
   ============================================ */

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

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

.testimonial-quote {
    font-size: 3.5rem;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 1.25rem;
    opacity: 0.25;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-rating {
    margin-bottom: 1.25rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
    margin-right: 0.125rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-100);
}

.testimonial-avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.375rem;
    border: 2px solid var(--gray-100);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.125rem;
}

.testimonial-company {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonial-verified {
    font-size: 0.75rem;
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

/* ============================================
   Footer - Enhanced
   ============================================ */

.footer {
    background: var(--gray-900);
    color: #fff;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
}

.footer-top {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.footer-top h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-top p {
    opacity: 0.95;
    font-size: 1rem;
}

.newsletter-form .form-control {
    border: none;
    padding: 0.875rem 1.25rem;
    border-radius: var(--radius);
}

.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form .btn {
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    white-space: nowrap;
}

.footer-main {
    padding: 5rem 0 3rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.footer-brand-text span {
    color: var(--primary-orange);
}

.footer-about {
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--primary-orange);
    margin-top: 0.25rem;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--gray-400);
    transition: all 0.2s ease;
}

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

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 0.25rem;
    transform: translateX(4px);
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.footer-links a:hover i {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(224, 112, 58, 0.3);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 1.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-methods span {
    color: var(--gray-400);
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.payment-methods i:hover {
    color: var(--primary-orange);
}

/* Trust badges in footer */
.footer-trust-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.8125rem;
}

.trust-badge-item i {
    color: var(--success);
    font-size: 1rem;
}

/* ============================================
   Alerts & Toasts
   ============================================ */

.alert-animated {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Toast Custom Styles */
.toast {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.toast-success {
    background: var(--success);
    color: #fff;
}

.toast-error {
    background: var(--danger);
    color: #fff;
}

/* ============================================
   Quantity Selector
   ============================================ */

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background: var(--gray-50);
    border: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: var(--transition-fast);
    cursor: pointer;
}

.quantity-selector button:hover {
    background: var(--gray-200);
    color: var(--primary-orange);
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    color: var(--gray-800);
}

.quantity-selector input:focus {
    outline: none;
}

/* ============================================
   Utilities
   ============================================ */

.bg-gradient-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
}

.text-gradient-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        margin-top: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .nav-link::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-top {
        padding: 2rem 0;
    }
}

/* ============================================
   Animations
   ============================================ */

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

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

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .announcement-bar,
    #mainNavbar,
    .footer,
    .nav-actions,
    .card-actions,
    .btn {
        display: none !important;
    }
}

/* ============================================
   NEW ENHANCEMENTS - UI Improvements
   ============================================ */

/* Sticky Navbar with Backdrop Blur */
#mainNavbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#mainNavbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* Search Suggestions Dropdown */
.search-suggestions {
    padding: 0 2rem 2rem;
}

.search-results {
    border-top: 1px solid var(--gray-200);
    padding-top: 1rem;
}

.search-results-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    border: none;
}

.search-result-item:hover {
    background: var(--gray-50);
}

.search-result-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.search-result-img-placeholder {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

.search-result-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.search-result-info {
    flex: 1;
    margin-left: 1rem;
}

.search-result-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9375rem;
}

.search-result-price {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.875rem;
}

.search-result-type {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Skeleton Loading States */
.product-card-skeleton {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gray-200);
}

.skeleton-img {
    padding-top: 75%;
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-body {
    padding: 1rem 1.25rem 1.25rem;
}

.skeleton-line {
    height: 0.875rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 0.625rem;
}

.skeleton-line.short {
    width: 40%;
}

.skeleton-line.medium {
    width: 60%;
}

.skeleton-line.long {
    width: 80%;
}

.skeleton-btn {
    height: 2.5rem;
    border-radius: var(--radius);
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-top: 0.75rem;
}

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

/* Stats Counter Animation */
.hero-stat-number {
    position: relative;
    display: inline-block;
}

.hero-stat-number::after {
    content: '+';
    color: var(--primary-orange);
}

.hero-stat-number[data-suffix="K"]::after {
    content: 'K+';
}

.hero-stat-number[data-suffix="K"]::before {
    content: '';
}

.hero-stat-number[data-suffix="M"]::after {
    content: 'M+';
}

/* Product Image Zoom Effect */
.card-img-wrapper {
    position: relative;
}

.card-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(224, 112, 58, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

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

.card-img-top {
    cursor: zoom-in;
}

/* Enhanced Badge Animations */
.product-badges {
    perspective: 500px;
}

.badge-new,
.badge-featured,
.badge-sale,
.badge-out-of-stock {
    animation: badgeSlideIn 0.4s ease-out;
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px) rotateY(-20deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.badge-new {
    animation-delay: 0.1s;
}

.badge-featured {
    animation-delay: 0.2s;
}

.badge-sale {
    animation-delay: 0.3s;
}

/* Enhanced Card Action Buttons */
.card-action-btn {
    position: relative;
    overflow: hidden;
}

.card-action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-action-btn:hover::before {
    opacity: 1;
}

.card-action-btn i {
    position: relative;
    z-index: 1;
}

/* Wishlist Active State */
.card-action-btn.active {
    background: var(--danger);
    color: #fff;
}

.card-action-btn.active::before {
    display: none;
}

/* Stock Status Enhanced */
.stock-status {
    position: relative;
    overflow: hidden;
}

.stock-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer-slide 2s infinite;
}

@keyframes shimmer-slide {
    100% { left: 100%; }
}

.stock-status.in-stock::before {
    animation-duration: 3s;
}

.stock-status.low-stock::before {
    animation-duration: 1.5s;
}

/* Empty State Design */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-state-icon i {
    font-size: 2.5rem;
    color: var(--gray-400);
}

.empty-state-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.empty-state-text {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* Form Focus Enhancements */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(224, 112, 58, 0.1);
}

.form-control:focus-visible,
.form-select:focus-visible {
    outline: none;
}

/* Button Hover Effects */
.btn {
    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: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary-orange::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

/* Navigation Mobile Enhancement */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(224, 112, 58, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28224, 112, 58, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    cursor: pointer;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-orange);
}

.scroll-to-top i {
    font-size: 1.25rem;
}

/* Page Loading Spinner */
.page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.page-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hover Glow Effects */
.hover-glow-orange {
    transition: var(--transition);
}

.hover-glow-orange:hover {
    box-shadow: var(--shadow-glow-orange);
}

.hover-glow-blue {
    transition: var(--transition);
}

.hover-glow-blue:hover {
    box-shadow: var(--shadow-glow-blue);
}

/* Section Divider with Gradient */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-orange) 50%, transparent 100%);
    position: relative;
    margin: 3rem 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 4px;
}

/* Price Pulse Animation */
.price-current {
    position: relative;
    display: inline-block;
}

.price-current.updated {
    animation: pricePulse 0.5s ease-out;
}

@keyframes pricePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); color: var(--success); }
}

/* Toast Enhancements */
.toast {
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
}

.toast-success {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
}

.toast-error {
    background: linear-gradient(135deg, var(--danger) 0%, #dc2626 100%);
}

.toast-info {
    background: linear-gradient(135deg, var(--info) 0%, #2563eb 100%);
}

.toast .toast-body {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

/* Quick View Modal Enhancements */
.modal-quick-view .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal-quick-view .modal-header {
    border-bottom: none;
    padding: 1rem 1.5rem 0;
}

.modal-quick-view .modal-body {
    padding: 1.5rem;
}

.modal-quick-view .product-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.modal-quick-view .main-image {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-50);
}

.modal-quick-view .main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Enhanced Form Input Group */
.input-group-text {
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    color: var(--gray-500);
}

.input-group .form-control:focus ~ .input-group-text {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* Loading Button State */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.btn-primary-orange.btn-loading::after {
    border-color: rgba(255,255,255,0.3);
    border-top-color: #fff;
}

/* Badge Pulse for New Arrivals */
.badge-new {
    animation: badgePulse 2s ease-in-out infinite;
}

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

/* Product Card Shine Effect */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover::after {
    left: 150%;
    transition: left 0.7s ease;
}

/* Footer Link Underline Animation */
.footer-links a {
    position: relative;
}

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

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

/* Category Card 3D Effect */
.category-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.category-card:hover {
    transform: translateY(-8px) rotateX(5deg);
}

.category-card-icon:hover {
    transform: translateY(-8px) rotateX(5deg);
}

/* Responsive Enhancements */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stat {
        align-items: center;
    }
}

@media (min-width: 768px) {
    .hover-lift {
        transition: var(--transition);
    }
    
    .hover-lift:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }
}

/* Focus Visible for Accessibility */
:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-orange);
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   EQUAL HEIGHT CARDS - Home Page
   ============================================ */

/* Category Cards - Equal Height */
.category-card {
    aspect-ratio: 1;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Ensure icon-based category cards have consistent sizing */
.category-card-icon {
    padding: 1.5rem;
    aspect-ratio: unset;
    height: auto;
    min-height: 180px;
}

/* Icon background sizing consistency */
.category-card-icon .category-icon-bg {
    width: 64px;
    height: 64px;
    margin-bottom: 0.75rem;
}

.category-card-icon .category-icon-bg i {
    font-size: 1.5rem;
}

/* Category title consistency */
.category-card-icon .category-card-title {
    font-size: 0.9375rem;
    line-height: 1.3;
}

/* Product Cards - Equal Height */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem 1rem;
}

/* Ensure product category text is consistent */
.product-card .product-category {
    font-size: 0.6875rem;
    margin-bottom: 0.375rem;
}

/* Product title - consistent line clamp */
.product-card .card-title {
    font-size: 0.9375rem;
    line-height: 1.45;
    margin-bottom: 0.625rem;
    min-height: 2.16em;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Rating section - consistent spacing */
.product-card .product-rating {
    margin-bottom: 0.5rem;
}

/* Price section - consistent spacing */
.product-card .product-price {
    margin-bottom: 0.875rem;
    flex-shrink: 0;
}

/* Stock status - consistent spacing */
.product-card .stock-status {
    margin-bottom: 0.75rem;
    flex-shrink: 0;
}

/* Add to cart button - always at bottom */
.product-card .btn-add-cart {
    margin-top: auto;
    flex-shrink: 0;
}

/* Card actions - position at top right consistently */
.product-card .card-actions {
    top: 0.5rem;
    right: 0.5rem;
}

/* Product badges - consistent positioning */
.product-card .product-badges {
    top: 0.5rem;
    left: 0.5rem;
}

/* Image wrapper - consistent aspect ratio */
.product-card .card-img-wrapper {
    aspect-ratio: 1;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE EQUAL HEIGHT ADJUSTMENTS
   ============================================ */

@media (max-width: 575.98px) {
    .category-card {
        min-height: 140px;
    }
    
    .category-card-icon {
        min-height: 140px;
    }
    
    .category-card-icon .category-icon-bg {
        width: 56px;
        height: 56px;
    }
    
    .category-card-icon .category-icon-bg i {
        font-size: 1.25rem;
    }
    
    .product-card .card-title {
        font-size: 0.875rem;
        min-height: 2.03em;
    }
}

@media (min-width: 576px) {
    .category-card {
        min-height: 160px;
    }
    
    .category-card-icon {
        min-height: 160px;
    }
}

@media (min-width: 768px) {
    .category-card {
        min-height: 180px;
    }
    
    .category-card-icon {
        min-height: 180px;
    }
}

@media (min-width: 992px) {
    .category-card {
        min-height: 200px;
    }
    
    .category-card-icon {
        min-height: 200px;
    }
    
    .product-card .card-body {
        padding: 1.25rem;
    }
}

/* ============================================
   ENHANCED HERO SECTION STYLES
   ============================================ */

/* Animated Gradient Hero Background */
.hero-section {
    background: 
        linear-gradient(135deg, rgba(224, 112, 58, 0.03) 0%, rgba(30, 90, 168, 0.03) 100%),
        linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(224, 112, 58, 0.08) 0%, transparent 60%);
    animation: heroGradientMove 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes heroGradientMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-5%, 5%) rotate(2deg);
    }
    50% {
        transform: translate(0, 10%) rotate(0deg);
    }
    75% {
        transform: translate(5%, 5%) rotate(-2deg);
    }
}

/* Enhanced hero content positioning */
.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Animated background shapes */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s ease-in-out infinite;
    pointer-events: none;
}

.hero-bg-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-bg-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.hero-bg-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-orange-light);
    top: 50%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.05);
    }
    50% {
        transform: translate(0, -40px) scale(1);
    }
    75% {
        transform: translate(-20px, -20px) scale(0.95);
    }
}

/* Enhanced Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
    letter-spacing: -0.03em;
    position: relative;
}

.hero-title span {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

/* Animated underline for highlighted text */
.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 0.3em;
    background: linear-gradient(90deg, var(--primary-orange-light), var(--primary-orange), var(--primary-orange-light));
    opacity: 0.4;
    z-index: -1;
    border-radius: 2px;
    animation: titleUnderline 3s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% {
        opacity: 0.4;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.02);
    }
}

/* Enhanced subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 500px;
}

/* Enhanced badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #fff;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--success);
}

.hero-badge i {
    font-size: 1.125rem;
    animation: lightningBolt 2s ease-in-out infinite;
}

@keyframes lightningBolt {
    0%, 100% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-2px);
    }
}

/* Enhanced buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.hero-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: left 0.5s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(224, 112, 58, 0.4);
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-orange-dark) 0%, var(--primary-orange) 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 112, 58, 0.5);
}

.hero-btn-secondary {
    background: #fff;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.hero-btn-secondary:hover {
    background: var(--gray-50);
    color: var(--gray-700);
    border-color: var(--gray-400);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced stats section */
.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--gray-200);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    letter-spacing: -0.02em;
    position: relative;
}

.hero-stat-number::after {
    content: '+';
    color: var(--primary-orange);
}

.hero-stat-number[data-suffix="K"]::after {
    content: 'K+';
}

.hero-stat-number[data-suffix="M"]::after {
    content: 'M+';
}

.hero-stat-label {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
    font-weight: 500;
}

.hero-stat-label strong {
    color: var(--primary-orange);
}

/* Enhanced hero image */
.hero-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-main {
    width: 100%;
    max-width: 550px;
    border-radius: var(--radius-2xl);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.hero-image-main:hover {
    transform: scale(1.02);
}

/* Enhanced floating cards */
.hero-float-card {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float-card-enhanced 6s ease-in-out infinite;
    border: 1px solid var(--gray-100);
}

.hero-float-card:hover {
    box-shadow: var(--shadow-2xl);
    transform: scale(1.05);
}

.hero-float-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-float-card-icon.green {
    background: linear-gradient(135deg, var(--success-light) 0%, var(--success) 100%);
    color: #fff;
}

.hero-float-card-icon.orange {
    background: linear-gradient(135deg, var(--primary-orange-pale) 0%, var(--primary-orange) 100%);
    color: #fff;
}

.hero-float-card-icon.blue {
    background: linear-gradient(135deg, var(--primary-blue-pale) 0%, var(--primary-blue) 100%);
    color: #fff;
}

.hero-float-card-text {
    display: flex;
    flex-direction: column;
}

.hero-float-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.hero-float-card-subtitle {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
}

.hero-float-card-1 {
    top: 8%;
    left: -5%;
    animation-delay: 0s;
}

.hero-float-card-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: -2s;
}

.hero-float-card-3 {
    top: 40%;
    left: 0%;
    animation-delay: -4s;
}

@keyframes float-card-enhanced {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Hero Banner Carousel Enhancements */
.hero-carousel {
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(224, 112, 58, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(30, 90, 168, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-carousel .carousel-inner {
    position: relative;
    z-index: 2;
}

.hero-carousel .carousel-item {
    min-height: 300px;
    height: 40vh;
    max-height: 400px;
    padding: 1.5rem 0;
}

.hero-banner-wrapper {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 300px;
    height: 40vh;
    max-height: 400px;
    padding: 1.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    backdrop-filter: blur(0px);
}

.hero-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 450px;
}

.hero-banner-content .hero-badge {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--success);
}

.hero-banner-content .hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.75rem;
    color: #fff;
}

.hero-banner-content .hero-title span {
    color: #fbbf24;
}

.hero-banner-content .hero-title span::after {
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
    opacity: 0.5;
}

.hero-banner-content .hero-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    max-width: 400px;
}

.hero-banner-content .hero-actions {
    margin-bottom: 0;
}

/* Enhanced carousel indicators */
.hero-carousel .carousel-indicators {
    margin-bottom: 1rem;
    z-index: 10;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
    background: var(--primary-orange);
    width: 24px;
    border-radius: 4px;
    transform: scale(1.1);
}

.hero-carousel .carousel-indicators [data-bs-target]:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Enhanced carousel controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(224, 112, 58, 0.5);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    background-size: 50% 50%;
    filter: invert(1) grayscale(100);
    width: 1rem;
    height: 1rem;
}

.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(1);
}

/* Responsive Hero Enhancements */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image-main {
        max-width: 480px;
    }
    
    .hero-float-card {
        padding: 1rem 1.25rem;
    }
    
    .hero-float-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
    
    .hero-image-main {
        max-width: 400px;
    }
    
    .hero-float-card {
        display: none;
    }
    
    .hero-carousel .carousel-item {
        min-height: 400px;
        height: 50vh;
    }
    
    .hero-banner-wrapper {
        min-height: 400px;
        height: 50vh;
    }
    
    .hero-banner-content .hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
        text-align: center;
    }
    
    .hero-content {
        justify-content: center;
    }
    
    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .hero-stat {
        align-items: center;
    }
    
    .hero-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .hero-image-main {
        max-width: 300px;
    }
    
    .hero-carousel .carousel-item {
        min-height: 350px;
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-banner-wrapper {
        min-height: 350px;
        height: auto;
        padding: 2rem 0;
    }
    
    .hero-banner-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-banner-content .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 44px;
        height: 44px;
        margin: 0 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 2.5rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .hero-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-image-main {
        max-width: 250px;
    }
    
    .hero-carousel .carousel-item {
        min-height: 320px;
    }
    
    .hero-banner-wrapper {
        min-height: 320px;
    }
    
    .hero-banner-content .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-carousel .carousel-indicators {
        margin-bottom: 1rem;
    }
}
