/* ============================================
   Beer6.shop - Main Stylesheet
   Color Scheme: #FFFFFF, #FFDE00, #000000
   ============================================ */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border-left: 2px solid rgba(255, 222, 0, 0.15);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, 
        #FFE44D 0%, 
        #FFDE00 25%, 
        #FFC700 50%, 
        #FFB800 75%, 
        #FFA500 100%);
    border-radius: 7px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 222, 0, 0.3);
    position: relative;
}

::-webkit-scrollbar-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(0, 0, 0, 0.2) 100%);
    border-radius: 7px;
    pointer-events: none;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, 
        #FFDE00 0%, 
        #FFC700 25%, 
        #FFB800 50%, 
        #FFA500 75%, 
        #FF8C00 100%);
    box-shadow: 
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(255, 222, 0, 0.5),
        0 0 25px rgba(255, 222, 0, 0.3);
    border-color: rgba(255, 222, 0, 0.75);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, 
        #FFC700 0%, 
        #FFB800 25%, 
        #FFA500 50%, 
        #FF8C00 75%, 
        #FF6B00 100%);
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.5),
        inset 0 -2px 6px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 222, 0, 0.6);
}

/* Screen-reader only (SEO H1, etc.) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #FFDE00 #1a1a1a;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kanit', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ============================================
   Header Layout 1: Social & Navigation
   Background: Gradient #FFD800 with elegant design
   ============================================ */
.header-top {
    background: linear-gradient(135deg, #FFE44D 0%, #FFD800 50%, #FFC700 100%);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #FFD800;
    border-radius: 50%;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.social-links a:hover {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFDE00 100%);
    color: #000000;
    border: 2px solid #000000;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.3);
    transform: translateY(-1px) scale(1.05);
}

.top-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.top-nav a {
    color: #000000;
    font-weight: 500;
    font-size: 13px;
    padding: 4px 12px;
    position: relative;
    border-radius: 15px;
    display: inline-block;
}

.top-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    transition: width 0.25s ease, left 0.25s ease;
    transform: translateX(-50%);
    transform-origin: center;
}

.top-nav a:hover::after {
    width: 80%;
}

.top-nav a:hover {
    color: #000000;
}

.top-nav a.active {
    color: #000000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.18) 100%);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 600;
}

.top-nav a.active::after {
    width: 80%;
}

/* ============================================
   Header Layout 2: Logo, Search, Cart
   Background: #000000
   ============================================ */
