@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --primary-green: #28B764;
    --bg-light-blue: #f0f8ff;
    --text-dark: #333;
    --text-gray: #666;
    --placeholder-gray: #dbdbdb;
    --divider-gold: #B4975A;
    --video-section-bg: #f2f7f9;
}

body {
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6, .navbar-nav .nav-link, .btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
}

/* Custom Colors */
.bg-custom { background-color: #28B764; }
.text-custom { color: #28B764; }
.border-custom { border-color: #28B764 !important; }
.text-justify { text-align:justify !important; }
/* Update your selector to ignore the dropdown toggle */
.navbar-dark .navbar-nav .nav-link:not(.dropdown-toggle) { 
    color: white; 
    position: relative; 
}

/* Update the underscore selector to ignore dropdown items */
.navbar-dark .navbar-nav .nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #d1f3e0;
    transition: width 0.3s ease;
}

/* Apply active state only to non-dropdown links */
.navbar-dark .navbar-nav .nav-link.active:not(.dropdown-toggle)::after {
    width: 100%;
}

/* 1. Initial State */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    top: 0;
    width: 100%;
}

/* 2. The Floating Green "Pill" State */
.navbar.scrolled {
    top: 15px; /* Distance from top */
    width: 90%; /* Becomes narrower */
    max-width: 1200px;
    margin: 0 auto;
    left: 0;
    right: 0;
    
    /* Keep primary green background */
    background-color: var(--primary-green) !important; 
    
    border-radius: 100px; /* Round edges like the image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow for green bg */
    padding: 8px 0;
}

/* 3. Ensure links stay white and bold */
.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand,
.navbar.scrolled .dropdown-toggle {
    color: white !important;
    opacity: 1;
}

.navbar.scrolled .nav-link:hover {
    color: #d1f3e0 !important; /* Slight light-green tint on hover */
}

/* Maintain logo size transition */
.nav-logo {
    height: 40px;
    transition: all 0.4s ease;
}
.navbar.scrolled .nav-logo {
    height: 35px; /* Slightly smaller logo when floating */
}

@media (max-width: 991px) {
    /* Forces header to stay full-width and at top 0 even when scrolling */
    .navbar.scrolled {
        top: 0 !important;
        width: 100% !important;
        border-radius: 0 !important;
        margin: 0 !important;
        left: 0 !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important; /* Standard shadow instead of floating */
    }
}

.dropdown-item.active, .dropdown-item:active {
    color: white;
    text-decoration: none;
    background-color: var(--primary-green) !important;
}

/* Carousel Hero */
.carousel-item {
    background-color: #fcfcfc;
}
.hero-text h1 { font-size: 3rem; color: #000; font-weight: bold; }
.hero-text h2 { font-size: 1.8rem; color: #28a745; margin-bottom: 15px; }

.lang-select {
    background-color: white;
    color: var(--primary-green);
    border: none;
    border-radius: 15px;
    padding: 4px 12px;
    font-size: 0.85rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.lang-select:hover {
    background-color: #f0f0f0;
}
.custom-toggler {
    border-color: rgba(255,255,255,0.5);
}
.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(135deg, #fcebb6 0%, #f6d365 100%);
}
.hero-section .carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
}
.hero-section .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 30px;
}

.hero-text-box {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 0 30px 30px 0;
    max-width: 500px;
    backdrop-filter: blur(5px);
    margin-left: -30px;
    transform: translateX(-50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.hero-text-box.visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-title {
    color: #1a365d;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 0;
}
.hero-subtitle {
    color: #008080;
    font-weight: 600;
    font-size: 1.8rem;
}
.hero-text-box ul {
    font-size: 1rem;
}

/* NEW: Hero Action Button Styling */
.btn-hero-action {
    background-color: var(--primary-green);
    color: white;
    border: 2px solid var(--primary-green);
    padding: 10px 25px;
    border-radius: 50px; /* Pill shape */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 25px; /* Space from content above */
    display: inline-flex; /* Allows icon alignment */
    align-items: center;
    text-decoration: none; /* Remove underline */
}

.btn-hero-action:hover {
    background-color: white;
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-3px); /* Subtle lift effect */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Shadow for depth */
}
.btn-hero-action i {
    margin-left: 8px; /* Space between text and icon */
    transition: transform 0.3s ease;
}
.btn-hero-action:hover i {
    transform: translateX(3px); /* Arrow moves slightly on hover */
}


.carousel-indicators [data-bs-target] {
    background-color: var(--primary-green);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
}
.carousel-indicators .active {
    width: 35px;
    border-radius: 10px;
}

/* Feature Cards */
.feature-card {
    border: 1px solid #ddd;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
    transform: translateY(20px); 
}
.feature-card:hover {
    transform: translateY(-8px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.feature-icon-wrapper {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}
.feature-icon-wrapper img {
    max-height: 90px;
    transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon-wrapper img {
    transform: scale(1.1);
}
.feature-text {
    background-color: var(--primary-green);
    color: white;
    padding: 15px 10px;
    font-size: 0.9rem;
    margin: 0;
    min-height: 80px; 
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 50px 20px;
    text-align: center;
    position: relative;
}
.services-section::after {
    content: "▼";
    color: var(--primary-green);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 28px;
}
.service-item {
    display: inline-block;
    margin: 0 30px;
    text-align: center;
    color: #555;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.6s ease-out;
    transform: translateY(20px); 
}
.service-item:hover {
    color: var(--primary-green);
    transform: translateY(-5px); 
}
.service-item i {
    font-size: 2.5rem;
    color: #d9534f;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.service-item:hover i {
    transform: scale(1.1);
    color: var(--primary-green);
}

/* News Section */
.section-title {
    color: var(--primary-green);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.news-card {
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border-radius: 15px;
    overflow: hidden;
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0; 
    transform: translateY(20px); 
}
.news-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px); 
}
.news-card img {
    width: 100%;
    height: 200px; 
    object-fit: cover;
}
.news-card .card-body {
    padding: 20px;
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}
.news-title-text { 
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px; 
    flex-grow: 1; 
}
.news-read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: auto; 
    margin-bottom: 10px; 
    display: block; 
    text-align: right; 
    transition: color 0.2s ease;
}
.news-read-more:hover {
    color: #e04e00;
}
.news-read-more i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}
.news-read-more:hover i {
    transform: translateX(5px);
}
.news-date {
    color: #888;
    font-size: 0.85rem;
}
.news-slider-controls i {
    color: var(--primary-green);
    font-size: 1.8rem;
    cursor: pointer;
    margin-left: 15px;
    transition: opacity 0.2s ease;
}
.news-slider-controls i:hover {
    opacity: 0.7;
}

/* Brands Section */
.brands-section {
    text-align: center;
    margin: 70px 0;
}
.brands-title-wrapper {
    position: relative;
    margin-bottom: 50px; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.brands-title-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #ddd;
    z-index: -1;
}
.brands-title {
    background-color: white;
    padding: 0 30px;
    display: inline-block;
    font-weight: 700;
    color: #333;
    font-size: 1.2rem;
}
.brand-logo {
    max-height: 60px;
    margin: 0 30px 20px;
    transform: scale(0.9); 
}
.brand-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

footer a { color: white; text-decoration: none; display: block; margin-bottom: 8px; }
footer a:hover { text-decoration: underline; }
.social-circle {
    display: inline-block; width: 30px; height: 30px; 
    border: 1px solid white; border-radius: 50%; 
    text-align: center; line-height: 28px; margin-right: 5px;
}

.social-icons a {
    color: white;
    border: 1px solid white;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
    background-color: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}
.footer h6 {
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 1.1rem;
}
.footer p {
    font-size: 0.9rem;
    margin-bottom: 6px;
    opacity: 0.9;
}
.email-subscribe {
    display: flex;
    margin-top: 20px;
}
.email-subscribe input {
    border: none;
    padding: 10px 18px;
    border-radius: 5px 0 0 5px;
    flex-grow: 1;
    outline: none;
}
.email-subscribe button {
    background-color: #ddd;
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    color: #333;
    transition: background-color 0.3s ease;
}
.email-subscribe button:hover {
    background-color: #ccc;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 25px;
    font-size: 0.85rem;
    opacity: 0.8;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* --- Scroll Animation Classes --- */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}
/* Staggering delay for items in a group */
.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.4s; }

.service-item:nth-child(1) { transition-delay: 0s; }
.service-item:nth-child(2) { transition-delay: 0.1s; }
.service-item:nth-child(3) { transition-delay: 0.2s; }
.service-item:nth-child(4) { transition-delay: 0.3s; }

.news-card:nth-child(1) { transition-delay: 0s; }
.news-card:nth-child(2) { transition-delay: 0.1s; }
.news-card:nth-child(3) { transition-delay: 0.2s; }

.brand-logo:nth-child(1) { transition-delay: 0s; }
.brand-logo:nth-child(2) { transition-delay: 0.1s; }
.brand-logo:nth-child(3) { transition-delay: 0.2s; }
.brand-logo:nth-child(4) { transition-delay: 0.3s; }


.video-placeholder {
    background-color: #d9d9d9;
    border-radius: 20px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}
.video-placeholder h2 {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Company Intro Section */
.company-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}
.company-intro .big-logo {
    max-width: 250px;
    margin-bottom: 80px;
}
.section-title {
    color: #333;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.5rem;
    letter-spacing: 1px;
}
.company-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
    text-align-last: center; /* Makes the last line centered */
}

/* Core Values Cards */
.value-card {
    background-color: var(--bg-light-blue);
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}
.value-header {
    background-color: var(--primary-green);
    color: white;
    padding: 12px 15px;
    font-weight: bold;
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px; /* Pill shape for header */
    margin: 0px 10px 15px 10px; /* Pull up to overlap top edge */
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 6px rgba(242, 101, 34, 0.2);
}
.value-body {
    padding: 10px 20px 25px 20px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
}
/* Container to handle the pulled-up headers gracefully */
.values-container {
    padding-top: 15px;
    margin-bottom: 60px;
}

/* Partnership Section */
.partnership-section {
    padding: 50px 30px;
    text-align: center;
    margin-bottom: 60px;
}
.partnership-section h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}
.partnership-section p {
    color: #555;
    max-width: 800px;
    margin: 0 auto 15px auto;
    line-height: 1.6;
}

