:root {
    --tf-primary: #ff3366;
    --tf-primary-dark: #e02d5a;
    --tf-secondary: #2a2a2a;
    --tf-bg-card: #ffffff;
    --tf-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --tf-shadow-lg: 0 15px 35px rgba(255, 51, 102, 0.15);
    --tf-shadow-xg: 0 15px 35px rgba(81, 81, 81, 0.15);
    --tf-radius: 22px;
    --tf-transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);

    --clean-primary: #ff3366; 
    --clean-text: #2B211F; 
    --clean-text-muted: #666666;
    --clean-bg-soft: #f9f6f5;
    --clean-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); 
    --clean-radius-lg: 20px; 
    --clean-radius-sm: 12px;

    --tef-cold-main: #2196f3; 
    --tef-cold-dark: #1976d2;
    --tef-cold-bg: #e3f2fd;
    --tef-accent-pink: #ff3366; 
    --tef-text-dark: #333333;
    --tef-text-muted: #666666;
    --tef-shadow-subtle: 0 5px 15px rgba(0,0,0,0.05);
    --tef-shadow-prominent: 0 10px 30px rgba(0,0,0,0.1);
    --tef-radius-xl: 20px;
    --tef-radius-md: 10px;
}

body {
    margin: 0;
    color: var(--text-color);
    background-color: var(--tf-bg-card);
    scroll-behavior: smooth;
    line-height: 1.6;
}

.tef-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.content-spacing {
    padding: 100px 0; 
}

@media (max-width: 1200px) {
    .content-spacing { padding: 60px 15px; }
}

@media (max-width: 600px) {
    .content-spacing { padding: 60px 15px; }
}

.text-pink {
    color: var(--clean-primary);
}

.clean-badge {
    background-color: #FFF0ED;
    color: var(--clean-primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* IDX GLOBAL OVERRIDES & INDEX CONTAINER */
.idx-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.idx-pre-title {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--tf-primary);
    font-weight: 800;
    margin-bottom: 6px;
}

.idx-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--clean-text);
    margin: 0;
}

.idx-title span {
    background: var(--tf-primary-gradient, linear-gradient(45deg, #ff3366, #ff6688));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.idx-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.idx-section-header.center {
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.idx-section-header.center p {
    color: var(--clean-text-muted);
    max-width: 650px;
    margin: 8px 0 0 0;
    font-size: 1rem;
    line-height: 1.6;
}

.idx-view-all-btn {
    color: var(--clean-text);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    transition: var(--tf-transition);
}

.idx-view-all-btn:hover {
    color: var(--tf-primary);
    border-color: var(--tf-primary);
    transform: translateX(4px);
}

.idx-no-data {
    text-align: center;
    color: var(--clean-text-muted);
    grid-column: 1 / -1;
    padding: 40px 0;
}

/* --- Hero Section Main --- */
/* #region */

.tef-hero {
    padding: 180px 0 120px 0;
    position: relative;
    overflow: visible; 
    background: #fff;
    min-height: auto; 
    height: auto; 
}

.tef-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.tef-hero-slider::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.9); 
    z-index: 2;
}

.tef-hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    animation: bgSlider 10s infinite; 
}

.tef-hero-slider .slide:nth-child(2) {
    animation-delay: 5s;
}

@keyframes bgSlider {
    0% { opacity: 0; transform: scale(1); }
    10% { opacity: 1; }
    40% { opacity: 1; }
    50% { opacity: 0; transform: scale(1.1); } 
    100% { opacity: 0; }
}

.tef-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tef-hero-badge {
    display: inline-block;
    background: #fff0f3;
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tef-hero h2 {
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.tef-hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto 45px auto;
}


.tef-hero-search-container {
    max-width: 800px;
    margin: 0 auto 40px auto;

}

.tef-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 100px;
    box-shadow: 0 15px 35px rgba(255, 51, 102, 0.1);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    height: 100%;
}

.tef-search-box:focus-within {
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.tef-search-box input {
    font-family: 'Kanit', sans-serif;
    border: none;
    outline: none;
    padding: 12px 15px;
    width: 100%;
    font-size: 1rem;
}

/* .btn-search-main {
    font-family: 'Kanit', sans-serif;
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
} */

.btn-group-hero {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary-lg, .btn-outline-lg {
    padding: 16px 35px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-primary-lg {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
}

.btn-outline-lg {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

#search-results-hero.hero-search-results {
    position: relative; 
    top: 20px; 
    left: 0;
    right: 0;
    
    width: 100%;
    max-width: 700px; 
    margin: 0 auto;
    
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: none; 
    
    max-height: none; 
    overflow: visible; 
    
    border: 1px solid rgba(255, 51, 102, 0.05);
    text-align: left;
    z-index: 10;
}

.hero-live-search-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    gap: 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #fcfcfc;
    transition: all 0.2s ease;
}

.hero-live-search-item:last-child {
    border-bottom: none;
}

.hero-live-search-item:hover {
    background-color: #fff0f3;
}

.hero-live-item-img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 10px;
    background: #f5f5f5;
}

.hero-live-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-live-item-name {
    font-weight: 600;
    font-size: 1rem;
    color: #2d2d2d;
}

.hero-live-item-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
}

.hero-live-no-result {
    padding: 20px;
    color: #888;
    text-align: center;
    font-size: 0.95rem;
}

.hero-live-search-view-more {
    display: block;
    padding: 15px;
    text-align: center;
    background: #f8f9fa;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-top: 1px solid #eee;
}

.hero-live-search-view-more:hover {
    background: var(--primary-gradient);
    color: white;
}

.hero-live-search-view-more i {
    margin-left: 8px;
    font-size: 0.8rem;
}

#search-results-hero.hero-search-results::-webkit-scrollbar {
    width: 6px;
}
#search-results-hero.hero-search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}
#search-results-hero.hero-search-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.btn-search-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    
    background: linear-gradient(135deg, var(--tf-primary) 0%, var(--tf-primary-dark) 100%);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 16px; 
    
    font-family: 'Kanit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.25), 
                inset 0 4px 4px rgba(255, 255, 255, 0.2);
}

