@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --primary-color: #2563eb;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --rating-color:#fccc2e;
    --transition-duration: 0.4s;
    --transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navigation */
.top-header {
    background-color: #3e3e3e;
    font-size: 14px;
    color: #ffffff;
  }
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding:1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #166534;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 128, 61, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

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

/* Hero Section - Updated gradient to use blue colors */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('/placeholder.svg?height=600&width=800') center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.search-box {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.search-input {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem;
    font-size: 1.1rem;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--white);
    outline: none;
}

.search-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
}

/* Category Cards */
.category-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}
.filters-sidebar {
    background: var(--white);
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.10);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.price-range {
    margin: 1rem 0;
}

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

/* Product Cards */
.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.10);

    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rating-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* List View Styles */
.list-view .product-card {
    display: flex;
    flex-direction: row;
    height: auto;
}

.list-view .product-image {
    width: 200px;
    height: 150px;
    flex-shrink: 0;
}

.list-view .product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* View Toggle */
.view-controls {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.10);

    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 2rem;
}

.page-link {
    border-radius: 8px;
    margin: 0 0.25rem;
    border: 1px solid var(--border-color);
    color: var(--text-dark);
}

.page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .filters-sidebar {
        position: static;
        margin-bottom: 1.5rem;
    }
    
    .list-view .product-card {
        flex-direction: column;
    }
    
    .list-view .product-image {
        width: 100%;
        height: 200px;
    }
    
    .view-controls {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .results-info {
        order: 2;
    }
    
    .view-toggle {
        order: 1;
    }
}

/* Filter Toggle for Mobile */
.filter-toggle {
    display: none;
}

@media (max-width: 768px) {
    .filter-toggle {
        display: block;
        margin-bottom: 1rem;
    }
    
    .filters-sidebar {
        display: none;
    }
    
    .filters-sidebar.show {
        display: block;
    }
}
/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 0 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial-stars {
    color: var(--rating-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow var(--transition-duration) var(--transition-easing);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Hidden checkbox for pure CSS toggle */
.faq-checkbox {
    display: none;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all var(--transition-duration) var(--transition-easing);
    border-bottom: 1px solid transparent;
    user-select: none;
}

.faq-question:hover {
    background: #f8f9fa;
}

/* Active state styling */
.faq-checkbox:checked + .faq-question {
    background: var(--primary-color);
    color: white;
    border-bottom-color: rgba(255,255,255,0.1);
}

.faq-question:hover .faq-checkbox:checked + * {
    background: var(--primary-color);
}

/* Icon styling and rotation */
.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-duration) var(--transition-easing),
                color var(--transition-duration) var(--transition-easing);
    flex-shrink: 0;
    float: right;
}

.faq-checkbox:checked + .faq-question .faq-icon {
    transform: rotate(180deg);
    color: white;
}

/* CSS-only height animation using CSS Grid */
.faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-duration) var(--transition-easing);
}

.faq-checkbox:checked + .faq-question + .faq-answer-wrapper {
    grid-template-rows: 1fr;
}

.faq-answer {
    overflow: hidden;
    background: white;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-answer-content {
    padding: 0 1.5rem;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform var(--transition-duration) var(--transition-easing),
                opacity var(--transition-duration) var(--transition-easing),
                padding var(--transition-duration) var(--transition-easing);
}

.faq-checkbox:checked + .faq-question + .faq-answer-wrapper .faq-answer-content {
    padding: 1.5rem;
    transform: translateY(0);
    opacity: 1;
}

/* Smooth label interaction */
.faq-label {
    display: block;
    cursor: pointer;
}

.faq-question-text {
    flex: 1;
}

/* Enhanced visual feedback */
.faq-item {
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    transition: width var(--transition-duration) var(--transition-easing);
    border-radius: 10px 0 0 10px;
}

.faq-checkbox:checked ~ .faq-item::before,
.faq-item:has(.faq-checkbox:checked)::before {
    width: 4px;
}

/* Focus styles for accessibility */
.faq-question:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #4b5563;
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #9ca3af;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

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

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

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.5;
    border: none;
}

.carousel-indicators button.active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .search-box {
        padding: 0.5rem;
    }

    .search-input {
        padding: 0.75rem;
    }

    .search-btn {
        padding: 0.75rem 1.5rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Adding hero banner styles */
.hero-banners {
    margin: 2rem 0;
}

.hero-banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 200px;
    gap: 1rem;
    height: 520px;
}

.banner-large {
    grid-row: 1 / 3;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(59, 130, 246, 0.1)), url('https://images.unsplash.com/photo-1587831990711-23ca6441447b?w=600&h=500&fit=crop&crop=center');
    background-size: cover;
    background-position: center;
}

