/* VipDrink - Premium Craft Beer - Modern Luxury Design System */
/* โทนสี: ดำ-ทอง-เหลือง หรูหรา */

@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500&display=swap');

:root {
    /* Colors - Luxury Black & Gold Theme */
    --primary-gold: #FFD700;
    --primary-gold-light: #FDB931;
    --primary-gold-dark: #C5A028;
    --bg-black: #0A0A0A;
    --bg-dark: #121212;
    --bg-card: #1A1A1A;
    --bg-card-hover: #252525;
    --text-white: #FFFFFF;
    --text-light: #E5E5E5;
    --text-muted: #888888;
    --accent-yellow: #F4C430;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #C5A028 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);

    /* Typography */
    --font-thai: 'Kanit', sans-serif;
    --font-display: 'Kanit', sans-serif;

    /* Spacing */
    --container-max: 1400px;
    --section-padding: 80px;
    --card-radius: 16px;
    --btn-radius: 8px;

    /* Shadows */
    --shadow-gold: 0 4px 30px rgba(255, 215, 0, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 48px rgba(255, 215, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Kanit', sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Kanit', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: var(--shadow-gold);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--btn-radius);
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: calc(100% - 40px);
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

.nav-menu a.active {
    color: var(--primary-gold);
}

/* LINE Button */
.nav-menu a.line-btn {
    background: linear-gradient(135deg, #00B900, #00C300);
    color: #fff !important;
    padding: 8px 16px !important;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-menu a.line-btn::after {
    display: none;
}

.nav-menu a.line-btn:hover {
    background: linear-gradient(135deg, #00C300, #00D900);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 185, 0, 0.4);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a svg {
    vertical-align: middle;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover>a svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px !important;
    color: var(--text-light) !important;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold) !important;
    padding-left: 25px !important;
}

/* Product Filter Tabs */
.product-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.filter-tab {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
}

.filter-tab.active {
    background: var(--gradient-gold);
    border-color: var(--primary-gold);
    color: var(--bg-black);
    font-weight: 600;
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 0;
        margin-top: 10px;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .product-filter-tabs {
        gap: 8px;
        padding: 15px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.cart-icon:hover {
    background: var(--bg-card-hover);
    transform: scale(1.05);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-gold);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gradient-gold);
    color: var(--bg-black);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition-fast);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 120px 20px 80px;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero h1 {
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== NEW HERO SECTION ==================== */
.hero-new {
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-new-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
}

.hero-new-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    /* Increased opacity from 0.5 */
}

.hero-new-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 600px;
    /* Reduced width */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    /* Lighter gradient */
}

.hero-new-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-new-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: -150px;
    padding: 40px 0;
}

.hero-brand-title {
    font-size: clamp(3.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(to bottom, #FFD700, #FDB931, #9E7D2B);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 30px rgba(253, 185, 49, 0.3);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-brand-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-new-subtitle {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.7;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-new-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 380px;
}

/* Hero Products Section - Premium Design */
.hero-new-products {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-left: auto;
    margin-right: -100px;
    min-width: 580px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 215, 0, 0.1),
        inset 0 0 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-new-products:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(255, 215, 0, 0.15),
        inset 0 0 80px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 215, 0, 0.5);
}

.hero-new-products::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    padding: 2px;
    /* Border thickness */
    background: linear-gradient(45deg, transparent, var(--primary-gold), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.8;
}



.hero-products-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    text-align: left;
}

.hero-products-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    box-shadow: 0 0 10px var(--primary-gold);
}

.hero-products-header h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-products-carousel {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 12px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Premium Horizontal Scrollbar */
.hero-products-carousel::-webkit-scrollbar {
    height: 8px;
}

.hero-products-carousel::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.08);
    border-radius: 10px;
}

.hero-products-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--primary-gold), rgba(255, 215, 0, 0.6));
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.hero-product-mini {
    flex: 0 0 180px;
    min-width: 180px;
    position: relative;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-product-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.15), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.hero-product-mini:hover::before {
    left: 100%;
}

.hero-product-mini:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 30px rgba(255, 215, 0, 0.3),
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 215, 0, 0.08);
}

.hero-product-mini-img-wrapper {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.8), rgba(15, 15, 15, 0.8));
}

.hero-product-mini-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-product-mini:hover .hero-product-mini-img {
    transform: scale(1.1);
}

.hero-product-new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff6b6b, #ff4757);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.hero-product-mini-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 2;
}

