/* Logo Styles */
.headerIndex {
    height: 60px;
    margin-bottom: -25px;
    margin-top: -25px;
}

/* WhatsApp Button */
.whatsapp-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white !important;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    max-width: fit-content;
}

.whatsapp-fixed:hover {
    background-color: #128c7e;
    color: white !important;
    text-decoration: none;
}

.whatsapp-fixed i {
    font-size: 20px;
}

/* Featured Items */
.featured-item {
    margin-bottom: 20px;
    padding: 15px;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.featured-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.featured-item h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin: 10px 0;
    font-weight: 600;
}

.featured-item .product-description {
    color: #666;
    font-size: 14px;
    margin: 5px 0 10px 0;
    line-height: 1.4;
}

.featured-item h6 {
    margin: 10px 0 0 0;
    color: #25d366;
    font-weight: 600;
    margin-top: auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.products-grid .featured-item {
    margin: 0;
}

/* Footer Styles */
.footer-menu ul {
    margin-bottom: 20px;
}

.footer-menu ul li {
    margin: 0 10px;
}

.social-icons ul li {
    margin: 0 5px;
}

/* Enhanced Footer Info Section */
.footer-info-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    max-height: 60px;
    width: auto;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
    background-color: transparent;
}

.footer-logo:hover {
    filter: brightness(1);
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 250px;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.info-item i {
    font-size: 24px;
    color: #25d366;
    width: 40px;
    text-align: center;
}

.info-content h5 {
    margin: 0 0 5px 0;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.info-content a {
    color: #25d366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #128c7e;
    text-decoration: underline;
}

.copyright-section {
    text-align: center;
    padding-top: 20px;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #25d366, transparent);
    margin: 0 auto 20px auto;
    width: 80%;
    max-width: 300px;
}

.copyright {
    color: #666;
    font-size: 14px;
    margin: 0;
    padding: 10px 0;
}

.copyright strong {
    color: #25d366;
}

/* Product Features Styles */
.product-features,
.product-usage {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #25d366;
}

.product-features h5,
.product-usage h5 {
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.product-features ul,
.product-usage ul {
    margin: 0;
    padding-left: 20px;
}

.product-features li,
.product-usage li {
    color: #666;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 10px 0;
    margin-bottom: 20px;
}

.breadcrumb-item a {
    color: #25d366;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #128c7e;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #666;
    padding: 0 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .headerIndex {
        height: 50px;
        margin: -15px 0;
    }
    
    .whatsapp-fixed {
        padding: 8px 15px;
    }

    .featured-item img {
        height: 200px;
    }

    .featured-item h4 {
        font-size: 16px;
    }

    .featured-item .product-description {
        font-size: 13px;
    }

    /* Footer responsive adjustments */
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }

    .footer-info-section {
        padding: 20px 15px;
        margin: 0;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .footer-logo {
        max-height: 50px;
    }

    .info-item i {
        font-size: 20px;
        width: 30px;
    }

    .info-content h5 {
        font-size: 13px;
    }

    .info-content p {
        font-size: 13px;
    }
}

/* Owl Carousel Adjustments */
.owl-carousel .featured-item {
    margin: 10px;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-item {
    display: flex;
    height: auto;
}

.owl-carousel .featured-item {
    width: 100%;
}