/* Main Stylesheet - style.css for Pranali Collection */
/* Full Mobile Responsive Version */
/* Luxurious Gold & Black Color Scheme */

:root {
    --primary-color: #c9a050;
    --secondary-color: #e8c872;
    --gold-light: #f5d88a;
    --gold-dark: #a67c00;
    --accent-color: #d4af37;
    --dark-color: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --light-color: #fffdf5;
    --text-color: #333;
    --text-light: #f5f5f5;
    --border-color: #e5e5e5;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; }

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }

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

/* ==================== TOP BAR - BOOTSTRAP ALIGNMENT ==================== */
.top-bar {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar span {
    display: inline-block;
    font-weight: 500;
}

.top-bar span i {
    margin-right: 8px;
}

.top-bar a { color: #fff; }
.top-bar a:hover { color: rgba(255,255,255,0.8); }

/* Header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar { padding: 15px 0; }

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo { 
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.navbar-toggler {
    border: none;
    padding: 8px 12px;
    font-size: 22px;
    color: var(--primary-color);
}

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

.nav-link {
    font-weight: 500;
    padding: 0.8rem 1rem !important;
    color: var(--dark-color) !important;
    letter-spacing: 0.5px;
    font-size: 14px;
}

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

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.dropdown-item:hover { background: var(--light-color); color: var(--primary-color); }

.nav-icons { 
    display: flex; 
    gap: 15px; 
    align-items: center;
}

.nav-icon {
    color: var(--dark-color);
    font-size: 18px;
    position: relative;
    padding: 5px;
}

.nav-icon:hover { color: var(--primary-color); }

.cart-icon .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-dark));
    color: #fff;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== SIMPLE HERO SLIDER ==================== */
.hero-slider-section {
    position: relative;
    margin-top: 0;
}

.hero-slider-section .carousel-item {
    height: 600px;
    position: relative;
}

.hero-slider-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay on Images */
.hero-slider-section .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

/* Slider Caption */
.hero-slider-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: auto;
    transform: translateY(-50%);
    text-align: left;
    padding: 0;
    z-index: 2;
}

.hero-slider-section .carousel-caption .container {
    max-width: 600px;
    margin-left: 5%;
}

/* Slider Badge */
.slider-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Slider Title */
.hero-slider-section .carousel-caption h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-slider-section .carousel-caption h1 span {
    display: block;
    background: linear-gradient(135deg, var(--gold-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Slider Text */
.hero-slider-section .carousel-caption p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Slider Button */
.btn-slider {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-slider:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--secondary-color));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 160, 80, 0.4);
}

.btn-slider i {
    transition: transform 0.3s ease;
}

.btn-slider:hover i {
    transform: translateX(5px);
}

/* Slider Arrows */
.slider-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-color: transparent;
}

.carousel-control-prev,
.carousel-control-next {
    width: auto;
    padding: 0 30px;
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* Slider Indicators */
.hero-slider-section .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

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

.hero-slider-section .carousel-indicators button.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Slide Animations */
.carousel-item.active .slider-badge {
    animation: fadeInUp 0.8s ease;
}

.carousel-item.active h1 {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.carousel-item.active p {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.carousel-item.active .btn-slider {
    animation: fadeInUp 0.8s ease 0.6s both;
}

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

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(201, 160, 80, 0.12), rgba(201, 160, 80, 0.05));
    border: 1px solid rgba(201, 160, 80, 0.25);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-badge i { color: var(--primary-color); }

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border: none;
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--secondary-color) 100%);
    color: #fff;
}

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

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-color: transparent;
    color: #fff;
}

/* Section Styling */
.section-header { margin-bottom: 30px; }

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.section-subtitle {
    color: #666;
    font-size: 0.95rem;
}

/* Category Cards */
.category-card {
    display: block;
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 160, 80, 0.2);
    border-color: var(--secondary-color);
}

.category-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--secondary-color);
    background: linear-gradient(135deg, var(--gold-light), var(--primary-color));
    padding: 3px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-name {
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* Product Cards */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(201, 160, 80, 0.2);
    border-color: var(--secondary-color);
}

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

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

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

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.product-badge.sale {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--dark-color);
}

.product-badge.new {
    background: var(--dark-color);
    color: var(--secondary-color);
}

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.action-btn {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    font-size: 14px;
}

.action-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--dark-color);
}

.product-info { padding: 15px; }

