/* ==========================================
   EASYPARA HOME PAGE STYLES
   ========================================== */

/* Hero Carousel Styles */
/* Hero Carousel Styles */
#heroCarousel {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #f8f9fa;
}

#heroCarousel,
#heroCarousel .carousel-inner {
    position: relative;
    /* Increased height for premium feel */
    height: 600px;
    overflow: hidden;
}

@media (max-width: 991px) {

    #heroCarousel,
    #heroCarousel .carousel-inner {
        height: 450px;
    }
}

@media (max-width: 576px) {

    #heroCarousel,
    #heroCarousel .carousel-inner {
        height: 350px;
    }
}

#heroCarousel .carousel-item {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 1;
    transform: scale(1.05);
}

#heroCarousel .carousel-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1);
}

#heroCarousel img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
}

#heroCarousel .carousel-caption {
    position: absolute;
    z-index: 10;
    bottom: 15% !important;
    left: 10% !important;
    right: auto;
    max-width: 600px;
    text-align: left !important;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Animations for Captions */
.slide-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-item.active .slide-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Controls */
.carousel-control-prev,
.carousel-control-next {
    z-index: 20;
    width: 60px;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: none;
    background: transparent;
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(26, 95, 79, 0.8) !important;
    border-radius: 50%;
    background-size: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Indicators */
.carousel-indicators {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin: 0 !important;
    padding: 6px 12px !important;
    background: rgba(0, 0, 0, 0.25) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border-radius: 20px !important;
    z-index: 15;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: rgba(255, 255, 255, 0.4) !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1 !important;
    cursor: pointer;
    position: relative !important;
    top: 0 !important;
}

.carousel-indicators button.active {
    background-color: #fff !important;
    transform: scale(1.2);
    width: 24px !important;
    border-radius: 5px !important;
}

/* Product Grid Enhancements */
.section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.section .products-grid .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.section .products-grid .product-image {
    height: 160px;
}

.section .products-grid .product-info {
    margin-top: auto;
}

/* Banner Columns */
.banner-col {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    min-width: 200px;
    width: 200px;
    height: auto !important;
    /* Allow flex to control height */
}

.banner-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: inherit;
    flex-grow: 1;
}

.banner-cta {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    display: none;
}

.see-more {
    margin-top: 16px;
    text-align: center;
}

/* Responsive Product Grid */
@media (max-width: 1200px) {
    .section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .promo-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .promo-image {
        height: 160px;
    }

    .promo-content {
        padding: 12px;
    }

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

    .banner-col {
        display: none;
    }

    #heroCarousel img {
        max-height: 280px;
    }

    #heroCarousel .carousel-caption {
        padding: 16px;
    }

    #heroCarousel .carousel-caption h5 {
        font-size: 1.2rem;
    }

    #heroCarousel .carousel-caption p {
        font-size: 0.9rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    #heroCarousel .carousel-control {
        width: 35px;
        height: 35px;
    }

    @media (max-width: 576px) {
        .section .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        #heroCarousel,
        #heroCarousel .carousel-inner {
            height: 280px;
        }

        #heroCarousel img {
            max-height: none !important;
        }
    }
}

/* ==========================================
   EXTRACTED INLINE CSS + ENHANCEMENTS
   ========================================== */

/* Enhanced Hero Carousel (Conflict-Free) */
#heroCarousel .carousel-item {
    display: none;
    /* Default state */
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    position: relative;
    z-index: 1;
}

#heroCarousel .carousel-item.active {
    display: block;
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* Ensure absolute positioning for cross-fade if needed, 
   but using default block/none behavior for simplicity with opacity fade */
#heroCarousel.slide .carousel-item {
    display: block !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

#heroCarousel.slide .carousel-item.active {
    visibility: visible;
}

/* Animations for Captions */
.slide-in-up {
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   PREMIUM LAYOUTS & ANIMATIONS
   ========================================== */

/* Featured Layout: Big main item + small ones */
.layout-featured .products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-template-rows: auto auto !important;
    gap: 24px !important;
}

.layout-featured .products-grid .product-card:first-child {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
}

.layout-featured .products-grid .product-card:first-child .product-image {
    height: 480px !important;
}

@media (max-width: 991px) {
    .layout-featured .products-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .layout-featured .products-grid .product-card:first-child {
        grid-column: span 2 !important;
        grid-row: auto !important;
    }

    .layout-featured .products-grid .product-card:first-child .product-image {
        height: 300px !important;
    }
}

/* Slider Layout: Horizontal Scroll with Snap */
.layout-slider .products-grid,
.layout-slider .categories-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 20px !important;
    padding-bottom: 20px !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--primary-teal) transparent !important;
    -webkit-overflow-scrolling: touch !important;
}

.layout-slider .products-grid::-webkit-scrollbar {
    height: 6px;
}

