/* Luxury Home Page Sections Styling */

/* Featured Products Section - Luxury Aesthetic */
#featured-products {
    background: var(--white);
    padding: 5rem 0;
    position: relative;
}

#featured-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--main-gold), transparent);
}

#featured-products .container {
    max-width: 1400px;
}

#featured-products h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    text-align: center;
    margin-bottom: 1rem !important;
    letter-spacing: 1px;
    position: relative;
}

#featured-products h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--main-gold);
}

#featured-products p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    font-style: italic;
}

/* Luxury Featured Products Slider */
.featured-products-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    margin-bottom: 3rem;
}

.scroll-hint {
    text-align: center;
    font-size: 0.9rem;
    color: var(--grey);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: var(--bg-light);
    border-radius: 0;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Libre Baskerville', serif;
    letter-spacing: 0.5px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.scroll-hint i {
    margin-right: 8px;
    color: var(--main-gold);
    animation: scroll-hint 2s infinite;
}

@keyframes scroll-hint {
    0% { transform: translateX(-3px); }
    50% { transform: translateX(3px); }
    100% { transform: translateX(-3px); }
}

.featured-products-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 30px;
    padding: 20px 10px;
    cursor: grab;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.featured-products-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.featured-products-slider:active {
    cursor: grabbing;
}

/* Product card styles moved to luxury-product-cards.css */

/* View All Products Button */
#featured-products .text-center .eco-btn {
    background: transparent;
    border: 2px solid var(--main-gold);
    color: var(--main-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

#featured-products .text-center .eco-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--main-gold);
    transition: left 0.4s ease;
    z-index: -1;
}

#featured-products .text-center .eco-btn:hover::before {
    left: 0;
}

#featured-products .text-center .eco-btn:hover {
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

/* Categories Showcase - Luxury Styling */
#categories-showcase {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

#categories-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--main-gold), transparent);
}

.category-card {
    transition: all 0.5s ease;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
    position: relative;
    height: 400px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.category-card:hover img {
    transform: scale(1.05);
    filter: brightness(1) contrast(1.15);
}

.category-overlay {
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: var(--white);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    backdrop-filter: blur(2px);
    z-index: 2;
}

.category-card:hover .category-overlay {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.category-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    color: var(--main-gold);
}

.category-overlay p {
    max-width: 80%;
    margin: 0 auto 2rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.category-overlay .eco-btn-light,
.category-overlay .btn {
    background: transparent;
    border: 2px solid var(--main-gold);
    color: var(--main-gold);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    padding: 12px 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    text-decoration: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.category-overlay .eco-btn-light::before,
.category-overlay .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--main-gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.category-overlay .eco-btn-light:hover::before,
.category-overlay .btn:hover::before {
    left: 0;
}

.category-overlay .eco-btn-light:hover,
.category-overlay .btn:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

.category-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.category-card-link:hover,
.category-card-link:focus,
.category-card-link:active {
    text-decoration: none;
    color: inherit;
}

/* Our Promise Section - Luxury Styling */
#our-promise {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

#our-promise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--main-gold), transparent);
}

#our-promise h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    text-align: center;
    margin-bottom: 1rem !important;
    letter-spacing: 1px;
    position: relative;
}

#our-promise h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--main-gold);
}

#our-promise p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem !important;
    font-style: italic;
}

.promise-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    height: 100%;
    border: none;
    position: relative;
    will-change: transform;
}

.promise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.promise-card .icon-wrapper {
    margin-bottom: 2rem;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.promise-card .icon-wrapper i {
    color: var(--main-gold);
    font-size: 3.5rem;
    transition: color 0.2s ease, transform 0.2s ease;
    will-change: transform;
}

.promise-card:hover .icon-wrapper i {
    transform: scale(1.05);
    color: var(--primary-color);
}

.promise-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.promise-card p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0;
    font-style: normal;
    text-align: left;
}

/* Mobile Responsiveness */
/* Medium screens (tablets) - Bigger sections */
@media (max-width: 992px) and (min-width: 769px) {
    #featured-products {
        padding: 5rem 0; /* Increased padding for tablets */
        min-height: 700px; /* Larger minimum height for tablets */
    }
}