.hero-product-mini-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-product-mini-price {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-product-mini-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--gradient-gold);
    color: var(--bg-black);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.hero-product-mini-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.hero-product-mini-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-new {
        padding: 80px 0 40px;
    }

    .hero-new-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-new-content {
        text-align: center;
    }

    .hero-new-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .hero-new-btns {
        justify-content: center;
    }
}

@media (max-width: 576px) {

    /* Force no horizontal scroll on mobile */
    html,
    body {
        overflow-x: hidden;
    }

    .hero-new {
        padding: 20px 0 20px;
        overflow: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .hero-new-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
    }

    .hero-new .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .hero-new-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .hero-new-content {
        text-align: center;
        padding: 10px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        margin: 0 auto;
        margin-left: -20px;
    }

    .hero-new-logo {
        width: 90px;
        height: auto;
        margin: 0 auto 12px auto;
        display: block;
    }

    .hero-brand-title {
        font-size: 5.5rem;
        font-weight: 900;
        text-shadow:
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 215, 0, 0.7),
            0 0 80px rgba(255, 215, 0, 0.5),
            0 6px 12px rgba(0, 0, 0, 0.9);
        letter-spacing: 4px;
        margin-bottom: 5px;
    }

    .hero-brand-subtitle {
        font-size: 1.2rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    }

    .hero-new h1 {
        font-size: 1.35rem;
        line-height: 1.3;
        padding: 0 10px;
        margin-bottom: 8px;
        word-wrap: break-word;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-new h1 .gold-text {
        display: block;
    }

    .hero-new-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0 16px;
        margin-bottom: 14px;
        color: var(--text-muted);
        width: 100%;
        box-sizing: border-box;
    }

    .hero-new-subtitle br {
        display: none;
    }

    .hero-new-btns {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .hero-new-btns .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
        justify-content: center;
    }

    /* Hero Products Section - Mobile: 2 columns visible, scrollable, compact */
    .hero-new-products {
        margin: 0 auto 0 -20px;
        padding: 16px 12px;
        border-radius: 16px;
        width: 380px;
        max-width: 100%;
        height: 285px;
        min-width: auto;
        box-sizing: border-box;
        overflow: hidden;
    }

    .hero-products-header {
        margin-bottom: 12px;
        padding-bottom: 10px;
    }

    .hero-products-header h3 {
        font-size: 1rem;
    }

    .hero-products-carousel {
        display: grid;
        grid-template-columns: repeat(3, calc(50% - 4px));
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0;
    }

    .hero-product-mini {
        flex: none;
        min-width: 0;
        max-width: none;
        width: 100%;
        scroll-snap-align: start;
    }

    .hero-product-mini-img-wrapper {
        height: 100px;
    }

    .hero-product-mini-info {
        padding: 10px;
    }

    .hero-product-mini-name {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .hero-product-mini-price {
        font-size: 0.95rem;
    }

    .hero-product-mini-button {
        padding: 8px 10px;
        font-size: 0.75rem;
        width: 100%;
        margin-top: 6px;
    }
}


/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-thai);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--bg-black);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-white);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ==================== PRODUCT CARDS ==================== */
.products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.products-grid .product-card {
    flex: 0 1 300px;
    width: 100%;
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 215, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-gold);
    color: var(--bg-black);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 24px;
}

.product-category {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-white);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--card-radius);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.promo-content h3 {
    margin-bottom: 12px;
}

.promo-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.promo-code {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-black);
    padding: 12px 24px;
    border-radius: var(--btn-radius);
    border: 2px dashed var(--primary-gold);
}

.promo-code span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 2px;
}

/* ==================== FEATURES ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--card-radius);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-normal);
}

.feature-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--bg-black);
}

.feature-card h4 {
    margin-bottom: 12px;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-gold);
}

.social-links a:hover svg {
    stroke: var(--bg-black);
}

.social-links svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-white);
}

.footer-links h4 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 24px;
    font-family: var(--font-thai);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    gap: 12px;
}

.payment-methods img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.payment-methods img:hover {
    opacity: 1;
}

/* ==================== CART SIDEBAR ==================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 2000;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 215, 0, 0.1);
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.cart-header h3 {
    font-size: 1.25rem;
}

.cart-close {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-close:hover {
    background: var(--primary-gold);
}

.cart-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-white);
}

.cart-close:hover svg {
    stroke: var(--bg-black);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 16px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--primary-gold);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: var(--bg-black);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 6px;
    color: var(--text-white);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.cart-item-qty span {
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: #ff4444;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.cart-empty svg {
    width: 80px;
    height: 80px;
    stroke: var(--text-muted);
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    background: var(--bg-black);
}

.cart-summary {
    margin-bottom: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.cart-summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary-row.total .amount {
    color: var(--primary-gold);
}

.cart-footer .btn {
    width: 100%;
}

/* ==================== PAGE HEADERS ==================== */
.page-header {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-black) 100%);
    padding: 140px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.page-header-compact {
    padding: 100px 0 30px;
}