.banner-medium {
    background-size: cover;
    background-position: center;
}

.banner-medium:nth-child(2) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(96, 165, 250, 0.1)), url('https://images.unsplash.com/photo-1496181133206-80ce9b88a853?w=400&h=300&fit=crop&crop=center');
}

.banner-medium:nth-child(3) {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.9), rgba(147, 197, 253, 0.1)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=400&h=300&fit=crop&crop=center');
}

.banner-medium:nth-child(4) {
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.9), rgba(191, 219, 254, 0.1)), url('https://images.unsplash.com/photo-1527864550417-7fd91fc51a46?w=400&h=200&fit=crop&crop=center');
}

.banner-medium:nth-child(5) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(37, 99, 235, 0.1)), url('https://images.unsplash.com/photo-1518717758536-85ae29035b6d?w=400&h=200&fit=crop&crop=center');
}

.nike-banner {
    border-radius: 12px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.nike-banner:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.nike-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.nike-banner:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

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

.banner-large .banner-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.banner-medium .banner-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.banner-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.banner-medium .banner-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.banner-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #60a5fa;
}

.banner-medium .banner-price {
    font-size: 1.2rem;
}

.banner-cta {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.banner-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Mobile responsive grid for hero banners */
@media (max-width: 768px) {
    .hero-banner-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 200px 200px 180px 180px;
        height: auto;
        gap: 1rem;
    }

    .banner-large {
        grid-row: 1;
    }

    .banner-large .banner-title {
        font-size: 2rem;
    }

    .nike-banner {
        padding: 1.5rem;
    }
}

.banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.3);
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.banner-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.banner-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.banner-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.banner-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #60a5fa;
}

/* Enhanced carousel styles for multiple slides */
.carousel-item .row {
    margin: 0;
}

.product-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(37, 99, 235, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

/* Interactive elements */
.interactive-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Added CSS for promotions grid layout */
.promotions-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    padding: 4rem 0;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

/* Promo Cards */
.promo-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    min-height: 220px; /* ensures consistent height */
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Large Promo */
.promo-large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 460px;
}

/* Medium Promo */
.promo-medium {
    min-height: 280px;
}

/* Small Promo */
.promo-small {
    min-height: 200px;
}

.promo-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, #f9fafb74 0%, #e5e7eb30 100%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.promo-badge {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color, #15803d);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.promo-title {
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 1.2rem;
}

.promo-description {
    margin-bottom: 12px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.promo-price {
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    margin-right: 8px;
}

.new-price {
    color: #84cc16;
    font-size: 1.3rem;
    font-weight: 700;
}


/* Added CSS for contact section */
.contact-section {
    background: var(--bg-light);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    background: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h5 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1rem;
}

.contact-details p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.quick-contact-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.quick-contact-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .promotions-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(auto, 200px);
    }

    .promo-large,
    .promo-medium,
    .promo-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-form-wrapper,
    .contact-info {
        padding: 25px;
    }

    .quick-contact-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .promotions-grid {
        gap: 15px;
    }

    .promo-overlay {
        padding: 15px;
    }

    .promo-title {
        font-size: 1.1rem;
    }

    .promo-description {
        font-size: 0.9rem;
    }
}
.auth-container {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 6rem;
}

.auth-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
}

.auth-left {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.auth-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.auth-left-content {
    position: relative;
    z-index: 1;
    padding-top: 3rem;
}

.auth-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.auth-left p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-list li i {
    margin-right: 0.75rem;
    color: var(--accent-color);
}

.auth-right {
    padding: 3rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background: var(--white);
}

.form-control.is-invalid {
    border-color: var(--danger-color);
}

.form-control.is-valid {
    border-color: var(--success-color);
}

.input-group {
    position: relative;
}

.input-group-text {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    z-index: 10;
}

.form-control.with-icon {
    padding-left: 3.6rem;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    z-index: 10;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.auth-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
}

.form-check-input {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.form-check-label {
    font-size: 0.875rem;
    line-height: 1.4;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    background: var(--white);
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.user-type-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-type-option {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.user-type-option:hover {
    border-color: var(--primary-color);
}

.user-type-option.active {
    border-color: var(--primary-color);
    background: rgba(79, 70, 229, 0.05);
}

.user-type-option input[type="radio"] {
    display: none;
}

.user-type-option i {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.user-type-option h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.user-type-option p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.password-strength {
    margin-top: 0.5rem;
}

.strength-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-fill {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 0.75rem;
    font-weight: 500;
}

.alert {
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: none;
}

.alert-danger {
    background: #fef2f2;
    color: var(--danger-color);
}

.alert-success {
    background: #f0fdf4;
    color: var(--success-color);
}

.invalid-feedback {
    display: block;
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}