@media (max-width: 768px) {
    /* Override Bootstrap py-5 classes - ULTRA COMPACT sections */
    #featured-products,
    #categories-showcase,
    #our-promise {
        padding: 2rem 0 !important; /* Ultra compact padding for all sections */
        padding-top: 2rem !important; 
        padding-bottom: 2rem !important;
    }
    
    /* ULTRA COMPACT featured products section height */
    #featured-products {
        padding: 2rem 0 !important; /* Further reduced for ultra compact layout */
        padding-top: 2rem !important;
        padding-bottom: 2rem !important; 
        min-height: 450px !important; /* Very tight for content */
    }
    
    /* Featured products slider container height override */
    #featured-products .featured-products-slider-container {
        padding: 0.5rem 0 !important; /* Consistent with mobile slider enhancements */
        min-height: 400px !important; /* Consistent minimum height */
    }
    
    /* Featured products slider height */
    #featured-products .featured-products-slider {
        padding: 0.25rem 1rem !important; /* Consistent with mobile slider styling */
        min-height: 390px !important; /* Consistent minimum height */
    }
    
    /* COMPACT related products section - reduce just the padding */
    #related-products {
        padding: 2rem 0 !important; /* Reduced padding for more compact look */
        padding-top: 2rem !important;
        padding-bottom: 2rem !important; 
        min-height: 500px !important; /* Reasonable minimum height */
    }
    
    /* More specific selectors to override global.css - COMPACT for related products */
    section#related-products.featured-products {
        padding: 2rem 0 !important; /* Consistent compact sizing */
        padding-top: 2rem !important;
        padding-bottom: 2rem !important; 
        min-height: 500px !important;
    }
    
    /* Even more specific to ensure it works - COMPACT for related products */
    section#related-products.featured-products.bg-light {
        padding: 2rem 0 !important; /* Consistent compact sizing */
        padding-top: 2rem !important;
        padding-bottom: 2rem !important; 
        min-height: 500px !important;
    }
    
    /* Related products slider container height override - COMPACT for better proportion */
    #related-products .featured-products-slider-container {
        padding: 1rem 0 !important; /* Compact padding */
        min-height: 450px !important; /* Reasonable minimum height */
    }
    
    /* Related products slider height - COMPACT for better fit */
    #related-products .featured-products-slider {
        padding: 0.5rem 0.5rem !important; /* Minimal padding for compact look */
        min-height: 340px !important; /* Adjusted for shorter cards */
    }
    
    /* Force shorter card heights in related products with ultra-high specificity */
    section#related-products .featured-products-slider .luxury-product-card-wrapper {
        width: 300px !important; /* Same width as featured products */
        max-width: 300px !important;
    }
    
    section#related-products .featured-products-slider .luxury-product-card {
        height: 320px !important; /* Much shorter than featured products (400px) */
        max-height: 320px !important;
    }
    
    /* Mobile force shorter height but same width */
    @media (max-width: 768px) {
        section#related-products .featured-products-slider .luxury-product-card-wrapper {
            width: 280px !important; /* Same width as featured products on mobile */
            max-width: 280px !important;
            height: 320px !important; /* Shorter than featured products (380px) */
            max-height: 320px !important;
        }
        
        section#related-products .featured-products-slider .luxury-product-card {
            height: 320px !important; /* Shorter height on mobile */
            max-height: 320px !important;
        }
    }
    
    /* Ensure product cards themselves are tall enough on mobile */
    .luxury-product-card-wrapper {
        min-height: 380px !important; /* Force minimum card height */
    }
    
    .luxury-product-card {
        min-height: 380px !important; /* Force minimum card height */
    }
    
    /* Remove card height overrides - let luxury-product-cards.css handle this */
    
    /* Remove duplicate rules - already defined above */
    
    #featured-products h3,
    #our-promise h3 {
        font-size: 2rem !important;
    }
    
    /* Product card responsive styles moved to luxury-product-cards.css */
    
    .category-card {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .category-overlay h3 {
        font-size: 1.8rem;
    }
    
    .category-overlay p {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .promise-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .promise-card .icon-wrapper i {
        font-size: 3rem;
    }
    
    .promise-card h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    /* Product card responsive styles moved to luxury-product-cards.css */
    
    .category-overlay h3 {
        font-size: 1.5rem;
    }
    
    .promise-card .icon-wrapper i {
        font-size: 2.5rem;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE HOME PAGE STYLING
   ======================================== */

@media (max-width: 768px) {
    /* Mobile Container Adjustments - FORCE OVERRIDE with maximum specificity */
    .container,
    body .container,
    div.container {
        padding-left: 2rem !important; /* Force override any conflicting styles */
        padding-right: 2rem !important; /* Force override any conflicting styles */
    }
    
    /* Featured Products Mobile Excellence */
    #featured-products {
        padding: 2.5rem 0 !important;
        background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%) !important;
    }
    
    #featured-products h3 {
        font-size: 2.2rem !important;
        margin-bottom: 0.8rem !important;
        padding: 0 1rem !important;
    }
    
    #featured-products p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
        line-height: 1.5 !important;
    }
    
    /* Mobile Slider Enhancements - MINIMAL padding for tight layout */
    .featured-products-slider-container {
        padding: 0.5rem 0 !important; /* Minimal padding for very tight layout */
        margin-bottom: 1rem !important; /* Even smaller margin */
        min-height: 400px !important; /* Tight fit for cards */
    }
    
    .scroll-hint {
        font-size: 0.85rem !important;
        padding: 6px 16px !important;
        margin-bottom: 10px !important;
        background: rgba(212, 175, 55, 0.1) !important;
        border: 1px solid rgba(212, 175, 55, 0.2) !important;
        color: var(--primary-color) !important;
    }
    
    .featured-products-slider {
        gap: 1rem !important;
        padding: 0.25rem 1rem !important; /* Ultra minimal padding for tight layout */
        scroll-snap-type: x mandatory !important;
        min-height: 390px !important; /* Very tight fit for cards */
    }
    
    /* Mobile View All Button */
    #featured-products .text-center .eco-btn {
        padding: 14px 32px !important;
        font-size: 1rem !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    /* Categories Showcase Mobile Excellence */
    #categories-showcase {
        padding: 2.5rem 0 !important;
    }
    
    .category-card {
        height: 250px !important;
        margin-bottom: 1.5rem !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    }
    
    .category-card:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18) !important;
    }
    
    .category-overlay {
        background: rgba(0, 0, 0, 0.65) !important;
        backdrop-filter: blur(3px) !important;
    }
    
    .category-overlay h3 {
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }
    
    .category-overlay p {
        font-size: 0.95rem !important;
        max-width: 95% !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.4 !important;
    }
    
    .category-overlay .eco-btn-light,
    .category-overlay .btn {
        padding: 10px 24px !important;
        font-size: 0.9rem !important;
        min-width: 140px !important;
    }
    
    /* Our Promise Mobile Excellence */
    #our-promise {
        padding: 2.5rem 0 !important;
        background: var(--white) !important;
    }
    
    #our-promise h3 {
        font-size: 2.2rem !important;
        margin-bottom: 0.8rem !important;
        padding: 0 1rem !important;
    }
    
    #our-promise p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
        padding: 0 1rem !important;
        line-height: 1.5 !important;
    }
    
    .promise-card {
        padding: 1.5rem 1.25rem !important;
        margin-bottom: 1.5rem !important;
        border-radius: 8px !important;
        background: var(--white) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
        border: none !important;
        transition: all 0.3s ease !important;
        min-height: 200px !important;
    }
    
    .promise-card:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        border: none !important;
    }
    
    .promise-card .icon-wrapper {
        margin-bottom: 1.5rem !important;
    }
    
    .promise-card .icon-wrapper i {
        font-size: 2.8rem !important;
        color: var(--main-gold) !important;
        transition: all 0.3s ease !important;
    }
    
    .promise-card:hover .icon-wrapper i {
        transform: scale(1.1) !important;
        color: var(--primary-color) !important;
    }
    
    .promise-card h4 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        color: var(--text-color) !important;
        line-height: 1.3 !important;
    }
    
    .promise-card p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: var(--text-color) !important;
        text-align: left !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile Optimizations - FORCE OVERRIDE with maximum specificity */
    .container,
    body .container,
    div.container {
        padding-left: 1.5rem !important; /* Force override any conflicting styles */
        padding-right: 1.5rem !important; /* Force override any conflicting styles */
    }
    
    /* Featured Products XS Mobile - Ultra compact height */
    #featured-products {
        padding: 1.5rem 0 !important; /* Ultra compact padding */
        min-height: 420px !important; /* Ultra compact minimum height */
    }
    
    #featured-products h3 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        padding: 0 0.75rem !important;
    }
    
    #featured-products p {
        font-size: 0.95rem !important;
        padding: 0 0.75rem !important;
    }
    
    .scroll-hint {
        font-size: 0.8rem !important;
        padding: 5px 12px !important;
    }
    
    .featured-products-slider {
        gap: 0.75rem !important;
        padding: 0.25rem 0.75rem !important; /* Ultra minimal padding for tight layout */
        min-height: 370px !important; /* Very tight for cards */
    }
    
    #featured-products .text-center .eco-btn {
        padding: 12px 28px !important;
        font-size: 0.95rem !important;
        width: 100% !important;
        max-width: 260px !important;
    }
    
    /* Categories XS Mobile */
    #categories-showcase {
        padding: 2rem 0 !important;
    }
    
    .category-card {
        height: 220px !important;
        margin-bottom: 1.25rem !important;
    }
    
    .category-overlay h3 {
        font-size: 1.4rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .category-overlay p {
        font-size: 0.9rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .category-overlay .eco-btn-light,
    .category-overlay .btn {
        padding: 8px 20px !important;
        font-size: 0.85rem !important;
        min-width: 120px !important;
    }
    
    /* Our Promise XS Mobile */
    #our-promise {
        padding: 2rem 0 !important;
    }
    
    #our-promise h3 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        padding: 0 0.75rem !important;
    }
    
    #our-promise p {
        font-size: 0.95rem !important;
        padding: 0 0.75rem !important;
    }
    
    .promise-card {
        padding: 1.5rem 1.25rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .promise-card .icon-wrapper i {
        font-size: 2.5rem !important;
    }
    
    .promise-card h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .promise-card p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

/* ========================================
   MOBILE PERFORMANCE OPTIMIZATIONS
   ======================================== */

@media (max-width: 768px) {
    /* Reduce animation complexity on mobile */
    .category-card::before,
    .promise-card::before,
    .product-card::before {
        display: none !important;
    }
    
    /* Optimize transitions for mobile */
    .category-card,
    .promise-card,
    .featured-products-slider .product-card {
        transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    }
    
    /* Improve touch targets */
    .category-card,
    .promise-card,
    .eco-btn,
    .buy-btn {
        touch-action: manipulation !important;
    }
    
    /* Mobile scroll improvements */
    .featured-products-slider {
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
    }
    
    /* Reduce motion for mobile performance */
    @media (prefers-reduced-motion: reduce) {
        .category-card,
        .promise-card,
        .featured-products-slider .product-card {
            transition: none !important;
        }
        
        .category-card:hover,
        .promise-card:hover {
            transform: none !important;
        }
    }
}

/* ========================================
   MOBILE LANDSCAPE OPTIMIZATIONS
   ======================================== */

@media (max-width: 768px) and (orientation: landscape) {
    #featured-products,
    #categories-showcase,
    #our-promise {
        padding: 2rem 0 !important;
    }
    
    #featured-products h3,
    #our-promise h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .category-card {
        height: 200px !important;
    }
    
    .promise-card {
        padding: 1.5rem !important;
    }
    
    .promise-card .icon-wrapper i {
        font-size: 2.2rem !important;
    }
}

