/* ============================================
   THAI OLEOCHEMICALS - MAIN STYLESHEET
   Palette: Dark Green (#1A5B2E) + Sage Green (#4CAF50) + Orange (#E86F2C)
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1E1E1E;
    background-color: #F8F9FA;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: #1A5B2E;
}

h1 {
    font-size: 52px;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

h1 .highlight {
    color: #E86F2C;
}

h2 {
    font-size: 36px;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    text-align: center;
}

h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 48px;
    font-size: 18px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-block;
    background-color: #E86F2C;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #D45A1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 111, 44, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1A5B2E;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    border: 2px solid #1A5B2E;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #1A5B2E;
    color: white;
}

.btn-secondary-outline {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary-outline:hover {
    background-color: white;
    color: #1A5B2E;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background-color: #1A5B2E;
    color: white;
    font-size: 13px;
    padding: 10px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.top-bar-left span, .top-bar-right span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i, .top-bar-right i {
    color: #E86F2C;
}

/* ---------- MAIN NAVIGATION ---------- */
.main-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
}

.logo-img {
    height: 80px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links > li > a {
    padding: 10px 18px;
    font-weight: 500;
    color: #1E1E1E;
    transition: all 0.3s ease;
    border-radius: 40px;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    background-color: #1A5B2E;
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    border: 1px solid #E8E8E8;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #1E1E1E;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #F0F7F0;
    color: #1A5B2E;
}
/* ---------- DROPDOWN SUBMENU (MULTI-LEVEL) ---------- */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 240px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    border: 1px solid #E8E8E8;
}

.dropdown-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
}

.dropdown-submenu .submenu li a {
    display: block;
    padding: 12px 20px;
    color: #1E1E1E;
    transition: all 0.2s ease;
}

.dropdown-submenu .submenu li a:hover {
    background-color: #F0F7F0;
    color: #1A5B2E;
}

/* ---------- MOBILE MENU & DROPDOWN STYLES ---------- */
@media (max-width: 768px) {
    /* Hide quote button and search button on mobile */
    .nav-actions .quote-btn {
        display: none;
    }
    
    .nav-actions .search-btn {
        display: none;
    }
    
    /* Keep only hamburger menu */
    .nav-actions {
        display: flex;
        justify-content: flex-end;
        gap: 16px;
    }
    
    .hamburger {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #1A5B2E;
    }
    
    /* Disable ALL hover effects on mobile dropdowns */
    .dropdown:hover .dropdown-menu,
    .dropdown-submenu:hover .submenu {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
    
    /* Mobile dropdown menu - hidden by default, shown with .active class */
    .dropdown-menu {
        position: static !important;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 10px 0 10px 20px !important;
        background-color: #F8F9FA;
        width: 100%;
        min-width: 100%;
    }
    
    /* Show dropdown when active */
    .dropdown-menu.active {
        display: block !important;
    }
    
    /* Mobile submenu - hidden by default, shown with .active class */
    .dropdown-submenu .submenu {
        position: static !important;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 10px 0 10px 20px !important;
        background-color: #F8F9FA;
        width: 100%;
        min-width: 100%;
    }
    
    /* Show submenu when active */
    .dropdown-submenu .submenu.active {
        display: block !important;
    }
    
    /* Make parent dropdown links clickable with flex layout */
    .dropdown > a,
    .dropdown-submenu > a {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
    }
    
    /* Chevron icon transitions */
    .dropdown > a i.fa-chevron-down,
    .dropdown-submenu > a i.fa-chevron-right {
        transition: transform 0.3s ease;
    }
    
    /* Rotate chevrons when dropdown is open */
    .dropdown > a i.fa-chevron-down.rotated {
        transform: rotate(180deg);
    }
    
    .dropdown-submenu > a i.fa-chevron-right.rotated {
        transform: rotate(90deg);
    }
    
    /* Dropdown menu items styling */
    .dropdown-menu li a,
    .submenu li a {
        padding: 10px 16px !important;
        display: block;
        color: #1E1E1E;
        transition: all 0.2s ease;
    }
    
    .dropdown-menu li a:hover,
    .submenu li a:hover {
        background-color: #E8F5E9;
        color: #1A5B2E;
    }
}

/* Desktop navigation actions - visible on larger screens */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #1A5B2E;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #E86F2C;
}

.quote-btn {
    background-color: #E86F2C;
    color: white;
    padding: 10px 20px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background-color: #D45A1A;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1A5B2E;
}

