/* Dai Dai Productions - Custom CSS */
:root {
    --primary-color: #d63384; /* Deep Pink */
    --secondary-color: #198754; /* Green */
    --accent-color: #0d47a1; /* Navy Blue */
    --neutral-color: #f5f5dc; /* Beige */
    --dark-color: #212529;
    --light-color: #ffffff;
    --gray-light: #f8f9fa;
    --text-color: #333;
    --border-color: #e0e0e0;
    
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 16px rgba(0,0,0,0.2);
    
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
    overflow-x: hidden;
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    padding: 12px 24px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #c21e5f;
    border-color: #c21e5f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    border: 2px solid var(--light-color);
    color: var(--light-color);
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    transition: var(--transition);
}

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

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

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

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Navigation */
.navbar {
    background: rgba(44, 62, 80, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0 !important; /* Reduced padding to make navbar smaller */
    min-height: 60px; /* Set a smaller fixed height */
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    text-decoration: none !important; /* Remove any underlines */
    border-bottom: none !important; /* Remove any bottom borders */
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: #fff !important;
    text-decoration: none !important;
    border-bottom: none !important;
    background: transparent !important;
}

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

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar-nav .dropdown .nav-link i.fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    background: rgba(44, 62, 80, 0.95);
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border-bottom: none !important;
}

.dropdown-item:hover {
    background: rgba(231, 76, 60, 0.2) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0; /* Ensure no margin */
}

.hero-slide {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px); /* Subtract navbar height */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    color: #fff;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease 0.3s both;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    visibility: visible !important;
    opacity: 1 !important;
}

.lead {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 15px 15px 0 0;
}

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

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover .feature-icon::after {
    opacity: 0.2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: #e74c3c;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

/* Product Cards */
.product-card {
    background: #fff !important;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    margin-bottom: 2rem;
}

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

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.5rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-category {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-price {
    margin: 1rem 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    visibility: visible !important;
    opacity: 1 !important;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 0.5rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.product-rating {
    color: #ffc107;
    margin-bottom: 0.5rem;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
    padding: 4rem 0;
}

.impact-counter {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonial Cards */
.testimonial-card {
    background: #fff !important;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    margin-bottom: 2rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-author {
    display: flex;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Newsletter Section */
.newsletter {
    background: #f8f9fa;
}

.newsletter h3 {
    color: var(--accent-color);
    font-weight: 600;
}

.newsletter-form .input-group {
    max-width: 500px;
}

/* Footer */
.footer {
    background: var(--dark-color) !important;
}

.footer h5, .footer h6 {
    color: var(--light-color);
    font-weight: 600;
}

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

.footer .list-unstyled a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    transition: var(--transition);
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none !important;
    font-size: 18px;
}

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

.back-to-top:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: #fff;
    text-decoration: none !important;
}

.back-to-top i {
    margin: 0;
    padding: 0;
    line-height: 1;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.25rem 0 !important;
        min-height: 50px;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand .brand-text {
        font-size: 0.9rem;
    }
    
    .hero-slide {
        height: calc(100vh - 50px);
    }
    
    .about-hero-bg {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .counter-number {
        font-size: 2.5rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-brand .brand-text {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

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

::-webkit-scrollbar-thumb:hover {
    background: #c21e5f;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(214, 51, 132, 0.25);
}

/* Selection color */
::selection {
    background: var(--primary-color);
    color: var(--light-color);
}

/* Featured Products Section */
.featured-products {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    padding: 5rem 0;
    background: #f8f9fa;
}

.featured-products .row {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

.featured-products .col-md-3 {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Mission Section - Ensure proper spacing */
.mission-section {
    margin-top: 0 !important;
    padding-top: 5rem !important;
    position: relative;
    z-index: 2;
    background: #fff;
}

/* About Page Styles */
.about-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-hero-bg {
    position: relative;
    width: 100%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.story-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.story-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.step-number {
    position: absolute;
    top: -15px;
    right: 15px;
    background: #e74c3c;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Shop Page Styles */
.shop-header {
    position: relative;
    margin-bottom: 0;
}

.shop-hero-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.page-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.search-bar {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-form .input-group {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.search-form .form-control {
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.search-form .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background: white;
}

.search-form .form-control::placeholder {
    color: #6c757d;
}

.search-form .btn {
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
}

/* Filter Sidebar */
.filters-sidebar {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.filter-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.filter-group {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e9ecef;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

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

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

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #6c757d;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-link:hover {
    background-color: rgba(214, 51, 132, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(5px);
}

.filter-link.active {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
}

/* Price Filter */
.price-filter {
    padding: 0.5rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.price-inputs input {
    flex: 1;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.9rem;
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(214, 51, 132, 0.2);
}

.price-separator {
    color: #6c757d;
    font-weight: 500;
}

#apply-price-filter {
    width: 100%;
    border-radius: 6px;
    font-size: 0.9rem;
}

/* Quick Filters */
.quick-filters {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #6c757d;
    transition: var(--transition);
}

.filter-checkbox:hover {
    color: var(--primary-color);
}

.filter-checkbox input {
    margin-right: 0.5rem;
    accent-color: var(--primary-color);
}

/* Shop Toolbar */
.shop-toolbar {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.results-info {
    color: #6c757d;
    font-size: 0.95rem;
}

.sort-controls select {
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    background: white;
    font-size: 0.9rem;
    min-width: 180px;
}

.sort-controls select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(214, 51, 132, 0.2);
}

/* Enhanced Product Cards for Shop */
.shop-content .product-card {
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    background: white;
    height: 100%;
}

.shop-content .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(214, 51, 132, 0.3);
}

.shop-content .product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: #f8f9fa;
}

.shop-content .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.shop-content .product-card:hover .product-image img {
    transform: scale(1.05);
}

.shop-content .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

.shop-content .product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    gap: 0.5rem;
}

.shop-content .product-card:hover .product-actions {
    opacity: 1;
}

.shop-content .product-actions .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.shop-content .product-info {
    padding: 1.25rem;
}

.shop-content .product-title a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

.shop-content .product-title a:hover {
    color: var(--primary-color);
}

.shop-content .product-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.shop-content .product-price {
    font-size: 1.1rem;
}

.shop-content .product-rating {
    margin-bottom: 0.5rem;
}

.shop-content .product-rating .fa-star {
    font-size: 0.85rem;
}

.shop-content .stock-status {
    font-size: 0.85rem;
    font-weight: 500;
}

/* No Products State */
.no-products {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.no-products .fa-search {
    color: #dee2e6;
    margin-bottom: 1rem;
}

.no-products h4 {
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

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

.pagination .page-link {
    border: 1px solid #dee2e6;
    color: #6c757d;
    padding: 0.75rem 1rem;
    margin: 0 0.125rem;
    border-radius: 6px;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background-color: rgba(214, 51, 132, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Responsive Shop Styles */
@media (max-width: 991px) {
    .filters-sidebar {
        margin-bottom: 1.5rem;
    }
    
    .shop-toolbar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .results-info,
    .sort-controls {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .shop-hero-bg {
        min-height: 50vh;
    }
    
    .shop-content .product-image {
        height: 200px;
    }
    
    .filters-sidebar {
        padding: 1rem;
    }
    
    .filter-title {
        font-size: 1.1rem;
    }
    
    .search-form .form-control {
        font-size: 1rem;
        padding: 12px 16px;
    }
    
    .search-form .btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

@media (max-width: 576px) {
    .shop-hero-bg {
        min-height: 45vh;
    }
    
    .search-bar {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .quick-filters {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .price-inputs {
        flex-direction: column;
    }
    
    .price-separator {
        display: none;
    }
} 