.header-main {
    background-color: #000000;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
    max-width: 180px;
    display: block;
    transition: all 0.3s ease;
    object-fit: contain;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo a:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.search-bar {
    flex: 1;
    max-width: 500px;
    display: flex;
    gap: 0;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #FFDE00;
    border-right: none;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 15px;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.search-bar input::placeholder {
    color: #666;
}

.search-bar button {
    padding: 12px 25px;
    background: linear-gradient(135deg, #FFDE00 0%, #FFC700 100%);
    color: #000000;
    border: 2px solid #FFDE00;
    border-left: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.search-bar button:hover {
    background: linear-gradient(135deg, #FFDE00 0%, #FFC700 50%, #FFA500 100%);
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 222, 0, 0.5);
    border-color: #FFC700;
}

.search-bar button:active {
    transform: translateY(0);
}

.search-bar-wrap {
    position: relative;
    flex: 1;
    max-width: 500px;
}

.search-bar-wrap .search-bar {
    max-width: none;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: #FFF;
    border: 1px solid rgba(160, 125, 20, 0.4);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-suggestions.is-visible {
    opacity: 1;
    visibility: visible;
}

.search-suggestions-title {
    margin: 0 14px 8px;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-suggestion-item {
    display: block;
    width: 100%;
    padding: 10px 20px;
    border: none;
    background: none;
    font-size: 15px;
    color: #1a1a1a;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: inherit;
}

.search-suggestion-item:hover {
    background: rgba(255, 222, 0, 0.15);
}

.cart-icon {
    position: relative;
    overflow: visible;
}

.cart-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FFDE00 0%, #FFC700 100%);
    color: #000000;
    border-radius: 12px;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 222, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cart-icon a:hover {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFDE00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 222, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.cart-icon a:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 222, 0, 0.3);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #000000;
    color: #FFDE00;
    border: 2px solid #FFDE00;
    border-radius: 12px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 0 5px;
    line-height: 1;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-icon:hover .cart-count {
    transform: translateY(-2px);
}

.cart-icon a:active {
    transform: translateY(0);
}

.cart-icon a:active ~ .cart-count {
    transform: translateY(0);
}

/* Hamburger - แสดงเฉพาะมือถือ */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFDE00;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.hamburger:hover {
    background: rgba(255, 222, 0, 0.2);
    color: #FFF;
}

.hamburger.is-active {
    background: rgba(255, 222, 0, 0.25);
    color: #FFF;
}

/* เมนูมือถือ (drawer) - สไตล์พรีเมียม เบียร์คราฟ */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}

.mobile-nav.is-open {
    pointer-events: auto;
}

.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.is-open .mobile-nav-overlay {
    opacity: 1;
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100%;
    background: linear-gradient(165deg,
        #0f0f0f 0%,
        #141414 25%,
        #0d0d0d 50%,
        #0a0a0a 100%);
    border-left: 4px solid #FFDE00;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5),
                inset 1px 0 0 rgba(255, 222, 0, 0.08),
                0 0 60px rgba(255, 222, 0, 0.06);
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.4s ease;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-nav-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(180deg,
        rgba(255, 222, 0, 0.07) 0%,
        rgba(255, 222, 0, 0.02) 40%,
        transparent 100%);
    pointer-events: none;
}

.mobile-nav.is-open .mobile-nav-panel {
    transform: translateX(0);
    box-shadow: -12px 0 48px rgba(0, 0, 0, 0.55),
                inset 1px 0 0 rgba(255, 222, 0, 0.12),
                0 0 80px rgba(255, 222, 0, 0.08);
}

/* ปุ่มปิด + หัวข้อเมนู (ข้อความจาก CSS) */
.mobile-nav-panel::after {
    content: 'เมนู';
    position: absolute;
    top: 26px;
    left: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: rgba(255, 222, 0, 0.88);
    text-transform: uppercase;
    pointer-events: none;
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 20px 16px auto;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 222, 0, 0.35);
    border-radius: 50%;
    background: rgba(255, 222, 0, 0.08);
    color: #FFDE00;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.mobile-nav-close:hover {
    background: rgba(255, 222, 0, 0.2);
    border-color: rgba(255, 222, 0, 0.6);
    color: #fff;
    transform: rotate(90deg);
}

.mobile-nav-close:active {
    transform: rotate(90deg) scale(0.96);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 16px 28px;
    flex: 1;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 17px;
    font-weight: 500;
    border-radius: 14px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, border-color 0.2s ease;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateX(24px);
}

.mobile-nav.is-open .mobile-nav-links a {
    animation: mobile-nav-link-in 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

.mobile-nav.is-open .mobile-nav-links a:nth-child(1) { animation-delay: 0.06s; }
.mobile-nav.is-open .mobile-nav-links a:nth-child(2) { animation-delay: 0.1s; }
.mobile-nav.is-open .mobile-nav-links a:nth-child(3) { animation-delay: 0.14s; }
.mobile-nav.is-open .mobile-nav-links a:nth-child(4) { animation-delay: 0.18s; }
.mobile-nav.is-open .mobile-nav-links a:nth-child(5) { animation-delay: 0.22s; }
.mobile-nav.is-open .mobile-nav-links a:nth-child(6) { animation-delay: 0.26s; }
.mobile-nav.is-open .mobile-nav-links a:nth-child(7) { animation-delay: 0.3s; }

@keyframes mobile-nav-link-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-links a:hover {
    background: rgba(255, 222, 0, 0.12);
    color: #FFDE00;
    border-color: rgba(255, 222, 0, 0.2);
    transform: translateX(4px);
}

.mobile-nav-links a:active {
    transform: translateX(4px) scale(0.98);
}

/* ไอคอนข้างแต่ละลิงก์ (ใช้ Font Awesome ที่โหลดอยู่แล้ว) */
.mobile-nav-links a[href="index.html"]::before { content: '\f015'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 18px; width: 24px; text-align: center; opacity: 0.85; }
.mobile-nav-links a[href="products.html"]::before { content: '\f0e8'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 18px; width: 24px; text-align: center; opacity: 0.85; }
.mobile-nav-links a[href="express.html"]::before { content: '\f0d1'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 18px; width: 24px; text-align: center; opacity: 0.85; }
.mobile-nav-links a[href="promotions.html"]::before { content: '\f02b'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 18px; width: 24px; text-align: center; opacity: 0.85; }
.mobile-nav-links a[href="reviews.html"]::before { content: '\f005'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 18px; width: 24px; text-align: center; opacity: 0.85; }
.mobile-nav-links a[href="cart.html"]::before { content: '\f07a'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 18px; width: 24px; text-align: center; opacity: 0.85; }

.cart-count:empty {
    display: none;
}

/* ============================================
   Main Content - พื้นหลังเต็มถึง footer ไม่ให้เกิดแถบขาว
   ============================================ */
main {
    min-height: calc(100vh - 400px);
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    padding: 0;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
    background-color: #000000;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 300px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.hero-dots .dot.active {
    background-color: #FFDE00;
    width: 30px;
    border-radius: 6px;
}

.hero-dots .dot:hover {
    background-color: rgba(255, 222, 0, 0.8);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 20px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #FFF;
    border: 1px solid #1a1a1a;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(180deg, #D4A017 0%, #B8860B 100%);
    color: #1a1a1a;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.25);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 222, 0, 0.15);
    color: #2c2c2c;
    border: 1px solid rgba(255, 222, 0, 0.5);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 222, 0, 0.25);
    border-color: rgba(212, 160, 23, 0.7);
    color: #1a1a1a;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #000000;
    font-weight: bold;
}

.page-header {
    background: linear-gradient(135deg, #FFDE00 0%, #FFD800 100%);
    padding: 60px 20px;
    text-align: center;
    color: #000000;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-header p {
    font-size: 20px;
}

/* หน้า 404 / 500 */
.error-page-section {
    padding: 60px 20px 80px;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.error-page-section h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.error-page-section p {
    margin-bottom: 1rem;
    color: #444;
}

.error-page-section .btn-home {
    display: inline-block;
    padding: 12px 28px;
    background: #FFDE00;
    color: #000;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.error-page-section .btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 222, 0, 0.4);
}

/* หน้าแรก - โซนสินค้าแนะนำ (2 แถว x 4 สินค้า) */
.featured-products {
    padding: 80px 20px 16px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.featured-products .products-grid.featured-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* สินค้าทั้งหมด (ด้านล่างสินค้าแนะนำ) - 2 แถว x 4 ไม่ซ้ำกับ featured */
.all-products-section {
    padding: 16px 20px 80px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.all-products-section .section-title {
    margin-bottom: 28px;
}

.all-products-section .products-grid.all-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* 4 คราฟเบียร์ แนะนำ แบรนด์ไทย - layout โฟกัสข้อความ + การ์ด 4 ชิ้น (ธีม Beer6 เหลือง-ดำ) */
.craft-picks-section {
    padding: 64px 20px 80px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.craft-picks-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.craft-picks-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.craft-picks-highlight {
    color: #B8860B;
    font-weight: 600;
}

.craft-picks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.craft-pick-card {
    display: block;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 0 0 24px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    color: inherit;
    cursor: default;
}

.craft-pick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(180, 140, 23, 0.55);
}

.craft-pick-image {
    width: 100%;
    display: block;
    background: linear-gradient(145deg, #FFF4D4 0%, #FFE9A8 50%, #FFE08A 100%);
    margin-bottom: 16px;
    line-height: 0;
}

.craft-pick-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.craft-pick-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 16px 8px;
}

.craft-pick-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0 16px 10px;
}

.craft-pick-abv {
    font-size: 14px;
    font-weight: 600;
    color: #B8860B;
    margin: 0 16px;
}

@media (max-width: 992px) {
    .craft-picks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .craft-picks-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .craft-picks-section {
        padding: 40px 16px 56px;
    }
    .craft-picks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 16px;
    }
    .craft-picks-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .craft-picks-intro {
        font-size: 14px;
        margin-bottom: 28px;
    }
    .craft-pick-card {
        border-radius: 14px;
        padding: 0 0 16px;
    }
    .craft-pick-image {
        margin-bottom: 10px;
    }
    .craft-pick-name {
        font-size: 14px;
        margin: 0 10px 4px;
    }
    .craft-pick-desc {
        font-size: 12px;
        margin: 0 10px 6px;
        line-height: 1.4;
    }
    .craft-pick-abv {
        font-size: 12px;
        margin: 0 10px;
    }
}

/* วิธีจัดเก็บเบียร์คราฟอย่างถูกต้อง - สองคอลัมน์ (รูปซ้าย / ข้อความขวา) ธีม Beer6 */
.storage-tips-section {
    padding: 64px 20px 80px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.storage-tips-section .container {
    display: flex;
    justify-content: center;
}

.storage-tips-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.storage-tips-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(160, 125, 20, 0.25);
    background: linear-gradient(145deg, #FFF4D4 0%, #FFE9A8 100%);
}

.storage-tips-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.storage-tips-content {
    padding: 0 0 0 8px;
}

.storage-tips-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.3;
}

.storage-tips-intro {
    font-size: 16px;
    line-height: 1.65;
    color: #333;
    margin: 0 0 24px;
}

.storage-tips-highlight {
    color: #B8860B;
    font-weight: 600;
}

.storage-tips-list {
    margin: 0;
    padding-left: 22px;
    list-style: none;
}

.storage-tips-list li {
    position: relative;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 14px;
    padding-left: 8px;
}

.storage-tips-list li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D4A017;
}

.storage-tips-list li strong {
    color: #1a1a1a;
}

@media (max-width: 992px) {
    .storage-tips-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .storage-tips-content {
        padding: 0;
    }
    .storage-tips-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .storage-tips-section {
        padding: 48px 20px 64px;
    }
    .storage-tips-title {
        font-size: 22px;
    }
    .storage-tips-intro,
    .storage-tips-list li {
        font-size: 14px;
    }
}

/* มีจำหน่ายใน 7-11 คราฟเบียร์ ไกล้ฉัน สะดวก 100% - หัวข้อ + ย่อหน้า + แถวรูป 4 ชิ้น */
.seven-eleven-section {
    padding: 64px 20px 80px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.seven-eleven-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.35;
}

.seven-eleven-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.seven-eleven-highlight {
    color: #B8860B;
    font-weight: 600;
}

.seven-eleven-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 44px;
    max-width: 1100px;
    margin: 0 auto;
}

.seven-eleven-product {
    display: block;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.3);
    border-radius: 16px;
    overflow: hidden;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    text-decoration: none;
}

.seven-eleven-product:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    border-color: rgba(180, 140, 23, 0.5);
}

.seven-eleven-product img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 380px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .seven-eleven-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 24px;
    }
    .seven-eleven-product {
        padding: 24px;
    }
    .seven-eleven-product img {
        max-height: 280px;
        min-height: 160px;
        object-fit: contain;
    }
    .seven-eleven-title {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .seven-eleven-section {
        padding: 48px 20px 64px;
    }
    .seven-eleven-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 18px;
    }
    .seven-eleven-product {
        padding: 20px;
    }
    .seven-eleven-product img {
        max-height: 240px;
        min-height: 140px;
        object-fit: contain;
    }
    .seven-eleven-title {
        font-size: 20px;
    }
    .seven-eleven-intro {
        font-size: 15px;
    }
}

/* รสชาติเบียร์คราฟที่เป็นเอกลักษณ์ ไม่ซ้ำใคร - สองคอลัมน์ (รูปซ้าย / ข้อความขวา) ธีม Beer6 */
.flavor-section {
    padding: 64px 20px 80px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.flavor-section .container {
    display: flex;
    justify-content: center;
}

.flavor-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.flavor-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(160, 125, 20, 0.25);
    background: linear-gradient(145deg, #FFF4D4 0%, #FFE9A8 100%);
}

.flavor-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.flavor-content {
    padding: 0 0 0 8px;
}

.flavor-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.3;
}

.flavor-intro {
    font-size: 16px;
    line-height: 1.65;
    color: #333;
    margin: 0 0 24px;
}

.flavor-highlight {
    color: #B8860B;
    font-weight: 600;
}

.flavor-list {
    margin: 0;
    padding-left: 22px;
    list-style: none;
}

.flavor-list li {
    position: relative;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 14px;
    padding-left: 8px;
}

.flavor-list li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D4A017;
}

