/****** TÁNAMO CUSTOM STYLES ******/

/* ===== GOOGLE FONTS OVERRIDE ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
    --tanamo-primary: #38299B;
    --tanamo-primary-light: #4e3db5;
    --tanamo-primary-dark: #2a1f7a;
    --tanamo-accent: #00b894;
    --tanamo-gold: #f39c12;
    --tanamo-dark: #1a1a2e;
    --tanamo-light: #f8f9fa;
    --tanamo-gray: #6c757d;
    --tanamo-white: #ffffff;
    --energy-green: #27ae60;
    --energy-brown: #8d6e63;
    --energy-red: #e74c3c;
    --yamby-red: #e63946;
    --yamby-orange: #f4a261;
    --yamby-teal: #2ec4b6;
}

/* ===== GLOBAL TYPOGRAPHY ===== */
body {
    font-family: 'Inter', 'Open Sans', sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', 'Raleway', serif !important;
    letter-spacing: 0.02em;
}

/* ===== SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

/* ===== NAVBAR ENHANCEMENTS ===== */
.nav-container {
    position: relative;
    z-index: 100;
}

.nav-container nav {
    background: rgba(26, 26, 46, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-bar .menu li a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
}

.nav-bar .menu li a:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-1px);
}

/* ===== HERO SLIDER ===== */
.image-slider.height-70 {
    min-height: 85vh !important;
}

.image-slider .overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(26, 26, 46, 0.7) 0%,
            rgba(56, 41, 155, 0.5) 50%,
            rgba(0, 184, 148, 0.3) 100%);
    z-index: 1;
}

.image-slider .container {
    position: relative;
    z-index: 2;
}

.image-slider h2 {
    font-size: 3.2rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px !important;
}

.image-slider .lead {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 300 !important;
    line-height: 1.75 !important;
    max-width: 600px;
    margin: 0 auto 30px !important;
    opacity: 0.92;
}

/* ===== BUTTONS ===== */
.btn {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    border-radius: 50px !important;
    /*padding: 14px 36px !important;
    */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 13px !important;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(56, 41, 155, 0.35) !important;
}

.btn-filled {
    background: linear-gradient(135deg, var(--tanamo-primary), var(--tanamo-primary-light)) !important;
    border: none !important;
    color: white !important;
}

.btn-filled:hover {
    background: linear-gradient(135deg, var(--tanamo-primary-light), var(--tanamo-accent)) !important;
}

/* Hero CTA — Filled primary button */
.hero-cta {
    margin: 0 8px !important;
}

/* Hero CTA — Outline (white border) */
.hero-cta-outline {
    display: inline-block;
    /* padding: 14px 36px !important;*/
    border-radius: 50px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: white !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    margin: 0 8px !important;
    backdrop-filter: blur(4px);
}

.hero-cta-outline:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: white !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25) !important;
    text-decoration: none !important;
}

/* ===== SECTION TITLES ===== */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title-wrapper h2,
.section-title-wrapper h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tanamo-dark);
    margin-bottom: 16px;
}

.section-title-wrapper .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    color: var(--tanamo-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.section-title-wrapper .title-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--tanamo-primary), var(--tanamo-accent));
    margin: 16px auto 20px;
    border-radius: 2px;
}

/* ===== BRAND BADGE ===== */
.brand-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.brand-badge.tanamo {
    background: linear-gradient(135deg, rgba(56, 41, 155, 0.1), rgba(56, 41, 155, 0.05));
    color: var(--tanamo-primary);
    border: 1px solid rgba(56, 41, 155, 0.2);
}

.brand-badge.energy {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
    color: var(--energy-green);
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.brand-badge.yamby {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
    color: var(--yamby-red);
    border: 1px solid rgba(230, 57, 70, 0.2);
}

/* ===== PRODUCT SHOWCASE SECTIONS ===== */
.product-showcase {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.product-showcase:nth-child(even) {
    background: var(--tanamo-light);
}

.product-showcase .product-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-showcase .product-image-wrapper:hover {
    transform: scale(1.02);
}

.product-showcase .product-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: var(--tanamo-white);
    border-radius: 16px;
    padding: 28px 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--tanamo-primary), var(--tanamo-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(56, 41, 155, 0.15);
}

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

.feature-card h5 {
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    margin-bottom: 10px !important;
    color: var(--tanamo-dark);
}

.feature-card p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    color: var(--tanamo-gray);
    margin-bottom: 0 !important;
}

/* ===== PRODUCT DETAIL CARDS ===== */
.product-detail-section {
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.product-detail-section .product-single {
    background: var(--tanamo-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-detail-section .description h4 {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--tanamo-dark);
    margin-bottom: 20px !important;
}

.product-detail-section .description p {
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: var(--tanamo-gray);
}

.product-detail-section .description ul li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--tanamo-gray);
    padding: 4px 0;
}

.product-detail-section .description ul li strong {
    color: var(--tanamo-dark);
    font-weight: 600;
}