/* --- Contact Page Specific Styles --- */
        
/* Breadcrumbs */
.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 40px;
}
.breadcrumb-item a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
.breadcrumb-item.active {
    color: #888;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "→";
    color: #888;
}

/* Main Layout */
.page-title {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 50px;
    color: #111;
}

.contact-info-block {
    margin-bottom: 60px;
}

.contact-detail-item {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

/* Form Styles */
.contact-form h4 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 30px;
    color: #333;
}

.form-floating {
    margin-bottom: 30px;
}

/* Custom styling for floating labels to look like bottom borders */
.form-control.custom-input {
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent;
    box-shadow: none;
}

.form-control.custom-input:focus {
    border-color: var(--primary-green);
    box-shadow: none;
}

.form-floating > label {
    padding-left: 0;
    color: #888;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-1.5rem) translateX(0);
    color: var(--primary-green);
}

/* PRODUCT DETAIL */

/* Brand Specific Content (e.g., ABC) */
.brand-detail-section {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 60px;
}
.brand-detail-section .brand-logo-main {
    max-width: 300px;
    margin-bottom: 25px;
}
.brand-detail-section h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.6rem;
}
.brand-detail-section p {
    margin: 0 auto 50px auto;
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: justify;
}

/* Product Categories */
.product-category {
    margin-bottom: 50px;
}
.product-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-category-title .fa-caret-right {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-left: 10px;
}