@media (max-width: 992px) {
    .flavor-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .flavor-content {
        padding: 0;
    }
    .flavor-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .flavor-section {
        padding: 48px 20px 64px;
    }
    .flavor-title {
        font-size: 22px;
    }
    .flavor-intro,
    .flavor-list li {
        font-size: 14px;
    }
}

/* เบียร์คราฟ เป็นสิ่งผิดกฎหมายในไทยไหม - ข้อความซ้าย / รูปขวา ธีม Beer6 */
.law-section {
    padding: 64px 20px 24px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.law-section .container {
    display: flex;
    justify-content: center;
}

.law-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

.law-content {
    padding: 0 8px 0 0;
}

.law-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    line-height: 1.3;
}

.law-intro,
.law-text {
    font-size: 16px;
    line-height: 1.65;
    color: #333;
    margin: 0 0 16px;
}

.law-highlight {
    color: #B8860B;
    font-weight: 600;
}

/* คีย์เวิร์ดหลัก/รอง สำหรับ SEO (หน้าแรก) */
.kw-main {
    color: #C9A227;
    font-weight: 700;
}
.kw-sub {
    color: #B8860B;
    font-weight: 600;
}

.law-list {
    margin: 0;
    padding-left: 22px;
    list-style: none;
}

.law-list li {
    position: relative;
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 12px;
    padding-left: 8px;
}