.layout-slider .products-grid::-webkit-scrollbar-thumb {
    background-color: var(--primary-teal);
    border-radius: 10px;
}

.layout-slider .product-card,
.layout-slider .category-card {
    flex: 0 0 280px !important;
    scroll-snap-align: start !important;
}

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    display: inline-block;
    position: relative;

    /* Gradient Text */
    background: linear-gradient(135deg, var(--primary-teal) 0%, #2c3e50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Creative Touch: Decorative Underline */
/* Decorative underline removed for minimalist design */

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Scroll Animation classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Button See More (Refined) */
.btn-premium-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: var(--white);
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-premium-more:hover {
    background: var(--primary-teal);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 139, 139, 0.15);
}

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

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

/* Enhanced Hero Section Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Enhanced Promo Cards */
.promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 2rem;
}

.promo-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 100%;
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(26, 95, 79, 0.2);
}

.promo-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.promo-card:hover .promo-image img {
    transform: scale(1.1);
}

.promo-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #fff;
}

.promo-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary, #333);
    margin-bottom: 8px;
}

.promo-description {
    font-size: 0.875rem;
    color: var(--text-secondary, #666);
    margin-bottom: 12px;
    flex-grow: 1;
    line-height: 1.5;
}

.promo-card .btn-outline {
    background: transparent;
    color: var(--primary-teal, #008B8B);
    border: 2px solid var(--primary-teal, #008B8B);
    padding: 8px 16px;
    font-size: 0.85rem;
    width: auto;
    align-self: flex-start;
}

.promo-card .btn-outline:hover {
    background: var(--primary-teal, #008B8B);
    color: #fff;
}

.promo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal, #008B8B), var(--secondary-coral, #FF7F50));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

/* Enhanced Product Cards with Animations */
.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-coral));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

.product-placeholder i {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.product-placeholder span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* Product Card Hover Animations (matching category page) */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(26, 95, 79, 0.15);
}

.product-card .product-image img {
    transition: transform 0.4s ease;
}

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

/* Scroll Reveal Animations - Fixed for smooth transitions */
.will-animate {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.delay-1 {
    transition-delay: 0.1s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.2s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.3s;
}

/* Enhanced Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.category-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 28px rgba(26, 95, 79, 0.15);
    border-color: var(--primary-teal);
    text-decoration: none;
    color: inherit;
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(5deg);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid var(--border-light);
    border-radius: 50%;
}

.category-card:hover .category-icon img {
    border-color: var(--primary-teal);
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-coral));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 800;
    border-radius: 50%;
}

.category-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.category-card:hover .category-info h3 {
    color: var(--primary-teal);
}

.category-info span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Enhanced Section Footer */
.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Enhanced Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-teal-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-info h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.newsletter-info p {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-input {
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 16px;
    min-width: 300px;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary-teal);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
}

/* Enhanced Brand Placeholder */
.brand-placeholder {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-coral));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: 12px;
}

/* Brands Grid Enhancement */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    align-items: center;
}

.brand-logo {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.brand-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(26, 95, 79, 0.15);
    border-color: var(--primary-teal);
}

.brand-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-logo:hover img {
    transform: scale(1.1);
}

/* Loading States */
.is-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.is-loading:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 3px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Image Lazy Loading Blur Effect */
img[loading="lazy"] {
    background: linear-gradient(135deg, #e0f2f1, #f8f9fa);
}

img[loading="lazy"].loaded {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-input {
        min-width: auto;
        width: 100%;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .category-card {
        padding: 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
    }

    .brand-logo {
        padding: 15px;
        min-height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .newsletter-info h2 {
        font-size: 1.5rem;
    }

    .newsletter-info p {
        font-size: 1rem;
    }

    .category-placeholder {
        font-size: 24px;
    }

    .promo-placeholder {
        font-size: 32px;
    }
}

/* Accessibility Enhancements */
*:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
}

.skip-to-content:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    background: var(--primary-teal);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
}

/* Hero Section Layout */
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
    background: transparent !important;
}

.hero-section .container {
    padding: 0 !important;
}

/* ==========================================
   OUT OF STOCK STYLES
   ========================================== */

/* Out of Stock Overlay */
.out-of-stock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    backdrop-filter: blur(2px);
}

.out-of-stock-text {
    background: #dc3545;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Out of Stock Product Card Styling */
.product-out-of-stock {
    opacity: 0.7;
}

.product-out-of-stock .product-image {
    filter: grayscale(30%);
}

/* Disabled Button States */
.product-btn-add.disabled,
.product-btn-buy.disabled {
    background: #e9ecef !important;
    color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.product-btn-add.disabled:hover,
.product-btn-buy.disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

.hero-image-wrapper {
    height: 100%;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .hero-image-wrapper {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .hero-image-wrapper {
        height: 320px;
    }
}