/* ===== SPECS TABLE ===== */
.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.specs-table th,
.specs-table td {
    padding: 12px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.specs-table th {
    background: var(--tanamo-primary);
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 12px;
}

.specs-table td {
    color: var(--tanamo-gray);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:nth-child(even) td {
    background: rgba(56, 41, 155, 0.03);
}

/* ===== TABBED CONTENT ===== */
.tabbed-content .tab-title span {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
}

/* ===== RATINGS ===== */
.ratings li {
    padding: 24px;
    margin-bottom: 16px;
    background: var(--tanamo-light);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ratings .user {
    margin-bottom: 12px;
}

.ratings .star-rating li {
    padding: 0;
    margin-bottom: 0;
    background: none;
    border: none;
}

.ratings .star-rating .ti-star {
    color: var(--tanamo-gold) !important;
}

.ratings .bold-h6 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    color: var(--tanamo-dark);
}

.ratings .date {
    font-size: 12px !important;
    color: var(--tanamo-gray);
}

.ratings p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: var(--tanamo-gray);
    font-style: italic;
}

/* ===== "OUR BRANDS" SECTION ===== */
.brands-section {
    padding: 80px 0;
    background: var(--tanamo-dark);
    color: white;
}

.brand-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.brand-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.brand-card h4 {
    color: white !important;
    margin-bottom: 12px !important;
}

.brand-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.65;
}

/* ===== RECIPES / IN EVERY DISH ===== */
.recipe-gallery {
    padding: 80px 0;
}

.recipe-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.recipe-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.recipe-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.recipe-card .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.recipe-card .caption p {
    color: white !important;
    font-family: 'Playfair Display', serif !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: linear-gradient(135deg, var(--tanamo-light) 0%, #e8e4f0 100%);
}

.contact-section h4 {
    color: var(--tanamo-dark) !important;
    font-size: 1.8rem !important;
}

.contact-section .form-email input,
.contact-section .form-email textarea {
    border-radius: 12px !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    padding: 14px 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14px !important;
    transition: all 0.3s ease;
    background: white !important;
}

.contact-section .form-email input:focus,
.contact-section .form-email textarea:focus {
    border-color: var(--tanamo-primary) !important;
    box-shadow: 0 0 0 4px rgba(56, 41, 155, 0.1) !important;
    outline: none;
}

.contact-section .form-email button {
    border-radius: 50px !important;
    padding: 14px 36px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    background: linear-gradient(135deg, var(--tanamo-primary), var(--tanamo-primary-light)) !important;
    border: none !important;
    transition: all 0.4s ease !important;
}

.contact-section .form-email button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(56, 41, 155, 0.3) !important;
}

/* ===== FOOTER ===== */
.footer-2 {
    background: linear-gradient(135deg, var(--tanamo-dark), var(--tanamo-primary-dark)) !important;
    padding: 40px 0 !important;
}

.footer-2 .social-list li a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-2 .social-list li a:hover {
    color: var(--tanamo-accent) !important;
    transform: translateY(-2px);
}

/* ===== DIVIDER ===== */
.section-divider {
    width: 80%;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 41, 155, 0.2), transparent);
    margin: 0 auto;
    border: none;
}

/* ===== IMAGE HOVER EFFECTS ===== */
.image-caption.hover-caption {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

.image-caption.hover-caption img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.image-caption.hover-caption:hover img {
    transform: scale(1.06) !important;
}

/* ===== SCROLL-TRIGGERED ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PRODUCT IMAGE SLIDER ENHANCEMENTS ===== */
.image-slider.slider-thumb-controls {
    border-radius: 20px;
    overflow: hidden;
}

.image-slider .label {
    background: linear-gradient(135deg, var(--tanamo-accent), #00cec9) !important;
    border-radius: 8px !important;
    padding: 6px 14px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    letter-spacing: 1px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .image-slider h2 {
        font-size: 2rem !important;
    }

    .image-slider .lead {
        font-size: 1rem !important;
    }

    .section-title-wrapper h2,
    .section-title-wrapper h3 {
        font-size: 1.8rem;
    }

    .product-detail-section .product-single {
        padding: 20px;
        border-radius: 16px;
    }

    .feature-card {
        margin-bottom: 12px;
    }

    .brand-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .image-slider h2 {
        font-size: 1.6rem !important;
    }

    .btn {
        padding: 12px 28px !important;
        font-size: 12px !important;
    }
}

/* ===== PRODUCT FEATURE ICON ===== */
.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 18px;
}

.feature-icon.tanamo-icon {
    background: linear-gradient(135deg, rgba(56, 41, 155, 0.1), rgba(56, 41, 155, 0.05));
    color: var(--tanamo-primary);
}

.feature-icon.energy-icon {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
    color: var(--energy-green);
}

.feature-icon.yamby-icon {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(230, 57, 70, 0.05));
    color: var(--yamby-red);
}

/* ===== QUOTE REQUEST BUTTON ENHANCED ===== */
.btn-quote {
    display: inline-block;
    background: linear-gradient(135deg, var(--tanamo-primary), var(--tanamo-primary-light)) !important;
    color: white !important;
    padding: 14px 36px !important;
    border-radius: 50px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border: none !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
}

.btn-quote:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 35px rgba(56, 41, 155, 0.35) !important;
    color: white !important;
    text-decoration: none !important;
}