.law-list li::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #D4A017;
}

.law-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(160, 125, 20, 0.25);
    background: linear-gradient(145deg, #FFF4D4 0%, #FFE9A8 100%);
}

.law-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

@media (max-width: 992px) {
    .law-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .law-content {
        padding: 0;
    }
    .law-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .law-section {
        padding: 48px 20px 64px;
    }
    .law-title {
        font-size: 22px;
    }
    .law-intro,
    .law-text,
    .law-list li {
        font-size: 14px;
    }
}

/* รีวิวจากลูกค้า (หน้าแรก) - การ์ดรีวิว 3 ชิ้น + ปุ่มดูทั้งหมด ธีม Beer6 */
.index-reviews-section {
    padding: 24px 20px 24px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.index-reviews-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.index-reviews-intro {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin: 0 0 32px;
}

.index-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 36px;
}

.index-review-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.index-review-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(180, 140, 23, 0.55);
}

.index-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 14px;
}

.index-reviewer-info {
    display: flex;
    gap: 12px;
    align-items: center;
}

.index-review-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(145deg, #FFEFC4 0%, #FFE9A8 100%);
    color: #8B7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.index-reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 2px;
}

.index-review-date {
    font-size: 13px;
    color: #666;
}

.index-review-stars {
    color: #D4A017;
    font-size: 14px;
    letter-spacing: 1px;
}

.index-review-text {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
    margin: 0;
}

@media (max-width: 992px) {
    .index-reviews-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .index-reviews-section {
        padding: 48px 20px 64px;
    }
    .index-reviews-title {
        font-size: 22px;
    }
    .index-reviews-intro {
        font-size: 15px;
        margin-bottom: 24px;
    }
    .index-review-card {
        padding: 20px;
    }
    .index-review-text {
        font-size: 14px;
    }
}