.page-header-compact h1 {
    margin-bottom: 0;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-gold);
}

.breadcrumb span {
    color: var(--primary-gold);
}

/* ==================== FORMS ==================== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-light);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--btn-radius);
    color: var(--text-white);
    font-family: var(--font-thai);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

/* ==================== CHECKOUT ==================== */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.checkout-section {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.checkout-section h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-summary {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: sticky;
    top: 100px;
}

.order-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 500;
    margin-bottom: 4px;
}

.order-item-qty {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.order-item-price {
    font-weight: 600;
    color: var(--primary-gold);
}

.order-totals {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.order-totals .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.order-totals .total {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid var(--primary-gold);
}

.order-totals .total span:last-child {
    color: var(--primary-gold);
}

/* ==================== REVIEWS ==================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--bg-black);
}

.review-author h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--primary-gold);
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== SHIPPING INFO ==================== */
.shipping-options {
    display: grid;
    gap: 20px;
}

.shipping-option {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-fast);
}

.shipping-option:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.shipping-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shipping-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--bg-black);
}

.shipping-details h4 {
    margin-bottom: 8px;
}

.shipping-details p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.shipping-price {
    color: var(--primary-gold);
    font-weight: 600;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-logo {
        width: 150px;
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    /* Global smaller fonts for mobile */
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem !important;
    }

    h2 {
        font-size: 1.3rem !important;
    }

    h3 {
        font-size: 1.1rem !important;
    }

    h4 {
        font-size: 1rem !important;
    }

    p {
        font-size: 0.9rem;
    }

    /* Hero buttons smaller */
    .hero-btns,
    .hero-new-btns {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        padding: 0 10px;
    }

    .hero-btns .btn,
    .hero-new-btns .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    /* Product grids - 2 columns on mobile */
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 10px;
    }

    .products-grid .product-card {
        flex: none !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    /* Smaller product cards */
    .product-card {
        padding: 0;
        border-radius: 12px;
    }

    .product-card-image {
        height: 120px;
    }

    .product-card-content {
        padding: 10px;
    }

    .product-card h4 {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-card .product-price {
        font-size: 0.95rem;
    }

    .product-card .btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .product-actions {
        flex-direction: column;
        gap: 6px;
    }

    .product-actions .btn {
        width: 100%;
        padding: 8px;
        font-size: 0.75rem;
    }

    /* Section headers smaller */
    .section-header h2 {
        font-size: 1.25rem !important;
    }

    .section-header p {
        font-size: 0.85rem;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    /* Smaller buttons globally */
    .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Footer - 2 columns on mobile */
    .footer-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
        text-align: left;
    }

    .footer-brand {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-links {
        padding: 0;
    }

    .footer-links h4,
    .footer-links h5 {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .footer-links ul li {
        margin-bottom: 6px;
    }

    .footer-links ul li a {
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--primary-gold);
    border-radius: var(--btn-radius);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3000;
    transform: translateX(150%);
    transition: var(--transition-normal);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-color: #4CAF50;
}

.toast-success svg {
    stroke: #4CAF50;
}

/* ==================== MODERN HOMEPAGE SECTIONS ==================== */

/* Section Badge */
.section-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Section Action */
.section-action {
    text-align: center;
    margin-top: 50px;
}

/* Modern Promo Banner */
.promo-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #151515 50%, #0d0d0d 100%);
}

.promo-banner-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--card-radius);
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.promo-banner-modern::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.promo-banner-modern::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.promo-icon {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
}

.promo-content {
    flex: 1;
}

.promo-content h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.promo-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.promo-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-features span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.promo-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.promo-code-box {
    background: var(--bg-black);
    border: 2px dashed var(--primary-gold);
    border-radius: var(--btn-radius);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-code-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.promo-code-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 3px;
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--bg-black);
    border: none;
}

.btn-gold:hover {
    opacity: 0.9;
}

/* Modern Feature Cards */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card-modern {
    background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
    padding: 40px 30px;
    border-radius: var(--card-radius);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition-normal);
}

