/*
====================================
MAX GRAINTA - PREMIUM PISTACHIO MILK
Design System Implementation
====================================
*/

/* ========== CSS VARIABLES ========== */
:root {
    /* Primary Colors (from Logo) */
    --color-pistachio-light: #9BC76D;
    --color-pistachio: #8BB960;
    --color-pistachio-dark: #6FA54A;

    --color-teal-light: #7DCDC4;
    --color-teal: #5CB8AF;
    --color-teal-dark: #4A9D95;

    --color-coral-light: #F2A6A1;
    --color-coral: #E8938D;
    --color-coral-dark: #D77F79;

    --color-brown-light: #A58968;
    --color-brown: #8B6F4A;
    --color-brown-dark: #6B5437;

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-off-white: #FDFDFB;
    --color-cream-light: #FAF8F4;
    --color-cream-medium: #F5F3EE;
    --color-warm-gray: #E8E6E1;

    /* Text Colors */
    --color-text-primary: #2C2418;
    --color-text-secondary: #5A4E3F;
    --color-text-tertiary: #8B7F6F;
    --color-text-placeholder: #B8AFA3;

    /* Border Colors */
    --color-border-light: #E8E6E1;
    --color-border-medium: #D4D0C9;
    --color-border-strong: #A8A39A;

    /* CTA Colors */
    --color-line: #06C755;
    --color-line-hover: #05B34B;
    --color-phone: #4A90E2;
    --color-phone-hover: #357ABD;

    /* Semantic Colors */
    --color-success: #6FA54A;
    --color-warning: #FFC107;
    --color-error: #DC3545;
    --color-info: #5CB8AF;

    /* Typography */
    --font-primary: 'Prompt', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Font Sizes - Desktop */
    --fs-h1: 54px;
    --fs-h2: 40px;
    --fs-h3: 28px;
    --fs-h4: 22px;
    --fs-h5: 18px;
    --fs-body-lg: 18px;
    --fs-body: 17px;
    --fs-body-sm: 17px;
    --fs-caption: 12px;

    /* Spacing (8px Grid) */
    --space-0: 0;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 40px;
    --space-6: 48px;
    --space-7: 56px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-16: 128px;
    --space-20: 160px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 50px;
    --radius-circle: 50%;

    /* Shadows */
    --shadow-1: 0 2px 8px rgba(44, 36, 24, 0.06);
    --shadow-2: 0 4px 12px rgba(44, 36, 24, 0.08);
    --shadow-3: 0 8px 24px rgba(44, 36, 24, 0.12);
    --shadow-4: 0 12px 32px rgba(44, 36, 24, 0.16);
    --shadow-5: 0 20px 48px rgba(44, 36, 24, 0.24);
    --shadow-line: 0 4px 12px rgba(6, 199, 85, 0.25);
    --shadow-phone: 0 4px 12px rgba(74, 144, 226, 0.25);
    --shadow-pistachio: 0 8px 24px rgba(139, 185, 96, 0.3);

    /* Transitions */
    --transition-fast: all 0.2s ease-in-out;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --container-max: 1200px;
    --container-padding: 18px;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--color-text-secondary);
    background-color: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

/* ========== BOOTSTRAP CONTAINER OVERRIDE ========== */
/* Override Bootstrap container to match smetohub.com layout */
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1320px !important;
    width: 95% !important;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
   /* font-weight: 700;*/
    line-height: 1.2;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: var(--fs-h2);
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
}

h4 {
    font-size: var(--fs-h4);
    font-weight: 600;
}

h5 {
    font-size: var(--fs-h5);
    font-weight: 500;
}

/* ========== LAYOUT ========== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 50px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.section-title {
    font-size: var(--fs-h2);
    margin-bottom: var(--space-2);
}

.section-subtitle {
    font-size: var(--fs-body-lg);
    color: var(--color-text-tertiary);
    font-weight: 400;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: 16px 40px;
    font-size: var(--fs-body);
    /*font-weight: 600;*/
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-line);
    color: var(--color-white);
    box-shadow: var(--shadow-line);
}

.btn-primary:hover {
    background: var(--color-line-hover);
    box-shadow: 0 6px 16px rgba(6, 199, 85, 0.35);
}

.btn-secondary {
    background: var(--color-phone);
    color: var(--color-white);
    box-shadow: var(--shadow-phone);
}

.btn-secondary:hover {
    background: var(--color-phone-hover);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.35);
}

.btn-outline {
    background: #99cb50;
    color: var(--color-white);
    border: 2px solid #99cb50;
}

.btn-outline:hover {
    background: transparent;
    color: #99cb50;
    border: 2px solid #99cb50;
}

/* ปุ่มดูสื่อทั้งหมด - สีเขียวเมื่อชี้ */
.btn-media-all {
    background: transparent;
    color: #99cb50;
    border: 2px solid #99cb50;
}

.btn-media-all:hover {
    background: #99cb50;
    color: #ffffff;
    border: 2px solid #99cb50;
}

/* ปุ่มดูรีวิวลูกค้าทั้งหมด - สีเขียวเมื่อชี้ */
.btn-review-all {
    background: transparent;
    color: #99cb50;
    border: 2px solid #99cb50;
}

.btn-review-all:hover {
    background: #99cb50;
    color: #ffffff;
    border: 2px solid #99cb50;
}

.btn-brochure {
    background: #ffffff;
    color: #a77746;
    border: 2px solid #a77746;
}

.btn-brochure:hover {
    background: #a77746;
    color: #ffffff;
    border: 2px solid #a77746;
}

.btn-history {
    background: #ffffff;
    color: #99cb50;
    border: 2px solid #99cb50;
}

.btn-history:hover {
    background: #99cb50;
    color: #ffffff;
    border: 2px solid #99cb50;
}

.btn-lg {
    padding: 18px 48px;
    font-size: var(--fs-body-lg);
}

.btn-sm {
    padding: 1px 28px;
    font-size: var(--fs-body-sm);
}

.btn-block {
    width: 100%;
}

.btn-icon {
    font-size: 20px;
}

/* Social Buttons (from smetohub.com style) */
.social-button {
    color: #fff;
    text-decoration: none;
    /*padding-right: 17px;*/
    margin-left: 10px;
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 45px;
    transition: all 0.3s ease;
}

.social-button-phone,
.social-button-phone:hover {
    background: #a77746;
    /*padding-left: 4px;*/
}

.social-button-phone:hover {
    border-color: #a77746;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 74, 172, 0.3);
}

.social-button-phone .btn-icon {
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 25px;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-button-phone i {
    transform: scaleX(-1);
}

.social-button-line,
.social-button-line:hover {
    background: #00c300;
}

.social-button-line:hover {
    border-color: #00c300;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 195, 0, 0.3);
}

.social-button .btn-icon {
    margin-right: 0px;
    color: #fff;
}

.social-button .btn-icon i {
    color: #fff;
}

.social-button-line .btn-icon {
    font-size: 28px;
}

/* ========== HEADER ========== */
.header-main {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--color-white);
    width: 100%;
}

/* Topbar (Mobile Only) */
.topbar {
background: #fff3bf;

    position: relative;
    border-bottom: 10px solid;
    border-image: linear-gradient(120deg, #f6a0a1 8%, #a57640 20%, #a57640 55%, #99cb50 75%, #f4d90c 92%) 1;
    /* border-image: linear-gradient(120deg, #a57640 45%, #99cb50 70%, #f4d90c 90%) 1; */
    background-repeat: repeat-x;

    color: #fff;
    padding: 15px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    font-size: 18px;
}

.top-bar-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-1);
    padding: 16px 40px;
    font-size: var(--fs-body);
    /* font-weight: 600; */
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
}

.social-button-phone,
.social-button-phone:hover {
    background: #a77746;
    /*padding-left: 4px;*/
}

.social-button-phone:hover {
    border-color: #004aac;
}

.social-button-line,
.social-button-line:hover {
    background: #00c300;
}

.social-button-line:hover {
    border-color: #00c300;
}

.social-button .btn-icon {
    margin-right: 6px;
}