/* คำถามพบบ่อย (FAQ) - Accordion ธีม Beer6 */
.faq-section {
    padding: 24px 20px 80px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.faq-intro {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin: 0 0 32px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.faq-list {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(180, 140, 23, 0.5);
}

.faq-item[open] {
    border-color: rgba(180, 140, 23, 0.55);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 18px 20px 18px 48px;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4A017;
}

.faq-item[open] .faq-question::before {
    background: #B8860B;
}

.faq-question:hover {
    background: rgba(255, 222, 0, 0.12);
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #B8860B;
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    padding: 0 20px 20px 48px;
}

.faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

@media (max-width: 576px) {
    .faq-section {
        padding: 48px 20px 64px;
    }
    .faq-title {
        font-size: 22px;
    }
    .faq-question {
        padding: 16px 44px 16px 40px;
        font-size: 15px;
    }
    .faq-question::before {
        left: 16px;
    }
    .faq-answer {
        padding: 0 16px 16px 40px;
    }
    .faq-answer p {
        font-size: 14px;
    }
}

/* หน้ารายการสินค้า - พื้นหลังโทนเทาอุ่น ไม่กลืนกับการ์ดขาว */
.products-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.breadcrumb {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
}

.breadcrumb a {
    color: #333;
}

.breadcrumb a:hover {
    color: #1a1a1a;
}

.breadcrumb-sep {
    margin: 0 8px;
    color: #666;
}

/* หน้ากฎหมาย / นโยบาย (privacy-policy ฯลฯ) */
.legal-page {
    padding: 32px 20px 64px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.legal-page .legal-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.legal-page section {
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.legal-page p,
.legal-page ul {
    margin-bottom: 0.75rem;
    color: #444;
    line-height: 1.6;
}

.legal-page ul {
    padding-left: 1.5rem;
}

.products-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 3px solid rgba(180, 140, 23, 0.55);
}

.products-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Category navigation - กล่องหมวดหมู่เห็นขอบชัด */
.category-nav {
    flex-shrink: 0;
    width: 240px;
    background: linear-gradient(180deg, #FBF7EF 0%, #F5EDE0 100%);
    border: 1px solid rgba(160, 125, 20, 0.45);
    border-radius: 20px;
    padding: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.category-nav-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0 20px 16px;
    margin: 0;
    border-bottom: 1px solid rgba(160, 125, 20, 0.35);
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 12px 0 0;
}

.category-list li {
    margin: 0;
}

.category-link {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
}

.category-link:hover {
    background: rgba(255, 222, 0, 0.25);
    border-left-color: rgba(180, 140, 23, 0.8);
    color: #1a1a1a;
}

.category-link.active {
    background: linear-gradient(90deg, rgba(212, 168, 23, 0.25) 0%, rgba(255, 235, 150, 0.18) 100%);
    font-weight: 700;
    color: #1a1a1a;
    border-left-color: #B8860B;
}

.products-wrap {
    flex: 1;
    min-width: 0;
}

.products-empty-msg {
    text-align: center;
    padding: 48px 20px;
    font-size: 18px;
    color: #444;
}

.products-search-empty {
    text-align: center;
    padding: 40px 20px;
    margin-top: 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.35);
    border-radius: 16px;
}

.products-search-empty p {
    margin: 0 0 16px;
    font-size: 17px;
    color: #333;
}

.products-search-empty a {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FFDE00 0%, #FFC700 100%);
    color: #1a1a1a;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.products-search-empty a:hover {
    background: linear-gradient(135deg, #FFC700 0%, #FFA500 100%);
}

@media (max-width: 768px) {
    .products-layout {
        flex-direction: column;
        gap: 24px;
    }

    .category-nav {
        width: 100%;
        padding: 12px 0;
    }

    .category-nav-title {
        padding: 0 16px 12px;
    }

    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 12px 16px 0;
    }

    .category-list li {
        flex: 0 0 auto;
    }

    .category-link {
        padding: 10px 16px;
        border-radius: 10px;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .category-link:hover {
        border-left: none;
        border-bottom-color: rgba(255, 222, 0, 0.5);
    }

    .category-link.active {
        border-left: none;
        border-bottom-color: #D4A017;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

/* แถวละ 3 ชิ้น - โทนนุ่มนวล ไม่แข็ง */
.products-grid.large-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 28px;
}

.product-card.page-hidden,
.product-card.search-hidden {
    display: none !important;
}

/* สินค้าที่เกี่ยวข้อง - 1 แถว 4 สินค้า (elementor-grid) */
.related-products-section {
    padding: 48px 20px 64px;
    background: linear-gradient(180deg, #EDE9E0 0%, #E8E4DB 100%);
}

.related-products-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
    text-align: center;
}

.products.elementor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .products.elementor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products.elementor-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .related-products-title {
        font-size: 20px;
    }
}

.product-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(180, 140, 23, 0.55);
}

.product-image {
    width: 100%;
    min-height: 160px;
    background: linear-gradient(145deg, #FFF4D4 0%, #FFE9A8 50%, #FFE08A 100%);
    border-radius: 20px 20px 0 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B7355;
    font-weight: 600;
    font-size: 15px;
    overflow: hidden;
    position: relative;
}

/* กรอบปรับตามขนาดรูป แสดงรูปเต็มไม่ตัด */
.product-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.product-card h3 {
    font-size: 19px;
    margin: 0;
    padding: 18px 22px 0;
    color: #1a1a1a;
    font-weight: 600;
}

/* คะแนนรีวิว ใต้ชื่อสินค้า */
.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 22px 0;
    flex-wrap: wrap;
    min-height: 22px;
}

.product-rating-stars {
    display: inline-flex;
    gap: 2px;
    color: #D4A017;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.product-rating-stars i.far {
    color: #e0e0e0;
}

.product-rating-score {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.product-rating-count {
    font-size: 12px;
    color: #555;
    font-weight: 400;
}

.product-card .price {
    font-size: 23px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding: 10px 22px 0;
}

.price {
    font-size: 23px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.product-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 22px 22px;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #FFF;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: linear-gradient(180deg, #D4A017 0%, #B8860B 100%);
    color: #1a1a1a;
}

.btn-view-detail {
    display: block;
    width: 100%;
    padding: 10px 12px;
    background: rgba(245, 238, 220, 0.9);
    color: #1a1a1a;
    border: 1px solid rgba(160, 125, 20, 0.5);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: inherit;
}

.btn-view-detail:hover {
    background: rgba(255, 222, 0, 0.28);
    border-color: rgba(180, 140, 23, 0.7);
    color: #1a1a1a;
}

/* Product card - เวอร์ชั่นมือถือ (กระชับ น่าเลือก ไม่รก) */
@media (max-width: 768px) {
    .product-card {
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .product-image {
        min-height: 120px;
        border-radius: 14px 14px 0 0;
    }

    .product-card h3 {
        font-size: 15px;
        padding: 10px 12px 0;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .product-rating {
        padding: 4px 12px 0;
        gap: 4px;
    }

    .product-rating-stars {
        font-size: 11px;
    }

    .product-rating-score {
        font-size: 12px;
    }

    .product-rating-count {
        font-size: 11px;
    }

    .product-card .price {
        font-size: 18px;
        padding: 6px 12px 0;
    }

    .product-card-actions {
        flex-direction: column;
        gap: 8px;
        padding: 10px 12px 14px;
    }

    .btn-add-cart {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 10px;
    }

    .btn-view-detail {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .product-card h3 {
        font-size: 14px;
        padding: 8px 10px 0;
    }

    .product-rating {
        padding: 2px 10px 0;
    }

    .product-card .price {
        font-size: 17px;
        padding: 4px 10px 0;
    }

    .product-card-actions {
        padding: 8px 10px 12px;
        gap: 6px;
    }

    .btn-add-cart,
    .btn-view-detail {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group label {
    font-weight: 600;
    color: #000000;
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid #FFDE00;
    border-radius: 8px;
    background-color: #FFFFFF;
    color: #000000;
    font-size: 15px;
    cursor: pointer;
    outline: none;
}

.filter-group select:hover {
    border-color: #000000;
}

/* Pagination - โทนนุ่มนวล */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pagination .page-link {
    min-width: 44px;
    padding: 10px 16px;
    background: #FFFDF9;
    color: #444;
    border: 1px solid rgba(255, 222, 0, 0.55);
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.28s ease;
    text-align: center;
    cursor: pointer;
}

.pagination .page-link:hover:not(.disabled):not(.active) {
    background: rgba(255, 222, 0, 0.22);
    border-color: rgba(255, 222, 0, 0.75);
    color: #1a1a1a;
}

.pagination .page-link.active {
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #FFF;
    border-color: #1a1a1a;
    cursor: default;
}

.pagination .page-link.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Product Detail Page - ต้องไม่มี overflow ใน parent เพื่อให้ sticky ทำงาน */
.product-detail-section,
.product-detail-section .container,
.product-detail-wrap,
.product-detail-grid {
    overflow: visible;
}

.product-detail-section {
    padding: 40px 20px 80px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.product-detail-notfound {
    text-align: center;
    padding: 60px 20px;
}

.product-detail-notfound p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

/* กรอบรูปล็อกอยู่กับที่ (ไม่เลื่อนตาม) บนจอใหญ่ - ใช้ sticky แบบเว็บทั่วไป */
.product-detail-image-cell {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    align-self: start;
}

.product-detail-image-wrap {
    width: 100%;
    overflow: visible;
}

.product-detail-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FFF4D4 0%, #FFE9A8 100%);
    border-radius: 16px;
    border: 1px solid rgba(160, 125, 20, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 18px;
    box-sizing: border-box;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    display: block;
}

.product-detail-info {
    min-width: 0;
}

.product-detail-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-detail-fullname {
    font-size: 14px;
    color: #555;
    margin-bottom: 16px;
}

.product-detail-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.product-detail-unit {
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
}

.product-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.product-detail-price-tiers {
    margin-bottom: 24px;
}

.product-detail-tiers-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.product-detail-tiers-table {
    width: 100%;
    max-width: 360px;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.product-detail-tiers-table th,
.product-detail-tiers-table td {
    padding: 8px 10px;
    border: 1px solid rgba(160, 125, 20, 0.25);
}

.product-detail-tiers-table th {
    background: #F2EFE8;
    font-weight: 600;
    color: #333;
    text-align: left;
}

.product-detail-tiers-table .tier-row td:first-child {
    color: #555;
}

.product-detail-tiers-table .tier-row td:nth-child(2) {
    font-weight: 600;
    text-align: right;
}

.product-detail-tiers-table .tier-row td:last-child {
    text-align: center;
    width: 100px;
}

.btn-tier-add-cart {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: #d4a017;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: inherit;
}

.btn-tier-add-cart:hover {
    background: #b8860b;
}

.btn-tier-add-cart:active {
    transform: scale(0.98);
}

.btn-tier-add-cart.tier-btn-added {
    background: #2d7d2d;
    color: #fff;
}

.product-detail-actions {
    margin-bottom: 28px;
}

.product-detail-actions .btn-detail-cart {
    width: 100%;
    max-width: 320px;
    padding: 14px 24px;
    font-size: 17px;
}

.product-detail-line {
    padding: 24px;
    background: #FBF7EF;
    border: 1px solid rgba(160, 125, 20, 0.45);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.product-detail-line h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.btn-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #06C755;
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.25s ease;
}

.btn-line:hover {
    background: #05b04c;
    color: #fff;
    transform: translateY(-2px);
}

.btn-line i {
    font-size: 22px;
}

.product-detail-line-note {
    font-size: 13px;
    color: #555;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-detail-image-cell {
        position: static;
    }

    .product-detail-title {
        font-size: 22px;
    }

    .product-detail-actions .btn-detail-cart {
        max-width: 100%;
    }
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 100%);
    text-align: center;
}

.about-section p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

/* Express Section - โทนเดียวกับหน้ารายการสินค้า */
.express-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.express-section h1 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.express-intro {
    margin-bottom: 2rem;
    color: #444;
}

.express-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 56px;
}

.info-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(180, 140, 23, 0.55);
}

.info-card i {
    font-size: 46px;
    color: #D4A017;
    margin-bottom: 18px;
}

.info-card h2 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 700;
}

.info-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
}

.info-card .price {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
}

.express-form-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.4);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.express-form-section h3 {
    text-align: center;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.express-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(160, 125, 20, 0.5);
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: all 0.25s ease;
    background: #FFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(212, 160, 23, 0.7);
    box-shadow: 0 0 0 3px rgba(255, 222, 0, 0.1);
}

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

.express-terms {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.4);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.express-terms h3 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.express-terms ul {
    list-style: none;
    padding-left: 0;
}

.express-terms li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #444;
}

.express-terms li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #D4A017;
    font-weight: bold;
    font-size: 18px;
}

/* Promotions Section - โทนเดียวกับหน้ารายการสินค้า */
.promotions-section {
    padding: 56px 20px 40px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.promotions-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}


.promo-layout-left,
.promo-layout-right {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
}

.promo-layout-left:hover,
.promo-layout-right:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(180, 140, 23, 0.55);
}

.promo-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: linear-gradient(145deg, #FFF4D4 0%, #FFE9A8 100%);
    position: relative;
}

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

.promo-details {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promotions-page-title {
    margin: 0 0 2rem;
    padding: 0;
    font-size: 1.75rem;
    color: #1a1a1a;
    font-weight: 700;
    text-align: left;
    display: block;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.promo-details h2.promo-block-title,
.promo-details h3 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.promo-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

.promo-list li i {
    color: #D4A017;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.promo-list li span {
    flex: 1;
}

.text-red {
    color: #c0392b;
    font-weight: 600;
}

.promo-details .btn-primary {
    align-self: center;
    margin-top: auto;
}

.promo-banner.large {
    background: linear-gradient(145deg, #F5EDE0 0%, #EDE4D4 100%);
    border: 1px solid rgba(160, 125, 20, 0.45);
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    margin-bottom: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    color: #2c2c2c;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(180deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #FFF;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.promo-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 20px;
    margin-bottom: 10px;
}

.promo-date {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.promo-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(180, 140, 23, 0.55);
}

.promo-card .promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.promo-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #FFDE00 0%, #FFD800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
}

.promo-info {
    padding: 20px;
}

.promo-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.promo-info p {
    color: #444;
    margin-bottom: 8px;
}

/* Reviews Section - โทนเดียวกับหน้ารายการสินค้า */
.reviews-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.reviews-section .section-title {
    margin-bottom: 8px;
}

.reviews-intro {
    color: #555;
    font-size: 1rem;
    margin-bottom: 32px;
}

/* กริดรูปภาพรีวิว: 2 แถว x 4 (รูปจาก images/reviews/) */
.reviews-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-image-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.review-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.review-image-item img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
    object-fit: contain;
    pointer-events: none;
}

/* Lightbox ดูรูปรีวิวเต็มจอ */
.review-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.review-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.review-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer;
}

.review-lightbox-inner {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.review-lightbox-img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.review-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.review-lightbox-close:hover {
    background: #FFDE00;
    color: #000;
    transform: scale(1.05);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin-bottom: 56px;
}

.stat-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.stat-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: rgba(180, 140, 23, 0.55);
}

.stat-card h3 {
    font-size: 46px;
    color: #1a1a1a;
    margin-bottom: 14px;
    font-weight: 700;
}

.stars {
    color: #D4A017;
    font-size: 20px;
    margin-bottom: 10px;
}

.stat-card p {
    color: #444;
    font-size: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 28px;
    margin-bottom: 56px;
}

.review-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 20px;
    padding: 26px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.review-card:hover {
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: rgba(180, 140, 23, 0.55);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    gap: 14px;
    align-items: center;
}

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #FFEFC4 0%, #FFE9A8 100%);
    color: #8B7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.reviewer-info h4 {
    color: #1a1a1a;
    margin-bottom: 5px;
}