.feature-card-modern:hover .feature-icon-wrapper {
    background: var(--gradient-gold);
    border-color: var(--primary-gold);
}

.feature-icon-wrapper svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary-gold);
    transition: var(--transition-normal);
}

.feature-card-modern:hover .feature-icon-wrapper svg {
    stroke: var(--bg-black);
}

.feature-card-modern h4 {
    margin-bottom: 12px;
    color: var(--text-white);
    font-size: 1.2rem;
}

.feature-card-modern p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer h5 styling */
.footer-links h5 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 24px;
    font-family: var(--font-thai);
    font-weight: 600;
}

/* Responsive Promo Banner Modern */
@media (max-width: 992px) {
    .promo-banner-modern {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .promo-icon {
        font-size: 3rem;
    }

    .promo-features {
        justify-content: center;
    }

    .promo-actions {
        width: 100%;
    }

    .promo-code-box {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .promo-banner-modern {
        padding: 30px 20px;
    }

    .promo-content h3 {
        font-size: 1.4rem;
    }

    .promo-features span {
        font-size: 0.85rem;
    }
}

/* ==================== BEER ORIGIN SECTION ==================== */
.beer-origin-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
}

.beer-origin-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.beer-origin-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
}

.beer-origin-card {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: var(--transition-normal);
}

.beer-origin-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: var(--shadow-gold);
}

.beer-origin-img-wrapper {
    height: 350px;
    overflow: hidden;
}

.beer-origin-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.beer-origin-card:hover .beer-origin-img-wrapper img {
    transform: scale(1.05);
}

.beer-origin-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.beer-origin-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.beer-origin-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1rem;
}

.beer-origin-content strong {
    color: var(--primary-gold);
}

/* Slider Navigation Buttons */
.beer-origin-nav {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.beer-origin-nav:hover {
    background: var(--gradient-gold);
    border-color: var(--primary-gold);
}

.beer-origin-nav svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-gold);
    transition: var(--transition-normal);
}

.beer-origin-nav:hover svg {
    stroke: var(--bg-black);
}

/* Slider Dots */
.beer-origin-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.beer-origin-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
}

.beer-origin-dots .dot:hover {
    background: rgba(255, 215, 0, 0.4);
}

.beer-origin-dots .dot.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

/* ==================== NEW CUSTOMER ACTIVITIES SECTION ==================== */
.new-customer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.new-customer-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--card-radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.new-customer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.new-customer-card:hover::before {
    transform: scaleX(1);
}

.new-customer-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.new-customer-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.new-customer-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--text-white);
}

.new-customer-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.new-customer-card code {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary-gold);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.new-customer-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.new-customer-features span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Float Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Beer Origin & New Customer */
@media (max-width: 992px) {
    .beer-origin-card {
        grid-template-columns: 1fr;
    }

    .beer-origin-img-wrapper {
        height: 250px;
    }

    .beer-origin-content {
        padding: 30px;
    }

    .new-customer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .beer-origin-nav {
        width: 40px;
        height: 40px;
    }

    .beer-origin-nav svg {
        width: 20px;
        height: 20px;
    }

    .beer-origin-content h3 {
        font-size: 1.2rem;
    }

    .beer-origin-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .new-customer-card {
        padding: 30px 20px;
    }

    .new-customer-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .beer-origin-slider-wrapper {
        flex-direction: row;
        gap: 0;
        padding: 0;
        overflow: visible;
    }

    .beer-origin-nav {
        display: none;
    }

    .beer-origin-slider {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 15px;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 10px 20px;
        width: 100%;
    }

    .beer-origin-card {
        scroll-snap-align: start;
        flex: 0 0 320px;
        min-width: 320px;
        width: 320px;
        height: auto;
        border-radius: 16px;
        margin: 0;
        overflow: hidden;
    }

    .beer-origin-img-wrapper {
        height: 160px;
    }

    .beer-origin-content {
        padding: 15px;
    }

    .beer-origin-content h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .beer-origin-content p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .beer-origin-dots .dot {
        width: 8px;
        height: 8px;
    }
}

/* ==================== PRODUCT TIER DROPDOWN ==================== */
.product-tier-select {
    margin: 8px 0;
}

.tier-dropdown {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffd700' viewBox='0 0 16 16'%3E%3Cpath 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 12px center;
    padding-right: 35px;
}

.tier-dropdown:hover {
    border-color: var(--primary-gold);
    background-color: rgba(255, 215, 0, 0.12);
}

