/* ============================================
   CAROUSEL STYLES (Simple Image Carousel)
   ============================================ */
   .hero-carousel-section {
    position: relative;
    overflow: hidden;
}

.carousel-fade .carousel-item {
    transition-duration: 1s;
}

.carousel-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

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

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.8);
    opacity: 1;
}

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

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

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

.carousel-indicators button {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: #fff;
    width: 10px;
    height: auto;
    border-radius: 12px;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badge {
    transition: all 0.3s ease;
    padding: 10px;
}

.trust-badge:hover {
    transform: translateY(-5px);
}

/* ============================================
   PRODUCT CARDS (2 COLUMNS ON MOBILE)
   ============================================ */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
    aspect-ratio: 1 / 1;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: all 0.4s ease;
}

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

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 2;
}

.product-badges .badge {
    font-size: 10px;
    padding: 4px 8px;
    font-weight: 600;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

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

.wishlist-btn.active {
    background: var(--bs-danger);
    color: white;
}

.product-info {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-name a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-description {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-price-section {
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--bs-primary);
}

.original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.stock-status {
    font-size: 11px;
}

.btn-view-details {
    margin-top: auto;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.category-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    padding: 20px;
}

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

.category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-overlay-modern {
    position: absolute;
    top: 15px;
    right: 15px;
}

.category-badge {
    background: var(--bs-primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.category-content {
    padding: 25px;
}

.category-name-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.category-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.category-arrow {
    width: 40px;
    height: 40px;
    background: var(--bs-primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-card-modern:hover .category-arrow {
    transform: translateX(5px);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 3px solid var(--bs-primary);
    transform: scale(1.05);
}

.popular-badge {
    background: var(--bs-primary);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 14px;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bs-primary);
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-body {
    padding: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid #eee;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* ============================================
   CTA BOX
   ============================================ */
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: white;
}

.cta-box h2 {
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Mobile (default) - 2 columns for products */
@media (max-width: 575px) {
    /* Carousel */
    .carousel-image {
        height: 120px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    /* Products stay 2 columns (col-6) */
    .product-name {
        font-size: 13px;
    }
    
    .product-description {
        font-size: 11px;
        display: none; /* Hide description on very small screens */
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .original-price {
        font-size: 11px;
    }
    
    .btn-view-details {
        font-size: 11px;
        padding: 8px;
    }
    
    .product-badges .badge {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .wishlist-btn {
        width: 30px;
        height: 30px;
    }
    
    /* Categories */
    .category-image-wrapper {
        height: 180px;
    }
    
    .category-content {
        padding: 15px;
    }
    
    .category-name-modern {
        font-size: 1.2rem;
    }
    
    .category-description {
        font-size: 0.85rem;
    }
    
    /* Trust badges */
    .trust-badge h5 {
        font-size: 1rem;
    }
    
    .trust-badge .display-6 {
        font-size: 2rem;
    }
}

/* Tablet */
@media (min-width: 576px) and (max-width: 991px) {
    .carousel-image {
        height: 400px;
    }
    
    .category-image-wrapper {
        height: 200px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .carousel-image {
        height: 600px;
    }
    
    /* Products in 4 columns on large screens (col-lg-3) */
    .product-description {
        display: block;
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .carousel-image {
        height: 700px;
    }
}

/* ============================================
   ANIMATION UTILITIES
   ============================================ */
[data-aos] {
    pointer-events: auto;
}

/* Smooth transitions */
* {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Prevent transition on page load */
.preload * {
    transition: none !important;
}