.social-button-phone .btn-icon {
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 25px;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-button-line .btn-icon {
    font-size: 28px;
}



/* Header Top Bar (สีเขียวอ่อน) */
.header-top {
    background: #fff3bf;
    padding: 15px 20px 10px 20px ;
    position: relative;
	border-bottom: 10px solid;
	border-image: linear-gradient(120deg, #f6a0a1 8%, #a57640 20%, #a57640 55%, #99cb50 75%, #f4d90c 92%) 1;
    /*border-bottom: 7px solid;
    border-image: linear-gradient(120deg, #f6a0a1 1%, #a57640 45%, #99cb50 70%, #f4d90c 90%) 1;*/
	/*border-image: linear-gradient(120deg, #a57640 45%, #99cb50 70%, #f4d90c 90%) 1;*/
	background-repeat: repeat-x;
}

.header-top::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(120deg, #a57640 35%, #99cb50 70%, #f4d90c 100%);
    filter: blur(8px);
    opacity: 0.6;
    z-index: -1;
}

/* Sticky Header (แสดงเวลาเลื่อน scroll bar) */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    background: var(--color-white);
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.5s ease, visibility 0.5s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-header.scrolled {
    visibility: visible;
    transform: translateY(0);
}

.sticky-header .navbar {
    padding: 12px 0;
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.header-contact {
    color: var(--color-white);
}

.header-line {
    color: var(--color-white);
    margin-left: auto;
}

.contact-icon,
.line-icon {
    width: 45px;
    height: 45px;
    background: #99cb50;
	color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-icon i {
    transform: scaleX(-1);
}

.contact-label,
.line-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
	color: #9d7142;
    /*text-shadow:
        2px 2px 4px #269f8e,
        -1px -1px 2px rgba(255, 255, 255, 0.3);*/
}

.contact-value,
.line-value {
    font-size: 16px;
    font-weight: 600;
	color: #9d7142;
    /*text-shadow:
        2px 2px 4px #269f8e,
        -1px -1px 2px rgba(255, 255, 255, 0.3);*/
}

.header-logo {
    height: 85px;
    width: auto;
}

.logo-link {
    display: inline-block;
}

/* Header Navigation Bar */
.header-nav {
    padding: 20px 0;
    background: var(--color-white);
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);*/
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #89d0be;
    color: var(--color-white);
    transform: translateY(-2px);
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu .nav-item {
    list-style: none;
}

/* Navigation logo */
.nav-logo {
    height: 60px;
    width: auto;
}

.nav-menu .nav-link {
    color: #666;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Main header and sticky header navigation active link color */
.header-main .nav-menu .nav-item:hover a,
.header-main .nav-menu .nav-item.active a,
.sticky-header .nav-menu .nav-item:hover a,
.sticky-header .nav-menu .nav-item.active a {
    color: #89d0be !important;
}

.nav-menu .nav-item.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
   /*background: #89d0be;*/
}

.search-icon {
    width: 35px;
    height: 35px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-icon:hover {
    background: #89d0be;
    color: var(--color-white);
}

/* Mobile */
.mobile-logo {
    height: 65px;
    width: auto;
}

.navbar-toggler {
    padding: 0;
    margin-left: 20px;
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 28px;
    height: 24px;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(45, 55, 72, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    z-index: 2000;
    padding: var(--space-4);
    transition: var(--transition-normal);
    overflow-y: auto;
    box-shadow: var(--shadow-5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

.mobile-menu .mobile-logo {
    height: 50px;
}

.close-menu {
    font-size: 32px;
    color: var(--color-text-primary);
    line-height: 1;
}

.mobile-nav-list {
    margin-bottom: var(--space-4);
}

.mobile-nav-link {
    display: block;
    padding: var(--space-2);
    font-weight: 500;
    color: var(--color-text-primary);
    border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav-link:hover {
    color: var(--color-pistachio);
    background: var(--color-cream-light);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-10) var(--space-6);
    padding-top: 200px;
    /* background: linear-gradient(135deg, var(--color-pistachio), var(--color-pistachio-dark)),
                url('../images/banner/hero-banner.jpg') center/cover no-repeat; */
}

.hero:has(img.hero-title) {
    padding: 0;
    padding-top: 170px;
    padding-bottom: 0;
    min-height: auto;
    display: block;
    line-height: 0;
}

/* Responsive margin for hero on mobile */
@media (max-width: 767px) {
    .hero {
        padding-top: 150px;
    }

    .hero:has(img.hero-title) {
        padding-top: 170px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-content:has(img.hero-title) {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: var(--space-3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-title img,
img.hero-title {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: bottom;
}

.hero-subtitle {
    font-size: var(--fs-body-lg);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-3);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.hero-feature {
    font-size: var(--fs-body);
    font-weight: 500;
    color: var(--color-white);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    background: var(--color-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
}

.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    /*transition: var(--transition-normal);*/
    box-shadow: var(--shadow-1);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
    border-color: var(--color-pistachio);
}

.product-card.featured {
    border: 2px solid var(--color-pistachio);
}

.product-image {
    position: relative;
    width: 100%;
    /*height: 250px;*/
    overflow: hidden;
    background: var(--color-cream-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*transition: var(--transition-normal);*/
}

.product-card:hover .product-image img {
    /*transform: scale(1.05);*/
}

.product-badge {
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    padding: 6px 12px;
    background: var(--color-pistachio);
    color: var(--color-white);
    font-size: var(--fs-body-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
}

.product-badge.featured {
    background: var(--color-coral);
}

.product-content {
    padding: var(--space-3);
}

.product-price-box-almond {
    display: inline-block;
    background: #e34f65;
    color: white;
    padding: 6px 10px;
    margin: 15px 0;
    transform: skewX(-20deg);
    border: 2px solid #e34f65;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: fit-content;
}

.product-price-box-almond span {
    display: inline-block;
    transform: skewX(20deg);
    font-weight: 600;
    font-size: 14px;
}

/* Promotion Box */
.promotion-box {
    background: linear-gradient(135deg, #ee5a6f 0%, #ff6b6b 100%);
    color: #ffffff;
    padding: 8px 20px 8px 20px;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.promotion-box .promotion-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.promotion-box .promotion-title small {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

.promotion-box .promotion-prices {
    margin-bottom: 12px;
}

.promotion-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
}

.promotion-table thead th {
    background: rgba(255, 255, 255, 0.2);
    color: #2d2d2d;
    font-weight: 700;
    padding: 4px;
    text-align: center;
        border: 1px solid #ddd;
    font-size: 1rem;
}

.promotion-table tbody td {
    padding: 2px;
    text-align: center;
    border: 1px solid #ddd;
    color: #2d2d2d;
    font-size: 0.95rem;
}

.promotion-table tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.promotion-table tbody tr:hover {
    background: rgba(255, 107, 107, 0.1);
}

.promotion-box .promotion-note {
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1px;
}

.promotion-box .promotion-note small {
    font-size: 0.85rem;
    opacity: 0.85;
    font-style: italic;
}

/* Promotion Box - Macadamia */
.promotion-box-macadamia {
    background: linear-gradient(135deg, #f8a41d 0%, #ffa500 100%);
    color: #ffffff;
    padding: 8px 20px 8px 20px;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(248, 164, 29, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.promotion-box-macadamia .promotion-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.promotion-box-macadamia .promotion-title small {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

.promotion-box-macadamia .promotion-prices {
    margin-bottom: 12px;
}

.promotion-table-macadamia {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
}

.promotion-table-macadamia thead th {
    background: rgba(255, 255, 255, 0.2);
    color: #2d2d2d;
    font-weight: 700;
    padding: 4px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.promotion-table-macadamia tbody td {
    padding: 2px;
    text-align: center;
    border: 1px solid #ddd;
    color: #2d2d2d;
    font-size: 0.95rem;
}

.promotion-table-macadamia tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.promotion-table-macadamia tbody tr:hover {
    background: rgba(248, 164, 29, 0.1);
}

.promotion-box-macadamia .promotion-note {
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1px;
}

.promotion-box-macadamia .promotion-note small {
    font-size: 0.85rem;
    opacity: 0.85;
    font-style: italic;
}

/* Promotion Box - Pistachio */
.promotion-box-pistachio {
    background: linear-gradient(135deg, #33a196 0%, #4bc3b3 100%);
    color: #ffffff;
    padding: 8px 20px 8px 20px;
    border-radius: 12px;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(51, 161, 150, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.promotion-box-pistachio .promotion-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.promotion-box-pistachio .promotion-title small {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
}

.promotion-box-pistachio .promotion-prices {
    margin-bottom: 12px;
}

.promotion-table-pistachio {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
}

.promotion-table-pistachio thead th {
    background: rgba(255, 255, 255, 0.2);
    color: #2d2d2d;
    font-weight: 700;
    padding: 4px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 1rem;
}

.promotion-table-pistachio tbody td {
    padding: 2px;
    text-align: center;
    border: 1px solid #ddd;
    color: #2d2d2d;
    font-size: 0.95rem;
}

.promotion-table-pistachio tbody tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.promotion-table-pistachio tbody tr:hover {
    background: rgba(51, 161, 150, 0.1);
}

.promotion-box-pistachio .promotion-note {
    margin-bottom: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1px;
}

.promotion-box-pistachio .promotion-note small {
    font-size: 0.85rem;
    opacity: 0.85;
    font-style: italic;
}

.product-price-box-macadamia {
    display: inline-block;
    background: #f8a41d;
    color: white;
    padding: 6px 10px;
    margin: 15px 0;
    transform: skewX(-20deg);
    border: 2px solid #f8a41d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: fit-content;
}

.product-price-box-macadamia span {
    display: inline-block;
    transform: skewX(20deg);
    font-weight: 600;
    font-size: 14px;
}

.product-price-box-pistachio {
    display: inline-block;
    background: #33a196;
    color: white;
    padding: 6px 10px;
    margin: 15px 0;
    transform: skewX(-20deg);
    border: 2px solid #33a196;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    width: fit-content;
}

.product-price-box-pistachio span {
    display: inline-block;
    transform: skewX(20deg);
    font-weight: 600;
    font-size: 14px;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
.product-title {
    font-size: var(--fs-h3);
    margin-bottom: var(--space-1);
}

.product-subtitle {
    font-size: var(--fs-body);
    color: var(--color-text-tertiary);
    margin-bottom: var(--space-2);
}

.product-description {
    font-size: var(--fs-body);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-3);
    /*min-height: 80px;*/
}

/* Pistachio Product Specific Styles */
.product-title.pistachio {
    color: #ffffff;
    text-shadow:
        2px 2px 4px #269f8e,
        -1px -1px 0 #269f8e,
        1px -1px 0 #269f8e,
        -1px 1px 0 #269f8e,
        1px 1px 0 #269f8e,
        3px 3px 8px #269f8e;
    letter-spacing: 1px;
}

.product-subtitle.pistachio {
    color: #ffffff;
    text-shadow:
        2px 2px 4px #269f8e,
        -1px -1px 0 #269f8e,
        1px -1px 0 #269f8e,
        -1px 1px 0 #269f8e,
        1px 1px 0 #269f8e,
        3px 3px 8px #269f8e;
    font-weight: 600;
    font-size: 32px;
}

.product-description.pistachio {
    color: #2d2d2d;
    font-weight: 500;
}

.btn-pistachio {
    color: #2d2d2d;
    background-color: #ffffff;
    font-weight: 600;
}

.btn-pistachio:hover {
    display: inline-block;
    color: #2d2d2d;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border-color: #2d2d2d;
    background-color: var(--bs-btn-bg);
    transition: color .15s 
}

/* Macadamia Product Specific Styles */
.product-title.macadamia {
    color: #ffffff;
    text-shadow:
        2px 2px 4px #dd9c24,
        -1px -1px 0 #dd9c24,
        1px -1px 0 #dd9c24,
        -1px 1px 0 #dd9c24,
        1px 1px 0 #dd9c24,
        3px 3px 8px #dd9c24;
    letter-spacing: 1px;
}

.product-subtitle.macadamia {
    color: #ffffff;
    text-shadow:
        2px 2px 4px #dd9c24,
        -1px -1px 0 #dd9c24,
        1px -1px 0 #dd9c24,
        -1px 1px 0 #dd9c24,
        1px 1px 0 #dd9c24,
        3px 3px 8px #dd9c24;
    font-weight: 600;
    font-size: 32px;
}

.product-description.macadamia {
    color: #2d2d2d;
    font-weight: 500;
}

.btn-macadamia {
    color: #2d2d2d;
    background-color: #ffffff;
    font-weight: 600;
}

.btn-macadamia:hover {
    display: inline-block;
    color: #2d2d2d;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border-color: #2d2d2d;
    background-color: var(--bs-btn-bg);
    transition: color .15s 
}

/* Almond Product Specific Styles */
.product-title.almond {
    color: #ffffff;
    text-shadow:
        2px 2px 4px #dd3d59,
        -1px -1px 0 #dd3d59,
        1px -1px 0 #dd3d59,
        -1px 1px 0 #dd3d59,
        1px 1px 0 #dd3d59,
        3px 3px 8px #dd3d59;
}

.product-subtitle.almond {
    color: #ffffff;
    text-shadow:
        2px 2px 4px #dd3d59,
        -1px -1px 0 #dd3d59,
        1px -1px 0 #dd3d59,
        -1px 1px 0 #dd3d59,
        1px 1px 0 #dd3d59,
        3px 3px 8px #dd3d59;
    font-weight: 600;
    font-size: 32px;
}

.product-description.almond {
    color: #2d2d2d;
    font-weight: 500;
}

.btn-almond {
    background-color: #ffffff;
    color: #2d2d2d;
    font-weight: 600;
}

.btn-almond:hover {
    display: inline-block;
    color: #2d2d2d;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    border-color: #2d2d2d;
    background-color: var(--bs-btn-bg);
    transition: color .15s 
}


/* ========== CTA SECTIONS ========== */
.cta-section {
    text-align: center;
    padding: 60px 0;
}

.cta-suitable {
    padding: 40px 0;
}

.cta-gradient {
    background: linear-gradient(rgb(138 205 188 / 6%), rgb(138 205 188 / 1%)), url(../images/banner/banner-pistachio2.jpg);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--color-white);
}

.cta-title {
    font-size: 32px;
    color: var(--color-white);
    margin-bottom: 25px;
}

.cta-divider {
    width: 80px;
    height: 3px;
    background: var(--color-white);
    margin: 0 auto var(--space-5);
}

.cta-methods {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
    flex-wrap: wrap;
}

.cta-method {
    text-align: center;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 10px;
}

.cta-icon i {
    color: #00B900;
}

.cta-icon .fa-phone-alt {
    color: #a77746;
    transform: scaleX(-1);
}

.fa-suitcase-rolling {
    color: #ffffff;
}

.cta-method-title {
    font-size: var(--fs-h4);
    color: #2c2418;
    margin-bottom: 5px;
}

.cta-method-text {
    font-size: var(--fs-body);
    color: #2c2418;
    margin-bottom: 12px;
}

/* CTA Gradient - สีตัวอักษรเป็นน้ำตาลเข้ม */
.cta-gradient .cta-title {
    color: #2c2418;
}

.cta-gradient .cta-method-title {
    color: #2c2418;
}

.cta-gradient .cta-method-text {
    color: #2c2418;
}

/* CTA Simple */
.cta-simple {
    background: linear-gradient(rgb(138 205 188 / 6%), rgb(138 205 188 / 1%)), url(../images/banner/banner-mac2.jpg);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--color-white);
    /*border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);*/
    padding: 60px 0;
}

.cta-simple .cta-title {
    color: var(--color-text-primary);
    font-size: 32px;
    margin-bottom: var(--space-3);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

/* CTA Callout */
.cta-callout {
    background: #fff3bf;
    padding: var(--space-6) 0;
}

.cta-callout-box {
    /*background: linear-gradient(135deg, #41a99e 0%, #9ac653 100%);*/
	background: #8acdbc;
    color: var(--color-white);
    padding: var(--space-6) var(--space-5);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-3);
}

.cta-callout .cta-title {
    margin-bottom: var(--space-4);
    text-shadow:
        2px 2px 4px #269f8e,
        -1px -1px 0 #269f8e,
        1px -1px 0 #269f8e,
        -1px 1px 0 #269f8e,
        1px 1px 0 #269f8e,
        3px 3px 8px #269f8e;
}

/* CTA Final */
.cta-final {
    background: linear-gradient(rgb(138 205 188 / 6%), rgb(138 205 188 / 1%)), url(../images/banner/banner-alm.jpg);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: 60px 0;
}

.cta-final-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-subtitle {
    font-size: var(--fs-body-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

/* CTA Final - สีตัวอักษรเป็นน้ำตาลเข้ม */
.cta-final .cta-title {
    color: #2c2418;
}

.cta-final .cta-subtitle {
    color: #2c2418;
}

/* CTA Order Section - พื้นหลังสีน้ำตาลอ่อน */
.cta-order-section {
    background: linear-gradient(rgb(138 205 188 / 6%), rgb(138 205 188 / 1%)), url(../images/banner/banner3.jpg);
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
}

.cta-order-section .cta-title {
    color: #2c2418;
}

.cta-order-section .cta-method-title {
    color: #2c2418;
}

.cta-order-section .cta-method-text {
    color: #2c2418;
}

.cta-methods-large {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    margin-bottom: var(--space-6);
}

.cta-method-large {
    text-align: center;
}

.cta-icon-large {
    width: 100px;
    height: 100px;
    background: var(--color-white);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto var(--space-3);
    box-shadow: var(--shadow-2);
}

.cta-method-title-large {
    font-size: var(--fs-h3);
    color: var(--color-white);
    margin-bottom: var(--space-2);
}

.cta-method-text-large {
    font-size: var(--fs-body-lg);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-3);
}

.qr-code {
    text-align: center;
    margin-top: var(--space-6);
}

.qr-code img {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--space-2);
    background: var(--color-white);
    padding: var(--space-2);
    border-radius: var(--radius-lg);
}

.qr-code p {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.9);
}

/* ========== WHY SECTION ========== */
.why-section {
    background: var(--color-cream-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.why-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-3);
    text-align: center;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-pistachio), var(--color-pistachio-dark));
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto var(--space-3);
}

.why-icon i {
    color: #ffffff;
}

.why-icon-almond {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f6a0a1, #dd3d59);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto var(--space-3);
}

.why-icon-almond i {
    color: #ffffff;
}

/* Why icon for macadamia */
.why-icon-macadamia {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fff3bf, #f8a41d);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto var(--space-3);
}

.why-icon-macadamia i {
    color: #ffffff;
}

.why-title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-2);
}

.why-description {
    font-size: var(--fs-body);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.comparison-image {
    max-width: 800px;
    margin: var(--space-6) auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2);
}

.comparison-image img {
    width: 100%;
    height: auto;
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
    /*background: var(--color-white);*/
	background: var(--color-cream-light);
}

.reviews-carousel {
    position: relative;
    overflow: visible;
    padding: 0;
}

.reviews-wrapper {
    display: flex;
    gap: var(--space-3);
    transition: var(--transition-normal);
    flex-wrap: nowrap;
    overflow: hidden;
}

.review-card {
    background: #fff3bf;
    border-radius: var(--radius-xl);
    padding: 20px 20px;
    text-align: center;
    box-shadow: var(--shadow-2);
    flex: 0 0 calc(25% - 18px);
    min-width: 250px;
}

.review-avatar {
    width: 160px;
    height: 160px;
    margin: 0 auto var(--space-2);
    border-radius: var(--radius-circle);
    overflow: hidden;
    border: 3px solid var(--color-white);
    box-shadow: var(--shadow-1);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: var(--space-2);
}

.review-text {
    font-size: var(--fs-body);
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-3);
    /*min-height: 120px;*/
}

.review-author {
    font-size: var(--fs-body-sm);
    font-weight: 500;
    color: var(--color-text-primary);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #99cb50;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    box-shadow: var(--shadow-2);
    z-index: 100;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

.carousel-btn:hover {
    background: #ffffff;
    color: #99cb50;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: var(--color-border-medium);
    border-radius: var(--radius-circle);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background: var(--color-pistachio);
    width: 32px;
    border-radius: var(--radius-full);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: var(--color-cream-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto var(--space-5);
}

.faq-item {
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: var(--space-3);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
    color: #85c12e;
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    background: #f9fafb;
}

/* FAQ Number Styling */
.faq-number {
    font-size: 32px;
    font-weight: 700;
    color: #a77746;
    line-height: 1;
    min-width: 50px;
    flex-shrink: 0;
}

.faq-icon {
    font-size: 16px;
    color: var(--color-text-primary);
    transition: transform 0.3s ease;
}

.faq-question i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question i {
    color: var(--color-pistachio);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer > div {
    padding: 0 24px 24px 24px;
    margin-left: 65px;
    font-size: var(--fs-body);
    color: #6b7280;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-more {
    text-align: center;
}

/* Responsive FAQ - Mobile */
@media (max-width: 991px) {
    .faq-number {
        font-size: 28px;
        min-width: 45px;
    }

    .faq-question {
        padding: 20px;
        font-size: 18px;
    }

    .faq-answer > div {
        margin-left: 55px;
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 576px) {
    .faq-number {
        font-size: 24px;
        min-width: 40px;
    }

    .faq-question {
        padding: 16px;
        font-size: 17px;
    }

    .faq-answer > div {
        margin-left: 50px;
        padding: 0 16px 16px 16px;
        font-size: 14px;
    }
}

/* ========== CONTACT US SECTION ========== */
.contact-us-section {
   
}

/* Contact Wrapper - เงากรอบรวม */
.contact-wrapper {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-info-wrapper {
    height: 100%;
}

.contact-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Image */
.contact-image-wrapper {
    height: 100%;
    overflow: hidden;
}

.contact-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: 20px 30px 20px 30px;
    height: 100%;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a77746;
    margin-bottom: 1.5rem;
}

.contact-form-intro {
    font-size: 22px;
    color: #85c12e;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-form .form-label {
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.contact-input {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: #99cb50;
    box-shadow: 0 0 0 3px rgba(153, 203, 80, 0.1);
    outline: none;
}

.btn-contact-submit {
    --bs-btn-color: #99cb50;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #99cb50;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #99cb50;
    --bs-btn-hover-border-color: #99cb50;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #99cb50;
    --bs-btn-active-border-color: #99cb50;
    padding: 14px 32px;
    border: 2px solid #99cb50 !important;
}

/* Responsive Contact Section */
@media (max-width: 991px) {
    .contact-form-wrapper,
    .contact-channels {
        padding: 30px;
    }

    .contact-form-wrapper {
        margin-top: 30px;
    }

    .contact-cta-heading {
        font-size: 1.5rem;
    }

    .contact-cta-description {
        font-size: 17px;
    }

    .contact-form-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .contact-form-wrapper,
    .contact-channels {
        padding: 20px;
    }

    .contact-cta-heading {
        font-size: 1.3rem;
    }

    .contact-cta-description {
        font-size: 17px;
        margin-bottom: 1.5rem;
    }

    .contact-cta-methods {
        flex-direction: column;
    }

    .contact-cta-method {
        padding: 20px;
    }

    .contact-cta-icon {
        width: 60px;
        height: 60px;
    }

    .contact-cta-icon i {
        font-size: 1.5rem;
    }

    .contact-cta-title {
        font-size: 1.1rem;
    }

    .contact-cta-text {
        font-size: 1rem;
    }

    .contact-button {
        font-size: 1rem;
        padding: 10px 24px;
    }

    .contact-form-title {
        font-size: 1.2rem;
    }

    .btn-contact-submit {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* ========== SUITABLE FOR SECTION (Boxed Benefits) ========== */
.cta-suitable {
    /*background: linear-gradient(rgb(255 243 191 / 6%), rgb(255 243 191 / 1%)), url(../images/banner/who-suitable.jpg);*/
	background-color: #fff3bf;
    background-size: 100% 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.suitable-img {
    width: 100%;
    height: auto;
    display: block;
}

.suitable-content {
   /* padding: 60px 0;*/
}

/* Suitable Title for Index Page (Default - Green Theme) */
.suitable-title {
    color: #2c2418;
    font-size: 2.5rem;
    /*font-weight: 700;*/
    margin-bottom: 2rem;
    text-align: left;
}

/* Suitable Title for Product Page (Pink/Red Theme - Almond) */
.suitable-title-product {
    color: #ffffff;
    text-shadow: 2px 2px 4px #dd3d59, -1px -1px 0 #dd3d59, 1px -1px 0 #dd3d59, -1px 1px 0 #dd3d59, 1px 1px 0 #dd3d59, 3px 3px 8px #dd3d59;
    font-size: 2.5rem;
    text-align: left;
}

/* Suitable Title for Product Page (Yellow/Orange Theme - Macadamia) */
.suitable-title-macadamia {
    color: #ffffff;
    text-shadow: 2px 2px 4px #dd9c24, -1px -1px 0 #dd9c24, 1px -1px 0 #dd9c24, -1px 1px 0 #dd9c24, 1px 1px 0 #dd9c24, 3px 3px 8px #dd9c24;
    font-size: 2.5rem;
    text-align: left;
}

@media (max-width: 767px) {
    .suitable-title-product {
        font-size: 32px;
    }
}

.benefits-boxed-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 3px 14px;
    margin-bottom: 12px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #e34f65;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-box:hover {
    background: #f6a1a1;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Benefit box for macadamia */
.benefit-box-macadamia {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 3px 14px;
    margin-bottom: 12px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #f8a41d;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-box-macadamia:hover {
    background: #fff8e6;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    color: #e34f65;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 5px;
}

/* Benefit icon for macadamia */
.benefit-icon-macadamia {
    color: #f8a41d;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-text {
    flex: 1;
    color: #2c2418;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Ingredients Section */
.ingredients-section {
    background: linear-gradient(135deg, #e34f6438 0%, #e34f6430 100%);
    padding: 60px 0;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0;
    margin: 0;
}

.ingredient-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(221, 61, 89, 0.08);
    position: relative;
    overflow: hidden;
}

.ingredient-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #dd3d59 0%, #c22d47 100%);
}

.ingredient-card:hover {
    border-color: #dd3d59;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(221, 61, 89, 0.2);
}

.ingredient-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(221, 61, 89, 0.15) 0%, rgba(221, 61, 89, 0.08) 100%);
    border-radius: 12px;
    color: #dd3d59;
    font-size: 24px;
    transition: all 0.3s ease;
}

.ingredient-card:hover .ingredient-card-icon {
    background: linear-gradient(135deg, #dd3d59 0%, #c22d47 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.ingredient-card-content {
    flex: 1;
}

.ingredient-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c2418;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.ingredient-card-desc {
    font-size: 0.875rem;
    color: #8B7F6F;
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 991px) {
    .ingredients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .ingredients-section {
        padding: 40px 0;
    }

    .nutrition-content {
        padding: 60px 0px 60px 0px;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ingredient-card {
        padding: 20px;
    }

    .ingredient-card-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .ingredient-card-title {
        font-size: 0.95rem;
    }

    .ingredient-card-desc {
        font-size: 0.8rem;
    }
}

/* Nutrition Facts Table */
.nutrition-table {
    width: 100%;
    border: 2px solid #000;
    border-collapse: collapse;
    background: #fff;
    font-family: 'Sarabun', Arial, sans-serif;
}

.nutrition-table th,
.nutrition-table td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #000;
}

.nutrition-table-header {
    background: #fff;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 15px;
    border-bottom: 2px solid #000;
}

.nutrition-table-serving {
   /* background: #000;
    color: #fff;*/
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 12px;
}

.nutrition-table-per-serving {
    padding: 12px;
    border-bottom: 2px solid #000;
}

.nutrition-table-per-serving strong {
    font-weight: 700;
}

.nutrition-table-calories {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 8px solid #000;
}

.nutrition-table-calories strong {
    font-size: 1.1rem;
    font-weight: 600;
}

.nutrition-table-calories .calories-value {
    font-size: 1.3rem;
    font-weight: 700;
}

.nutrition-table-percent-header {
    text-align: right;
    font-size: 0.9rem;
    padding: 8px 12px;
    border-bottom: 1px solid #000;
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nutrition-row-bold {
    font-weight: 700;
}

.nutrition-row-indent {
    padding-left: 25px;
    font-size: 0.95rem;
}

.nutrition-row-percent {
    font-weight: 700;
    white-space: nowrap;
}

.nutrition-table-thick-border {
    border-bottom: 4px solid #000 !important;
}

.nutrition-table td.border-bottom-0,
.nutrition-table-en td.border-bottom-0,
.nutrition-table-thick-border td.border-bottom-0 {
    border-bottom: none !important;
}

.nutrition-table-serving.border-bottom-5 {
    border-bottom: 5px solid #000 !important;
}

.nutrition-table-en .nutrition-table-serving.border-bottom-0 {
    padding: 1px 12px;
}

.nutrition-table-en .nutrition-table-per-serving {
    padding: 1px 12px;
}

.nutrition-table-en .nutrition-table-calories {
    display: block;
}

.nutrition-table-en .nutrition-table-calories .calories-value {
    float: right;
}

.nutrition-table-en .nutrition-table-percent-header {
    text-align: right !important;
}

.nutrition-table-en .nutrition-table-percent-header,
.nutrition-table-en tbody td {
    padding: 4.1px 12px !important;
}

.nutrition-table-footer {
    font-size: 1rem;
    padding: 12px;
    border-top: 4px solid #000;
    line-height: 1.5;
    text-align: center !important;
    font-weight: bold;
}

.nutrition-minerals {
    display: flex;
    justify-content: space-between;
}

.nutrition-minerals-item {
    flex: 1;
}

@media (max-width: 768px) {
    .nutrition-table-header {
        font-size: 1.5rem;
    }

    .nutrition-table-calories .calories-value {
        font-size: 1.1rem;
    }
}

/* Nutrition Facts Table - English/US FDA */
.nutrition-table-en {
    width: 100%;
    border: 2px solid #000;
    border-collapse: collapse;
    background: #fff;
    font-family: 'Sarabun', Arial, sans-serif;
}

.nutrition-table-en th,
.nutrition-table-en td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #000;
}

@media (max-width: 768px) {
    .nutrition-table-en .nutrition-table-header {
        font-size: 1.5rem;
    }

    .nutrition-table-en .nutrition-table-calories .calories-value {
        font-size: 1.1rem;
    }
}

.warning-box-suitable {
    margin-top: 1rem;
    /*padding: 18px 20px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    border-left: 4px solid #f59e0b;*/
    color: #2c2418;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.warning-box-suitable i {
    color: #f59e0b;
    margin-right: 8px;
}

.warning-box-suitable strong {
    font-weight: 600;
    margin-right: 5px;
}

/* Suitable Section Specific Styles (Green Theme) */
.benefits-suitable-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.benefit-suitable-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 3px 14px;
    margin-bottom: 12px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #8BB960;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-suitable-box:hover {
    background: rgba(139, 185, 96, 0.18);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.benefit-suitable-icon {
    color: #6FA54A;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-suitable-text {
    flex: 1;
    color: #2c2418;
    font-size: 1.05rem;
    line-height: 1.6;
}

.text-white {
    --bs-text-opacity: 1;
    color: #ffffff;
}

/* Responsive - Boxed Benefits */
@media (max-width: 991px) {
    .benefit-box {
        padding: 16px 18px;
        margin-bottom: 10px;
    }

    .benefit-text {
        font-size: 1rem;
    }

    .benefit-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .benefit-box {
        padding: 14px 16px;
        margin-bottom: 8px;
    }

    .benefit-text {
        font-size: 0.95rem;
    }

    .benefit-icon {
        font-size: 1.1rem;
    }

    .warning-box-suitable {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .benefit-suitable-box {
        padding: 14px 16px;
        margin-bottom: 8px;
    }

    .benefit-suitable-text {
        font-size: 0.95rem;
    }

    .benefit-suitable-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .benefit-suitable-box {
        padding: 16px 18px;
        margin-bottom: 10px;
    }

    .benefit-suitable-text {
        font-size: 1rem;
    }

    .benefit-suitable-icon {
        font-size: 1.2rem;
    }
}

/* ========== ARTICLES SECTION ========== */
.articles-section {
    background: var(--color-white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.article-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    transition: var(--transition-normal);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-3);
}

.article-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: var(--color-cream-light);
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: var(--space-3);
}

.article-title {
    font-size: var(--fs-h4);
    margin-bottom: var(--space-2);
    line-height: 1.4;
    min-height: 56px;
}

.article-excerpt {
    font-size: var(--fs-body);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    margin-bottom: var(--space-3);
}

.article-date {
    font-size: var(--fs-body-sm);
    color: var(--color-text-tertiary);
}

.articles-more {
    text-align: center;
}

/* ปุ่มบทความทั้งหมดใช้สีเดิม (outline style) */
.articles-more .btn-outline-primary {
    --bs-btn-color: #99cb50;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #99cb50;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #99cb50;
    --bs-btn-hover-border-color: #99cb50;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #99cb50;
    --bs-btn-active-border-color: #99cb50;
}

/* ========== FOOTER ========== */
.footer {
    background: #5d3929;
    /*border-image: linear-gradient(120deg, #a57640 45%, #99cb50 70%, #f4d90c 90%) 1;*/
	border-image: linear-gradient(120deg, #f6a0a1 8%, #a57640 20%, #a57640 55%, #99cb50 75%, #f4d90c 92%) 1;
	background-repeat: repeat-x;
    color: var(--color-white);
    padding: 30px 0px 5px 0px;
	border-top: 10px solid #99cb50;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-5);
}

.footer-logo {
    margin-bottom: var(--space-2);
}

.footer-logo img {
    height: 120px;
    width: auto;
}

.footer-tagline {
    font-size: var(--fs-body);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-title {
    font-size: var(--fs-h4);
    color: #99cb50;;
    margin-bottom: var(--space-3);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-body);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-pistachio);
    padding-left: var(--space-1);
}

.social-icons {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--color-pistachio);
    transform: translateY(-2px);
}

.footer-contact {
    /*background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-3);*/
}

.footer-contact p {
    font-size: var(--fs-body-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--space-2);
}

.footer-social {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 15px;
}

.footer-social p {
    font-size: var(--fs-body-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-3);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--fs-body-sm);
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-inline {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
}

.footer-links-inline a {
    color: var(--color-pistachio);
}

.footer-links-inline a:hover {
    text-decoration: underline;
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: var(--space-4);
    right: var(--space-4);
    width: 48px;
    height: 48px;
    background: #99cb50;
    color: var(--color-white);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-pistachio);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-pistachio-dark);
    transform: translateY(-4px);
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet (768px - 1199px) */
@media (max-width: 1199px) {
    :root {
        --fs-h1: 42px;
        --fs-h2: 32px;
        --fs-h3: 24px;
        --fs-h4: 20px;
        --container-padding: 32px;
    }

    .hero {
        min-height: 500px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (<768px) */
@media (max-width: 767px) {
    :root {
        --fs-h1: 32px;
        --fs-h2: 26px;
        --fs-h3: 20px;
        --fs-h4: 18px;
        --fs-body-lg: 16px;
        --fs-body: 15px;
        --container-padding: 5px;
        --space-10: 48px;
        --space-8: 48px;
        --space-6: 32px;
    }

    /* Header */
    .nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .navbar-toggler {
        display: block;
    }

    .logo-img {
        height: 40px;
    }

    /* Header Navigation - Reduce padding */
    .header-nav {
        padding: 0;
        margin: -5px 0;
    }

    /* Products Section Title */
    .section-title {
        font-size: 28px !important;
    }

    .section-header .section-title:last-of-type {
        font-size: 32px !important;
    }

    /* Topbar Mobile Responsive */
    .topbar {
        padding: 2px 0;
        border-bottom: 15px solid;
        border-image: linear-gradient(120deg, #f6a0a1 8%, #a57640 20%, #a57640 55%, #99cb50 75%, #f4d90c 92%) 1;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 4px;
        align-items: center;
        text-align: center;
    }

    .top-bar-left {
        font-size: 18px;
        width: 100%;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .social-button {
        font-size: 14px;
        padding: 8px 15px;
        padding-left: 8px;
        margin-left: 0;
        min-width: 140px;
        justify-content: center;
    }

    .social-button-phone {
        padding-left: 8px;
    }


    .social-button-phone .btn-icon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }

    .social-button-line .btn-icon {
        width: 28px;
        height: 28px;
        background: #fff;
        border-radius: 50%;
        font-size: 22px;
    }

    .social-button-line .btn-icon i {
        color: #00c300;
    }

    /* Hero */
    .hero {
        min-height: 500px;
        padding: var(--space-6) var(--space-3);
    }

    .hero-features {
        flex-direction: column;
        gap: var(--space-2);
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    /* Section */
    .section {
        padding: 20px 0;
    }

    /* History/Story Section - เพิ่ม padding-top ในมือถือ */
    .history-content {
        padding-top: 180px !important;
    }

    /* Section Header - ยกเลิก margin-bottom ในมือถือ */
    .section-header.mb-5 {
        margin-bottom: 0 !important;
    }

    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-section {
        padding: 20px 0px;
    }

    .cta-order-section {
        padding: 20px 0px;
    }

    .cta-methods {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 0 15px;
        flex-wrap: wrap;
    }

    .cta-method {
        width: calc(50% - 8px);
        min-width: 150px;
        max-width: 200px;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
        margin-bottom: 8px;
    }

    .cta-method-title {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .cta-method-text {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: var(--space-3);
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 14px 28px;
        font-size: 16px;
    }

    .cta-methods-large {
        flex-direction: column;
        gap: var(--space-5);
    }

    .cta-title {
        font-size: 24px;
        padding: 0 15px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .cta-simple .cta-title {
        font-size: 24px;
    }

    .suitable-title {
        font-size: 24px;
    }

    .suitable-title-product {
        font-size: 32px;
    }

    .suitable-title-macadamia {
        font-size: 24px;
    }

    .social-button {
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 12px 16px;
        font-size: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .social-button .btn-icon {
        font-size: 18px;
    }

    .social-button-line,
    .social-button-phone {
        min-height: 50px;
    }

    /* Why Section */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Reviews */
    .carousel-btn {
        display: none;
    }

    /* Articles */
    .articles-grid {
        grid-template-columns: 1fr;
    }

    /* FAQ Section - เรียงตามลำดับ 01-08 ในมือถือ */
    .faq-section .row {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .faq-section .col-lg-6 {
        display: contents;
    }

    .faq-section .col-lg-6:nth-child(1) .faq-item:nth-child(1) { grid-row: 1; } /* 01 */
    .faq-section .col-lg-6:nth-child(2) .faq-item:nth-child(1) { grid-row: 2; } /* 02 */
    .faq-section .col-lg-6:nth-child(1) .faq-item:nth-child(2) { grid-row: 3; } /* 03 */
    .faq-section .col-lg-6:nth-child(2) .faq-item:nth-child(2) { grid-row: 4; } /* 04 */
    .faq-section .col-lg-6:nth-child(1) .faq-item:nth-child(3) { grid-row: 5; } /* 05 */
    .faq-section .col-lg-6:nth-child(2) .faq-item:nth-child(3) { grid-row: 6; } /* 06 */
    .faq-section .col-lg-6:nth-child(1) .faq-item:nth-child(4) { grid-row: 7; } /* 07 */
    .faq-section .col-lg-6:nth-child(2) .faq-item:nth-child(4) { grid-row: 8; } /* 08 */

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        /*align-items: center;*/
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links-inline {
        flex-direction: column;
        gap: var(--space-1);
    }

    /* Scroll Top */
    .scroll-top {
        bottom: var(--space-3);
        right: var(--space-3);
        width: 44px;
        height: 44px;
    }
}

/* Very Small Mobile (<480px) */
@media (max-width: 479px) {
    :root {
        --fs-h1: 28px;
        --fs-h2: 24px;
        --container-padding: 5px;
    }

    .btn {
        padding: 14px 24px;
        font-size: var(--fs-body-sm);
    }

    .btn-lg {
        padding: 16px 32px;
        font-size: var(--fs-body);
    }

    /* CTA Section สำหรับหน้าจอเล็ก */
    .cta-section {
        padding: 25px 10px;
    }

    /* History/Story Section - เพิ่ม padding-top ในมือถือเล็ก */
    .history-content {
        padding: 220px 0 10px 0 !important;
    }

    .cta-title {
        font-size: 20px;
        padding: 0 10px;
        margin-bottom: 12px;
    }

    .cta-simple .cta-title {
        font-size: 20px;
    }

    .suitable-title {
        font-size: 20px;
    }

    .suitable-title-product {
        font-size: 28px;
    }

    .suitable-title-macadamia {
        font-size: 20px;
    }

    .cta-methods {
        gap: 10px;
        padding: 0 10px;
        flex-direction: row;
        justify-content: center;
    }

    .cta-method {
        width: calc(50% - 5px);
        min-width: 140px;
        max-width: 180px;
    }

    .cta-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
        margin-bottom: 8px;
    }

    .cta-method-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .cta-method-text {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .social-button {
        width: 100%;
        max-width: none;
        padding: 10px 12px;
        font-size: 13px;
    }

    .social-button .btn-icon {
        font-size: 16px;
    }
}

/* ========== BREADCRUMB STYLING ========== */
.breadcrumb-container {
    margin-bottom: 5px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px 8px;
    border-radius: 6px;
}

.breadcrumb-link:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.breadcrumb-link i {
    font-size: 1.1rem;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: #a0aec0;
    margin: 0 3px;
}

.breadcrumb-separator i {
    font-size: 1.2rem;
}

.breadcrumb-item.active {
    color: #2d3748;
    font-weight: 500;
    padding: 4px 8px;
}

/* ========== ABOUT/CONTACT PAGE STYLING ========== */
.about-hero, .contact-hero {
    padding: 197px 100px 1px 100px;
    background: linear-gradient(135deg, #a5764000 0%, #a5764045 100%);
}

.about-hero h1, .contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.about-hero p, .contact-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.8;
}

.about-content {
    padding: 60px 40px 10px 40px;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.about-section h2::after {
    content: '';
    position: absolute;
	text-align: center;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(120deg, #f6a0a1 8%, #a57640 20%, #a57640 55%, #99cb50 75%, #f4d90c 92%);
    border-radius: 2px;
}

.about-section p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.certificate-content {
    background: #f8f9fa;
    padding: 60px 40px 10px 40px;
}

.about-values {
    background: #f8f9fa;
    padding: 60px 0;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
	border-bottom: 3px solid #6fa54a;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #6fa54a;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.about-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
}

/* About/Contact Page Responsive */
@media (max-width: 991px) {
    .about-hero h1, .contact-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero, .contact-hero {
        padding: 200px 0 60px;
    }

    .breadcrumb-link {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .breadcrumb-item.active {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .about-hero, .contact-hero {
        padding: 180px 0 1px;
    }

    .about-hero h1, .contact-hero h1 {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .breadcrumb-link {
        font-size: 0.85rem;
        padding: 3px 6px;
        gap: 4px;
    }

    .breadcrumb-link i {
        font-size: 1rem;
    }

    .breadcrumb-separator {
        margin: 0 2px;
    }

    .breadcrumb-separator i {
        font-size: 1rem;
    }

    .breadcrumb-item.active {
        padding: 3px 6px;
        font-size: 0.85rem;
    }

    .about-content,
    .certificate-content {
        padding: 60px 0 10px 0;
    }

    .nutrition-content {
        padding: 60px 0px 60px 0px;
    }

    .section-title {
        font-size: 28px !important;
    }

    .why-section .section-title {
        font-size: 28px !important;
    }

    .breadcrumb-container {
        margin-bottom: 10px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* AOS Alternative (if needed) */
[data-aos] {
    opacity: 0;
    transition: var(--transition-normal);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }

.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-10 { margin-bottom: 10px; }
.mb-50 { margin-bottom: 50px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

ol, ul {
    padding-left: 0rem; 
}

.btn-outline-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #99cb50;
    --bs-btn-border-color: #99cb50;
    --bs-btn-hover-color: #99cb50;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #99cb50;
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: #99cb50;
    --bs-btn-active-bg: #ffffff;
    --bs-btn-active-border-color: #99cb50;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #99cb50;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #99cb50;
    --bs-gradient: none;
    border: 2px solid #99cb50 !important;
}

/* ========== SOCIAL MEDIA SECTION ========== */
.social-media-section {
    background: #f8f9fa;
}

.social-section-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.2rem;
}

.social-section-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.social-card {
    padding: 1.5rem 1rem;
    border-radius: 15px;
}

.social-card .social-icon {
    font-size: 3.5rem;
    display: inline-block;
    padding: 10px;
}

.social-card .social-icon.facebook {
    color: #1877f2;
}

.social-card .social-icon.line {
    color: #00b900;
}

.social-card .social-icon.instagram {
    color: #e4405f;
}

.social-card .social-icon.youtube {
    color: #ff0000;
}

.social-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
}

.social-username {
    font-size: 0.85rem;
    color: #6c757d;
}

.social-btn {
    border: none;
    font-weight: 500;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.line {
    background: #00b900;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.youtube {
    background: #ff0000;
}

/* ========== BLOG PAGE STYLES ========== */
/* Pagination */
.pagination-media {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px 0;
}

.pagination-media .page-link {
    padding: 10px 18px;
    border: 2px solid #99cb50;
    color: #99cb50;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-media .page-link:hover,
.pagination-media .page-link.active {
    background: #99cb50;
    color: white;
}

/* Top bar */
.top-bar-left-color {
    color: #9d7142;
}

/* Flag images */
.flag-img {
    width: 30px;
    height: 20px;
    object-fit: cover;
}

/* Language switcher transition */
.lang-link {
    transition: background-color 0.3s;
}

/* Line QR image */
.line-qr-img {
    max-width: 150px;
}

/* ========== BLOG DETAIL PAGE STYLES ========== */
/* Back to blog button */
.btn-back-to-blog {
    padding: 12px 30px;
    border: 2px solid #99cb50;
    color: #99cb50;
    background: white;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-back-to-blog:hover,
.btn-back-to-blog:active {
    background: #99cb50;
    color: white;
    border-color: #99cb50;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(153, 203, 80, 0.3);
}

.alert-info {
    --bs-alert-color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
    --bs-alert-bg: #fff3bf;
    --bs-alert-border-color: #fff3bf;
    --bs-alert-link-color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

/* Article tags badges */
.article-tags .badge {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    font-weight: 400;
}

/* Article share buttons */
.article-share .btn {
    border: 1px solid;
}

.article-share .btn i {
    font-size: 22px;
}

/* Facebook share button */
.btn-facebook {
    border-color: #1877f2;
    color: #ffffff;
}

.article-share .btn-facebook {
    background: white;
    border-color: #1877f2;
    color: #1877f2;
    padding: 1px 28px;
}

.btn-facebook:hover,
.btn-facebook:active {
    background-color: #1877f2;
    border-color: #1877f2;
    color: white;
}

/* LINE share button */
.btn-line {
    border-color: #00b900;
    color: #ffffff;
}

.article-share .btn-line {
    background: white;
    color: #00b900;
    padding: 1px 28px;
}

.btn-line:hover,
.btn-line:active {
    background-color: #00b900;
    border-color: #00b900;
    color: white;
}

/* Copy URL button */
.btn-copy-url {
    border-color: #a57640;
    color: #a57640;
}

.btn-copy-url:hover,
.btn-copy-url:active {
    background-color: #a57640;
    border-color: #a57640;
    color: white;
}

/* ========== ARTICLE CONTACT FORM SECTION ========== */
.article-contact-section {
    background: #f8f9fa;
}

.article-contact-card {
    max-width: 100%;
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #99cb50 0%, #7db83d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(153, 203, 80, 0.3);
}

.contact-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.article-contact-form .form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.article-contact-form .input-group-text {
    background-color: #f8f9fa;
    border-right: none;
    color: #99cb50;
}

.article-contact-form .form-control {
    border-left: none;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.article-contact-form .form-control:focus {
    border-color: #99cb50;
    box-shadow: 0 0 0 0.2rem rgba(153, 203, 80, 0.25);
}

.article-contact-form .input-group:focus-within .input-group-text {
    border-color: #99cb50;
    color: #7db83d;
}

.article-contact-form textarea.form-control {
    border-left: 1px solid #ced4da;
    resize: vertical;
}

.btn-submit-contact {
    background: linear-gradient(135deg, #99cb50 0%, #7db83d 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(153, 203, 80, 0.3);
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 203, 80, 0.4);
    background: linear-gradient(135deg, #7db83d 0%, #99cb50 100%);
}

.contact-method-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-method-btn i {
    font-size: 1.5rem;
    color: #99cb50;
}

.contact-method-btn:hover {
    background: white;
    border-color: #99cb50;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-method-btn:hover i {
    color: #7db83d;
}

/* Article title detail */
.article-title-detail {
    font-size: 2.5rem;
    line-height: 1.3;
    color: #2c3e50;
    font-weight: 700;
}

@media (max-width: 768px) {
    .article-title-detail {
        font-size: 1.3rem;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .article-title-detail {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .history-content {
        padding: 220px 0 10px 0 !important;
    }

    .history-content .section-header .section-title:last-of-type {
        font-size: 24px !important;
    }
}

/* CAPTCHA styling */
.captcha-container {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.captcha-text {
    font-size: 1rem;
    color: #2c3e50;
}

.captcha-text strong {
    color: #99cb50;
    font-size: 1.3rem;
    padding: 0 0.25rem;
}

.btn-refresh-captcha {
    background: white;
    border: 2px solid #99cb50;
    color: #99cb50;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-refresh-captcha:hover {
    background: #99cb50;
    color: white;
    transform: rotate(180deg);
}

.underline {
    padding-bottom: 10px; background-image: linear-gradient(120deg, #f6a0a1 8%, #a57640 20%, #a57640 55%, #99cb50 75%, #f4d90c 92%); background-size: 70% 4px; background-position: center 100%; background-repeat: no-repeat;
}

/* ========== INDEX PAGE INLINE STYLES MOVED TO CSS ========== */

/* Product card background colors */
.product-card-almond {
    background-color: #f6a0a1 !important;
}

.product-card-macadamia {
    background-color: #f9d10d !important;
}

.product-card-pistachio {
    background-color: #89d0be !important;
}

/* Product description font size */
.product-description-lg {
    font-size: 19px;
}

/* About list font size */
.about-list-md {
    font-size: 16px;
}

/* Check icon colors for different products */
.check-icon-almond {
    color: #e86471;
}

.check-icon-macadamia {
    color: #f9a51e;
}

.check-icon-pistachio {
    color: #49a99d;
}

/* Section title with gradient */
.section-title-gradient {
    background-image: linear-gradient(150deg, #269f8e 0%, #f4d90c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 38px;
}

/* Section title large font */
.section-title-lg {
    font-size: 36px;
}

/* Why card with green border */
.why-card-green-border {
    border-left: 4px solid #6fa54a !important;
}

/* ========== ABOUT PAGE INLINE STYLES MOVED TO CSS ========== */

/* Section title font sizes */
.section-title-32 {
    font-size: 32px;
}

.section-title-38 {
    font-size: 38px;
    color: #2d3748;
}

@media (max-width: 767px) {
    .section-title-38 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .section-title-38 {
        font-size: 24px;
    }
}

@media (max-width: 479px) {
    .section-title-38 {
        font-size: 22px;
    }
}

/* Gradient border wrapper for images */
.gradient-border-wrapper {
    background: linear-gradient(120deg, #f6a0a1 8%, #a57640 20%, #a57640 55%, #99cb50 75%, #f4d90c 92%);
    border-radius: 24px;
    padding: 4px;
    display: inline-block;
    width: 100%;
}

/* Image inside gradient wrapper */
.gradient-border-img {
    border-radius: 20px;
    display: block;
    background-color: white;
}

/* Package badge wrapper */
.package-badge-wrapper {
    background: linear-gradient(120deg, #f6a0a1 8%, #a57640 20%, #a57640 55%, #99cb50 75%, #f4d90c 92%);
    border-radius: 10px;
    padding: 2px;
}

/* Package badge text */
.package-badge-text {
    background: white;
    border-radius: 8px;
    color: #2d3748;
    font-size: 0.95rem;
}

/* Certificate image with border */
.certificate-card {
    padding: 10px;
    text-align: center;
}

.certificate-img {
    /*border: 4px solid #a57640;*/
    border-radius: 20px;
    width: 100%;
    max-width: 85%;
    height: auto;
    display: block;
    margin: 0 auto;
    background-color: white;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}

.certificate-img:hover {
    /*transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);*/
}

.certificate-nia {
    max-width: 70% !important;
}

@media (max-width: 767px) {
    .certificate-nia {
        max-width: 100% !important;
    }
}

/* Alert info custom color */
.alert-info-custom {
    color: #2d3748;
}

/* Section title with gradient underline */
.section-title-underline {
    display: inline-block;
    padding-bottom: 10px;
    background-image: linear-gradient(120deg, #f6a0a1 8%, #a57640 20%, #a57640 55%, #99cb50 75%, #f4d90c 92%);
    background-size: 70% 4px;
    background-position: center 100%;
    background-repeat: no-repeat;
}

/* Section title with small gradient underline */
.section-title-underline-sm {
    padding-bottom: 10px;
    background-image: linear-gradient(120deg, #f6a0a1 8%, #a57640 20%, #a57640 55%, #99cb50 75%, #f4d90c 92%);
    background-size: 15% 4px;
    background-position: center 100%;
    background-repeat: no-repeat;
}

/* Brown heading color */
.heading-brown {
    color: #9d7142;
}

/* Strong text with brown color */
.strong-brown {
    font-size: 18px;
    color: #9d7142;
}

/* Paragraph dark color */
.text-dark-gray {
    color: #2d3748;
}

/* Lead text color */
.lead-gray {
    color: #4a5568;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
	
}

/* Image with rounded border */
.img-rounded-12 {
    border-radius: 12px;
}

/* Margin bottom 60px */
.mb-60 {
    margin-bottom: 60px;
}

/* ========== PRODUCT-1 PAGE INLINE STYLES MOVED TO CSS ========== */

/* Product title for almond */
.product-title-almond {
    color: #dd3d59;
    font-size: 40px;
}

@media (max-width: 768px) {
    .product-title-almond {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .product-title-almond {
        font-size: 24px;
    }
}

/* Product title for macadamia */
.product-title-macadamia {
    color: #f8a41d;
    font-size: 40px;
}

@media (max-width: 768px) {
    .product-title-macadamia {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .product-title-macadamia {
        font-size: 24px;
    }
}

@media (max-width: 479px) {
    .product-title-almond {
        font-size: 20px;
    }
}

/* Why card with almond border */
.why-card-almond-border {
    border-left: 4px solid #dd3d59 !important;
}

/* Why card macadamia border */
.why-card-macadamia-border {
    border-left: 4px solid #f8a41d !important;
}

/* Nutrition Information section */
.nutrition-content {
    padding: 60px 0px 60px 0px;
}

/* History/About History section */
.history-content {
    padding: 60px 40px 10px 40px;
}

/* Benefits section almond background */
.benefits-section-almond {
    background: linear-gradient(180deg, #f69fa0 0%, #e34f64 100%);
}

/* ========== PRODUCT-2 PAGE INLINE STYLES MOVED TO CSS ========== */

/* Why card with macadamia border (using green for all products) */
.why-card-green-border-bottom {
    border-bottom: 3px solid #6fa54a !important;
}

/* Benefits section macadamia background */
.benefits-section-macadamia {
    background: linear-gradient(180deg, #f9d10d 0%, #fab01d 100%);
}

/* Ingredients Section - Macadamia */
.ingredients-section-macadamia {
    padding: 60px 0;
    background: linear-gradient(180deg, #faf3df 0%, #fff3bf 100%);
}

.section-title-underline-macadamia {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title-underline-macadamia::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f8a41d 0%, #fab01d 100%);
    border-radius: 2px;
}

.ingredients-grid-macadamia {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
}

.ingredient-card-macadamia {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(248, 164, 29, 0.08);
    position: relative;
    overflow: hidden;
}

.ingredient-card-macadamia::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #f8a41d 0%, #e89419 100%);
}

.ingredient-card-macadamia:hover {
    border-color: #f8a41d;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(248, 164, 29, 0.2);
}

.ingredient-card-icon-macadamia {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(248, 164, 29, 0.15) 0%, rgba(248, 164, 29, 0.08) 100%);
    border-radius: 12px;
    color: #f8a41d;
    font-size: 24px;
    transition: all 0.3s ease;
}

.ingredient-card-macadamia:hover .ingredient-card-icon-macadamia {
    background: linear-gradient(135deg, #f8a41d 0%, #e89419 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.ingredient-card-content-macadamia {
    flex: 1;
}

.ingredient-card-title-macadamia {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c2418;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.ingredient-card-desc-macadamia {
    font-size: 0.875rem;
    color: #8B7F6F;
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 991px) {
    .ingredients-grid-macadamia {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .ingredients-section-macadamia {
        padding: 40px 0;
    }

    .ingredients-grid-macadamia {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ingredient-card-macadamia {
        padding: 20px;
    }

    .ingredient-card-icon-macadamia {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .ingredient-card-title-macadamia {
        font-size: 0.95rem;
    }

    .ingredient-card-desc-macadamia {
        font-size: 0.8rem;
    }
}

/* ========== PISTACHIO PRODUCT STYLES ========== */

/* Product title for pistachio */
.product-title-pistachio {
    color: #33a196;
    font-size: 40px;
}

@media (max-width: 768px) {
    .product-title-pistachio {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .product-title-pistachio {
        font-size: 24px;
    }
}

/* Why icon for pistachio */
.why-icon-pistachio {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #89d0be, #33a196);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto var(--space-3);
}

.why-icon-pistachio i {
    color: #ffffff;
}

/* Why card pistachio border */
.why-card-pistachio-border {
    border-left: 4px solid #33a196 !important;
}

/* Benefit box for pistachio */
.benefit-box-pistachio {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 3px 14px;
    margin-bottom: 12px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid #33a196;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-box-pistachio:hover {
    background: #e8f5f3;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Benefit icon for pistachio */
.benefit-icon-pistachio {
    color: #33a196;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 5px;
}

/* Benefits section pistachio background */
.benefits-section-pistachio {
    background: linear-gradient(180deg, #89d0be 0%, #4bc3b3 100%);
}

/* Ingredients Section - Pistachio */
.ingredients-section-pistachio {
    padding: 60px 0;
    background: linear-gradient(180deg, #f0f9f7 0%, #e8f5f3 100%);
}

.section-title-underline-pistachio {
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.section-title-underline-pistachio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #33a196 0%, #4bc3b3 100%);
    border-radius: 2px;
}

.ingredients-grid-pistachio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
    margin: 0;
}

.ingredient-card-pistachio {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(51, 161, 150, 0.08);
    position: relative;
    overflow: hidden;
}

.ingredient-card-pistachio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #33a196 0%, #2a8a7d 100%);
}

.ingredient-card-pistachio:hover {
    border-color: #33a196;
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(51, 161, 150, 0.2);
}

.ingredient-card-icon-pistachio {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(51, 161, 150, 0.15) 0%, rgba(51, 161, 150, 0.08) 100%);
    border-radius: 12px;
    color: #33a196;
    font-size: 24px;
    transition: all 0.3s ease;
}

.ingredient-card-pistachio:hover .ingredient-card-icon-pistachio {
    background: linear-gradient(135deg, #33a196 0%, #2a8a7d 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.ingredient-card-content-pistachio {
    flex: 1;
}

.ingredient-card-title-pistachio {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c2418;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.ingredient-card-desc-pistachio {
    font-size: 0.875rem;
    color: #8B7F6F;
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

@media (max-width: 991px) {
    .ingredients-grid-pistachio {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .ingredients-section-pistachio {
        padding: 40px 0;
    }

    .ingredients-grid-pistachio {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .ingredient-card-pistachio {
        padding: 20px;
    }

    .ingredient-card-icon-pistachio {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .ingredient-card-title-pistachio {
        font-size: 0.95rem;
    }

    .ingredient-card-desc-pistachio {
        font-size: 0.8rem;
    }
}

/* ========== BLOG SIDEBAR STYLES ========== */

/* Blog Search Box */
.blog-sidebar {
    /* Removed sticky position - scroll normally */
}

.blog-search-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.blog-search-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2418;
    margin-bottom: 15px;
}

.blog-search-form {
    position: relative;
}

.blog-search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.blog-search-input:focus {
    outline: none;
    border-color: #9bc76d;
    box-shadow: 0 0 0 3px rgba(155, 199, 109, 0.1);
}

.blog-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #9bc76d;
    border: none;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-search-btn:hover {
    background: #88b35f;
    transform: translateY(-50%) scale(1.05);
}

/* Blog Categories */
.blog-categories {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-categories-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2418;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-item {
    margin-bottom: 12px;
}

.blog-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #fafafa;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.blog-category-link:hover {
    background: #f0f8e8;
    color: #9bc76d;
    border-left-color: #9bc76d;
    transform: translateX(5px);
}

.blog-category-link.active {
    background: #f0f8e8;
    color: #9bc76d;
    border-left-color: #9bc76d;
    font-weight: 500;
}

.blog-category-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-category-icon {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.blog-category-count {
    background: #e8e8e8;
    color: #666;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-category-link:hover .blog-category-count {
    background: #9bc76d;
    color: white;
}

.blog-category-link.active .blog-category-count {
    background: #9bc76d;
    color: white;
}

/* Blog Latest Articles */
.blog-latest-articles {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 25px;
}

.blog-latest-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2418;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.blog-latest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-latest-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-latest-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-latest-link {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.blog-latest-link:hover {
    color: #9bc76d;
}

.blog-latest-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.blog-latest-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog-latest-article-title {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-latest-link:hover .blog-latest-article-title {
    color: #9bc76d;
}

.blog-latest-date {
    font-size: 0.8rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-latest-date i {
    font-size: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blog-sidebar {
        margin-top: 40px;
    }
}

/* ========== MEDIAS PAGE INLINE STYLES MOVED TO CSS ========== */

/* Media image without background color */
.media-img {
    border-radius: 20px;
    display: block;
}

/* Media heading with brown color */
.media-heading-brown {
    color: #9d7142;
}

/* Company Logo in Media Content */
.company-logo-wrapper {
    padding: 0px 0;
}

.company-info-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, rgba(155, 199, 109, 0.08), rgba(92, 184, 175, 0.08));
    border-radius: 16px;
    padding: 10px 30px;
    border: 2px solid rgba(155, 199, 109, 0.2);
}

.company-logo-side {
    flex-shrink: 0;
}

.company-logo-media {
    max-width: 140px;
    height: auto;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.company-logo-media:hover {
    opacity: 1;
    transform: scale(1.05);
}

.company-text-side {
    flex: 1;
}

.company-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* Health Philosophy Box */
.health-philosophy-box {
    background: linear-gradient(135deg, rgba(139, 185, 96, 0.06), rgba(255, 255, 255, 0.03));
    border-left: 4px solid var(--color-pistachio);
    padding: 20px 25px;
    border-radius: 8px;
}

.health-intro {
    font-size: 16px;
    color: var(--color-text-secondary);
    font-weight: 500;
    line-height: 1.7;
}

.health-list {
    margin: 0;
    padding-left: 25px;
    color: var(--color-text-secondary);
}

.health-list li {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 8px;
    padding-left: 5px;
}

.health-list li::marker {
    color: var(--color-pistachio);
    font-weight: 600;
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .company-info-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .company-logo-media {
        max-width: 120px;
    }

    .company-description {
        font-size: 15px;
    }

    .health-philosophy-box {
        padding: 18px 20px;
    }

    .health-intro {
        font-size: 15px;
    }

    .health-list li {
        font-size: 14px;
    }
}

/* ========== REVIEWS PAGE INLINE STYLES MOVED TO CSS ========== */

/* Review badge with green background */
.review-badge-green {
    border-radius: 24px;
    background-color: #8bb960;
    padding: 0.5rem 1rem;
    font-weight: 400;
}

/* ========== CONTACT PAGE INLINE STYLES MOVED TO CSS ========== */

/* Contact section headings */
.contact-heading {
    font-weight: 600;
}

.contact-heading-lg {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Contact icons */
.contact-icon-brown {
    color: #9d7142;
    font-size: 1.5rem;
}

.contact-icon-brown-lg {
    color: #9d7142;
    font-size: 2rem;
}

/* Contact links */
.contact-link {
    color: #2d3748;
    text-decoration: none;
}

/* Social link circular */
.social-link-circle {
    width: 40px;
    height: 40px;
    background: #9d7142;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link-circle-line {
    width: 40px;
    height: 40px;
    background: #06c755;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

/* Map container */
.map-container-contact {
    min-height: 450px;
}

/* Section background */
.section-bg-light {
    background: #f8f9fa;
}

/* Social media section */
.section-title-dark {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.2rem;
}

.section-subtitle-gray {
   /* color: #6c757d;*/
    font-size: 1rem;
}

/* Social cards */
.social-card {
    padding: 1.5rem 1rem;
    border-radius: 15px;
}

.social-card-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
}

.social-card-text {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Social icons */
.social-icon-facebook {
    font-size: 3.5rem;
    color: #1877f2;
    display: inline-block;
    padding: 10px;
}

.social-icon-line {
    font-size: 3.5rem;
    color: #00b900;
    display: inline-block;
    padding: 10px;
}

.social-icon-instagram {
    font-size: 3.5rem;
    color: #e4405f;
    display: inline-block;
    padding: 10px;
}

.social-icon-youtube {
    font-size: 3.5rem;
    color: #ff0000;
    display: inline-block;
    padding: 10px;
}

/* Social buttons */
.btn-facebook {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
    font-weight: 500;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
}

.btn-line {
    background: #00b900;
    border-color: #00b900;
    color: #ffffff;
    font-weight: 500;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
    color: white;
    font-weight: 500;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
}

.btn-instagram:hover,
.btn-instagram:hover i {
    color: #ffffff;
}

.btn-youtube {
    background: #ff0000;
    border: none;
    font-weight: 500;
    padding: 0.6rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
}

/* Working hours card */
.working-hours-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Map iframe */
.map-iframe {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Social follow heading */
.social-follow-heading {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Working hours title */
.working-hours-title {
    color: #9d7142;
    font-weight: 600;
}

.mb-100 {
    margin-bottom: 100px;
}
/* ========== POPUP MODAL ========== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background: rgba(0, 0, 0, 0.75);*/
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popup-overlay.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.popup-container {
    position: relative;
    max-width: 650px;
    width: 90%;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

.popup-overlay.show .popup-container {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.popup-close:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.popup-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-container {
        max-width: 95%;
        width: 95%;
    }

    .popup-close {
        top: -12px;
        right: -12px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .popup-container {
        max-width: 90%;
        width: 90%;
    }

    .popup-close {
        top: -10px;
        right: -10px;
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

/* Hero lead mobile font size */
@media (max-width: 768px) {
    .hero-lead-mobile {
        font-size: 17px !important;
    }

    .section-title-lg {
        font-size: 22px !important;
    }
}

@media (max-width: 576px) {
    .section-title-lg {
        font-size: 19px !important;
    }
}

@media (max-width: 479px) {
    .section-title-lg {
        font-size: 17px !important;
    }

    .section-title {
        font-size: 26px !important;
    }

    .why-section .section-title {
        font-size: 26px !important;
    }

    .nutrition-content {
        padding: 60px 0px 60px 0px;
    }
}

/* FAQ Section - Product Page Color Override (Almond Theme) */
.faq-section-product .faq-item {
    border-color: rgba(167, 119, 70, 0.15);
}

.faq-section-product .faq-item:hover {
    border-color: rgba(167, 119, 70, 0.3);
    box-shadow: 0 4px 12px rgba(167, 119, 70, 0.1);
}

.faq-section-product .faq-question:hover {
    background: rgba(167, 119, 70, 0.05);
}

.faq-section-product .faq-question i {
    color: #a77746 !important;
}

.faq-section-product .faq-number {
  /*  background: linear-gradient(135deg, #a77746 0%, #8b6339 100%);*/
}

/* Trust / Customers Section */
.trust-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.trust-logo-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.trust-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trust-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.trust-logo-item img {
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.trust-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments for trust section */
@media (max-width: 1200px) {
    .trust-logo-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .trust-logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        padding: 60px 0;
    }

    .trust-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trust-logo-item {
        padding: 20px;
    }

    .trust-logo-item img {
        max-height: 100px;
    }
}

@media (max-width: 576px) {
    .trust-section {
        padding: 40px 30px 40px 30px;
    }

    .trust-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .trust-logo-item {
        padding: 20px;
        border-radius: 8px;
    }

    .trust-logo-item img {
        max-width: 100%;
        max-height: none;
        height: auto;
    }
}


.gap-5 {
    gap: 2rem !important;
}
/* Certificate Section - White Background (Product Page Only) */
.certificate-content-white {
    background-color: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .certificate-content-white {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/* Menu / Recipes Section */
.menu-recipes-section {
    padding: 60px 0;
}

.menu-recipe-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(44, 36, 24, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.menu-recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.menu-recipe-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    background: #fff;
}

.menu-recipe-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.menu-recipe-card:hover .menu-recipe-image img {
    transform: scale(1.1);
}

.menu-recipe-content {
    padding: 0 10px;
}

.menu-recipe-title {
    font-size: 20px;
    color: #2c3e50;
    text-align: center;
    margin: 0;
    line-height: 1.4;
    min-height: 56px;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.menu-recipe-card:hover .menu-recipe-title {
    color: #a77746;
}

/* Responsive adjustments for menu recipes section */
@media (max-width: 768px) {
    .menu-recipes-section {
        padding: 60px 0;
    }

    .menu-recipe-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .menu-recipes-section {
        padding: 40px 0;
    }

    .menu-recipe-image {
        border-radius: 8px;
    }

    .menu-recipe-title {
        font-size: 1.2rem;
    }
}