.review-date {
    color: #555;
    font-size: 14px;
}

.review-text {
    color: #444;
    line-height: 1.75;
}

.write-review-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.4);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.write-review-section h2 {
    text-align: center;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.review-form {
    max-width: 700px;
    margin: 0 auto;
}

.rating-input {
    display: flex;
    gap: 10px;
    font-size: 28px;
    color: #D4A017;
    cursor: pointer;
}

.rating-input i {
    transition: all 0.2s ease;
}

.rating-input i:hover {
    transform: scale(1.2);
}

/* Contact Section - โทนเดียวกับหน้ารายการสินค้า */
.contact-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #F2EFE8 0%, #EDE9E0 50%, #E8E4DB 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 56px;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin-bottom: 28px;
    color: #1a1a1a;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 22px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-item:hover {
    border-color: rgba(180, 140, 23, 0.55);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 30px;
    color: #D4A017;
    min-width: 40px;
}

.contact-item h4 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 17px;
}

.contact-item p {
    color: #444;
    margin-bottom: 5px;
}

.contact-social {
    margin-top: 28px;
    padding: 24px;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.38);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.contact-social h4 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-social .social-links {
    gap: 15px;
}

.contact-form {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF5 100%);
    border: 1px solid rgba(160, 125, 20, 0.4);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.map-section {
    margin-top: 40px;
}