.product-category {
    font-size: 11px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Features Section - Light Theme */
.features-section {
    background: linear-gradient(135deg, #fffcf5 0%, #fff9ed 100%);
    padding: 60px 0;
}

.feature-box {
    text-align: center;
    padding: 30px 15px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid rgba(201, 160, 80, 0.15);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(201, 160, 80, 0.15);
}

.feature-box i {
    font-size: 40px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.feature-box h5 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
    color: var(--dark-color);
}

.feature-box p {
    color: #777;
    margin: 0;
    font-size: 13px;
}

/* Footer - Light Theme */
.main-footer {
    background: linear-gradient(135deg, #fffdf8 0%, #fff8ed 100%);
    color: #555;
    padding: 60px 0 0;
    border-top: 1px solid rgba(201, 160, 80, 0.2);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-title {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-links li { margin-bottom: 10px; }

.footer-links a { color: #666; }
.footer-links a:hover { color: var(--primary-color); }

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

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #666;
}

.footer-contact i { 
    color: var(--primary-color); 
    margin-top: 4px; 
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid rgba(201, 160, 80, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 160, 80, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 160, 80, 0.15);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: #888;
    background: rgba(255, 255, 255, 0.5);
}

.footer-bottom a { color: var(--primary-color); }

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

.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    border: 1px solid rgba(201, 160, 80, 0.3);
    padding: 12px 15px;
    background: #fff;
    color: var(--dark-color);
}

.newsletter-form .form-control::placeholder { color: #999; }

.newsletter-form .form-control:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border: none;
    color: #fff;
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--gold-dark));
}

/* Page Header - Light Theme */
.page-header {
    background: linear-gradient(135deg, #ffffff 0%, #fffaf3 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(201, 160, 80, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

/* Breadcrumb - Light Theme */
.breadcrumb { 
    background: transparent; 
    justify-content: center;
    margin: 0;
}
.breadcrumb-item a { color: var(--primary-color); }
.breadcrumb-item.active { color: #888; }
.breadcrumb-item + .breadcrumb-item::before { color: #ccc; }

/* Filter Sidebar */
.filter-sidebar {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.filter-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.filter-section h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.price-inputs {
    display: flex;
    gap: 10px;
}

.price-inputs input {
    width: 50%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Form Elements */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201, 160, 80, 0.15);
}

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

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border-radius: 8px;
    margin: 0 3px;
    border: 1px solid #ddd;
}

.pagination .page-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-color: transparent;
    color: var(--dark-color);
}

/* Alert & Notification Styles */
.alert-primary {
    background: rgba(201, 160, 80, 0.15);
    border-color: var(--secondary-color);
    color: var(--gold-dark);
}

.alert-success {
    background: rgba(201, 160, 80, 0.1);
    border-color: var(--primary-color);
    color: var(--gold-dark);
}

/* Selection/Highlight Color */
::selection {
    background: var(--secondary-color);
    color: var(--dark-color);
}

/* Scrollbar Styling - Light Theme */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--secondary-color), var(--primary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Loading Animation */
.loading-spinner {
    border: 3px solid rgba(201, 160, 80, 0.2);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

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

/* Gold Shimmer Effect */
.gold-shimmer {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

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

/* ==================== RESPONSIVE STYLES ==================== */

/* Large Tablets and Small Desktops */
@media (max-width: 1199px) {
    .hero-slider-section .carousel-item { height: 550px; }
    .hero-slider-section .carousel-caption h1 { font-size: 2.5rem; }
    .hero-slider-section .carousel-caption .container { max-width: 500px; }
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
}

/* Tablets */
@media (max-width: 991px) {
    /* Top Bar - Tablet */
    .top-bar { padding: 8px 0; font-size: 12px; }
    
    .logo { height: 60px; max-width: 170px; }
    .navbar { padding: 12px 0; }
    
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        margin-top: 15px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .navbar-nav { margin-bottom: 15px; }
    
    .nav-icons {
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid #eee;
    }
    
    /* Hero Slider - Tablet */
    .hero-slider-section .carousel-item { height: 500px; }
    .hero-slider-section .carousel-caption h1 { font-size: 2.2rem; }
    .hero-slider-section .carousel-caption p { font-size: 1rem; }
    .hero-slider-section .carousel-caption .container { 
        max-width: 450px;
        margin-left: 3%;
    }
    .slider-arrow { width: 45px; height: 45px; font-size: 16px; }
    .carousel-control-prev, .carousel-control-next { padding: 0 15px; }
    
    .section-title { font-size: 1.8rem; }
    
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-image { height: 220px; }
    
    .filter-sidebar {
        position: static;
        margin-bottom: 20px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 767px) {
    /* Top Bar - Mobile */
    .top-bar { padding: 8px 0; font-size: 11px; }
    .top-bar span i { margin-right: 5px; }
    
    .logo { height: 55px; max-width: 150px; }
    .navbar { padding: 10px 0; }
    
    /* Hero Slider - Mobile */
    .hero-slider-section .carousel-item { height: 450px; }
    .hero-slider-section .carousel-caption h1 { font-size: 1.8rem; }
    .hero-slider-section .carousel-caption p { 
        font-size: 0.9rem; 
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .hero-slider-section .carousel-caption .container { 
        max-width: 100%;
        margin-left: 0;
        padding: 0 20px;
    }
    .slider-badge { 
        font-size: 10px; 
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    .btn-slider { 
        padding: 12px 25px; 
        font-size: 13px; 
    }
    .slider-arrow { width: 40px; height: 40px; font-size: 14px; }
    .carousel-control-prev, .carousel-control-next { padding: 0 10px; }
    .hero-slider-section .carousel-indicators { bottom: 20px; }
    .hero-slider-section .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
    
    .section-header { margin-bottom: 25px; }
    .section-title { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.85rem; }
    .section-badge { font-size: 10px; padding: 6px 15px; }
    
    .category-image { width: 60px; height: 60px; }
    .category-name { font-size: 0.8rem; }
    .category-card { padding: 12px; }
    
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-image { height: 180px; }
    .product-info { padding: 12px; }
    .product-name { font-size: 0.85rem; }
    .current-price { font-size: 1rem; }
    .original-price { font-size: 0.8rem; }
    .product-category { font-size: 10px; }
    .product-badge { font-size: 10px; padding: 4px 10px; }
    
    .product-actions { 
        opacity: 1; 
        transform: translateX(-50%) translateY(0);
        bottom: 10px;
    }
    .action-btn { width: 32px; height: 32px; font-size: 12px; }
    
    .feature-box { padding: 20px 10px; }
    .feature-box i { font-size: 28px; }
    .feature-box h5 { font-size: 0.9rem; }
    .feature-box p { font-size: 12px; }
    
    .page-header { padding: 35px 0; }
    .page-header h1 { font-size: 1.6rem; }
    
    .products-header {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .sort-select { width: 100%; }
    
    .main-footer { padding: 40px 0 0; }
    .footer-title { font-size: 1.1rem; margin-bottom: 15px; }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    .container { padding-left: 15px; padding-right: 15px; }
    
    /* Top Bar - Small Mobile */
    .top-bar { padding: 6px 0; font-size: 10px; }
    .top-bar span i { font-size: 10px; }
    
    .navbar { padding: 8px 0; }
    .logo { height: 50px; max-width: 140px; }
    
    .navbar-toggler { padding: 5px 10px; font-size: 18px; }
    
    /* Hero Slider - Small Mobile */
    .hero-slider-section .carousel-item { height: 400px; }
    .hero-slider-section .carousel-caption { 
        text-align: center;
    }
    .hero-slider-section .carousel-caption h1 { font-size: 1.5rem; }
    .hero-slider-section .carousel-caption p { 
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    .hero-slider-section .carousel-caption .container { 
        padding: 0 15px;
    }
    .slider-badge { 
        font-size: 9px; 
        padding: 5px 12px;
    }
    .btn-slider { 
        padding: 10px 20px; 
        font-size: 12px; 
    }
    .slider-arrow { width: 35px; height: 35px; font-size: 12px; }
    .carousel-control-prev, .carousel-control-next { padding: 0 5px; }
    
    /* Dark overlay stronger on mobile */
    .hero-slider-section .carousel-item::before {
        background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.6) 100%);
    }
    
    .section-title { font-size: 1.3rem; }
    .section-subtitle { font-size: 0.8rem; }
    .section-badge { font-size: 9px; padding: 5px 12px; }
    
    /* 2 columns on mobile */
    .row.g-4 > [class*="col-6"] { padding: 6px; }
    
    .category-card { padding: 10px; border-radius: 10px; }
    .category-image { width: 50px; height: 50px; margin-bottom: 8px; }
    .category-name { font-size: 0.75rem; }
    
    .product-card { border-radius: 10px; }
    .product-image { height: 160px; }
    .product-info { padding: 10px; }
    .product-category { font-size: 9px; }
    .product-name { font-size: 0.8rem; margin: 4px 0; }
    .current-price { font-size: 0.95rem; }
    .original-price { font-size: 0.75rem; }
    
    .action-btn { width: 28px; height: 28px; font-size: 11px; }
    
    .feature-box { padding: 15px 8px; border-radius: 10px; }
    .feature-box i { font-size: 24px; margin-bottom: 8px; }
    .feature-box h5 { font-size: 0.8rem; }
    .feature-box p { font-size: 11px; }
    
    .page-header { padding: 25px 0; }
    .page-header h1 { font-size: 1.4rem; }
    .breadcrumb { font-size: 12px; }
    
    .filter-sidebar { padding: 15px; border-radius: 10px; }
    .filter-section { padding-bottom: 15px; margin-bottom: 15px; }
    .filter-section h5 { font-size: 0.9rem; }
    
    .footer-title { font-size: 1rem; }
    .footer-links li, .footer-contact li { font-size: 13px; }
    .social-links a { width: 35px; height: 35px; }
    .footer-bottom { padding: 15px 0; font-size: 12px; }
}

/* Extra Small Devices */
@media (max-width: 380px) {
    .logo { height: 35px; max-width: 100px; }
    
    /* Hero Slider - Extra Small */
    .hero-slider-section .carousel-item { height: 350px; }
    .hero-slider-section .carousel-caption h1 { font-size: 1.3rem; }
    .hero-slider-section .carousel-caption p { display: none; }
    .slider-badge { font-size: 8px; padding: 4px 10px; }
    .btn-slider { padding: 8px 18px; font-size: 11px; }
    
    .section-title { font-size: 1.2rem; }
    .product-image { height: 140px; }
    .product-name { font-size: 0.75rem; }
    .current-price { font-size: 0.9rem; }
}