/* Enhanced Design for G.AZ Fashions */
:root {
    --orange-primary: #ff6b35;
    --orange-secondary: #ff8c5a;
    --orange-light: #ffb896;
    --orange-dark: #e55a2b;
    --orange-accent: #f7931e;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;
    --gray-dark: #495057;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 25px rgba(0,0,0,0.2);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Modern Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Remove spacing from main content */
.main-content {
    margin: 0 !important;
    padding: 0 !important;
}

.full-width-content {
    margin: 0 !important;
    padding: 0 !important;
}

/* Enhanced Theme Utilities */
.text-orange {
    color: var(--orange-primary) !important;
}

.bg-orange {
    background-color: var(--orange-primary) !important;
}

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

.bg-gradient-subtle {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.1) 100%);
}

/* Modern Card Styles */
.card-modern {
    background: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: none;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.card-enhanced {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-orange);
}

/* Enhanced Button Styles */
.btn-orange {
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-accent) 100%);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    padding: 12px 24px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

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

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

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

.btn-outline-orange {
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
    background: transparent;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    padding: 10px 24px;
    transition: var(--transition-smooth);
}

.btn-outline-orange:hover {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-modern {
    border-radius: var(--border-radius-md);
    font-weight: 600;
    padding: 12px 20px;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-gradient {
    background: var(--bg-gradient-orange);
    color: white;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Navbar styles */
.navbar-brand {
    font-size: 1.5rem;
    color: var(--orange-primary) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--gray-dark) !important;
    transition: color 0.3s ease;
}

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

/* Dropdown menu styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 1rem 0;
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--orange-light);
    color: var(--orange-dark);
    padding-left: 2rem;
}

.dropdown-header {
    font-weight: bold;
}

/* Full Width Layout System */
.full-width-content {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow-x: hidden;
}

.products-grid,
.products-grid-vertical {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    padding: 0 1rem;
    margin: 0;
    box-sizing: border-box;
}

.clearance-carousel,
.latest-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    padding: 0 1rem;
    margin: 0;
    box-sizing: border-box;
}

/* Remove container constraints */
.products-section,
.clearance-section,
.latest-products-section {
    width: 100%;
    margin: 0;
    padding: 2rem 0;
    box-sizing: border-box;
}

/* Mobile: 3 column grid */
@media (max-width: 767.98px) {
    .products-grid,
    .products-grid-vertical,
    .clearance-carousel,
    .latest-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
    }
    
    .product-card,
    .clearance-card,
    .latest-card {
        width: 100%;
    }
}

/* Tablet: 3 column grid */
@media (min-width: 768px) and (max-width: 991.98px) {
    .products-grid,
    .products-grid-vertical,
    .clearance-carousel,
    .latest-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 2rem;
    }
}

/* Desktop Small: 3 column grid */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .products-grid,
    .products-grid-vertical,
    .clearance-carousel,
    .latest-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 2rem;
    }
}

/* Desktop Large: 3 column grid */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .products-grid,
    .products-grid-vertical,
    .clearance-carousel,
    .latest-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        padding: 0 3rem;
    }
}

/* Desktop Extra Large: 3 column grid */
@media (min-width: 1400px) {
    .products-grid,
    .products-grid-vertical,
    .clearance-carousel,
    .latest-carousel {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        padding: 0 4rem;
    }
}