.tier-dropdown:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.tier-dropdown option {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 10px;
}

.product-volume-abv {
    display: flex;
    gap: 12px;
    margin: 6px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.product-volume-abv span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Cart tier label */
.cart-item-tier {
    font-size: 0.75rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-top: 2px;
}

/* ==================== ADD TO CART DROPDOWN BUTTON ==================== */
.add-to-cart-dropdown {
    position: relative;
    width: 100%;
}

/* ==================== PRODUCT CARD ALIGNMENT FIX ==================== */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
}

.product-card .product-name {
    min-height: 2.6em;
    line-height: 1.3;
}

.product-card .product-actions {
    margin-top: auto;
    padding-top: 12px;
}

.products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid .product-card {
    flex: 0 0 calc(25% - 18px);
    max-width: 300px;
    min-width: 260px;
}

.add-to-cart-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn .dropdown-arrow {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.tier-menu {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 8px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
}

.tier-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tier-menu-header {
    padding: 8px 12px;
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 6px;
}

.tier-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.tier-menu-item:hover {
    background: rgba(255, 215, 0, 0.15);
}

.tier-menu-item:active {
    background: rgba(255, 215, 0, 0.25);
}

.tier-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.tier-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* ==================== PRODUCT DETAIL TIER DROPDOWN ==================== */
.add-to-cart-dropdown-detail {
    position: relative;
    width: 100%;
}

.add-to-cart-btn-detail {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    padding: 16px 24px;
}

.tier-menu-detail {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 10px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.tier-menu-detail.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tier-menu-item-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 18px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    font-size: 1rem;
}

.tier-menu-item-detail:hover {
    background: rgba(255, 215, 0, 0.15);
}

.tier-menu-item-detail .tier-label {
    font-size: 1rem;
}

.tier-menu-item-detail .tier-price {
    font-size: 1.1rem;
}

/* ==================== SEARCH STYLES ==================== */
.search-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
}

.search-icon:hover {
    background: var(--bg-card-hover);
    transform: scale(1.05);
}

.search-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-gold);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    backdrop-filter: blur(10px);
}

.search-modal.active {
    display: flex;
}

.search-modal-content {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 20px 25px;
    padding-left: 55px;
    background: var(--bg-card);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 1.2rem;
    font-family: 'Kanit', sans-serif;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    stroke: var(--primary-gold);
}

.search-close {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: var(--primary-gold);
}

.search-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-white);
}

.search-close:hover svg {
    stroke: var(--bg-black);
}

/* Search Results */
.search-results {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.search-results::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.search-result-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary-gold);
    transform: translateX(5px);
}

.search-result-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 5px;
}

