/* --- Hero Section --- */
.hero-banner {
    background: linear-gradient(rgba(10, 26, 46, 0.8), rgba(10, 26, 46, 0.8)), 
                url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.5rem; 
}


.breadcrumb-item + .breadcrumb-item::before {
    font-family: "Font Awesome 6 Free"; 
    content: "\f054";                  
    font-weight: 900;                 
    color: var(--primary-red);         
    padding-right: 0.5rem;             
    float: left;                       
    font-size: 0.8rem;                  
    margin-top: 3px;                    
}

.breadcrumb-item a {
    color: var(--primary-red);          
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;                
}

.breadcrumb-item.active {
    color: white;                      
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary-red);
}

/* --- Content Section --- */
.content-section {
    padding: 80px 0;
    background-color: #fff;
}
.section-heading {
    color: var(--primary-red);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.section-text {
    color: var(--text-grey);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* --- Product Cards & Hover Logic --- */

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    text-align: center;
    cursor: pointer;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

/* 2. Card Hover Effect */
.product-card-link:hover .product-card {
    transform: translateY(-5px);
}

.product-img-box {
    height: 250px;
    border: 1px solid #e0e0e0;
    /* We use flexbox to center the smaller image perfectly */
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-img-box img {
    
    width: 75%; 
    height: 75%;
    
    object-fit: contain; 
}
/* 3. Image Box Hover: Red border and shadow */
.product-card-link:hover .product-img-box {
    box-shadow: 0 10px 25px rgba(169, 27, 75, 0.15);
    border-color: var(--primary-red);
}



.product-title {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 5px;
}

/* 4. "Learn More"  */
.learn-more-btn {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
    padding-bottom: 2px;
    
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

/* 5. Trigger "Learn More" Animation on Hover */
.product-card-link:hover .learn-more-btn {
    opacity: 1;
    transform: translateY(0);
}

/* --- Animation Utilities --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Mobile fixes */
@media (max-width: 991px) {
    .btn-whatsapp { display: none; }
    .hero-title { font-size: 2.5rem; }
    
    .learn-more-btn { opacity: 1; transform: translateY(0); }
}