:root {
    --kgm-green-900: #0d2818;
    --kgm-green-800: #1a3a2a;
    --kgm-green-700: #1e4d35;
    --kgm-green-600: #2d6a4f;
    --kgm-green-500: #40916c;
    --kgm-green-400: #52b788;
    --kgm-green-100: #d8f3dc;
    --kgm-gold-700: #8b6914;
    --kgm-gold-600: #b8860b;
    --kgm-gold-500: #c9a84c;
    --kgm-gold-400: #daa520;
    --kgm-gold-300: #f0c040;
    --kgm-gold-200: #c2986c;
    --kgm-gold-100: #fef9ec;
    --kgm-gold-99: #dac68f;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'Sarabun', sans-serif; background: #f8f9fa; color: #2c3e50; margin: 0; line-height: 1.75; overflow-x: clip; }
h1, h2, h3, h4, h5, h6 { line-height: 1.55; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ───── User dropdown ───── */
.user-dropdown { position: relative; }
.user-dropdown-menu { position: absolute; right: 0; top: calc(100% + 10px); background: white; border-radius: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.16); min-width: 230px; overflow: hidden; z-index: 500; }
.user-dropdown-header { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid #f0f2f0; background: #fafbfa; }
.user-dropdown-item { display: flex; align-items: center; gap: 10px; padding: 11px 16px; font-size: 14px; color: #444; transition: background 0.15s; width: 100%; background: none; border: none; cursor: pointer; font-family: inherit; text-align: left; }
.user-dropdown-item:hover { background: #f5f7f5; color: var(--kgm-green-700); }
.user-dropdown-item i { font-size: 16px; color: var(--kgm-green-500); width: 20px; flex-shrink: 0; }
.user-dropdown-logout { color: #e74c3c; }
.user-dropdown-logout i { color: #e74c3c; }
.user-dropdown-logout:hover { background: #fff5f5; color: #c0392b; }
.user-dropdown-sep { border: none; border-top: 1px solid #f0f2f0; margin: 4px 0; }
.user-avatar { width: 32px; height: 32px; border-radius: 999px; background: linear-gradient(135deg, var(--kgm-green-600), var(--kgm-green-400)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: white; pointer-events: none; flex-shrink: 0; }
.user-avatar-lg { width: 40px; height: 40px; font-size: 16px; pointer-events: none; }

/* ───── Main Navbar ───── */
.navbar-kgm { background: var(--kgm-green-900); box-shadow: 0 2px 20px rgba(0,0,0,0.3); position: sticky; top: 0; z-index: 1000; }
.navbar-main { max-width: 1400px; margin: 0 auto; padding: 0 20px; height: 64px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; }

.navbar-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; object-fit: contain; flex-shrink: 0; display: block; }
.brand-text { color: white; font-size: 17px; font-weight: 700; line-height: 1.2; }
.brand-text small { color: var(--kgm-gold-300); font-size: 11px; font-weight: 400; display: block; }

/* Desktop nav links */
.nav-links { display: flex; align-items: center; gap: 2px; justify-content: center; }
.nav-link { color: rgba(255,255,255,0.85); padding: 7px 12px; border-radius: 999px; font-size: 14px; transition: color 0.2s, background 0.2s; white-space: nowrap; text-decoration: none !important; }
.nav-link:link, .nav-link:visited { color: rgba(255,255,255,0.85); }
.nav-link:hover, .nav-link:focus { background: rgba(255,255,255,0.12); color: var(--kgm-gold-300) !important; outline: none; }
.nav-link:active { color: #fff !important; background: rgba(255,255,255,0.2) !important; }
.nav-link.active { background: rgba(255,255,255,0.15) !important; color: #fff !important; font-weight: 700; text-decoration: none !important; }
.nav-link-quote { background: linear-gradient(135deg,var(--kgm-gold-600),var(--kgm-gold-400)); color: var(--kgm-green-900) !important; padding: 7px 16px !important; font-weight: 700; }
.nav-link-quote:hover { background: linear-gradient(135deg,var(--kgm-gold-500),var(--kgm-gold-300)) !important; color: var(--kgm-green-900) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,160,60,0.4); }

/* Nav action icons */
.nav-actions { display: flex; align-items: center; gap: 4px; justify-content: flex-end; }
.nav-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; color: white; border-radius: 999px; transition: all 0.2s; position: relative; background: none; border: none; cursor: pointer; font-size: 19px; }
.nav-btn:hover { background: rgba(255,255,255,0.1); color: var(--kgm-gold-300); }
.nav-login-btn { display: flex !important; align-items: center; gap: 6px; padding: 7px 16px !important; color: #fff !important; background: transparent !important; border: 2px solid rgba(255,255,255,0.8) !important; border-radius: 999px !important; font-size: 14px !important; font-weight: 600; transition: all 0.2s; white-space: nowrap; text-decoration: none !important; }
.nav-login-btn:hover, .nav-login-btn:active, .nav-login-btn:focus { background: var(--kgm-gold-400) !important; color: var(--kgm-green-900) !important; border-color: var(--kgm-gold-400) !important; }
.cart-badge { position: absolute; top: 2px; right: 2px; background: var(--kgm-gold-400); color: var(--kgm-green-900); border-radius: 999px; padding: 1px 5px; font-size: 10px; font-weight: 700; min-width: 18px; text-align: center; line-height: 1.4; }

/* ───── Secondary Bar ───── */
.navbar-secondary { background: linear-gradient(135deg, var(--kgm-gold-99), var(--kgm-gold-99)); overflow: hidden; height: 36px; opacity: 1; transition: height 0.28s cubic-bezier(0.4,0,0.2,1), opacity 0.28s cubic-bezier(0.4,0,0.2,1); will-change: height, opacity; }
.navbar-secondary.hidden { height: 0; opacity: 0; border-top-color: transparent; pointer-events: none; }
.navbar-secondary-inner { max-width: 1400px; margin: 0 auto; padding: 0 20px; height: 36px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.navbar-secondary-links { display: flex; align-items: center; gap: 0; }
.navbar-secondary-link { color: var(--kgm-green-900); font-size: 12px; padding: 4px 10px; white-space: nowrap; text-decoration: none; transition: all 0.2s; font-weight: 600; }
.navbar-secondary-link:hover, .navbar-secondary-link.active { color: var(--kgm-green-900); background: rgba(255,255,255,0.6); border-radius: 999px; }
.navbar-secondary-marketplaces { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.navbar-secondary-marketplace { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 20px; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
.navbar-secondary-marketplace:hover { opacity: 0.85; transform: translateY(-1px); }
.navbar-secondary-marketplace img { border-radius: 2px; }
.shopee-link { background: #ee4d2d; color: #fff; }
.lazada-link { background: #0f146d; color: #fff; }
.tiktok-link { background: #010101; color: #fff; }
.facebook-link { background: #1877f2; color: #fff; }
.thaimart-link { background: #e02424; color: #fff; }
@media (max-width: 768px) {
    .navbar-secondary { display: none; }
}

/* Hamburger */
.hamburger { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; color: white; background: none; border: none; cursor: pointer; font-size: 22px; margin-left: 4px; border-radius: 10px; transition: background 0.2s; }
.hamburger:hover { background: rgba(255,255,255,0.1); }

/* Mobile Drawer */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1999; }
.mobile-overlay.open { display: block; }
.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85vw); background: var(--kgm-green-900); z-index: 2000; transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto; display: flex; flex-direction: column; }
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer-header { padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; }
.mobile-drawer-close { background: none; border: none; color: white; font-size: 22px; cursor: pointer; padding: 4px; border-radius: 8px; }
.mobile-nav-link { display: flex; align-items: center; gap: 12px; padding: 14px 20px; color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.2s; }
.mobile-nav-link:hover, .mobile-nav-link.active { background: rgba(255,255,255,0.08); color: var(--kgm-gold-300); }
.mobile-nav-link i { font-size: 18px; width: 24px; flex-shrink: 0; }
.mobile-drawer-footer { padding: 20px; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 8px; }

/* Nav dropdown (desktop) */
.nav-dropdown { position: relative; }
.nav-dropdown-panel { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: white; border-radius: 16px; box-shadow: 0 12px 40px rgba(0,0,0,0.18); z-index: 900; min-width: 480px; padding: 28px 20px 20px; }
.nav-dropdown-inner { display: flex; gap: 24px; }
.nav-dropdown-col { flex: 1; min-width: 180px; }
.nav-dropdown-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--kgm-green-500); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid #f0f2f0; }
.nav-dropdown-item { display: flex; align-items: center; gap: 8px; padding: 7px 10px; font-size: 13.5px; color: #444; border-radius: 8px; transition: all 0.15s; white-space: nowrap; }
.nav-dropdown-item:hover { background: #f4f7f4; color: var(--kgm-green-600); }
.nav-dropdown-item i { font-size: 13px; color: var(--kgm-green-400); width: 16px; flex-shrink: 0; }
.nav-dropdown-parent { font-weight: 600; color: #2c3e50; }
.nav-dropdown-child { padding-left: 28px; font-size: 13px; color: #666; }
.nav-dropdown-panel-sm { min-width: 200px; padding: 10px; }
.nav-dropdown-item-active { background: #f4f7f4; color: var(--kgm-green-700) !important; font-weight: 600; }

/* Mobile nav sub-menu */
.mobile-nav-sub { display: flex; align-items: center; gap: 10px; padding: 10px 20px; color: rgba(255,255,255,0.75); font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: all 0.15s; }
.mobile-nav-sub:hover { color: var(--kgm-gold-300); background: rgba(255,255,255,0.05); }
.mobile-nav-sub i { font-size: 14px; width: 18px; flex-shrink: 0; }
.mobile-nav-sub-heading { padding: 8px 20px 4px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--kgm-green-400); }
.mobile-nav-sub-parent { font-weight: 600; color: rgba(255,255,255,0.88); }
.mobile-nav-sub-child { padding-left: 36px; font-size: 13px; }

/* ───── Buttons ───── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 22px; border-radius: 999px; font-weight: 600; font-size: 15px; cursor: pointer; border: none; transition: all 0.25s; text-decoration: none; font-family: inherit; line-height: 1.4; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-lg { padding: 13px 28px; font-size: 16px; }
.btn-primary { background: linear-gradient(135deg, var(--kgm-green-600), var(--kgm-green-500)); color: white; }
.btn-primary:hover { background: linear-gradient(135deg, var(--kgm-green-700), var(--kgm-green-600)); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(40,144,108,0.3); }
.btn-gold { background: linear-gradient(135deg, var(--kgm-gold-600), var(--kgm-gold-400)); color: var(--kgm-green-900); }
.btn-gold:hover { background: linear-gradient(135deg, var(--kgm-gold-700), var(--kgm-gold-500)); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,160,60,0.35); }
.btn-outline { background: transparent; border: 2px solid var(--kgm-green-500); color: var(--kgm-green-600); }
.btn-outline:hover { background: var(--kgm-green-600); color: white; }
.btn-danger { background: linear-gradient(135deg, #e74c3c, #c0392b); color: white; }
.btn-danger:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(231,76,60,0.3); }
.btn-light { background: #f0f4f0; color: #444; }
.btn-light:hover { background: var(--kgm-green-100); color: var(--kgm-green-700); }
.w-full { width: 100%; }

/* ───── Cards ───── */
.card { background: white; border-radius: 20px; box-shadow: 0 2px 16px rgba(0,0,0,0.07); overflow: hidden; transition: all 0.3s; }
.card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.12); }
.product-card { transition: transform 0.3s; }
.product-card:hover { transform: translateY(-4px); }
.card-body { padding: 18px; }

/* ───── Product Card ───── */
.product-card { position: relative; display: block; }
.product-card .card { height: 100%; }
.product-img-wrap { overflow: hidden; aspect-ratio: 7/7; position: relative; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img { transform: scale(1.06); }
/* ── Corner ribbon (clip-path + border-image fold) ──────────────────────── */
.product-badge-tl, .product-badge-tr {
    position: absolute; top: 0;
    pointer-events: none; z-index: 1;
}
.product-badge-tl { left: 0; }
.product-badge-tr { right: 0; }

.product-badge-tl .badge, .product-badge-tr .badge {
    --f: 0.45em;
    position: absolute;
    top: 0;
    line-height: 1.6;
    padding-inline: 1lh;
    padding-bottom: var(--f);
    border-radius: 0;
    font-size: 10px; font-weight: 800; letter-spacing: 0.4px;
    border-image: conic-gradient(#0008 0 0) 51% / var(--f);
}

/* Original: ribbon folds down-right, hangs off the top-right corner */
.product-badge-tr .badge {
    right: 0;
    clip-path: polygon(
        100% calc(100% - var(--f)), 100% 100%, calc(100% - var(--f)) calc(100% - var(--f)),
        var(--f) calc(100% - var(--f)), 0 100%, 0 calc(100% - var(--f)),
        999px calc(100% - var(--f) - 999px), calc(100% - 999px) calc(100% - var(--f) - 999px)
    );
    transform: translate(calc((1 - cos(45deg)) * 100%), -100%) rotate(45deg);
    transform-origin: 0% 100%;
}

/* Mirrored: ribbon folds down-left, hangs off the top-left corner */
.product-badge-tl .badge {
    left: 0;
    clip-path: polygon(
        0 calc(100% - var(--f)), 0 100%, var(--f) calc(100% - var(--f)),
        calc(100% - var(--f)) calc(100% - var(--f)), 100% 100%, 100% calc(100% - var(--f)),
        -999px calc(100% - var(--f) - 999px), calc(100% + 999px) calc(100% - var(--f) - 999px)
    );
    transform: translate(calc((cos(45deg) - 1) * 100%), -100%) rotate(-45deg);
    transform-origin: 100% 100%;
}

/* Discount: plain pill, bottom-left */
.product-badge-bl {
    position: absolute; bottom: 10px; left: 10px;
    pointer-events: none; z-index: 1;
}
.product-badge-bl .badge { border-radius: 6px; box-shadow: 0 2px 6px rgba(0,0,0,.15); }

/* General badge pill (used outside product cards e.g. show page) */
.badge { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; display: inline-block; line-height: 1.5; }
.badge-new  { background: var(--kgm-green-500); color: white; }
.badge-sale { background: #e74c3c; color: white; }
.badge-hot  { background: #e67e22; color: white; }
.product-wishlist { position: absolute; bottom: 10px; right: 10px; width: 34px; height: 34px; background: white; border-radius: 999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.15); cursor: pointer; border: none; transition: all 0.2s; color: #aaa; font-size: 15px; }
.product-wishlist:hover, .product-wishlist.active { color: #e74c3c; }
.product-info { padding: 14px; }
.product-category { font-size: 11px; color: var(--kgm-green-500); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.product-name { font-size: 14px; font-weight: 600; color: #2c3e50; margin-bottom: 8px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.4; }
.product-price { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.price-current { font-size: 17px; font-weight: 700; color: var(--kgm-green-600); }
.price-original { font-size: 12px; color: #aaa; text-decoration: line-through; }
.product-rating { display: flex; align-items: center; gap: 3px; font-size: 11px; color: var(--kgm-gold-400); margin-top: 4px; }
.product-add-btn { width: 100%; margin-top: 10px; font-size: 13px; padding: 8px 14px; }

/* ───── Forms ───── */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: #555; margin-bottom: 6px; }
.form-control { width: 100%; padding: 10px 16px; border: 2px solid #e8ecef; border-radius: 999px; font-size: 15px; font-family: inherit; transition: all 0.2s; background: #fafafa; outline: none; color: #2c3e50; }
.form-control:focus { border-color: var(--kgm-green-500); background: white; box-shadow: 0 0 0 3px rgba(64,145,108,0.12); }
textarea.form-control { border-radius: 16px; resize: vertical; min-height: 110px; }
select.form-control { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23333' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; -webkit-appearance: none; padding-right: 36px; }
.form-control.is-invalid { border-color: #e74c3c; }
.invalid-feedback { color: #e74c3c; font-size: 13px; margin-top: 4px; display: block; }
.form-check { display: flex; align-items: center; gap: 8px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; border-radius: 6px; accent-color: var(--kgm-green-500); flex-shrink: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.col-span-2 { grid-column: span 2; }

/* ───── Section ───── */
.section { padding: 56px 0; background: linear-gradient(180deg, var(--kgm-gold-100), #ffffff, var(--kgm-gold-100)); }
.section-title { font-size: clamp(22px, 4vw, 30px); font-weight: 700; color: var(--kgm-green-800); }
.section-subtitle { color: var(--kgm-gold-600); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.section-divider { width: 52px; height: 3px; background: linear-gradient(to right, var(--kgm-gold-500), var(--kgm-gold-300)); border-radius: 999px; margin: 10px 0 20px; }

/* ───── Alerts ───── */
.alert { padding: 12px 18px; border-radius: 14px; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-danger  { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-warning { background: #fff3cd; color: #856404; border: 1px solid #ffeeba; }
.alert-info    { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ───── Layout ───── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ───── Footer ───── */
.footer { background: var(--kgm-green-900); color: rgba(255,255,255,0.8); padding: 52px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.footer h5 { color: var(--kgm-gold-300); font-weight: 700; margin: 0 0 16px; font-size: 15px; }
.footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer a:hover { color: var(--kgm-gold-300); }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px; padding: 18px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.4); }
.social-links { display: flex; gap: 8px; margin-top: 14px; }
.social-link { width: 34px; height: 34px; background: rgba(255,255,255,0.1); border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: white; transition: all 0.2s; }
.social-link:hover { background: var(--kgm-gold-500); color: var(--kgm-green-900) !important; }

/* ───── Breadcrumb ───── */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #888; padding: 12px 0; flex-wrap: wrap; }
.breadcrumb a { color: var(--kgm-green-500); }
.breadcrumb-sep { color: #ccc; }

/* ───── Pagination ───── */
.pagination { display: flex; gap: 5px; align-items: center; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 7px 13px; border-radius: 999px; font-size: 14px; font-weight: 600; }
.pagination a { background: white; color: var(--kgm-green-700); border: 2px solid #e8ecef; transition: all 0.2s; }
.pagination a:hover { border-color: var(--kgm-green-500); color: var(--kgm-green-600); }
.pagination .active span { background: var(--kgm-green-600); color: white; border: 2px solid transparent; }

/* ───── Cookie Consent ───── */
#cookie-banner {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: calc(100% - 32px); max-width: 860px;
    background: #fff; color: #2c3e50; border-radius: 18px;
    padding: 20px 24px; z-index: 9990;
    box-shadow: 0 8px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
    display: flex; align-items: center; gap: 20px;
    border-top: 3px solid var(--kgm-green-600);
}
#cookie-banner .cb-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--kgm-green-600), var(--kgm-green-700));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: white;
}
#cookie-banner .cb-body { flex: 1; min-width: 0; }
#cookie-banner .cb-title { font-weight: 700; font-size: 14px; color: var(--kgm-green-800); margin-bottom: 3px; }
#cookie-banner .cb-text { font-size: 12.5px; color: #666; line-height: 1.5; margin: 0; }
#cookie-banner .cb-text a { color: var(--kgm-green-600); text-decoration: underline; }
#cookie-banner .cb-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Cookie Modal */
#cookie-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45);
    z-index: 9991; display: flex; align-items: center; justify-content: center;
    padding: 16px;
}
#cookie-modal {
    background: white; border-radius: 20px; width: 100%; max-width: 520px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
}
#cookie-modal .cm-header {
    background: linear-gradient(135deg, var(--kgm-green-800), var(--kgm-green-700));
    padding: 20px 24px; display: flex; align-items: center; gap: 14px;
}
#cookie-modal .cm-header-icon { font-size: 26px; color: var(--kgm-gold-300); }
#cookie-modal .cm-header-text h3 { color: white; font-size: 16px; font-weight: 700; margin: 0 0 2px; }
#cookie-modal .cm-header-text p { color: rgba(255,255,255,0.65); font-size: 12px; margin: 0; }
#cookie-modal .cm-close { margin-left: auto; background: rgba(255,255,255,0.15); border: none; color: white; width: 32px; height: 32px; border-radius: 8px; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
#cookie-modal .cm-close:hover { background: rgba(255,255,255,0.25); }
#cookie-modal .cm-body { padding: 20px 24px; display: flex; flex-direction: column; gap: 12px; }
.cm-row {
    border: 1.5px solid #eef0f2; border-radius: 14px;
    padding: 14px 16px; display: flex; align-items: flex-start; gap: 14px;
    transition: border-color 0.2s;
}
.cm-row.active { border-color: var(--kgm-green-400, #4caf50); background: #f6fbf8; }
.cm-row-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.cm-row-icon.icon-required { background: #e8f5e9; color: var(--kgm-green-600); }
.cm-row-icon.icon-analytics { background: #e3f2fd; color: #1976d2; }
.cm-row-icon.icon-marketing { background: #fff3e0; color: #f57c00; }
.cm-row-body { flex: 1; min-width: 0; }
.cm-row-body h4 { font-size: 13.5px; font-weight: 700; color: #2c3e50; margin: 0 0 3px; }
.cm-row-body p { font-size: 12px; color: #888; margin: 0; line-height: 1.5; }
.cm-row-badge { font-size: 10px; background: var(--kgm-green-100, #d4edda); color: var(--kgm-green-700); padding: 2px 8px; border-radius: 20px; font-weight: 600; white-space: nowrap; align-self: flex-start; margin-top: 2px; }

/* Toggle switch */
.cm-toggle { flex-shrink: 0; position: relative; width: 42px; height: 24px; margin-top: 6px; }
.cm-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cm-toggle-slider {
    position: absolute; inset: 0; background: #ccc; border-radius: 24px;
    cursor: pointer; transition: background 0.25s;
}
.cm-toggle-slider::before {
    content: ''; position: absolute; width: 18px; height: 18px;
    left: 3px; top: 3px; background: white; border-radius: 50%;
    transition: transform 0.25s; box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.cm-toggle input:checked + .cm-toggle-slider { background: var(--kgm-green-600); }
.cm-toggle input:checked + .cm-toggle-slider::before { transform: translateX(18px); }
.cm-toggle input:disabled + .cm-toggle-slider { background: var(--kgm-green-400, #66bb6a); cursor: not-allowed; opacity: 0.75; }
.cm-toggle input:disabled + .cm-toggle-slider::before { transform: translateX(18px); }

#cookie-modal .cm-footer {
    padding: 16px 24px 20px; border-top: 1px solid #f0f0f0;
    display: flex; gap: 10px; justify-content: flex-end;
}
#cookie-modal .cm-footer .cb-btn { padding: 10px 20px; font-size: 13px; }

@media (max-width: 700px) {
    #cookie-banner { flex-wrap: wrap; bottom: 0; border-radius: 18px 18px 0 0; width: 100%; left: 0; transform: none; }
    #cookie-banner .cb-actions { width: 100%; flex-wrap: wrap; }
    #cookie-banner .cb-actions .btn:not(:last-child) { flex: 1; }
    #cookie-banner .cb-actions .btn:last-child { width: 100%; }
    #cookie-modal .cm-footer { flex-direction: column-reverse; }
    #cookie-modal .cm-footer .btn { width: 100%; }
}

/* ───── Misc helpers ───── */
.text-green { color: var(--kgm-green-600); }
.text-gold { color: var(--kgm-gold-500); }
.text-center { text-align: center; }
.text-muted { color: #888; }
.fw-bold { font-weight: 700; }
.divider { border: none; border-top: 1px solid #eee; margin: 18px 0; }
[x-cloak] { display: none !important; }
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: white; animation: spin 0.8s linear infinite; }

/* ═══════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════ */

/* ── Large tablet / small desktop (≤ 1024px) ── */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .nav-link { padding: 7px 10px; font-size: 13px; }
}

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {
    .navbar-main { display: flex; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-actions { margin-left: auto; justify-content: flex-end; gap: 2px; }
    /* ซ่อน login button และ wishlist icon บนมือถือ — ใช้ผ่าน drawer แทน */
    .nav-login-btn { display: none !important; }
    .nav-wishlist-btn { display: none !important; }
    /* เพิ่ม tap target ให้ได้ 44px (Apple HIG) */
    .nav-btn { width: 44px; height: 44px; font-size: 20px; }
    .hamburger { width: 44px; height: 44px; font-size: 24px; }
    .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .section { padding: 40px 0; }
    .form-grid { grid-template-columns: 1fr; }
    .col-span-2 { grid-column: span 1; }

}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer { padding-top: 36px; }

    .product-info { padding: 10px; }
    .price-current { font-size: 15px; }
    .product-add-btn { font-size: 12px; padding: 7px 10px; }
    .btn-lg { padding: 11px 20px; font-size: 15px; }
    .section-title { font-size: 20px; }
    .card-body { padding: 14px; }
}

/* ── Very small (≤ 360px) ── */
@media (max-width: 360px) {
    .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
    .grid-2 { grid-template-columns: 1fr; }
    .brand-text small { display: none; }
}

/* ── Flatpickr KGM Theme ── */
.flatpickr-calendar {
    font-family: inherit;
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    overflow: hidden;
}
.flatpickr-calendar.arrowTop:before { border-bottom-color: var(--kgm-green-700); }
.flatpickr-calendar.arrowTop:after  { border-bottom-color: var(--kgm-green-700); }
.flatpickr-calendar.arrowBottom:before { border-top-color: #f4f7f4; }
.flatpickr-calendar.arrowBottom:after  { border-top-color: #f4f7f4; }

/* Header */
.flatpickr-months {
    background: var(--kgm-green-700);
    padding: 4px 0;
}
.flatpickr-month { background: var(--kgm-green-700); color: white; fill: white; height: 40px; }
.flatpickr-current-month { color: white; font-weight: 700; font-size: 15px; padding-top: 8px; }
.flatpickr-current-month .cur-month { color: white; font-weight: 700; }
.flatpickr-current-month input.cur-year { color: white; font-weight: 700; }
.flatpickr-current-month .numInputWrapper span.arrowUp:after   { border-bottom-color: rgba(255,255,255,0.7); }
.flatpickr-current-month .numInputWrapper span.arrowDown:after { border-top-color: rgba(255,255,255,0.7); }
.flatpickr-prev-month, .flatpickr-next-month { fill: white !important; color: white !important; padding: 8px 10px; }
.flatpickr-prev-month:hover svg, .flatpickr-next-month:hover svg { fill: var(--kgm-gold-300) !important; }
.flatpickr-prev-month:hover, .flatpickr-next-month:hover { background: rgba(255,255,255,0.12) !important; border-radius: 8px; }

/* Weekdays row */
.flatpickr-weekdays { background: var(--kgm-green-100); }
span.flatpickr-weekday { background: var(--kgm-green-100); color: var(--kgm-green-700); font-weight: 700; font-size: 12px; }

/* Days */
.flatpickr-days { border: none; }
.dayContainer { padding: 6px; }
.flatpickr-day {
    border-radius: 999px;
    font-size: 13.5px;
    border: 2px solid transparent;
    transition: all 0.15s;
}
.flatpickr-day:hover, .flatpickr-day:focus {
    background: var(--kgm-green-100);
    border-color: var(--kgm-green-100);
    color: var(--kgm-green-700);
}
.flatpickr-day.today {
    border-color: var(--kgm-green-500);
    color: var(--kgm-green-600);
    font-weight: 700;
}
.flatpickr-day.today:hover {
    background: var(--kgm-green-500);
    border-color: var(--kgm-green-500);
    color: white;
}
.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
    background: var(--kgm-green-600);
    border-color: var(--kgm-green-600);
    color: white;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(45,106,79,0.35);
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
    color: #ccc;
}

/* Time picker */
.flatpickr-time {
    border-top: 2px solid var(--kgm-green-100);
    background: white;
}
.flatpickr-time input {
    font-size: 18px;
    font-weight: 700;
    color: var(--kgm-green-800);
    font-family: inherit;
}
.flatpickr-time input:hover, .flatpickr-time input:focus {
    background: var(--kgm-green-100);
    border-radius: 8px;
}
.flatpickr-time .flatpickr-time-separator { color: var(--kgm-green-600); font-weight: 700; }
.flatpickr-time .numInputWrapper span.arrowUp:after   { border-bottom-color: var(--kgm-green-500); }
.flatpickr-time .numInputWrapper span.arrowDown:after { border-top-color: var(--kgm-green-500); }

/* altInput (visual input shown to user) inherits .form-control — just ensure it looks focused correctly */
.flatpickr-input.flatpickr-input ~ .flatpickr-input { }
.form-control.flatpickr-input[readonly] { background: #fafafa; cursor: pointer; }

/* ============================================================
   Size Guide Page (.sg-*)
   ============================================================ */
.sg-hero { background: linear-gradient(135deg, var(--kgm-gold-200), var(--kgm-gold-100), #ffffff); padding: 56px 20px; text-align: center; }
.sg-hero h1 { color: var(--kgm-green-900); font-size: clamp(24px, 4vw, 38px); font-weight: 800; margin: 0 0 12px; }
.sg-hero p { color: var(--kgm-green-700); font-size: 16px; max-width: 560px; margin: 0 auto; }

.sg-section { padding: 48px 0; }
.sg-section-title { font-size: clamp(20px, 3vw, 28px); font-weight: 800; color: var(--kgm-green-800); margin: 0 0 32px; display: flex; align-items: center; gap: 10px; }
.sg-divider { border: none; border-top: 2px solid var(--kgm-green-100); margin: 0; }
.sg-card { background: #fff; border-radius: 20px; box-shadow: 0 4px 24px rgba(0,0,0,.07); overflow: hidden; }
.sg-guide-img { width: 100%; max-width: 640px; height: auto; display: block; margin: 0 auto; }

.sg-tip-card { background: linear-gradient(135deg, #f4faf6, #fff); border: 1px solid var(--kgm-green-100); border-radius: 16px; padding: 24px; }
.sg-tip-card h4 { color: var(--kgm-green-800); font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.sg-tip-card ul { margin: 0; padding-left: 18px; color: #555; font-size: 14px; line-height: 2.1; }

.sg-step { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid #f0f0f0; }
.sg-step:last-child { border-bottom: none; }
.sg-step-num { width: 36px; height: 36px; background: var(--kgm-green-700); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; flex-shrink: 0; }
.sg-step-body h5 { font-size: 15px; font-weight: 700; color: #2c3e50; margin: 0 0 4px; }
.sg-step-body p { font-size: 14px; color: #666; margin: 0; line-height: 1.7; }

.sg-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.35); border-radius: 20px; padding: 5px 14px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }

.sg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 768px) {
    .sg-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ Page (.faq-*)
   ============================================================ */
.faq-hero { background: linear-gradient(135deg, var(--kgm-gold-200), var(--kgm-gold-100), #ffffff); padding: 56px 20px; text-align: center; }
.faq-hero h1 { color: var(--kgm-green-900); font-size: clamp(24px, 4vw, 38px); font-weight: 800; margin: 0 0 12px; }
.faq-hero p { color: var(--kgm-green-700); font-size: 16px; max-width: 560px; margin: 0 auto; }
.faq-hero-link { color: var(--kgm-gold-600); font-weight: 700; text-decoration: none; }
.faq-hero-link:hover { text-decoration: underline; }

.faq-wrap { padding: 48px 20px 32px; }

.faq-group { margin-bottom: 40px; }
.faq-group-title { font-size: 18px; font-weight: 800; color: var(--kgm-green-800); margin: 0 0 16px; display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 2px solid var(--kgm-green-100); }

.faq-item { border: 1px solid #e8f0ec; border-radius: 14px; margin-bottom: 10px; overflow: hidden; transition: box-shadow .2s; }
.faq-item.active { box-shadow: 0 4px 20px rgba(30,77,53,.10); border-color: var(--kgm-green-200, #a8d5b5); }

.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; background: #fff; border: none; cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 600; color: #2c3e50; text-align: left; transition: background .15s; }
.faq-q:hover { background: #f6fbf8; }
.faq-item.active .faq-q { background: #f0f9f4; color: var(--kgm-green-800); }

.faq-arrow { font-size: 14px; flex-shrink: 0; transition: transform .25s; color: var(--kgm-green-600); }
.faq-item.active .faq-arrow { transform: rotate(180deg); }

.faq-a { padding: 4px 20px 20px; background: #f6fbf8; }
.faq-a p, .faq-a ul { font-size: 14px; color: #555; line-height: 1.85; margin: 0; }
.faq-a ul { padding-left: 20px; }
.faq-a li { margin-bottom: 4px; }
.faq-a a { color: var(--kgm-green-700); font-weight: 600; text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

.news-ticker-wrapper {
    background: #2a2a2a;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: default;
}

.news-ticker-container {
    display: flex;
    align-items: center;
    max-width: 100%;
}

.news-ticker-label {
    background: #2a2a2a;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border-right: 2px solid #D4AF37;
    flex-shrink: 0;
}

.news-ticker-label i {
    color: #D4AF37;
    font-size: 16px;
}

.news-ticker-label span {
    color: #D4AF37;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.news-ticker-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
}

.news-ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: ticker-scroll 70s linear infinite;
    position: absolute;
    padding-left: 20%;
    height: 100%;
}

.news-ticker-item {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    padding-right: 50px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ticker-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    cursor: pointer;
}

.ticker-link:hover {
    color: #FFD700;
    text-decoration: underline;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.news-ticker-track:hover {
    animation-play-state: paused;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .news-ticker-label {
        padding: 6px 12px;
    }

    .news-ticker-label i {
        font-size: 14px;
    }

    .news-ticker-label span {
        font-size: 12px;
    }

    .news-ticker-item {
        font-size: 13px;
    }

    .news-ticker-content {
        height: 32px;
    }
}


.product-showcase-section { padding: 60px 0; background: var(--kgm-green-700); }
.showcase-wrapper { display: grid; grid-template-columns: 200px 1fr 400px; gap: 24px; align-items: start; }

/* Thumbnails */
.showcase-thumbnails { display: flex; flex-direction: column; gap: 16px; max-height: 490px; overflow-y: auto; scrollbar-width: none; -ms-overflow-style: none; }
.showcase-thumbnails::-webkit-scrollbar { display: none; }
.showcase-thumb { width: 200px; height: 200px; border-radius: 16px; overflow: hidden; cursor: pointer; border: 3px solid #e5e7eb; transition: border-color 0.2s; }
.showcase-thumb:hover { border-color: var(--kgm-green-500); }
.showcase-thumb.active { border-color: var(--kgm-green-600); box-shadow: 0 0 0 4px rgba(45,106,79,0.1); }
.showcase-thumb img { width: 100%; height: 100%; object-fit: contain; background: #f9fafb; }

/* Main Image */
.showcase-main-image { position: sticky; top: 20px; }
.showcase-image-container { position: relative; aspect-ratio: 1; background: linear-gradient(135deg, #f0f9f4, #fff); border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.showcase-img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.showcase-image-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.showcase-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,0.6); cursor: pointer; transition: all 0.2s; padding: 0; }
.showcase-dot:hover { background: rgba(255,255,255,0.9); }
.showcase-dot.active { background: var(--kgm-green-600); width: 24px; border-radius: 4px; }
.showcase-badges { position: absolute; top: 16px; right: 16px; display: flex; flex-direction: column; gap: 8px; }

/* Details */
.showcase-details { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.showcase-title { font-size: 24px; font-weight: 700; color: #1f2937; margin: 0 0 12px; line-height: 1.3; }
.showcase-category { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.category-label { font-size: 14px; font-weight: 600; color: #6b7280; }
.category-name { font-size: 14px; font-weight: 600; color: var(--kgm-green-600); background: var(--kgm-green-50); padding: 4px 12px; border-radius: 6px; }
.showcase-price { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.price-current { font-size: 32px; font-weight: 800; color: var(--kgm-green-700); }
.price-old { font-size: 18px; color: #9ca3af; text-decoration: line-through; }
.showcase-description { font-size: 14px; color: #6b7280; line-height: 1.6; margin-bottom: 20px; }
.showcase-divider { height: 1px; background: #e5e7eb; margin: 20px 0; }
.showcase-label { font-size: 14px; font-weight: 600; color: #374151; margin-bottom: 12px; display: block; }
.text-danger { color: #ef4444; }

/* Sizes */
.showcase-size-section { margin-bottom: 20px; position: relative; }
.custom-select { position: relative; width: 100%; cursor: pointer; }
.select-trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: 8px; background: #fff; font-size: 14px; font-weight: 600; color: #374151; transition: all 0.2s; }
.select-trigger:hover { border-color: var(--kgm-green-500); }
.text-placeholder { color: #9ca3af; }
.select-arrow { width: 20px; height: 20px; transition: transform 0.2s; flex-shrink: 0; }
.rotate-180 { transform: rotate(180deg); }
.select-dropdown { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; border: 2px solid #e5e7eb; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); max-height: 250px; overflow-y: auto; z-index: 50; }
.select-option { padding: 12px 16px; font-size: 14px; font-weight: 600; color: #374151; cursor: pointer; transition: background 0.15s; }
.select-option:hover { background: #f0f9f4; }
.select-option.selected { background: var(--kgm-green-50); color: var(--kgm-green-700); }

/* Quantity */
.showcase-quantity { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.qty-controls { display: flex; align-items: center; border: 2px solid #e5e7eb; border-radius: 8px; overflow: hidden; }
.qty-btn { width: 40px; height: 40px; border: none; background: #f9fafb; font-size: 18px; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.qty-btn:hover:not(:disabled) { background: #e5e7eb; }
.qty-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.qty-input { width: 60px; height: 40px; border: none; text-align: center; font-size: 16px; font-weight: 600; }
.stock-info { font-size: 13px; color: #6b7280; }

/* Total */
.showcase-total { display: flex; justify-content: space-between; align-items: center; padding: 16px; background: #f0f9f4; border-radius: 12px; margin-bottom: 20px; }
.showcase-total span { font-size: 14px; color: #374151; }
.showcase-total strong { font-size: 24px; color: var(--kgm-green-700); }

/* Actions */
.showcase-actions { display: flex; flex-direction: column; gap: 12px; }

/* Responsive */
@media (max-width: 1024px) {
    .showcase-wrapper { grid-template-columns: 160px 1fr 350px; gap: 16px; }
    .showcase-thumb { width: 160px; height: 160px; }
    .showcase-details { padding: 24px; }
    .showcase-title { font-size: 20px; }
    .price-current { font-size: 28px; }
}

@media (max-width: 768px) {
    .product-showcase-section { padding: 40px 0; }
    .showcase-wrapper { grid-template-columns: 1fr; gap: 20px; }
    .showcase-thumbnails { flex-direction: row; max-height: none; overflow-x: scroll; overflow-y: hidden; padding-bottom: 8px; scrollbar-width: none; -ms-overflow-style: none; }
    .showcase-thumbnails::-webkit-scrollbar { display: none; }
    .showcase-thumb { width: 120px; height: 120px; flex-shrink: 0; }
    .showcase-main-image { position: static; }
    .showcase-details { padding: 20px; }
}