/* Product Card */
.product-card {
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: white;
}
.product-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    cursor: pointer;
}
.product-card img {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    margin: 0 auto 15px auto;
    flex-grow: 1; /* Allow image to take available height */
}
.product-card p {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #333;
}
.product-card small {
    color: #777;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}
.product-card .add-to-cart-icon {
    color: #d9534f; /* Consistent with service icons */
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}
.product-card .add-to-cart-icon:hover {
    color: var(--primary-green);
    transform: scale(1.2);
}

/* Generic Content Placeholder */
.content-placeholder {
    background-color: #e0e0e0;
    border-radius: 15px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 30px; /* Space between rows */
}

/* Partnership Call-to-Action Section */
.partnership-cta-section {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 60px;
    position: relative;
}
.partnership-cta-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #ddd;
    z-index: 0;
}
.partnership-cta-content {
    background-color: white; /* To cover the line */
    padding: 0 20px; /* Space around text */
    display: inline-block; /* To contain text and button */
    position: relative; /* Above the line */
    z-index: 1;
}
.partnership-cta-section h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}
.partnership-cta-button {
    background-color: var(--primary-green);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}
.partnership-cta-button:hover {
    background-color: #e04e00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.sidebar {
    padding-right: 20px;
}
.sidebar h5 {
    font-weight: bold;
    margin-bottom: 20px;
}
.tree-view, .brand-list {
    list-style: none;
    padding-left: 0;
}
.tree-item {
    margin-bottom: 5px;
}
.tree-item a {
    color: #555;
    text-decoration: none;
    padding: 5px 0;
    display: inline-block;
    transition: color 0.2s ease;
}
.tree-item a:hover {
    color: var(--primary-green);
}
.tree-item a.active {
    color: var(--primary-green);
    font-weight: bold;
}
.tree-toggle {
    cursor: pointer;
    margin-right: 5px;
    display: inline-block;
    width: 15px; /* Ensure space for icon */
}
.tree-toggle i {
    color: #888;
    font-size: 0.8rem;
}
.tree-submenu {
    list-style: none;
    padding-left: 15px; /* Indent submenus */
    margin-top: 5px;
    display: none; /* Hidden by default */
    overflow: hidden; /* For smooth slide effect */
}
.tree-item.expanded > .tree-submenu {
    display: block; /* Show when expanded */
}
.tree-submenu li a {
    padding-left: 10px; /* Further indent for nested items */
}