/* ---------- SEARCH BAR ---------- */
.search-bar {
    background-color: #1A5B2E;
    padding: 16px 0;
    display: none;
}

.search-bar .container {
    display: flex;
    gap: 16px;
    align-items: center;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.search-bar input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #E86F2C;
}

.search-bar button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.search-bar button:hover {
    color: #E86F2C;
}

/* ---------- HERO SLIDER - LEFT ALIGNED ---------- */
.hero {
    height: 550px;
    overflow: hidden;
    position: relative;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slider {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* LARGER container to prevent wrapping on desktop */
.slide-content {
    max-width: 850px;
    width: 80%;
    padding: 0 20px;
    color: white;
}

.slide-left {
    text-align: left;
}

.slide-left h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    white-space: normal;
}

.slide-left p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 650px;
}

.slide-left .slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.slide-left .btn-primary,
.slide-left .btn-secondary-outline {
    padding: 12px 28px;
    font-size: 16px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-left h1 {
    animation: fadeInLeft 0.8s ease-out;
}

.slide-left p {
    animation: fadeInLeft 0.8s ease-out 0.2s both;
}

.slide-left .slide-buttons {
    animation: fadeInLeft 0.8s ease-out 0.4s both;
}

/* Desktop - wider container, more space */
@media (min-width: 1024px) {
    .slide-content {
        max-width: 900px;
        width: 75%;
        padding: 0 24px 0 80px;
    }
    
    .slide-left h1 {
        font-size: 56px;
    }
    
    .slide-left p {
        font-size: 20px;
        max-width: 700px;
    }
}

/* Large Desktop - your 300px left padding */
@media (min-width: 1280px) {
    .slide-content {
        max-width: 1000px;
        width: 70%;
        padding: 0 24px 0 300px;
    }
    
    .slide-left h1 {
        font-size: 64px;
    }
    
    .slide-left p {
        font-size: 22px;
        max-width: 750px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .slide-content {
        max-width: 750px;
        width: 80%;
        padding: 0 24px 0 50px;
    }
    
    .slide-left h1 {
        font-size: 44px;
    }
    
    .slide-left p {
        font-size: 18px;
        max-width: 600px;
    }
}

/* Small screens - buttons stack */
@media (max-width: 480px) {
    .slide-content {
        width: 90%;
        padding: 0 16px;
    }

    .logo-img {
        height: 55px;
        width: auto;
    }
    .slide-left h1 {
        font-size: 28px;
    }
    
    .slide-left p {
        font-size: 14px;
    }
    
    .slide-left .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.2);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #E86F2C;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #E86F2C;
    width: 28px;
    border-radius: 14px;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
    padding: 40px 0;
    background-color: white;
    border-bottom: 1px solid #E8E8E8;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    font-size: 32px;
    color: #4CAF50;
}

.trust-item span {
    font-size: 13px;
    font-weight: 600;
    color: #1A5B2E;
}

/* ---------- FLIP CARDS (Category Cards) ---------- */
.categories {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 320px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.flip-card-front {
    background-color: white;
    border: 1px solid #E8E8E8;
}

.flip-card-front img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.flip-card-front h3 {
    padding: 16px;
    color: #1A5B2E;
}

.flip-card-back {
    background: linear-gradient(135deg, #1A5B2E 0%, #2E7D4A 100%);
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.flip-card-back i {
    font-size: 48px;
    color: #E86F2C;
    margin-bottom: 16px;
}

.flip-card-back h3 {
    color: white;
    margin-bottom: 12px;
}

.flip-card-back p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.category-link {
    color: #E86F2C;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #F5A623;
}

/* ---------- FEATURED PRODUCTS ---------- */
.featured-products {
    padding: 80px 0;
    background-color: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background-color: #F8F9FA;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.product-image {
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    color: #1A5B2E;
    margin-bottom: 12px;
}

.product-info p {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.badge {
    background-color: #E8F5E9;
    color: #1A5B2E;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-link {
    color: #E86F2C;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: #D45A1A;
}

/* ---------- WHY CHOOSE US ---------- */
.why-choose {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.why-choose-text h2 {
    text-align: left;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 32px 0;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature i {
    font-size: 28px;
    color: #4CAF50;
    min-width: 40px;
}

.feature h3 {
    margin-bottom: 6px;
    color: #1A5B2E;
}

.feature p {
    color: #6B7280;
}

.why-choose-image img {
    border-radius: 24px;
    width: 100%;
    height: auto;
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* ---------- INDUSTRIES SERVED ---------- */
.industries {
    padding: 80px 0;
    background-color: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    text-align: center;
}

.industry-item {
    padding: 24px 16px;
    background-color: #F8F9FA;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-3px);
    background-color: #E8F5E9;
}

.industry-item i {
    font-size: 36px;
    color: #E86F2C;
    margin-bottom: 12px;
    display: block;
}

.industry-item span {
    font-size: 14px;
    font-weight: 600;
    color: #1A5B2E;
}

/* ---------- SAMPLE BANNER ---------- */
.sample-banner {
    padding: 50px 0;
    background: linear-gradient(135deg, #1A5B2E 0%, #2E7D4A 100%);
    color: white;
}

.sample-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.sample-content h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 26px;
}

.sample-content p {
    opacity: 0.9;
}

.sample-content .btn-primary {
    background-color: #E86F2C;
}

.sample-content .btn-primary:hover {
    background-color: #D45A1A;
}

/* ---------- CALL TO ACTION ---------- */
.cta {
    background-color: #1A5B2E;
    padding: 64px 0;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    font-size: 18px;
}

.cta .btn-primary {
    background-color: #E86F2C;
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background-color: white;
    color: #1A5B2E;
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: #0A2B15;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    margin-bottom: 16px;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #E86F2C;
}

.contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 14px;
}

.contact-info i {
    color: #E86F2C;
    min-width: 20px;
    margin-top: 2px;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #E86F2C;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
}
/* ---------- ABOUT PAGE STYLES ---------- */
.page-header {
    background: linear-gradient(135deg, #1A5B2E 0%, #2E7D4A 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 12px;
    font-size: 48px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.company-story {
    padding: 80px 0;
    background-color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.story-text p {
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
}

.mission-vision {
    padding: 60px 0;
    background-color: #F8F9FA;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mv-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mv-card i {
    font-size: 48px;
    color: #E86F2C;
    margin-bottom: 20px;
}

.mv-card h3 {
    color: #1A5B2E;
    margin-bottom: 16px;
}

.mv-card p {
    color: #6B7280;
    line-height: 1.6;
}

.why-choose-us {
    padding: 80px 0;
    background-color: white;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-box {
    text-align: center;
    padding: 32px 24px;
    background-color: #F8F9FA;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
}

.feature-box:hover {
    transform: translateY(-3px);
    border-color: #4CAF50;
}

.feature-box i {
    font-size: 40px;
    color: #E86F2C;
    margin-bottom: 16px;
}

.feature-box h3 {
    color: #1A5B2E;
    margin-bottom: 12px;
}

.feature-box p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

.certifications-page {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cert-item {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #E8E8E8;
    transition: all 0.3s ease;
}

.cert-item:hover {
    border-color: #E86F2C;
}

.cert-item i {
    font-size: 44px;
    color: #4CAF50;
    margin-bottom: 16px;
}

.cert-item span {
    font-size: 18px;
    font-weight: 700;
    color: #1A5B2E;
    display: block;
    margin-bottom: 8px;
}

.cert-item p {
    font-size: 13px;
    color: #6B7280;
}

.team {
    padding: 80px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
    background-color: #F8F9FA;
    border-radius: 20px;
    padding: 32px 24px 24px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #E86F2C;
}

.team-card h3 {
    color: #1A5B2E;
    margin-bottom: 6px;
}

.team-card p {
    color: #6B7280;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 13px;
    color: #9CA3AF;
}

/* About page responsive */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-grid, .features-grid, .cert-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .mv-card, .feature-box, .cert-item, .team-card {
        padding: 24px;
    }
}

/* ---------- SUSTAINABILITY PAGE STYLES ---------- */
.sustainability-header {
    background: linear-gradient(135deg, #0A5C2E 0%, #1A7A3E 100%);
}

.commitment {
    padding: 80px 0;
    background-color: white;
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.commitment-text p {
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.commitment-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
}

.rspo-section {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.rspo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rspo-image img {
    width: 100%;
    border-radius: 20px;
}

.rspo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #E86F2C;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.rspo-badge i {
    font-size: 20px;
}

.rspo-badge span {
    font-weight: 600;
}

.rspo-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.rspo-text p {
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.environmental-impact {
    padding: 80px 0;
    background-color: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.impact-card {
    text-align: center;
    padding: 32px 24px;
    background-color: #F8F9FA;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.impact-card i {
    font-size: 44px;
    color: #4CAF50;
    margin-bottom: 16px;
}

.impact-number {
    font-size: 36px;
    font-weight: 800;
    color: #E86F2C;
    margin-bottom: 12px;
}

.impact-card h3 {
    color: #1A5B2E;
    margin-bottom: 12px;
    font-size: 18px;
}

.impact-card p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

.sustainable-sourcing {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.sourcing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sourcing-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.sourcing-text p {
    color: #4B5563;
    margin-bottom: 30px;
    line-height: 1.6;
}

.sourcing-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sourcing-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sourcing-item i {
    color: #4CAF50;
    font-size: 18px;
}

.sourcing-item span {
    color: #1E1E1E;
    font-size: 14px;
}

.sourcing-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
}

.cert-summary {
    padding: 80px 0;
    background-color: white;
}

.cert-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.cert-summary-item {
    text-align: center;
    padding: 32px 24px;
    background-color: #F8F9FA;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cert-summary-item:hover {
    background-color: #E8F5E9;
}

.cert-summary-item i {
    font-size: 48px;
    color: #E86F2C;
    margin-bottom: 16px;
}

.cert-summary-item h3 {
    color: #1A5B2E;
    margin-bottom: 8px;
}

.cert-summary-item p {
    color: #6B7280;
    font-size: 13px;
}

/* Sustainability page responsive */
@media (max-width: 768px) {
    .commitment-grid, .rspo-grid, .sourcing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .impact-grid, .cert-summary-grid {
        grid-template-columns: 1fr;
    }
    
    .sourcing-list {
        grid-template-columns: 1fr;
    }
    
    .impact-number {
        font-size: 28px;
    }
}

/* ---------- QUALITY CONTROL PAGE STYLES ---------- */
.quality-header {
    background: linear-gradient(135deg, #0A5C2E 0%, #1A7A3E 100%);
}

.quality-commitment {
    padding: 80px 0;
    background-color: white;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.quality-text p {
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quality-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.quality-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.quality-standards {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.standard-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.standard-card i {
    font-size: 48px;
    color: #E86F2C;
    margin-bottom: 20px;
}

.standard-card h3 {
    color: #1A5B2E;
    margin-bottom: 12px;
}

.standard-card p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

.quality-process {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 32px 24px;
    background-color: #F8F9FA;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    background-color: #E8F5E9;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #E86F2C;
    margin-bottom: 16px;
    opacity: 0.5;
}

.step h3 {
    color: #1A5B2E;
    margin-bottom: 12px;
}

.step p {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.5;
}

.lab-equipment {
    padding: 80px 0;
    background-color: #F8F9FA;
}

.lab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lab-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.lab-text p {
    color: #4B5563;
    margin-bottom: 30px;
    line-height: 1.6;
}

.equipment-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.equipment-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.equipment-item i {
    color: #4CAF50;
    font-size: 18px;
}

.equipment-item span {
    color: #1E1E1E;
    font-size: 14px;
}

.lab-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.lab-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.documentation {
    padding: 80px 0;
    background-color: white;
}

.doc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.doc-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.1);
}

.doc-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.doc-text p {
    color: #4B5563;
    margin-bottom: 30px;
    line-height: 1.6;
}

.doc-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.doc-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.doc-item i {
    font-size: 32px;
    color: #E86F2C;
}

.doc-item h4 {
    color: #1A5B2E;
    margin-bottom: 4px;
}

.doc-item p {
    color: #6B7280;
    font-size: 13px;
    margin-bottom: 0;
}

/* Quality page responsive */
@media (max-width: 768px) {
    .quality-grid, .lab-grid, .doc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .standards-grid, .process-steps {
        grid-template-columns: 1fr;
    }
    
    .equipment-list {
        grid-template-columns: 1fr;
    }
}

/* ---------- CONTACT PAGE STYLES ---------- */
.contact-header {
    background: linear-gradient(135deg, #0A5C2E 0%, #1A7A3E 100%);
}

.contact-section {
    padding: 80px 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #4B5563;
    margin-bottom: 32px;
    line-height: 1.6;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-item i {
    font-size: 24px;
    color: #E86F2C;
    min-width: 32px;
    margin-top: 4px;
}

.info-item h3 {
    color: #1A5B2E;
    margin-bottom: 4px;
    font-size: 18px;
}

.info-item p {
    color: #4B5563;
    font-size: 15px;
}

.info-item .small {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 4px;
}

.business-hours {
    background-color: #F8F9FA;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
}

.business-hours h3 {
    color: #1A5B2E;
    margin-bottom: 16px;
}

.business-hours p {
    color: #4B5563;
    margin-bottom: 8px;
}

.contact-form h2 {
    text-align: left;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1E1E1E;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E86F2C;
    box-shadow: 0 0 0 3px rgba(232, 111, 44, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.map-section {
    padding: 0 0 80px 0;
    background-color: white;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 32px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

/* Contact page responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ---------- QUOTE PAGE STYLES ---------- */
.quote-header {
    background: linear-gradient(135deg, #0A5C2E 0%, #1A7A3E 100%);
}

.quote-section {
    padding: 80px 0;
    background-color: white;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.quote-info h2 {
    text-align: left;
    margin-bottom: 32px;
}

.steps {
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #E86F2C;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item h3 {
    color: #1A5B2E;
    margin-bottom: 6px;
}

.step-item p {
    color: #6B7280;
    font-size: 14px;
}

.why-quote {
    background-color: #F8F9FA;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #E8E8E8;
}

.why-quote h3 {
    color: #1A5B2E;
    margin-bottom: 16px;
}

.why-quote ul {
    list-style: none;
    padding: 0;
}

.why-quote li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-quote li i {
    color: #4CAF50;
}

.quote-form h2 {
    text-align: left;
    margin-bottom: 20px;
}

.quote-faq {
    padding: 60px 0;
    background-color: #F8F9FA;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.faq-item h3 {
    color: #1A5B2E;
    margin-bottom: 12px;
    font-size: 18px;
}

.faq-item p {
    color: #6B7280;
    line-height: 1.6;
}

/* Quote page responsive */
@media (max-width: 768px) {
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- SEO CONTENT BLOCK (Homepage replacement) ---------- */
.seo-content-block {
    padding: 80px 0;
    background-color: white;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.seo-text h2 {
    text-align: left;
    font-size: 32px;
    margin-bottom: 20px;
}

.seo-text h3 {
    color: #1A5B2E;
    margin: 24px 0 16px;
    font-size: 22px;
}

.seo-text p {
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.keyword-tag {
    background-color: #F8F9FA;
    border: 1px solid #E8E8E8;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 13px;
    color: #1A5B2E;
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    background-color: #E86F2C;
    color: white;
    border-color: #E86F2C;
}

.seo-buttons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.seo-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.seo-image img {
    width: 100%;
    height: auto;
    display: block;
}

.seo-benefits {
    background-color: #F8F9FA;
    padding: 40px;
    border-radius: 24px;
    margin-top: 40px;
}

.seo-benefits h3 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 26px;
    color: #1A5B2E;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 28px;
    color: #4CAF50;
    min-width: 32px;
}

.benefit-item h4 {
    color: #1A5B2E;
    margin-bottom: 8px;
    font-size: 16px;
}

.benefit-item p {
    color: #6B7280;
    font-size: 13px;
    line-height: 1.4;
}

/* SEO Content Block Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .seo-text h2 {
        font-size: 26px;
    }
    
    .seo-text h3 {
        font-size: 20px;
    }
    
    .seo-buttons {
        flex-direction: column;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-benefits {
        padding: 24px;
    }
    
    .seo-keywords {
        justify-content: center;
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    h1 {
        font-size: 42px;
    }
    h2 {
        font-size: 32px;
    }
    .category-grid, .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid, .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 26px;
    }
    .hero {
        height: 450px;
    }
    .slide-content {
        max-width: 90%;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block;
    }
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    .top-bar-left, .top-bar-right {
        justify-content: center;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-image {
        order: -1;
    }
    .category-grid, .featured-grid {
        grid-template-columns: 1fr;
    }
    .industries-grid, .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .contact-info li {
        justify-content: center;
    }
    .social-icons {
        justify-content: center;
    }
    .sample-content {
        flex-direction: column;
        text-align: center;
    }
    .flip-card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .slide-left .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    .industries-grid, .trust-grid {
        grid-template-columns: 1fr;
    }
    .top-bar-left, .top-bar-right {
        flex-direction: column;
        gap: 8px;
    }
}

/* ---------- MOBILE MENU ---------- */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
}

.nav-links.mobile-open li {
    margin: 8px 0;
}

.nav-links.mobile-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: 20px;
    background-color: #F8F9FA;
    margin-top: 8px;
}

/* ---------- DROPDOWN SUBMENU (MULTI-LEVEL) ---------- */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 240px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    border: 1px solid #E8E8E8;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
}

.dropdown-submenu .submenu li a {
    display: block;
    padding: 12px 20px;
    color: #1E1E1E;
    transition: all 0.2s ease;
}

.dropdown-submenu .submenu li a:hover {
    background-color: #F0F7F0;
    color: #1A5B2E;
}

/* ---------- MOBILE STYLES ---------- */
@media (max-width: 768px) {
    /* Hide top bar completely */
    .top-bar {
        display: none !important;
    }
    
    /* Logo size on mobile */
    .logo-img {
        height: 35px;
        width: auto;
    }
}

/* ============================================
   PRODUCT PAGE STYLES
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    background-color: #F8F9FA;
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid #E8E8E8;
}

.breadcrumb .container {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.breadcrumb a {
    color: #1A5B2E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #E86F2C;
}

.breadcrumb span {
    color: #6B7280;
}

/* Product Detail Section */
.product-detail {
    padding: 60px 0;
    background-color: white;
}

/* Product Grid - Two Columns */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Product Image - Square with contain */
.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: 20px;
    background-color: #F8F9FA;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

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

/* Product Info */
.product-info h1 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 36px;
    color: #1A5B2E;
}

.short-description {
    margin-top: 20px;
}

.short-description > p {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.short-description ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.short-description li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #1E1E1E;
    font-size: 15px;
}

.short-description li:before {
    content: "✓";
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.btn-primary {
    display: inline-block;
    background-color: #E86F2C;
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #D45A1A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 111, 44, 0.3);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 18px;
}

/* Long Description */
.long-description {
    margin-top: 40px;
}

.long-description h2 {
    text-align: left;
    margin: 40px 0 20px;
    font-size: 28px;
    color: #1A5B2E;
    border-bottom: 2px solid #E86F2C;
    padding-bottom: 10px;
    display: inline-block;
}

.long-description h3 {
    margin: 25px 0 12px;
    font-size: 20px;
    color: #1A5B2E;
}

.long-description p {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 16px;
}

.long-description ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.long-description li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    color: #4B5563;
}

.long-description li:before {
    content: "•";
    color: #E86F2C;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
}

/* Specifications Table - Desktop */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: #F8F9FA;
    border-radius: 16px;
    overflow: hidden;
}

.spec-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #E8E8E8;
}

.spec-table td:first-child {
    font-weight: 600;
    background-color: #F0F7F0;
    width: 35%;
    color: #1A5B2E;
}

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

/* Specifications Table - Mobile Responsive */
@media (max-width: 768px) {
    .spec-table,
    .spec-table tbody,
    .spec-table tr,
    .spec-table td {
        display: block;
        width: 100%;
    }
    
    .spec-table tr {
        margin-bottom: 16px;
        border: 1px solid #E8E8E8;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .spec-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 16px;
        border-bottom: 1px solid #E8E8E8;
    }
    
    .spec-table td:last-child {
        border-bottom: none;
    }
    
    .spec-table td:first-child {
        width: auto;
        background-color: #F0F7F0;
        font-weight: 600;
    }
}

/* Related Products */
.related-products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #E8E8E8;
}

.related-products h2 {
    text-align: left;
    margin-bottom: 24px;
    font-size: 24px;
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.related-link {
    background-color: #F8F9FA;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    color: #1A5B2E;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
}

.related-link:hover {
    background-color: #E86F2C;
    color: white;
    border-color: #E86F2C;
    transform: translateY(-2px);
}

/* External Links */
.external-links {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #E8E8E8;
}

.external-links h2 {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: left;
    border: none;
    padding: 0;
}

.external-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.external-links li a {
    color: #1A5B2E;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.external-links li a:before {
    content: "🔗";
    font-size: 12px;
}

.external-links li a:hover {
    color: #E86F2C;
    text-decoration: underline;
}

/* Responsive Product Page */
@media (max-width: 992px) {
    .product-grid {
        gap: 40px;
    }
    
    .product-info h1 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .product-info h1 {
        font-size: 26px;
    }
    
    .long-description h2 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-whatsapp {
        justify-content: center;
    }
    
    .related-grid {
        justify-content: center;
    }
    
    .external-links ul {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .product-detail {
        padding: 40px 0;
    }
    
    .short-description li {
        font-size: 14px;
    }
    
    .btn-primary, .btn-whatsapp {
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
    }
}

/* Trust bar - 3 items per row on mobile */
@media (max-width: 768px) {
    .trust-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 12px !important;
    }
}
/* Mobile logo size */
@media (max-width: 768px) {
    .logo-img {
        height: 80px !important;
        width: auto !important;
    }
}