.btn-search-main::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.5s;
}

.btn-search-main:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(255, 51, 102, 0.35);
    filter: brightness(1.1);
}

.btn-search-main:hover::after {
    left: 120%;
}

.btn-search-main:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.2);
}

.btn-search-main i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-search-main:hover i {
    transform: rotate(15deg) scale(1.2);
}

.btn-search-main span {
    position: relative;
    z-index: 1;
}



/* --- Responsive --- */

/* mobile */
@media (max-width: 600px) {
    .tef-hero { padding: 60px 0 60px 0; }
    .tef-hero h2 { font-size: 2.8rem; }

    .btn-group-hero { flex-direction: column; align-items: center; }
    .btn-primary-lg, .btn-outline-lg { width: 100%; max-width: 280px; justify-content: center; }

    .btn-search-main i {display: block;}
    .btn-search-main span {display: none;}

    .tef-search-box #placeholder {font-size: 5px;}

}

/* mini tablet */
@media screen and (min-width: 601px) and (max-width: 768px) {
    .tef-hero { padding: 120px 0 60px 0; }
    .tef-hero h2 { font-size: 2.8rem; }

    .btn-group-hero { flex-direction: column; align-items: center; }
    .btn-primary-lg, .btn-outline-lg { width: 100%; max-width: 280px; justify-content: center; }


}

/* tablet ipad air , pro */
@media screen and (min-width: 601px) and (max-width: 768px) {
    .tef-hero { padding: 120px 0 60px 0; }
    .tef-hero h2 { font-size: 2.8rem; }

    .btn-group-hero { flex-direction: column; align-items: center; }
    .btn-primary-lg, .btn-outline-lg { width: 100%; max-width: 280px; justify-content: center; }


}

.hero-trust-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 15px;
    width: 100%;
}

.hero-trust-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* background: #ffffff;  */
    /* border: 1px solid #f1f5f9;  */
    color: #475569; 
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px; 
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);  */
    transition: all 0.25s ease-in-out;
}

.hero-trust-tags span i {
    font-size: 0.95rem;
}

.hero-trust-tags span i {
    color: #ff4672; 
}

/* .hero-trust-tags span i.fa-comments {
    color: #3b82f6; 
}

.hero-trust-tags span i.fa-store {
    color: #ea580c; 
} */


@media (max-width: 768px) {
    .hero-trust-tags {
        display: none;
        gap: 8px;
        padding: 0 15px;
    }
    
    .hero-trust-tags span {
        font-size: 0.78rem;
        padding: 6px 14px;
    }
}

/* #endregion */
/* /////////////////////////////////////////// */


/* --- About Section Main --- */
/* #region */

.tef-about-us-section {
    padding: 80px 0;
    background-color: var(--light-color);
    overflow: hidden;
}

.tef-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tef-ab-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Side */
.tef-ab-image-content {
    position: relative;
}

.tef-ab-image-stack {
    position: relative;
    z-index: 2;
}

.tef-ab-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    height: 450px;
}

.tef-ab-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-gradient);
    color: white;
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-hover);
    animation: floatVertical 3s ease-in-out infinite;
}

.tef-ab-exp-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.tef-ab-exp-text {
    font-size: 0.85rem;
    font-weight: 300;
}

.tef-ab-image-blob {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
}

/* Text Side */
.tef-ab-tagline {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.tef-ab-title {
    font-size: 2.5rem;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.tef-ab-highlight {
    color: var(--primary-color);
    position: relative;
}

.tef-ab-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Features Grid */
.tef-ab-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.tef-ab-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tef-ab-feature-icon {
    width: 50px;
    height: 50px;
    background: #fff5f7;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
}

.tef-ab-feature-info h4 {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
}

.tef-ab-feature-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}



/* Button */
.tef-ab-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--text-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: 0.3s;
}

