/* ============================================
   ADDITIONAL STYLES - Africano Herbs
   Product Cards, Details Page, Animations
   ============================================ */

/* Product Card Enhancements */
.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    border: 1px solid rgba(15, 90, 60, 0.08);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 45px rgba(15, 90, 60, 0.15);
    border-color: var(--gold);
}

.product-card .img-wrapper {
    overflow: hidden;
    position: relative;
}

.product-card .img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.product-card:hover .img-wrapper::after {
    left: 100%;
}

.product-img {
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
    width: 100%;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-title {
    color: var(--primary);
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--gold);
}

.badge-cat {
    background: var(--secondary);
    color: white;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

.btn-detail {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    border-radius: 40px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-detail:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
    border-color: var(--primary);
}

/* Product Detail Page */
.product-detail-hero {
    background: linear-gradient(135deg, var(--bg) 0%, #f0eadc 100%);
    padding: 140px 0 60px;
    margin-top: -70px;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.breadcrumb-custom a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb-custom a:hover {
    color: var(--gold);
}

.breadcrumb-custom .separator {
    margin: 0 10px;
    color: #aaa;
}

/* Product Gallery */
.product-gallery {
    background: white;
    border-radius: 28px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.main-image img:hover {
    transform: scale(1.02);
}

.thumbnail-gallery {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.thumbnail-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail-img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.thumbnail-img.active {
    border-color: var(--gold);
    opacity: 1;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Product Info */
.product-info-card {
    background: white;
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.product-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-info-card h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.benefits-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.benefits-list li i {
    color: var(--gold);
    font-size: 1.1rem;
    width: 24px;
}

/* Info Grid */
.info-grid {
    background: var(--bg);
    border-radius: 20px;
    padding: 5px 0;
}

.info-item {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(15, 90, 60, 0.1);
    display: flex;
    flex-wrap: wrap;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 700;
    color: var(--primary);
    width: 120px;
    font-size: 0.9rem;
}

.info-value {
    flex: 1;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Wikipedia Button */
.btn-wiki {
    background: linear-gradient(135deg, #336699 0%, #2c5a82 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-wiki:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(51, 102, 153, 0.4);
    color: white;
}

/* Tabs Section */
.product-tabs {
    background: white;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.nav-tabs-custom {
    border-bottom: 2px solid rgba(15, 90, 60, 0.1);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-tabs-custom .nav-link {
    background: transparent;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    color: #666;
    border-radius: 50px;
    transition: all 0.3s;
}

.nav-tabs-custom .nav-link:hover {
    color: var(--primary);
    background: rgba(15, 90, 60, 0.05);
}

.nav-tabs-custom .nav-link.active {
    background: var(--primary);
    color: white;
}

.tab-content-custom {
    padding: 30px 10px 10px;
}

/* Section Titles */
.section-title-decoration {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.section-title-decoration::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

/* Product Card Wrapper Animation */
.product-card-wrapper {
    animation: slideUp 0.5s ease backwards;
}

.product-card-wrapper:nth-child(1) { animation-delay: 0.05s; }
.product-card-wrapper:nth-child(2) { animation-delay: 0.1s; }
.product-card-wrapper:nth-child(3) { animation-delay: 0.15s; }
.product-card-wrapper:nth-child(4) { animation-delay: 0.2s; }
.product-card-wrapper:nth-child(5) { animation-delay: 0.25s; }
.product-card-wrapper:nth-child(6) { animation-delay: 0.3s; }

/* Category Hero Section */
.category-hero {
    background: linear-gradient(135deg, var(--primary) 0%, #1a6b48 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.category-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.category-hero .breadcrumb {
    background: transparent;
    justify-content: center;
}

.category-hero .breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

/* No Products Found */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 28px;
    margin: 40px 0;
}

.no-products i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-info-card h1 {
        font-size: 1.8rem;
    }
    
    .thumbnail-img {
        width: 60px;
        height: 60px;
    }
    
    .info-label {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .nav-tabs-custom .nav-link {
        padding: 8px 18px;
        font-size: 0.85rem;
    }
    
    .product-img {
        height: 200px;
    }
    
    .category-hero h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .product-info-card {
        padding: 20px;
    }
    
    .btn-wiki {
        width: 100%;
        justify-content: center;
    }
}

















/* fooooooooooooooter  */

/* ========== FOOTER STYLES ========== */
.footer {
    background: linear-gradient(135deg, #0a2a1a 0%, #051a0f 100%);
    color: #e8e8e8;
    padding-top: 4rem;
    position: relative;
}

/* Background Image Layer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.09;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: #D4AF37;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #c8d6c5;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: #D4AF37;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #D4AF37;
    color: #0a2a1a;
    transform: translateY(-3px);
}

/* Footer Links */
.footer h5 {
    color: #D4AF37;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #D4AF37;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #c8d6c5;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
    color: #c8d6c5;
    line-height: 1.5;
}

.footer-contact li i {
    color: #D4AF37;
    font-size: 1rem;
    margin-top: 3px;
    min-width: 18px;
}

.footer-contact a {
    color: #c8d6c5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #D4AF37;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(212, 175, 67, 0.2);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.8rem;
    color: #9bb5a8;
}

/* Developer Badge */
.developer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 67, 0.12);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.developer-badge:hover {
    background: rgba(212, 175, 67, 0.22);
    transform: translateY(-2px);
}

.developer-badge i {
    color: #D4AF37;
    font-size: 0.8rem;
}

.developer-badge span {
    color: #c8d6c5;
}

.developer-badge a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.developer-badge a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(212, 175, 67, 0.5);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer {
        padding-top: 3rem;
    }
    .footer-description {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.7rem;
    }
    .footer h5 {
        margin-top: 1rem;
    }
}