/* --- Brand Sidebar Customization --- */
.brand-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-sidebar-list li {
    margin-bottom: 10px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background-color: #f8f9fa; /* Light grey background */
    border-radius: 12px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

/* Hover State */
.brand-item:hover {
    background-color: #eefcf5; /* Very light green */
    color: var(--primary-green);
    border-color: rgba(47, 185, 121, 0.2);
    padding-left: 24px; /* "Nudge" effect */
}

.brand-item .arrow-icon {
    font-size: 0.7rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.brand-item:hover .arrow-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Active State */
.brand-item.active {
    background-color: var(--primary-green);
    color: white !important;
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(47, 185, 121, 0.3);
}

.brand-item.active .arrow-icon {
    opacity: 1;
    transform: translateX(0);
    color: white;
}

.product-list-header {
    font-size: 2.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}
/* --- Product Detail Modal Styles --- */
.product-modal-header {
    border-bottom: none; /* Remove default border */
}
.product-modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}
.product-popup-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}
.product-size-options {
    background-color: #f0f0f0;
    border-radius: 50px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px; /* Space between size options */
    margin-top: 20px;
}
.product-size-options .size-icon {
    background-color: #ccc;
    color: #666;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
}
.product-size-options .size-option {
    background-color: #e0e0e0;
    color: #666;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.product-size-options .size-option.active {
    background-color: var(--primary-green);
    color: white;
}
.product-size-options .size-option:hover:not(.active) {
    background-color: #d0d0d0;
}
.product-features {
    margin-top: 25px !important;
}
.product-features li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
}
.product-feature-star {
    color: #007bff; /* Blue star icon, as in image */
    margin-right: 8px;
}
.product-popup-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-top: 25px;
}
.product-usage {
    display: flex;
    align-items: center;
    margin-top: 25px;
    color: #555;
    font-size: 1rem;
}
.product-usage-icon {
    font-size: 1.5rem;
    color: #666;
    margin-right: 10px;
}
/* Stagger delays for product cards and tree view items (adjust as needed) */
.product-grid .product-card-col:nth-child(odd) .animate-on-scroll { transition-delay: 0s; }
.product-grid .product-card-col:nth-child(even) .animate-on-scroll { transition-delay: 0.1s; }

.tree-view > .tree-item:nth-child(1) .animate-on-scroll { transition-delay: 0s; }
.tree-view > .tree-item:nth-child(2) .animate-on-scroll { transition-delay: 0.1s; }
.tree-view > .tree-item:nth-child(3) .animate-on-scroll { transition-delay: 0.2s; }
.tree-view > .tree-item:nth-child(4) .animate-on-scroll { transition-delay: 0.3s; }

.brand-list > li:nth-child(1) .animate-on-scroll { transition-delay: 0s; }
.brand-list > li:nth-child(2) .animate-on-scroll { transition-delay: 0.1s; }
.brand-list > li:nth-child(3) .animate-on-scroll { transition-delay: 0.2s; }
.brand-list > li:nth-child(4) .animate-on-scroll { transition-delay: 0.3s; }
.brand-list > li:nth-child(5) .animate-on-scroll { transition-delay: 0.4s; }

