/* Pushpa Designers Design System - Logo Inspired Theme */
/* Color palette inspired by the Pushpa Designers logo */
:root {
    /* Logo Color Palette */
    --pushpa-blue: #4A90A4;
    --pushpa-teal: #5DADE2;
    --designers-purple: #8E44AD;
    --designers-violet: #A569BD;
    --accent-gold: #F4D03F;
    --ivory: #FFF8E7;
    --charcoal: #2C3E50;
    
    /* Primary Gradients - Logo Inspired */
    --primary-gradient: linear-gradient(135deg, #4A90A4 0%, #5DADE2 100%);
    --secondary-gradient: linear-gradient(135deg, #8E44AD 0%, #A569BD 100%);
    --success-gradient: linear-gradient(135deg, #27AE60 0%, #2ECC71 100%);
    --warning-gradient: linear-gradient(135deg, #F39C12 0%, #F4D03F 100%);
    --info-gradient: linear-gradient(135deg, #3498DB 0%, #5DADE2 100%);
    --danger-gradient: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    
    /* Solid Colors */
    --primary-color: #4A90A4;
    --primary-dark: #3F7C8E;
    --secondary-color: #8E44AD;
    --accent-color: #F4D03F;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --info-color: #3498DB;
    --danger-color: #E74C3C;
    
    /* Background Colors */
    --body-bg: #F8FAFB;
    --card-bg: linear-gradient(145deg, #ffffff 0%, #F8FAFB 100%);
    --section-bg: linear-gradient(135deg, #F8FAFB 0%, #ffffff 100%);
    --ivory-bg: #FFF8E7;
    
    /* Text Colors */
    --text-primary: #2C3E50;
    --text-secondary: #34495E;
    --text-muted: #7F8C8D;
    --text-light: #BDC3C7;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --border-radius-sm: 0.375rem;
    --border-radius: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius-2xl: 2rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

/* Global Styles */
body {
    font-family: 'Figtree', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--body-bg);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Hero Sections - Soft Pastel Luxe */
.hero-section {
    background: var(--primary-gradient);
    color: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Cards */
.card-gradient {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    padding: var(--spacing-lg);
}

.card-gradient:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.card-feature {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    padding: var(--spacing-lg);
    text-align: center;
    height: 100%;
}

.card-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.card-product {
    background: var(--card-bg);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

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

/* Buttons - Soft Pastel Luxe */
.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 0px 29px;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(250, 218, 221, 0.4);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 176, 170, 0.6);
    background: var(--secondary-gradient);
    color: var(--charcoal);
    text-decoration: none;
}

.btn-gradient-secondary {
    background: var(--secondary-gradient);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--charcoal);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(230, 176, 170, 0.4);
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.btn-gradient-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 164, 164, 0.6);
    background: linear-gradient(135deg, #B2A4A4 0%, #E6B0AA 100%);
    color: var(--charcoal);
    text-decoration: none;
}

.btn-gradient-success {
    background: var(--success-gradient);
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.875rem;
    box-shadow: var(--shadow-md);
}

.btn-gradient-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: white;
    text-decoration: none;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid white;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gradient:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    text-decoration: none;
}

/* Icons */
.icon-gradient {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.icon-gradient-sm {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

/* Badges */
.badge-gradient {
    background: var(--success-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.badge-featured {
    background: var(--warning-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.badge-price {
    background: var(--warning-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-md);
}

.badge-rental {
    background: var(--success-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Form Controls */
.form-control-gradient {
    background: var(--card-bg);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.form-control-gradient:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
    background: #ffffff;
}

/* Statistics */
.stats-section {
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-2xl) var(--spacing-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 15s infinite linear reverse;
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatShapes 20s infinite linear;
}

.shape:nth-child(1) { 
    width: 80px; height: 80px; 
    top: 20%; left: 10%; 
    animation-delay: 0s; 
}

.shape:nth-child(2) { 
    width: 60px; height: 60px; 
    top: 60%; left: 80%; 
    animation-delay: 4s; 
}

.shape:nth-child(3) { 
    width: 100px; height: 100px; 
    top: 40%; left: 70%; 
    animation-delay: 8s; 
}

.shape:nth-child(4) { 
    width: 40px; height: 40px; 
    top: 80%; left: 20%; 
    animation-delay: 12s; 
}

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

/* Product Images */
.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

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

/* Alerts */
.alert-gradient-success {
    background: var(--success-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
}

.alert-gradient-danger {
    background: var(--danger-gradient);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-lg);
}

/* Navigation - Soft Pastel Luxe */
.navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(230, 176, 170, 0.3));
    text-decoration: none !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
}

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

.nav-link-gradient {
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link-gradient:hover {
    color: var(--pushpa-blue);
    transform: translateY(-2px);
}

.nav-link-gradient.active {
    color: var(--pushpa-blue) !important;
    background: linear-gradient(135deg, rgba(74, 144, 164, 0.1) 0%, rgba(93, 173, 226, 0.1) 100%);
    border-radius: 8px;
}

/* Navbar Auth Buttons */
.navbar .btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.navbar .btn-outline-primary.btn-sm {
    border-width: 1.5px;
}

.navbar .btn-outline-primary.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.navbar .btn-gradient.btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(118, 75, 162, 0.3);
}

.nav-link-gradient::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--secondary-gradient);
    transition: all 0.3s ease;
}

.nav-link-gradient:hover::after {
    width: 100%;
    left: 0;
}

/* Footer - Logo Inspired */
.footer-gradient {
    background: linear-gradient(135deg, #4A90A4 0%, #8E44AD 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 248, 231, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
    opacity: 1;
}

/* Card Styling - Soft Pastel Luxe */
.card {
    background: var(--card-bg);
    border: 1px solid rgba(230, 176, 170, 0.2);
    box-shadow: 0 4px 15px rgba(230, 176, 170, 0.1);
    border-radius: var(--border-radius-lg);
}

.card:hover {
    box-shadow: 0 8px 25px rgba(230, 176, 170, 0.2);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Form Controls - Logo Inspired */
.form-control:focus {
    border-color: var(--pushpa-blue);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 164, 0.25);
}

.form-control-gradient {
    border: 2px solid rgba(74, 144, 164, 0.3);
    border-radius: var(--border-radius);
    background: rgba(248, 250, 251, 0.5);
}

.form-control-gradient:focus {
    border-color: var(--pushpa-blue);
    background: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 164, 0.25);
}

/* Alert Styling - Soft Pastel Luxe */
.alert-gradient-success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border: none;
    color: white;
}

.alert-gradient-danger {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border: none;
    color: white;
}

/* Cart Count Badge */
.cart-count {
    background: var(--secondary-gradient);
    color: white;
    font-weight: 600;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* Animation Classes */
.animate-fadeIn {
    animation: fadeIn 0.6s ease-in-out;
}

.animate-slideUp {
    animation: slideUp 0.6s ease-out;
}

.animate-bounceIn {
    animation: bounceIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Focus styles */
.btn-gradient:focus,
.btn-gradient-secondary:focus,
.btn-gradient-success:focus {
    outline: 3px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

.form-control-gradient:focus {
    outline: 3px solid rgba(102, 126, 234, 0.3);
    outline-offset: 1px;
}

/* Sticky Sidebar for Products Page */
.filter-sidebar {
    position: sticky;
    top: 100px; /* Adjust based on your header height */
    height: calc(100vh - 120px); /* Full viewport height minus header */
    overflow-y: auto;
    padding-right: 15px;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
}

/* Custom scrollbar for sidebar */
.filter-sidebar::-webkit-scrollbar {
    width: 8px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Products section - ensure it's scrollable */
.products-section {
    min-height: 100vh;
}

/* ==========================================
   MOBILE RESPONSIVENESS
   ========================================== */

/* Base responsive settings */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-collapse {
        background: var(--ivory-bg);
        border-radius: var(--border-radius-lg);
        margin-top: 0.5rem;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(230, 176, 170, 0.3);
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
}

/* Mobile-first design */
@media (max-width: 767px) {
    /* Container adjustments */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100% !important;
    }
    
    .container-fluid {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .row {
        margin-left: -0.5rem !important;
        margin-right: -0.5rem !important;
    }
    
    .col, [class*="col-"] {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
        margin-bottom: 1rem;
    }
    
    /* Typography adjustments */
    h1, .h1 { 
        font-size: 1.875rem !important; 
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    h2, .h2 { 
        font-size: 1.5rem !important; 
        line-height: 1.3 !important;
        margin-bottom: 0.875rem !important;
    }
    h3, .h3 { 
        font-size: 1.25rem !important; 
        line-height: 1.4 !important;
        margin-bottom: 0.75rem !important;
    }
    h4, .h4 { 
        font-size: 1.125rem !important; 
        line-height: 1.4 !important;
    }
    h5, .h5 { 
        font-size: 1rem !important; 
        line-height: 1.4 !important;
    }
    
    .display-1, .display-2, .display-3, .display-4, .display-5 {
        font-size: 2.25rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .lead {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    /* Spacing adjustments */
    .py-5 { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .py-4 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .py-3 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    
    .my-5 { margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }
    .my-4 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
    
    .mb-5 { margin-bottom: 2.5rem !important; }
    .mb-4 { margin-bottom: 2rem !important; }
    .mt-5 { margin-top: 2.5rem !important; }
    .mt-4 { margin-top: 2rem !important; }
    
    /* Button adjustments */
    .btn {
       
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        border-radius: var(--border-radius-lg) !important;
        margin-bottom: 0.75rem !important;
        min-height: 48px; /* Touch target size */
    }
    
    .btn-group .btn {
        flex: 1;
        margin-bottom: 0.5rem;
    }
    
    .btn-sm {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem !important;
        min-height: 40px !important;
    }
    
    .btn-lg {
        padding: 1rem 2rem !important;
        font-size: 1.125rem !important;
        min-height: 56px !important;
    }
    
    /* Card adjustments */
    .card {
        border-radius: var(--border-radius-lg) !important;
        margin-bottom: 1.5rem !important;
        box-shadow: var(--shadow-md) !important;
    }
    
    .card-body {
        padding: 1.25rem !important;
    }
    
    .card-header {
        padding: 1rem 1.25rem !important;
    }
    
    /* Form adjustments */
    .form-control, .form-select {
        padding: 0.875rem 1rem !important;
        font-size: 1rem !important;
        border-radius: var(--border-radius-lg) !important;
        min-height: 48px !important;
    }
    
    .form-label {
        font-weight: 600 !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Table responsiveness */
    .table-responsive {
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-sm);
    }
    
    .table {
        font-size: 0.875rem !important;
    }
    
    .table td, .table th {
        padding: 0.75rem 0.5rem !important;
        vertical-align: middle !important;
    }
    
    /* Modal adjustments */
    .modal-dialog {
        margin: 1rem !important;
        max-width: calc(100% - 2rem) !important;
    }
    
    .modal-content {
        border-radius: var(--border-radius-xl) !important;
    }
    
    .modal-body {
        padding: 1.5rem !important;
    }
    
    /* Product card mobile adjustments */
    .product-card {
        margin-bottom: 1.5rem !important;
    }
    
    .product-card .card-img-top {
        height: 250px !important;
        object-fit: cover;
    }
    
    .product-card .btn {
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Cart and checkout mobile */
    .cart-item {
        padding: 1rem !important;
        border-bottom: 1px solid rgba(230, 176, 170, 0.2);
    }
    
    .cart-item:last-child {
        border-bottom: none;
    }
    
    .quantity-controls {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0.5rem 0 !important;
    }
    
    .quantity-controls .btn {
        width: 40px !important;
        height: 40px !important;
        padding: 0 !important;
        margin: 0 0.25rem !important;
        border-radius: 50% !important;
    }
    
    .quantity-input {
        width: 60px !important;
        text-align: center !important;
        margin: 0 0.5rem !important;
    }
    
    /* Navigation sidebar mobile */
    .filter-sidebar {
        position: static !important;
        height: auto !important;
        margin-bottom: 2rem !important;
        padding: 1rem !important;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 0 !important;
    }
    
    .footer .col-lg-3, .footer .col-md-6 {
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    .footer h5 {
        font-size: 1.125rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Breadcrumb mobile */
    .breadcrumb {
        font-size: 0.875rem !important;
        padding: 0.75rem 1rem !important;
        margin-bottom: 1rem !important;
       
        border-radius: var(--border-radius-lg) !important;
    }
    
    /* Image gallery mobile */
    .product-image-gallery {
        margin-bottom: 1.5rem !important;
    }
    
    .product-image-gallery .main-image {
        height: 300px !important;
        border-radius: var(--border-radius-lg) !important;
        margin-bottom: 1rem !important;
    }
    
    .product-image-gallery .thumbnail-images {
        gap: 0.5rem !important;
    }
    
    .product-image-gallery .thumbnail {
        width: 60px !important;
        height: 60px !important;
        border-radius: var(--border-radius) !important;
    }
    
    /* Alert mobile */
    .alert {
        border-radius: var(--border-radius-lg) !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Utility classes for mobile */
    .mobile-hidden {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .mobile-text-center {
        text-align: center !important;
    }
    
    .mobile-full-width {
        width: 100% !important;
    }
    
    .mobile-no-padding {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
    
    .btn {
        margin-bottom: 0.5rem;
    }
    
    .mobile-hidden {
        display: block !important;
    }
    
    .mobile-only {
        display: none !important;
    }
}

/* Desktop and larger */
@media (min-width: 992px) {
    .mobile-hidden {
        display: block !important;
    }
    
    .mobile-only {
        display: none !important;
    }
}