.tef-ab-btn:hover {
    background: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

/* Animation */
@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 992px) {
    .tef-ab-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tef-ab-image-content {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    .tef-ab-title {
        font-size: 2rem;
    }
}

/* #endregion */
/* /////////////////////////////////////////// */


/* --- Food Section Main --- */
/* #region */

.tf-main-container {
    height: 100%;
}

.tf-section-header {
    text-align: left;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid var(--tf-primary);
}

.tf-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: linear-gradient(45deg, var(--tf-secondary), var(--tf-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tf-main-subtitle {
    font-size: 1.1rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.tf-header-line {
    flex-grow: 1;
    height: 3px;
    background: linear-gradient(90deg, #eee 0%, transparent 100%);
    margin-bottom: 15px;
    border-radius: 10px;
}

/* category banner section  */
.tf-category-section {
    margin-top: 20px;
    margin-bottom: 60px;
}

.tf-category-label {
    position: relative;
    padding-left: 25px;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--tf-secondary);
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.tf-category-label::before {
    content: "";
    position: absolute;
    left: 0;
    width: 6px;
    height: 30px;
    background: var(--tf-primary);
    border-radius: 10px;
}

.tf-category-label span.count {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    margin-left: 15px;
    letter-spacing: 1px;
}

/* --- Category Banner Style --- */
.tf-category-banner {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: var(--tf-radius);
    overflow: hidden;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    background-color: var(--tf-secondary);
    box-shadow: var(--tf-shadow-xg);
}

.tf-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 60px;
    width: 50%;
}

.tf-banner-badge {
    display: inline-block;
    padding: 6px 16px;
    /* background: var(--tf-primary); */
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tf-banner-title {
    font-size: 2.2rem;
    color: white;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.tf-banner-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    max-width: 400px;
}

.tf-banner-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 70%, transparent 100%);
}

.banner-freeze { 
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); 
}
.banner-dried { 
    background: linear-gradient(135deg, #3e2723 0%, #5d4037 50%, #8d6e63 100%); 
}
.banner-wolffia { 
    background: linear-gradient(135deg, #063819 0%, #71b280 100%); 
}
.banner-samger { 
    background: linear-gradient(135deg, #101010 0%, #43202e 50%, #26191a 100%); 
}

.banner-tef { 
    background: linear-gradient(135deg, #3b3b3b 0%, #170c10 50%, #120505 100%); 
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .tf-category-banner {
        min-height: auto;
        padding: 50px 25px;
        flex-direction: column;
        justify-content: center;
        /* text-align: center; */
    }
    .tf-banner-content {
        width: 100%;
        padding: 0;
    }
    
    /* .tf-banner-img {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 30px;
        order: -1; 
    } */

    .tf-banner-img {
        position: absolute;
        top: 0;
        right: 0;
        width: 70%;
        height: 100%;
        object-fit: cover;
        mask-image: linear-gradient(to button, rgba(0,0,0,1) 70%, transparent 80%);
        -webkit-mask-image: linear-gradient(to button, rgba(0,0,0,1) 70%, transparent 80%);
    }

    .tf-category-banner:hover .tf-banner-img {
        transform: scale(1.05);
    }
    
    .tf-banner-badge {
        font-size: 1.2rem;
        font-weight: 600; 
        text-shadow: 5px 5px 8px rgba(0, 0, 0);
    }

    .tf-banner-title { 
        font-size: 1.8rem; 
        font-weight: bold;
        line-height: 1.3;
        text-shadow: 8px 8px 8px rgb(0, 0, 0), 0 0 100px rgba(0, 0, 0, 0.856);
    }

    .tf-banner-desc {
        font-size: 14px;
        text-shadow: 5px 5px 8px rgba(0, 0, 0);
    }
}

/* Area show food card */
.tf-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

@media (max-width: 768px) {
    .tf-section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .tf-header-line { display: none; }

}

/* btn show all products category */
.tf-tab-action-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 20px 0;
    width: 100%;
}

.tf-btn-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background-color: #111111;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 45px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid #111111;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.tf-btn-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tf-btn-icon {
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.tf-btn-view-all:hover {
    background-color: var(--tf-primary);
    border-color: var(--tf-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--tf-shadow-lg);
}

.tf-btn-view-all:hover .tf-btn-icon {
    transform: translateX(6px);
}

.tf-btn-view-all:hover .tf-btn-count {
    background-color: #ffffff;
    color: var(--tf-primary);
}

.tf-btn-view-all:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.2);
}

@media (max-width: 576px) {
    .tf-tab-action-wrapper {
        padding: 25px 16px 10px 16px;
    }
    
    .tf-btn-view-all {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.75rem;
        gap: 12px;
        border-radius: 12px;
    }
}


/* filter category btn */
.tf-tabs-hub {
    display: flex;
    justify-content: flex-start;
    position: relative;
    gap: 45px;
    margin: 40px 0 50px 0;
    padding: 0 10px 15px 10px;
    border-bottom: 2px solid #EFEAE6;
    max-width: 100%;
    width: 100%;
}

.tf-tab-btn {
    font-family: 'Noto Sans Thai', sans-serif;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 5px;
    font-size: 1.15rem;
    font-weight: 500;
    color: #888888;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tf-tab-btn:hover:not(.active) {
    color: #111111;
}

.tf-tab-btn.active {
    color: #111111;
    font-weight: 700;
}

.tf-tab-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #E0533C 0%, #ff3366 100%);
    border-radius: 10px 10px 0 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.tf-tab-panel {
    display: none !important;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.tf-tab-panel.active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .tf-tabs-hub {
        gap: 25px;
        padding-bottom: 12px;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .tf-tabs-hub::-webkit-scrollbar {
        display: none; 
    }
    
    .tf-tab-btn {
        font-size: 1rem;
        padding: 6px 3px;
    }
    
    .tf-tab-underline {
        height: 3px;
        bottom: -2px;
    }
}


/* #endregion */
/* /////////////////////////////////////////// */


/* BEST SELL SAMGER FOOD */
/* #region */

.tef-clean-bestsellers {
    padding: 80px 0;
    background-color: #ffffff;
}

.tef-clean-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tef-clean-section-title {
    margin-bottom: 45px;
}

.tef-clean-section-title h2 {
    font-size: 2.2rem;
    color: var(--clean-text);
    font-weight: 700;
}

.clean-bs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.clean-bs-card {
    background: #ffffff;
    border: 1px solid #EFEAE6;
    border-radius: var(--clean-radius-lg);
    overflow: hidden;
    box-shadow: var(--clean-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clean-bs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(224, 83, 60, 0.08);
}

.clean-card-media {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.clean-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clean-ribbon {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--clean-primary);
    color: white;
    padding: 5px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    z-index: 2;
}

.clean-card-body {
    padding: 25px;
}

.clean-card-body h3 {
    font-size: 1.25rem;
    color: var(--clean-text);
    margin-bottom: 10px;
    font-weight: 600;
}

.clean-card-body p {
    color: var(--clean-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 48px;
    overflow: hidden;
}

.clean-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #F5EFEF;
    padding-top: 15px;
}

.clean-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--clean-primary);
}

.clean-btn-view {
    color: var(--clean-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.clean-btn-view:hover {
    gap: 8px;
}

/* #endregion */
/* /////////////////////////////////////////// */


/* SHIPPING & QUALITY */
/* #region */

.tef-clean-shipping {
    padding: 100px 0; 
    background-color: #f9fbfd; 
}

.tef-clean-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.clean-ship-wrapper {
    display: flex;
    flex-wrap: wrap; 
    gap: 40px; 
    align-items: center;
    justify-content: space-between;
}

.clean-ship-info {
    flex: 0 1 52%; 
    text-align: left;
}

.clean-badge {
    display: inline-block;
    padding: 6px 15px;
    background-color: var(--tef-accent-pink);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(255, 102, 161, 0.3);
}

.clean-ship-info h2 {
    font-size: 2.6rem; 
    line-height: 1.25;
    font-weight: 800;
    color: var(--tef-text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-pink {
    color: var(--tef-accent-pink);
}

.clean-lead-text {
    color: var(--tef-text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

.clean-ship-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clean-step-item {
    display: flex;
    gap: 20px;
    background: #ffffff;
    padding: 25px; 
    border-radius: var(--tef-radius-md);
    box-shadow: var(--tef-shadow-subtle);
    border: 1px solid #eee; 
    transition: all 0.3s ease;
}

.clean-step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--tef-shadow-prominent);
    border-color: var(--tef-cold-bg);
}

.clean-step-item .step-icon {
    width: 60px; 
    height: 60px;
    /* background: var(--tef-cold-bg);  */
    /* color: var(--tef-cold-main); */
    background-color: #fcfcfc;
    color: #ff547e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.6rem; 
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: inset 0 0 10px rgba(33, 150, 243, 0.1);
}

.step-text h4 {
    font-size: 1.2rem;
    color: var(--tef-text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.clean-step-item p {
    color: var(--tef-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.clean-ship-display {
    flex: 0 1 43%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clean-image-box {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.clean-foam-box-mockup {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    background-color: #ffffff;
    border: 15px solid #fff;
    border-radius: var(--tef-radius-xl);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.1),
        0 10px 15px rgba(0,0,0,0.05),
        inset 0 0 30px rgba(0,0,0,0.02);
    
    outline: 2px solid var(--tef-cold-bg);
}

.clean-icepack-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.05) 50%, rgba(255, 255, 255, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.clean-product-img {
    max-width: 100%;
    height: auto;
    max-height: 320px;
    border-radius: 15px;
    object-fit: contain;
    z-index: 2;
    transition: all 0.5s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2)); 
}

.clean-foam-box-mockup:hover .clean-product-img {
    transform: scale(1.08) rotate(-3deg); 
}

.badge-fresh {
    position: absolute;
    top: -15px;
    left: -15px;
    z-index: 10;
    background: linear-gradient(135deg, var(--tef-cold-main), var(--tef-cold-dark));
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive */
@media (max-width: 991px) {
    .tef-clean-shipping {
        padding: 70px 0;
    }
    .clean-ship-wrapper {
        flex-direction: column-reverse; 
        gap: 50px;
    }
    .clean-ship-info, .clean-ship-display {
        flex: 0 1 100%;
        text-align: center;
    }
    .clean-badge {
        margin-left: auto;
        margin-right: auto;
    }
    .clean-ship-info h2 {
        font-size: 2.2rem;
    }
    .clean-lead-text {
        margin-left: auto;
        margin-right: auto;
    }
    .clean-step-item {
        text-align: left;
    }
}

/* #endregion */
/* /////////////////////////////////////////// */


/* CUSTOMER REVIEWS */
/* #region */

:root {
    --color-line: #06C755;
    --color-grab: #00B14F;
    --color-shopee: #EE4D2D;
    --text-review-dark: #222222;
    --text-review-muted: #777777;
    --radius-review: 16px;
}

.tef-clean-reviews {
    padding: 100px 0;
    background-color: #f8fafc; 
}

.clean-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--clean-primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 12px;
}

.clean-review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.clean-review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: var(--radius-review);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clean-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.07);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.review-stars {
    color: #FFB703; 
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.platform-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.platform-icons {
    width: 15px;
    height: 15px;
}

.clean-review-card.platform-line {
    border-top: 4px solid var(--color-line);
}
.clean-review-card.platform-line .platform-tag {
    background-color: #E6F9EE;
    color: var(--color-line);
}

.clean-review-card.platform-grab {
    border-top: 4px solid var(--color-grab);
}
.clean-review-card.platform-grab .platform-tag {
    background-color: #E6F7ED;
    color: var(--color-grab);
}

.clean-review-card.platform-shopee {
    border-top: 4px solid var(--color-shopee);
}
.clean-review-card.platform-shopee .platform-tag {
    background-color: #FDF1ED;
    color: var(--color-shopee);
}

.review-text {
    color: var(--text-review-dark);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 25px;
    font-style: italic; 
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.user-avatar {
    font-size: 2.2rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
}

.user-info h5 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    color: var(--text-review-dark);
    font-weight: 700;
}

.review-time {
    display: block;
    font-size: 0.8rem;
    color: var(--text-review-muted);
}

@media (max-width: 1200px) {
    .clean-review-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 2fr));
        gap: 30px;
        margin-top: 50px;
    }
}

@media (max-width: 600px) {
    .clean-review-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .clean-review-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .clean-review-card {
        padding: 20px;
    }
}



/* #endregion */
/* /////////////////////////////////////////// */


/* SEO BLOG & CONTENT */
/* #region */

.tef-blogfst-section {
    padding: 90px 100px;
    background-color: var(--bg-main);
}

.tef-blogfst-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 20px;
    max-width: 1200px;
}

.tef-blogfst-section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 10px 0 0 0;
    letter-spacing: -0.5px;
}

.tef-blogfst-view-all-desktop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: gap 0.2s ease;
}

.tef-blogfst-view-all-desktop:hover {
    gap: 14px;
}

.tef-blogfst-modern-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.tef-blogfst-hero-card {
    background: #ffffff;
    border-radius: var(--radius-premium);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tef-blogfst-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.tef-blogfst-hero-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.tef-blogfst-hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tef-blogfst-hero-card:hover .tef-blogfst-hero-img-wrapper img {
    transform: scale(1.03);
}

.tef-blogfst-hero-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.tef-blogfst-hero-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tef-blogfst-hero-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.tef-blogfst-hero-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.tef-blogfst-hero-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.tef-blogfst-hero-content h3 a:hover {
    color: var(--primary-color);
}

.tef-blogfst-hero-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 24px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tef-blogfst-link-premium {
    margin-top: auto;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tef-blogfst-side-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    /* justify-content: space-between; */
}

.tef-blogfst-side-row-card {
    background: #ffffff;
    border-radius: var(--radius-premium);
    overflow: hidden;
    border: 1px solid var(--border-light);
    display: flex;
    padding: 16px;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.tef-blogfst-side-row-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

.tef-blogfst-side-thumb {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.tef-blogfst-side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tef-blogfst-side-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tef-blogfst-side-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.tef-blogfst-side-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tef-blogfst-side-info h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.tef-blogfst-side-info h3 a:hover {
    color: var(--primary-color);
}

.tef-blogfst-side-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tef-blogfst-view-all-mobile-wrapper {
    display: none;
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .tef-blogfst-section {padding: 15px;}

    .tef-blogfst-modern-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .tef-blogfst-view-all-desktop {
        display: none;
    }
    .tef-blogfst-view-all-mobile-wrapper {
        display: block;
    }
    .tef-blogfst-header-flex {
        justify-content: center;
        text-align: center;
    }

     .tef-blogfst-view-all-mobile-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        width: 100%;
    }

    .tef-blogfst-view-all-mobile-wrapper .tefblog-ad-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px; 
        
        background-color: #ff3366;
        color: #ffffff;
        
        font-size: 15px;
        font-weight: 500;
        padding: 12px 32px;
        border-radius: 50px; 
        
        text-decoration: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease;
    }

    .tef-blogfst-view-all-mobile-wrapper .tefblog-ad-btn:active {
        transform: scale(0.95); 
        background-color: #ff3366;
    }
}

@media (max-width: 576px) {
    .tef-blogfst-section {padding: 15px;}

    .tef-blogfst-section-title h2 {
        font-size: 1.7rem;
    }
    .tef-blogfst-side-row-card {
        flex-direction: column;
        padding: 16px;
    }
    .tef-blogfst-side-thumb {
        width: 100%;
        height: 180px;
    }
    .tef-blogfst-hero-img-wrapper {
        height: 220px;
    }

    .tef-blogfst-view-all-mobile-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        width: 100%;
    }

    .tef-blogfst-view-all-mobile-wrapper .tefblog-ad-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px; 
        
        background-color: #ff3366;
        color: #ffffff;
        
        font-size: 15px;
        font-weight: 500;
        padding: 12px 32px;
        border-radius: 50px; 
        
        text-decoration: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease;
    }

    .tef-blogfst-view-all-mobile-wrapper .tefblog-ad-btn:active {
        transform: scale(0.95); 
        background-color: #ff3366;
    }
    
}

/* #endregion */
/* /////////////////////////////////////////// */


/* B2B / WHOLESALE */
/* #region */

.tef-clean-b2b {
    padding: 40px 0 80px 0;
    background: #ffffff;
}

.clean-b2b-card {
    background: var(--clean-bg-soft);
    border: 1px solid #EFEAE6;
    padding: 50px;
    border-radius: var(--clean-radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.b2b-badge {
    color: var(--clean-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.b2b-info h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--clean-text);
    font-weight: 700;
}

.b2b-info p {
    color: var(--clean-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.b2b-btn-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.btn-clean-line {
    background: #06C755;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--clean-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-clean-line:hover {
    transform: translateY(-2px);
    background: #05b34c;
}

.b2b-hint {
    font-size: 0.8rem;
    color: #888;
}

/* --- B2B & Wholesale Section Style --- */
.tef-clean-b2b {
    padding: 60px 0;
    background-color: var(--bg-gray);
}

.tef-clean-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.clean-b2b-card {
    background: var(--light-color);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.b2b-info {
    flex: 1;
}

.b2b-badge {
    background: #fff5f7;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.b2b-info h2 {
    font-size: 1.8rem;
    font-weight: 850;
    color: var(--text-color);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.b2b-info p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.b2b-btn-zone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.b2b-action-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-clean-line {
    background-color: #06C755;
    color: var(--light-color);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.2);
    transition: transform 0.25s, box-shadow 0.25s, background-color 0.25s;
}

.btn-clean-line:hover {
    background-color: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
}

.btn-clean-contact {
    background: var(--primary-gradient);
    color: var(--light-color);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.2);
    transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
}

.btn-clean-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    opacity: 0.95;
}

.b2b-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

@media (max-width: 992px) {
    .tef-clean-b2b {
        padding: 40px 0;
    }
    .clean-b2b-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 24px;
        gap: 32px;
    }
    .b2b-info p {
        max-width: 100%;
    }
    .b2b-btn-zone {
        width: 100%;
        align-items: center;
    }
    .b2b-action-group {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .b2b-info h2 {
        font-size: 1.5rem;
    }
    .b2b-action-group {
        flex-direction: column;
        gap: 12px;
    }
    .btn-clean-line,
    .btn-clean-contact {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    .btn-clean-line:hover,
    .btn-clean-contact:hover {
        transform: none;
    }
}
/* #endregion */
/* /////////////////////////////////////////// */


/* SAMGER FRANCHISE PREVIEW */
/* #region */

.tf-franchise-section {
    background: linear-gradient(135deg, #e4002b 0%, #a8001e 50%, #7a0013 100%);
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
    font-family: 'Noto Sans Thai', sans-serif;
}

.tf-franchise-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.tf-franchise-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tf-franchise-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.tf-title-highlight {
    background-color: #ffffff;
    color: #e4002b;
    padding: 2px 14px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 5px;
}

.tf-franchise-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}

.tf-btn-franchise {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #e4002b;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #ffffff;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    margin-bottom: 50px;
}

.tf-btn-franchise svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.tf-btn-franchise:hover {
    background-color: #111111;
    color: #ffffff;
    border-color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.tf-btn-franchise:hover svg {
    transform: translateX(4px);
}

.tf-gallery-sub {
    display: flex;
    position: relative;
    width: 100%;
    height: 220px;
    margin-top: 20px;
}

.tf-img-wrapper-medium {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 38%;
    transform: rotate(-4deg);
    z-index: 2;
}

.tf-img-medium {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 4px solid #ffffff;
}

.tf-img-wrapper-small {
    position: absolute;
    left: 32%;
    top: -10px;
    width: 35%;
    transform: rotate(5deg);
    z-index: 3;
}

.tf-img-small {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    border: 4px solid #ffffff;
}

.tf-img-wrapper-kiosk {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38%;
    transform: rotate(-3deg);
    z-index: 1;
}

.tf-img-kiosk {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 4px solid #ffffff;
}

.tf-badge-sticker {
    position: absolute;
    font-size: 1.15rem;
    font-weight: 800;
    color: #111111;
    white-space: nowrap;
    z-index: 4;
    text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
}

.text-top {
    top: -25px;
    left: 5px;
}

.text-bottom {
    bottom: -25px;
    left: 15px;
}

.text-kiosk {
    top: -25px;
    right: 5px;
}

.tf-franchise-gallery-main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tf-main-card-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    z-index: 2;
}

.tf-img-main {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    border: 6px solid #ffffff;
}

.tf-graphic-shape-1 {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255);
    border-radius: 28px;
    z-index: 1;
    transform: rotate(4deg);
}

.tf-graphic-shape-2 {
    position: absolute;
    bottom: -35px;
    left: -25px;
    width: 130px;
    height: 130px;
    background-color: rgba(255, 255, 255, 0.303);
    border-radius: 50%;
    z-index: 1;
}

@media (max-width: 992px) {
    .tf-franchise-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .tf-franchise-content {
        align-items: center;
        text-align: center;
    }
    
    .tf-franchise-gallery-main {
        order: -1;
    }
    
    .tf-gallery-sub {
        max-width: 600px;
        margin: 20px auto 0 auto;
    }
}

@media (max-width: 576px) {
    .tf-franchise-title {
        font-size: 1.8rem;
    }
    
    .tf-btn-franchise {
        width: 100%;
        justify-content: center;
    }
    
    .tf-gallery-sub {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 45px;
    }
    
    .tf-img-wrapper-medium, .tf-img-wrapper-small, .tf-img-wrapper-kiosk {
        position: relative;
        width: 90%;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        margin: 0 auto;
    }
    
    .text-top, .text-bottom, .text-kiosk {
        top: -25px;
        left: 10px;
        right: auto;
        bottom: auto;
    }
}
/* #endregion */
/* /////////////////////////////////////////// */


/* FREEZE DRY FOOD SAMGER */
/* #region */

.tf-samger-products-section {
    background-color: #fafafa; 
    padding: 100px 0;
    width: 100%;
    overflow: hidden;
    font-family: 'Noto Sans Thai', sans-serif;
}

.tf-samger-products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 90px; 
}

.tf-samger-product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tf-samger-product-row.tf-row-reverse {
    grid-template-columns: 1fr 1fr;
}
.tf-samger-product-row.tf-row-reverse .tf-samger-product-content {
    order: 2;
}
.tf-samger-product-row.tf-row-reverse .tf-samger-product-visual {
    order: 1;
}

.tf-samger-product-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tf-samger-product-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.tf-tag-frozen {
    background-color: #e3f2fd;
    color: #0d47a1;
}

.tf-tag-dry {
    background-color: #fff3e0;
    color: #e65100;
}

.tf-samger-product-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.3;
    margin-bottom: 18px;
}

.tf-samger-text-highlight {
    color: #e4002b;
}

.tf-samger-product-desc {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 400;
}

.tf-samger-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.tf-samger-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.tf-samger-btn-frozen {
    background-color: #111111;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tf-samger-btn-frozen:hover {
    background-color: #e4002b;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(228, 0, 43, 0.25);
}

.tf-samger-btn-frozen:hover svg {
    transform: translateX(4px);
}

.tf-samger-btn-dry {
    background-color: #e4002b;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(228, 0, 43, 0.15);
}

.tf-samger-btn-dry:hover {
    background-color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}

.tf-samger-btn-dry:hover svg {
    transform: translateX(4px);
}

.tf-samger-product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tf-samger-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    z-index: 2;
}

.tf-samger-img-main {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 6px solid #ffffff;
}

.tf-samger-shape-deco {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    z-index: 1;
}

.tf-visual-frozen .tf-samger-shape-deco {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    top: 15px;
    left: 15px;
    transform: rotate(2deg);
}

.tf-visual-dry .tf-samger-shape-deco {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    top: 15px;
    right: 15px;
    transform: rotate(-2deg);
}

@media (max-width: 992px) {
    .tf-samger-products-container {
        gap: 70px;
    }
    
    .tf-samger-product-row, 
    .tf-samger-product-row.tf-row-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tf-samger-product-row.tf-row-reverse .tf-samger-product-content,
    .tf-samger-product-row.tf-row-reverse .tf-samger-product-visual {
        order: initial;
    }
    
    .tf-samger-product-content {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .tf-samger-products-section {
        padding: 60px 0;
    }
    
    .tf-samger-product-title {
        font-size: 1.8rem;
    }
    
    .tf-samger-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tf-samger-visual-wrapper {
        max-width: 100%;
        padding: 0 10px;
    }
}
/* #endregion */
/* /////////////////////////////////////////// */


/* INTERMISSION: INTRODUCTION TO WOLFFIA */
/* #region */
.tf-transition-intro {
    /* background-color: #fcfdfc; */
    padding: 100px 0 60px 0;
    width: 100%;
    text-align: center;
    font-family: 'Noto Sans Thai', sans-serif;
    position: relative;
}

.tf-intro-container {
    max-width: 800px; 
    margin: 0 auto;
    padding: 0 20px;
}

.tf-intro-badge {
    display: inline-block;
    background-color: #e8f5e9;
    color: #1b4332;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.tf-intro-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.4;
    margin-bottom: 20px;
}

.tf-intro-subtext {
    font-size: 1.15rem;
    color: #555555;
    line-height: 1.8;
    font-weight: 400;
}

.tf-intro-subtext strong {
    color: #2cb154; 
    font-weight: 700;
}

.tf-intro-line {
    width: 60px;
    height: 4px;
    background-color: #2cb154;
    margin: 40px auto 0 auto;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .tf-transition-intro {
        padding: 70px 0 40px 0;
    }
    
    .tf-intro-heading {
        font-size: 1.7rem;
    }
    
    .tf-intro-subtext {
        font-size: 1rem;
    }
}
/* #endregion */
/* /////////////////////////////////////////// */


/* I-WOLFFIA I KAI PHAM BRAND */
/* #region */

.tf-wolffia-section {
    /* background: linear-gradient(135deg, #0f4c3a 0%, #1b7348 40%, #2cb154 100%); */
    padding: 90px 0;
    width: 100%;
    overflow: hidden;
    font-family: 'Noto Sans Thai', sans-serif;
}

.tf-wolffia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.tf-wolffia-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tf-wolffia-content img {
    width: 125px;
    margin-bottom: 16px;
}

.tf-wolffia-tag {
    background-color: #21e44b;
    color: #0c3b2e;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(57, 231, 95, 0.3);
}

.tf-wolffia-title {
    font-size: 2.6rem;
    font-weight: 800;
    /* color: #ffffff; */
    color: #0c3b2e;
    line-height: 1.3;
    margin-bottom: 20px;
}

.tf-wolffia-highlight {
    color: #39e75f;
    /* text-shadow: 0 0 15px rgba(57, 231, 95, 0.4); */
}

.tf-wolffia-desc {
    font-size: 1.05rem;
    /* color: #f1fbf2; */
    color: #0c3b2e;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 500;
}

.tf-btn-wolffia {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    color: #0f4c3a;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(15, 76, 58, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.tf-btn-wolffia svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.tf-btn-wolffia:hover {
    background-color: #111111;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tf-btn-wolffia:hover svg {
    transform: translateX(5px);
}

.tf-wolffia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
}

.tf-grid-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    height: 220px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tf-grid-item:hover {
    transform: translateY(-5px);
}

.tf-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tf-grid-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #ffffff;
    color: #0f4c3a;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tf-item-card-green {
    background-color: #2cb154;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    color: #ffffff;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.2);
}

.tf-item-card-green h3 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.tf-card-dot {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px #ffffff;
}

.tf-item-card-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.tf-item-card-glass p {
    font-size: 1.8rem;
    font-weight: 800;
    color: #39e75f;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .tf-wolffia-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .tf-wolffia-content {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .tf-wolffia-title {
        font-size: 2rem;
    }
    
    .tf-btn-wolffia {
        width: 100%;
        justify-content: center;
    }
    
    .tf-wolffia-grid {
        grid-template-columns: 1fr;
    }
    
    .tf-grid-item {
        height: 180px;
    }
    .tf-item-card-green, .tf-item-card-glass {display: none;}
}
/* #endregion */
/* /////////////////////////////////////////// */


/* ACTIVITY */
/* #region */

.idx-act-section {
    padding: 100px 0;
    background: #ffffff;
}

.idx-act-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.idx-act-card {
    background: var(--tf-bg-card);
    border-radius: var(--tf-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--clean-shadow);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--tf-transition);
}