.breadcrumb-section {
    /* Placeholder for the background image */
    background-image: url('img/breadcrumb-bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    position: relative;
    color: var(--light-text-color);
    text-align: center;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-content h1 {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-banner {
    width: 100%;
    height: 540px;
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
}
.breadcrumb-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-gray);
    justify-content: flex-start;
}
.breadcrumb-nav li {
    margin-right: 8px;
    display: flex;
    align-items: center;
}
.breadcrumb-nav li:last-child {
    margin-right: 0;
}
.breadcrumb-nav li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-nav li a:hover {
    color: var(--primary-green);
}
.breadcrumb-nav li::after {
    content: '\f054'; /* Font Awesome right arrow */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7em;
    margin-left: 8px;
    color: #ccc;
}
.breadcrumb-nav li:last-child::after {
    content: ''; /* No arrow after the last item */
}
.breadcrumb-nav li.active {
    color: var(--primary-green);
}

 /* Responsive adjustments */
@media (max-width: 992px) {
    .breadcrumb-content h1 {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
     .hero-banner {
        height: 250px;
    }
    .breadcrumb-nav {
        font-size: 0.85rem;
        flex-wrap: wrap;
        justify-content: flex-start; /* Align left on small screens */
    }
    .breadcrumb-section {
        padding: 50px 0;
    }
    .breadcrumb-content h1 {
        font-size: 1.8em;
    }
}

.bg-pattern-left{
    position: absolute;
    top: 45%;
    transform: translateX(-40%);
    width: 800px; /* Adjust size as needed */
    height: auto;
    z-index: 0;
    opacity: 0.4; /* Make them subtle */
    pointer-events: none; /* Let clicks pass through to content below */
    rotate: 20deg;
}

.bg-pattern-right{
    position: absolute;
    top: 20%;
    transform: translateX(40%);
    width: 800px; /* Adjust size as needed */
    height: auto;
    z-index: 0;
    opacity: 0.4; /* Make them subtle */
    pointer-events: none; /* Let clicks pass through to content below */
    rotate: 20deg;
}

.bg-pattern-left {
    left: -150px; /* Move partially off-screen */
}

.bg-pattern-right {
    right: -150px; /* Move partially off-screen */
}

.collaboration-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  
  /* Dimensions & Spacing */
  min-width: 400px;
  padding: 8px 10px 8px 40px;
  
  /* Visual Styles */
  background-color: #ffffff;
  border: 1.5px solid #333333;
  border-radius: 50px;
  
  /* Text Styles */
  color: #000000;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 24px;
  
  /* Interactivity */
  cursor: pointer;
  transition: all 0.3s ease;
}

.collaboration-btn:hover {
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Green Pill Container */
  background-color: var(--primary-green); /* Vibrant green from the image */
  width: 75px;
  height: 30px;
  border-radius: 30px;
  margin-left: 20px;
}

.btn-icon svg {
  width: 25px;
  height: 25px;
}

.brand-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.brand-header-row h2 { font-weight: 800; font-size: 1.25rem; margin: 0; }
.shop-link { color: #000; text-decoration: none; font-size: 0.9rem; font-weight: 600; border: 1px solid #ddd; padding: 5px 15px; border-radius: 20px; transition: 0.3s; }
.shop-link:hover { background-color: #f5f5f5; color: var(--primary-green); }
/* --- Chef Divider --- */
.chef-divider-container { position: relative; text-align: center; margin-bottom: 80px; }
.chef-divider-line { position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background-color: var(--divider-gold); z-index: 1; opacity: 0.5; }
.chef-icon-box { position: relative; z-index: 2; display: inline-block; background-color: var(--video-section-bg); padding: 0 25px; }
.chef-icon-box i { font-size: 2.5rem; color: var(--divider-gold); }

/* --- Video Section --- */
.video-showcase { background-color: var(--video-section-bg); margin-top: 40px; padding-bottom: 40px; padding-top: 40px; }
.video-container { border-radius: 15px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.1); background: #000; }

/* Common styles for both patterns */
.footer-pattern {
    position: absolute;
    top: 50%;
    width: 600px; /* Size of the container */
    height: 600px;
    background-image: url('footer-pattern.svg'); /* Replace with your image */
    background-size: 400px; /* Size of the pattern lines */
    background-repeat: no-repeat;
    background-position: center;
    mix-blend-mode: screen; /* Removes black, keeps white lines */
    z-index: 1;
    pointer-events: none;
}

/* Position Left side */
.pattern-left {
    left: -150px; /* Bleed off-screen on the left */
    animation: rotatePattern 50s linear infinite;
}

/* Position Right side */
.pattern-right {
    right: -150px; /* Bleed off-screen on the right */
    /* Rotate in opposite direction for extra visual interest */
    animation: rotatePatternReverse 50s linear infinite;
}

/* Standard Rotation */
@keyframes rotatePattern {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

/* Reverse Rotation */
@keyframes rotatePatternReverse {
    from { transform: translateY(-50%) rotate(360deg); }
    to { transform: translateY(-50%) rotate(0deg); }
}

/* Social Icon Styling */
.social-circle {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 1px solid white;
    border-radius: 50%;
    line-height: 33px;
    text-align: center;
    color: white;
    text-decoration: none;
    margin: 0 5px;
    transition: background 0.3s;
}

.social-circle:hover {
    background: rgba(255,255,255,0.2);
}