.search-result-category {
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-result-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.search-no-results {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.search-no-results svg {
    width: 60px;
    height: 60px;
    stroke: var(--text-muted);
    margin-bottom: 15px;
}

.search-no-results p {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .search-modal {
        padding-top: 80px;
    }

    .search-input {
        padding: 16px 20px;
        padding-left: 50px;
        font-size: 1rem;
    }

    .search-result-item {
        padding: 12px 15px;
        gap: 15px;
    }

    .search-result-img {
        width: 55px;
        height: 55px;
    }

    .search-result-name {
        font-size: 0.95rem;
    }
}

/* ==================== OUT OF STOCK STYLES ==================== */
.product-card.out-of-stock {
    opacity: 0.85;
}

.product-image.grayscale img {
    filter: grayscale(50%);
    transition: filter 0.3s ease;
}

.product-card.out-of-stock:hover .product-image.grayscale img {
    filter: grayscale(20%);
}

.product-badge.out-of-stock-badge {
    background: linear-gradient(135deg, #666, #444);
    color: #fff;
}

.btn-disabled {
    pointer-events: none;
}/ *   H e a d e r   S e a r c h   B a r   * /  
 . h e a d e r - s e a r c h   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         m a r g i n - r i g h t :   1 5 p x ;  
 }  
  
 . s e a r c h - b a r - w r a p p e r   {  
         p o s i t i o n :   r e l a t i v e ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 3 ) ;  
         b o r d e r - r a d i u s :   5 0 p x ;  
         p a d d i n g :   5 p x   1 5 p x ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         w i d t h :   2 5 0 p x ;  
 }  
  
 . s e a r c h - b a r - w r a p p e r : f o c u s - w i t h i n   {  
         b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 8 ) ;  
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y - g o l d ) ;  
         b o x - s h a d o w :   0   0   1 5 p x   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 2 ) ;  
         w i d t h :   3 0 0 p x ;  
 }  
  
 # h e a d e r S e a r c h I n p u t   {  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         c o l o r :   v a r ( - - t e x t - w h i t e ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         w i d t h :   1 0 0 % ;  
         o u t l i n e :   n o n e ;  
         f o n t - f a m i l y :   v a r ( - - f o n t - t h a i ) ;  
 }  
  
 # h e a d e r S e a r c h I n p u t : : p l a c e h o l d e r   {  
         c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 ) ;  
 }  
  
 . s e a r c h - b t n - i c o n   {  
         b a c k g r o u n d :   t r a n s p a r e n t ;  
         b o r d e r :   n o n e ;  
         c o l o r :   v a r ( - - p r i m a r y - g o l d ) ;  
         c u r s o r :   p o i n t e r ;  
         p a d d i n g :   0 ;  
         m a r g i n - l e f t :   1 0 p x ;  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         j u s t i f y - c o n t e n t :   c e n t e r ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 2 s ;  
 }  
  
 . s e a r c h - b t n - i c o n : h o v e r   {  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
 }  
  
 . s e a r c h - b t n - i c o n   s v g   {  
         w i d t h :   1 8 p x ;  
         h e i g h t :   1 8 p x ;  
 }  
  
 / *   S e a r c h   D r o p d o w n   * /  
 . s e a r c h - d r o p d o w n   {  
         p o s i t i o n :   a b s o l u t e ;  
         t o p :   1 0 0 % ;  
         r i g h t :   0 ;  
         l e f t :   0 ;  
         b a c k g r o u n d :   v a r ( - - b g - c a r d ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 2 ) ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         m a r g i n - t o p :   1 0 p x ;  
         b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ;  
         z - i n d e x :   1 0 0 1 ;  
         o v e r f l o w :   h i d d e n ;  
         d i s p l a y :   n o n e ;  
         m a x - h e i g h t :   4 0 0 p x ;  
         o v e r f l o w - y :   a u t o ;  
 }  
  
 . s e a r c h - d r o p d o w n . a c t i v e   {  
         d i s p l a y :   b l o c k ;  
         a n i m a t i o n :   f a d e I n   0 . 2 s   e a s e ;  
 }  
  
 . s e a r c h - r e s u l t - i t e m   {  
         d i s p l a y :   f l e x ;  
         a l i g n - i t e m s :   c e n t e r ;  
         p a d d i n g :   1 2 p x   1 5 p x ;  
         b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
         t r a n s i t i o n :   b a c k g r o u n d   0 . 2 s ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         c o l o r :   v a r ( - - t e x t - w h i t e ) ;  
 }  
  
 . s e a r c h - r e s u l t - i t e m : l a s t - c h i l d   {  
         b o r d e r - b o t t o m :   n o n e ;  
 }  
  
 . s e a r c h - r e s u l t - i t e m : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 1 ) ;  
 }  
  
 . s e a r c h - r e s u l t - i m g   {  
         w i d t h :   4 0 p x ;  
         h e i g h t :   4 0 p x ;  
         o b j e c t - f i t :   c o v e r ;  
         b o r d e r - r a d i u s :   6 p x ;  
         m a r g i n - r i g h t :   1 2 p x ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 1 5 ,   0 ,   0 . 2 ) ;  
 }  
  
 . s e a r c h - r e s u l t - i n f o   {  
         f l e x :   1 ;  
 }  
  
 . s e a r c h - r e s u l t - n a m e   {  
         f o n t - s i z e :   0 . 9 r e m ;  
         f o n t - w e i g h t :   5 0 0 ;  
         m a r g i n - b o t t o m :   2 p x ;  
         c o l o r :   v a r ( - - t e x t - w h i t e ) ;  
         l i n e - h e i g h t :   1 . 2 ;  
 }  
  
 . s e a r c h - r e s u l t - c a t e g o r y   {  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
 }  
  
 . s e a r c h - r e s u l t - p r i c e   {  
         f o n t - s i z e :   0 . 9 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - p r i m a r y - g o l d ) ;  
 }  
  
 . s e a r c h - n o - r e s u l t s   {  
         p a d d i n g :   2 0 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
 }  
  
 / *   M o b i l e   R e s p o n s i v e n e s s   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . h e a d e r - s e a r c h   {  
                 d i s p l a y :   n o n e ;  
                 / *   H i d e   o n   m o b i l e   f o r   n o w   o r   a d j u s t   * /  
         }  
 }  
 