.idx-act-card:hover {
    transform: translateY(-8px);
}

.act-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f1f5f9;
}

.act-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--tf-transition);
}

.idx-act-card:hover .act-img-wrapper img {
    transform: scale(1.04);
}

.act-info-box {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.act-date {
    font-size: 0.8rem;
    color: var(--clean-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.idx-act-card.spotlight {
    grid-column: span 2;
    grid-row: span 2;
    box-shadow: var(--tf-shadow-lg);
    border: 1px solid rgba(255, 51, 102, 0.1);
}

.idx-act-card.spotlight .act-img-wrapper {
    aspect-ratio: 16 / 9;
}

.idx-act-card.spotlight .act-info-box {
    padding: 32px;
}

.idx-act-card.spotlight h3 {
    font-size: 1.6rem;
    font-weight: 850;
    color: var(--clean-text);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.idx-act-card.spotlight p {
    font-size: 0.95rem;
    color: var(--clean-text-muted);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.spotlight-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--tf-primary);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(255, 51, 102, 0.3);
}

.act-read-more {
    font-weight: 700;
    color: var(--tf-primary);
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.idx-act-card.standard {
    grid-column: span 1;
}

.idx-act-card.standard .act-img-wrapper {
    aspect-ratio: 1 / 1; 
}

.idx-act-card.standard h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--clean-text);
    margin: 0 0 16px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.act-read-more-sm {
    font-weight: 700;
    color: var(--clean-text);
    text-decoration: none;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: color 0.2s;
}

.idx-act-card.standard:hover .act-read-more-sm {
    color: var(--tf-primary);
}

/* #endregion */
/* /////////////////////////////////////////// */


/* ANNOUNCEMENT */
/* #region */

.idx-ann-section {
    padding: 100px 0;
    /* background-color: var(--clean-bg-soft); */
}

.idx-ann-board {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}

.idx-ann-intro {
    position: sticky;
    top: 40px;
}

.idx-badge-alt {
    background: #ffffff;
    color: var(--clean-text);
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
}

.idx-ann-intro h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--clean-text);
    margin: 0 0 16px 0;
    line-height: 1.25;
}

.idx-ann-intro h2 span {
    background: linear-gradient(45deg, var(--tf-primary), #ff6688);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.idx-ann-intro p {
    font-size: 0.98rem;
    color: var(--clean-text-muted);
    line-height: 1.65;
    margin: 0 0 32px 0;
}

.idx-main-ann-btn {
    background: var(--tf-secondary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--clean-radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--tf-shadow-xg);
    transition: var(--tf-transition);
}

.idx-main-ann-btn:hover {
    background: var(--tf-primary);
    transform: translateY(-2px);
    box-shadow: var(--tf-shadow-lg);
}

/* Feed ทรงสตรีปพรีเมียม */
.idx-ann-feed {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.idx-ann-strip-item {
    background: #ffffff;
    border-radius: var(--clean-radius-lg);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: var(--clean-shadow);
    border: 1px solid rgba(0,0,0,0.01);
    transition: var(--tf-transition);
}

.idx-ann-strip-item:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.ann-strip-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #cbd5e1;
}

.idx-ann-strip-item[data-type="recruitment"] .ann-strip-indicator { background: #0ea5e9; }
.idx-ann-strip-item[data-type="government"] .ann-strip-indicator { background: #f59e0b; }
.idx-ann-strip-item[data-type="general"] .ann-strip-indicator { background: #94a3b8; }

.ann-strip-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.ann-strip-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--clean-text-muted);
    text-transform: uppercase;
}

.idx-ann-strip-item[data-type="recruitment"] .ann-strip-tag { color: #0369a1; }
.idx-ann-strip-item[data-type="government"] .ann-strip-tag { color: #b45309; }

.ann-strip-date {
    font-size: 0.78rem;
    color: var(--clean-text-muted);
}

.ann-strip-main h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--clean-text);
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inline-urgent-dot {
    width: 8px;
    height: 8px;
    background: var(--tf-primary);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.ann-strip-main p {
    font-size: 0.92rem;
    color: var(--clean-text-muted);
    line-height: 1.5;
    margin: 0 0 14px 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ann-strip-action {
    border-top: 1px dashed #e2e8f0;
    padding-top: 10px;
}

.contact-txt {
    font-size: 0.8rem;
    color: var(--clean-text-muted);
}

/* #endregion */
/* /////////////////////////////////////////// */


/* FAQ */
/* #region */

.idx-faq-section {
    padding: 100px 0;
    background: #ffffff;
}

.idx-faq-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.idx-faq-box {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--tf-radius);
    padding: 36px;
    box-shadow: var(--clean-shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--tf-transition);
}

.idx-faq-box:hover {
    border-color: rgba(255, 51, 102, 0.2);
    box-shadow: var(--tf-shadow-lg);
    transform: translateY(-4px);
}

.faq-icon-sphere {
    width: 48px;
    height: 48px;
    background: #fff5f7;
    color: var(--tf-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.faq-body h3 {
    font-size: 1.15rem;
    font-weight: 850;
    color: var(--clean-text);
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.faq-body p {
    font-size: 0.92rem;
    color: var(--clean-text-muted);
    line-height: 1.6;
    margin: 0;
}

.faq-body p strong {
    color: var(--tf-primary);
    font-weight: 700;
}


/* #endregion */
/* /////////////////////////////////////////// */


/* RESPONSIVE RESPONSIVENESS */

@media (max-width: 1200px) {
    .idx-act-section {
        padding: 80px 0;
    }
    .idx-act-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .idx-act-card.spotlight {
        grid-column: span 2;
        grid-row: span 1;
    }
    .idx-act-card.standard {
        grid-column: span 1;
    }
    .idx-faq-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .clean-ship-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .clean-b2b-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }
    .clean-blog-grid {
        grid-template-columns: 1fr;
    }
    .idx-ann-board {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .idx-ann-intro {
        position: static;
    }
    .idx-act-card.spotlight .act-info-box {
        padding: 24px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .idx-act-section {
        padding: 60px 0;
    }
    .idx-act-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .idx-act-card.spotlight {
        grid-column: span 2;
        grid-row: span 1;
    }
    .idx-act-card.spotlight .act-info-box {
        padding: 24px;
    }

    .idx-act-card.standard {
        grid-column: span 1;
    }
    .idx-act-card.standard .act-info-box {
        padding: 16px;
    }
    .idx-act-card.standard h3 {
        font-size: 1rem; 
        margin-bottom: 12px; 
    }
    .idx-act-card.standard .act-read-more-sm {
        font-size: 0.8rem; 
    }
}

@media (max-width: 600px) {
    .tef-clean-section-title h2, 
    .clean-ship-info h2 {
        font-size: 1.75rem;
    }
    .b2b-info h2 {
        font-size: 1.5rem;
    }
    .contents {
        margin-top: 60px;
    }
    .clean-blog-card {
        flex-direction: column;
    }
    .blog-img {
        width: 100%;
        height: 200px;
    }
    .blog-content {
        width: 100%;
        padding: 20px;
    }
    .idx-title { 
        font-size: 2rem; 
    }
    .idx-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .idx-view-all-btn { 
        width: 100%; 
        justify-content: center; 
    }
    .idx-act-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .idx-act-card.spotlight {
        grid-column: span 1;
        grid-row: span 1;
    }
    .idx-act-card.spotlight h3 {
        font-size: 1.3rem;
        font-weight: 800;
    }
    .idx-act-card.spotlight p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    .idx-act-card.spotlight .act-info-box {
        padding: 24px;
    }
    .idx-act-section {
        padding: 48px 0;
    }
    .idx-act-card.standard .act-img-wrapper {
        aspect-ratio: 16 / 10;
    }
    .idx-act-card:hover {
        transform: none;
    }
    .idx-act-card:hover .act-img-wrapper img {
        transform: none;
    }
    .idx-faq-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .idx-act-section {
        padding: 48px 0;
    }
    .idx-act-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    .idx-act-card.spotlight,
    .idx-act-card.standard {
        grid-column: span 1;
    }
    .idx-act-card.spotlight {
        grid-row: span 1;
    }
    .idx-act-card.spotlight h3 {
        font-size: 1.3rem;
        font-weight: 800;
    }
    .idx-act-card.spotlight p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    .idx-act-card.standard .act-img-wrapper {
        aspect-ratio: 16 / 10;
    }
    .idx-act-card:hover {
        transform: none;
    }
    .idx-act-card:hover .act-img-wrapper img {
        transform: none;
    }
}