/* ========================================
   MOBILE ACCESSIBILITY IMPROVEMENTS
   ======================================== */

@media (max-width: 768px) {
    /* Larger touch targets */
    .eco-btn,
    .buy-btn,
    .category-card,
    .promise-card {
        min-height: 44px !important;
    }
    
    /* Better contrast for mobile */
    .category-overlay {
        background: rgba(0, 0, 0, 0.7) !important;
    }
    
    .category-overlay h3,
    .category-overlay p {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    }
    
    /* Improved focus states for mobile */
    .eco-btn:focus,
    .buy-btn:focus,
    .category-card:focus {
        outline: 2px solid var(--main-gold) !important;
        outline-offset: 2px !important;
    }
} 
/* ULTIMATE BORDER REMOVAL FOR PROMISE SECTION - HIGHEST PRIORITY */
@media (max-width: 768px) {
    /* Promise Carousel Container - Remove ALL borders */
    .promise-carousel,
    #promiseCarousel,
    #promiseCarousel.promise-carousel,
    body #our-promise .promise-carousel,
    body #our-promise .d-md-none .promise-carousel,
    body #our-promise div.d-md-none #promiseCarousel.promise-carousel {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: none !important;
    }
    
    /* Promise Cards - Remove ALL borders */
    .promise-card,
    .promise-carousel .promise-card,
    #promiseCarousel .promise-card,
    body #our-promise .promise-card,
    body #our-promise .d-md-none .promise-card,
    body #our-promise .d-md-none #promiseCarousel .promise-card,
    body #our-promise div.d-md-none #promiseCarousel.promise-carousel .carousel-inner .carousel-item .promise-card {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
    }
    
    /* Remove ALL pseudo-element borders */
    .promise-card::before,
    .promise-card::after,
    .promise-carousel .promise-card::before,
    .promise-carousel .promise-card::after,
    #promiseCarousel .promise-card::before,
    #promiseCarousel .promise-card::after {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        border-left: none !important;
        border-right: none !important;
        display: none !important;
        content: none !important;
    }
}

/* Force override for promise card main styles */
.promise-card {
    border: none !important;
}

@media (max-width: 768px) {
    .promise-card:hover {
        border: none !important;
        border-color: transparent !important;
    }
}