/* Enhanced Product Card Styles */
.product-card {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
}

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient-orange);
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bg-gradient-orange);
    color: white;
    padding: 6px 12px;
    border-radius: var(--border-radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.featured {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.product-badge.clearance {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    z-index: 2;
}

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

.product-info {
    padding: 1.5rem;
    background: var(--white);
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
    text-decoration: none;
    line-height: 1.4;
}

.product-link:hover .product-name {
    color: var(--orange-primary);
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 0.8rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.85rem;
    color: var(--gray-medium);
}

.add-cart-btn, .quick-add-btn {
    width: 100%;
    background: var(--bg-gradient-orange);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 12px;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.add-cart-btn:hover, .quick-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Scrollbar styling for mobile horizontal scroll */
.scrollable-horizontal::-webkit-scrollbar {
    height: 4px;
}

.scrollable-horizontal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.scrollable-horizontal::-webkit-scrollbar-thumb {
    background: var(--orange-primary);
    border-radius: 2px;
}

.scrollable-horizontal::-webkit-scrollbar-thumb:hover {
    background: var(--orange-dark);
}

/* Button Loading States */
.quick-add-btn, .add-cart-btn {
    position: relative;
    transition: all 0.3s ease;
}

.quick-add-btn.loading .btn-text,
.add-cart-btn.loading .btn-text {
    opacity: 0;
}

.quick-add-btn.loading .btn-loading,
.add-cart-btn.loading .btn-loading {
    display: inline-block !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.quick-add-btn.success,
.add-cart-btn.success {
    background-color: #28a745;
    border-color: #28a745;
}

/* Enhanced Section Styling */
.products-section,
.clearance-section,
.latest-products-section {
    padding: 2rem 0;
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(247, 147, 30, 0.05) 100%);
}

.clearance-section {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, rgba(230, 126, 34, 0.08) 100%);
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0;
}

/* Removed section headers - content flows directly after hero */

/* Desktop section styling */
@media (min-width: 992px) {
    .products-section,
    .clearance-section,
    .latest-products-section {
        padding: 2.5rem 0;
    }
}

/* Enhanced Clearance Card Styles */
.clearance-card, .latest-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}

.clearance-card:hover, .latest-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.clearance-image-container, .latest-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.clearance-image, .latest-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.clearance-card:hover .clearance-image,
.latest-card:hover .latest-image {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 12px;
    border-radius: var(--border-radius-lg);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

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

.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 6px 12px;
    border-radius: var(--border-radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.clearance-timer {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 10px;
    border-radius: var(--border-radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.clearance-info, .latest-info {
    padding: 1.2rem;
}

.clearance-title, .latest-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--gray-dark);
    line-height: 1.4;
}

.clearance-price, .latest-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
}

.sale-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

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

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

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-medium);
    font-size: 2rem;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--orange-light);
}

/* Hero section */
.hero-section {
    min-height: 600px;
    background: linear-gradient(135deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.min-vh-50 {
    min-height: 50vh;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Hero Buttons */
.hero-btn {
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

/* Hero Features */
.hero-features {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-slide {
    min-height: 500px;
    padding: 3rem 0;
}

.hero-content-overlay {
    position: relative;
    z-index: 3;
    animation: fadeInLeft 1s ease-out;
}

.hero-image-container {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-item.active .hero-image {
    animation: zoomIn 0.8s ease-out;
}

.carousel-item.active .hero-content-overlay {
    animation: fadeInLeft 1s ease-out;
}

@keyframes zoomIn {
    0% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hero Buttons Inline */
.hero-buttons-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-buttons-inline .btn {
    flex: 0 0 auto;
    min-width: 180px;
}

/* Hero Features Compact */
.hero-features-compact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

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

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

.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
}

/* Carousel Indicators */
.hero-carousel .carousel-indicators {
    bottom: 20px;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    background: white;
    transform: scale(1.2);
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element-3 {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Product cards */
.product-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card .card-img-top {
    border-radius: 15px 15px 0 0;
    transition: all 0.3s ease;
}

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

/* Category cards */
.category-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, #fff 0%, #fff8f6 100%);
}

/* Clearance cards */
.clearance-card {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.clearance-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Carousel styles */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    color: var(--orange-primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--orange-primary);
    border-radius: 50%;
    padding: 10px;
}

/* Forms */
.form-control:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-select:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Badges */
.badge.bg-orange {
    background-color: var(--orange-primary) !important;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--orange-primary);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--orange-dark);
    transform: translateY(-3px);
}

/* Admin styles */
.border-left-orange {
    border-left: 4px solid var(--orange-primary) !important;
}

.sidebar {
    background: linear-gradient(180deg, var(--orange-primary) 0%, var(--orange-secondary) 100%);
    min-height: 100vh;
}

.sidebar .nav-link {
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding: 2rem 0;
    }
    
    .hero-section .display-3 {
        font-size: 2.2rem;
    }
    
    .hero-slide {
        min-height: 450px;
        padding: 2rem 0;
    }
    
    .hero-image-container {
        height: 280px;
        margin-bottom: 2rem;
    }
    
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .hero-carousel .carousel-control-next {
        right: 10px;
    }
    
    .hero-buttons-inline {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons-inline .btn {
        min-width: 100%;
        width: 100%;
    }
    
    .hero-features-compact {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem;
    }
    
    .feature-item {
        margin: 0 !important;
        font-size: 0.85rem;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .clearance-card {
        margin-bottom: 1rem;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* Loading animations */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--orange-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

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

.scroll-to-top:hover {
    background-color: var(--orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Mobile positioning for scroll to top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 5rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

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

/* Print styles */
@media print {
    .navbar,
    footer,
    .btn,
    .scroll-to-top {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        margin: 0;
        padding: 0;
    }
}