.map-section h2 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(145deg, #F5EDE0 0%, #EDE4D4 100%);
    border: 1px solid rgba(160, 125, 20, 0.4);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #5a5348;
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 18px;
    font-weight: 600;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 60px 20px 20px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FFDE00;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 180px;
    display: block;
    margin-bottom: 15px;
    opacity: 0.95;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-section h4 {
    color: #FFDE00;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFDE00;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFDE00;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(255, 222, 0, 0.5),
                0 0 30px rgba(255, 222, 0, 0.3),
                inset 0 0 10px rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-social a:hover {
    background-color: #FFC700;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 222, 0, 0.7),
                0 0 40px rgba(255, 222, 0, 0.5),
                inset 0 0 15px rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-section i {
    color: #FFDE00;
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #FFFFFF;
}

/* Footer - เวอร์ชั่นมือถือ (กระชับ ไม่ต้องเลื่อนเยอะ) */
@media (max-width: 768px) {
    .footer {
        padding: 24px 16px 16px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "logo logo"
            "menu info"
            "contact contact";
        gap: 16px 20px;
        margin-bottom: 16px;
        text-align: left;
    }

    .footer-section:first-child {
        grid-area: logo;
        text-align: center;
        padding-bottom: 12px;
        margin-bottom: 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-section:nth-child(2) {
        grid-area: menu;
    }

    .footer-section:nth-child(3) {
        grid-area: info;
    }

    .footer-section:nth-child(4) {
        grid-area: contact;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 6px;
        height: 42px;
        max-width: 140px;
    }

    .footer-section:first-child p {
        margin: 0;
        font-size: 13px;
    }

    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .footer-section ul {
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 2px;
    }

    .footer-section ul li a {
        display: block;
        padding: 5px 0;
        font-size: 13px;
        line-height: 1.4;
    }

    .footer-section p {
        margin-bottom: 4px;
        font-size: 13px;
        line-height: 1.5;
    }

    .footer-section i {
        margin-right: 6px;
        font-size: 12px;
    }

    .footer-bottom {
        padding-top: 12px;
        font-size: 12px;
        line-height: 1.4;
    }

    .footer-bottom p {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 20px 12px 14px;
    }

    .footer-content {
        gap: 12px 16px;
        margin-bottom: 12px;
    }

    .footer-section:first-child {
        padding-bottom: 10px;
    }

    .footer-logo {
        height: 36px;
        max-width: 120px;
    }

    .footer-section:first-child p {
        font-size: 12px;
    }

    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .footer-section ul li a,
    .footer-section p {
        font-size: 12px;
    }

    .footer-section ul li a {
        padding: 4px 0;
    }

    .footer-bottom {
        padding-top: 10px;
        font-size: 11px;
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .header-main-content {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        justify-content: space-between;
    }

    .header-main-content .logo {
        flex-shrink: 0;
    }

    .header-main-content .search-bar {
        display: none;
    }

    .hamburger {
        display: flex;
        order: 2;
    }

    .header-main-content .cart-icon {
        order: 3;
    }

    .mobile-nav {
        display: block;
    }

    .header-main {
        padding: 12px 0;
    }

    .header-main .logo img {
        height: 44px;
        max-width: 160px;
    }

    /* Hero (ปก) มือถือ: แสดงรูปเต็ม ไม่ crop */
    .hero {
        padding: 0;
    }

    .hero-slider {
        min-height: 0;
    }

    .hero-slide img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        object-position: center top;
        background: #0a0a0a;
    }

    .hero-dots {
        bottom: 12px;
    }

    .hero-dots .dot {
        width: 10px;
        height: 10px;
    }

    .hero-dots .dot.active {
        width: 24px;
        border-radius: 5px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .products-grid.large-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .featured-products {
        padding: 48px 16px 28px;
    }

    .featured-products .section-title {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .featured-products .products-grid.featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .all-products-section .products-grid.all-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .express-info {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .reviews-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .promotions-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .promo-image-wrapper {
        height: auto;
    }

    .promo-details {
        padding: 25px;
    }

    .promo-details h2.promo-block-title,
    .promo-details h3 {
        font-size: 22px;
    }

    /* Pagination มือถือ: กระชับ แตะง่าย */
    .pagination {
        margin-top: 24px;
        padding-top: 20px;
        gap: 8px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .pagination .page-link {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 14px;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        -webkit-tap-highlight-color: transparent;
    }

    .pagination .page-link:first-child,
    .pagination .page-link:last-child {
        min-width: auto;
        padding: 0 14px;
        font-size: 13px;
        font-weight: 600;
    }

    .pagination .page-link.active {
        min-width: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .products-grid.large-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .featured-products {
        padding: 36px 12px 24px;
    }

    .featured-products .section-title {
        margin-bottom: 16px;
        font-size: 20px;
    }

    .featured-products .products-grid.featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .all-products-section .products-grid.all-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .reviews-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .pagination {
        margin-top: 20px;
        padding-top: 16px;
        gap: 6px;
    }

    .pagination .page-link {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }

    .pagination .page-link:first-child,
    .pagination .page-link:last-child {
        padding: 0 12px;
        font-size: 12px;
    }

    .header-top {
        padding: 4px 0;
    }

    .social-links a {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .top-nav {
        gap: 8px;
    }

    .top-nav a {
        font-size: 11px;
        padding: 3px 8px;
    }

    .logo img {
        height: 45px;
        max-width: 150px;
    }

    .page-header {
        padding: 40px 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }
}

/* ============================================
   Floating Action Button (FAB)
   ============================================ */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.fab-main {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFDE00 0%, #FFC700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 222, 0, 0.4),
                0 0 0 0 rgba(255, 222, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.fab-main:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 222, 0, 0.6),
                0 0 0 8px rgba(255, 222, 0, 0.2);
}

.fab-main.active {
    transform: rotate(45deg) scale(1.1);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFDE00 100%);
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.fab-container.active .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-item {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFDE00;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 222, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.fab-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 222, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.fab-item:hover::before {
    width: 100%;
    height: 100%;
}

.fab-item:hover {
    transform: scale(1.15) translateY(-3px);
    background: linear-gradient(135deg, #FFDE00 0%, #FFC700 100%);
    color: #000000;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 5px 15px rgba(255, 222, 0, 0.5);
}

.fab-item:nth-child(1) {
    transition-delay: 0.1s;
}

.fab-item:nth-child(2) {
    transition-delay: 0.15s;
}

.fab-item:nth-child(3) {
    transition-delay: 0.2s;
}

.fab-container.active .fab-item {
    transition-delay: 0s;
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-main {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .fab-item {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ============================================
   Welcome Modal
   ============================================ */
.welcome-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.welcome-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8),
                0 0 0 2px rgba(255, 222, 0, 0.4),
                0 0 30px rgba(255, 222, 0, 0.2);
    z-index: 10001;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 222, 0, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(5px);
}

.modal-close:hover {
    background: linear-gradient(135deg, #FFDE00 0%, #FFC700 100%);
    border-color: #FFDE00;
    color: #000000;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 222, 0, 0.6),
                0 0 0 2px rgba(255, 222, 0, 0.3);
}

.modal-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #000000;
    position: relative;
}

.modal-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #1a1a1a, transparent);
    pointer-events: none;
}

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

.modal-body {
    padding: 20px 25px 25px;
    text-align: center;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
}

.modal-body h2 {
    color: #FFDE00;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 222, 0, 0.3);
}

.modal-body p {
    color: #CCCCCC;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-social {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 110px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.social-btn i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn span {
    font-size: 13px;
    font-weight: 500;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.social-btn.line {
    border-color: rgba(6, 199, 85, 0.5);
}

.social-btn.line i {
    color: #06C755;
}

.social-btn.line:hover {
    background: rgba(6, 199, 85, 0.2);
    border-color: #06C755;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.4);
}

.social-btn.facebook {
    border-color: rgba(24, 119, 242, 0.5);
}

.social-btn.facebook i {
    color: #1877F2;
}

.social-btn.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: #1877F2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.social-btn.instagram {
    border-color: rgba(228, 64, 95, 0.5);
}

.social-btn.instagram i {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-btn.instagram:hover {
    background: rgba(228, 64, 95, 0.2);
    border-color: #E4405F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 64, 95, 0.4);
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
        border-radius: 15px;
    }

    .modal-body {
        padding: 15px 20px 20px;
    }

    .modal-body h2 {
        font-size: 18px;
    }

    .modal-body p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .modal-social {
        gap: 8px;
        flex-direction: column;
    }

    .social-btn {
        min-width: 100%;
        padding: 10px 15px;
    }

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

    .social-btn span {
        font-size: 12px;
    }
}

