:root {
    --primary: #d97706;
    /* Amber-600 */
    --primary-dark: #b45309;
    /* Amber-700 */
    --secondary: #111827;
    /* Gray-900 / Navy-ish */
    --text-main: #374151;
    /* Gray-700 */
    --text-light: #6b7280;
    /* Gray-500 */
    --bg-light: #f9fafb;
    /* Gray-50 */
    --white: #ffffff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --font-main: 'Outfit', sans-serif;
    --alert-bg: #fffbf0;
    --alert-border: #fde68a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.section {
    padding: 5rem 0;
}

.moq-notice-box {
    display: inline-block;
    background-color: var(--alert-bg);
    border: 1px solid var(--alert-border);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background-color: #f3f4f6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary);
}

.btn-nav {
    background-color: var(--secondary);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
}

.btn-nav:hover {
    background-color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2000 !important;
    /* Force top z-index */
    padding: 10px;
    /* Increase hit area */
    pointer-events: auto !important;
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--secondary);
    background-image: url('assets/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
    padding-top: 160px;
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.7);
    /* Deep gray/navy with 0.7 opacity for contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* About Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.feature-list {
    margin-top: 1.5rem;
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.placeholder-box {
    width: 100%;
    height: 400px;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-weight: bold;
    border-radius: var(--border-radius);
}

/* Shop Section */
.shop {
    background-color: var(--bg-light);
}

.section-subtitle {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.product-card-minimal {
    text-align: center;
    transition: var(--transition);
    padding: 1rem;
}

.product-card-minimal:hover {
    transform: scale(1.05);
}

.product-card-minimal img {
    background: transparent;
    border-radius: var(--border-radius);
}

.bundle-card {
    position: relative;
    border: 1px solid #e5e7eb;
}

/* .product-img-box {
    height: 200px;
    background-color: #f3f4f6;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #9ca3af;
} */

.product-img-custom {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    background-color: #fff;
    padding: 10px;
}

.product-card h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 3rem;
    /* Keep text heights consistent */
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.qty-selector {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border-radius: var(--border-radius);
    padding: 0.25rem;
    border: 1px solid #e5e7eb;
}

.qty-selector button {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
}

.qty-selector button:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.qty-selector input {
    width: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-family: inherit;
    font-weight: 700;
    color: var(--secondary);
    font-size: 1rem;
    appearance: none;
    -moz-appearance: textfield;
}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions .btn {
    flex: 1;
    white-space: nowrap;
    padding: 0.75rem 1rem;
}

/* Distributors Section */
.distributors {
    padding-bottom: 0;
}

.distributor-card {
    background-color: var(--primary);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.distributor-content {
    max-width: 700px;
    margin: 0 auto;
}

.distributor-content h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.distributor-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 4rem 0 1rem;
    margin-top: 5rem;

    .about-image {
        order: -1;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: var(--border-radius);
    padding: 0.5rem 0;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-content a {
    color: var(--secondary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 500;
}

.dropdown-content a:hover {
    background-color: #f3f4f6;
    color: var(--primary);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Mobile Dropdown fix */
@media (max-width: 768px) {
    .dropdown {
        display: block;
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: relative;
        box-shadow: none;
        background-color: #f9fafb;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
        animation: none;
    }

    .dropbtn {
        display: none;
        /* Reverted to original state */
    }

    /* Hide the unicode hamburger on mobile if nav-toggle is used */
    #main-menu .dropbtn {
        display: none;
    }
}

.dropdown-header {
    display: block;
    padding: 8px 16px 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-weight: 700;
    pointer-events: none;
}

.dropdown-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 4px 0;
}

/* Multi-column Grid for Desktop Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 400px;
    /* Increased width for columns */
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: var(--border-radius);
    padding: 1rem;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    /* Grid Layout */
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

/* Ensure grid is active when displayed */
.dropdown:hover .dropdown-content {
    display: grid;
    animation: fadeIn 0.2s ease-in-out;
}

.dropdown-content a {
    color: var(--secondary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-weight: 500;
    border-radius: 4px;
}

/* Mobile Dropdown fix - keep distinct columns or stack? */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
        /* Hide desktop links on mobile */
    }

    .mobile-toggle {
        display: block !important;
        position: relative;
        z-index: 2000;
    }

    .dropdown-content {
        min-width: 100%;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        box-sizing: border-box;
    }

    .dropdown.active .dropdown-content {
        display: grid;
        animation: none;
    }
}

/* Revert to Vertical Stack (Single Column) */
.dropdown-content {
    min-width: 250px;
    /* Reduced width since we don't need space for 2 cols */
    grid-template-columns: 1fr;
    /* Single column = Vertical stack */
}

/* Ensure links span simple full width */
.dropdown-content a {
    text-align: left;
    /* Keep left align like a standard menu */
}

/* Off-canvas Sidebar Menu */
.dropdown-content {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    /* Start off-screen */
    width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 4rem 1.5rem;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
    border-radius: 0;
    transform: none;
    left: auto;
    visibility: hidden;
    opacity: 0;
}

.dropdown.active .dropdown-content,
.dropdown-content.active {
    right: 0;
    /* Slide in */
    display: block;
    animation: none;
    visibility: visible;
    opacity: 1;
}

/* Close button inside sidebar */
.menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--secondary);
}

/* Overlay Backdrop */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown.active .menu-overlay,
.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Link Styling Updates for Sidebar */
.dropdown-content a {
    font-size: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* Force Mobile Sidebar Visibility */
#mobile-sidebar.active {
    display: block !important;
    right: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
}

/* Force hide menu on hover unless active */
.dropdown:not(.active):hover .dropdown-content {
    display: none !important;
}


/* Shopping Cart Styles */
.cart-container {
    position: relative;
    margin-left: 1rem;
    display: flex;
    align-items: center;
}

.cart-btn {
    color: var(--secondary);
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-btn:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.cart-icon {
    width: 28px;
    height: 28px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Ensure cart is visible on mobile header */
@media (max-width: 768px) {
    .cart-container {
        margin-left: auto;
        /* Push to right */
        margin-right: 1rem;
    }
}


/* Wrapper to group Hamburger and Cart on the right */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


/* FULL WIDTH NAVBAR OVERRIDE */
.nav-container {
    max-width: 100% !important;
    padding: 0 4rem;
}


/* Map Page Styles */
.map-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

#usa-map {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.state {
    fill: #e5e7eb;
    stroke: var(--white);
    stroke-width: 1.5;
    transition: var(--transition);
    cursor: pointer;
}

.state:hover {
    fill: #fcd34d;
    /* Light amber */
    filter: brightness(0.95);
}

.state.active {
    fill: var(--primary);
    stroke: var(--primary-dark);
}

.state.has-distributors {
    fill: #fcd34d;
    /* Yellow/Amber-300 */
}

.state.has-distributors:hover {
    fill: #fbbf24;
    /* Amber-400 */
}

.distributor-details {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    min-height: 400px;
}

.details-placeholder {
    text-align: center;
    color: var(--text-light);
    margin-top: 5rem;
}

.details-placeholder h3 {
    margin: 1rem 0 0.5rem;
    color: var(--secondary);
}

.distributor-info h2 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.distributor-list {
    margin-top: 1.5rem;
}

.distributor-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-left: 4px solid var(--primary);
    background: var(--bg-light);
    border-radius: 0 4px 4px 0;
}

.distributor-item h4 {
    margin-bottom: 0.25rem;
    color: var(--secondary);
}

.distributor-item p {
    font-size: 0.9rem;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.distributor-item .contact-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.distributor-item .contact-link:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .map-layout {
        grid-template-columns: 1fr;
    }

    .distributor-details {
        min-height: auto;
    }
}

/* Clear Cart Button */
.clear-cart-btn {
    background: none;
    border: 1px solid #ef4444;
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
}

.clear-cart-btn:hover {
    background: #ef4444;
    color: var(--white);
}

/* =========================================
   MOBILE OPTIMIZATIONS (Consolidated)
   ========================================= */

@media (max-width: 768px) {

    /* Global Reset for Mobile */
    html,
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    /* Navbar & Header */
    .nav-container {
        padding: 0 1.5rem !important;
        /* Override the 4rem override */
    }

    .logo {
        font-size: 1.25rem;
    }

    /* Hero Section */
    .hero {
        padding-top: 120px;
        /* Reduced from 160px */
        min-height: auto;
        padding-bottom: 4rem;
        background-attachment: scroll;
        /* Fixes potential iOS issues with cover */
    }

    .hero h1 {
        font-size: 2.5rem;
        /* Reduced from 4rem */
    }

    .hero-tagline {
        font-size: 1rem;
    }

    /* Grid Layouts */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Reorder About for Image First */
    .about .grid-2 .about-image {
        order: -1;
    }

    /* Shop Grid */
    .product-grid {
        grid-template-columns: 1fr;
        /* Force single column on smaller screens */
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        display: flex;
        text-align: center;
        gap: 2rem;
    }

    .footer-col {
        margin-bottom: 1rem;
    }

    /* Cart & Checkout */
    .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-direction: column;
        /* Stack image and text */
        align-items: flex-start;
        text-align: left;
    }

    .cart-item img {
        margin-bottom: 1rem;
        width: 100px;
        height: 100px;
    }

    .item-quantity {
        margin-top: 1rem;
    }

    /* Ensure checkout form stacks */
    #checkout-form .grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Forms */
    input,
    select,
    textarea {
        font-size: 16px !important;
        /* Prevent zoom on iOS */
    }

    /* Map Layout */
    .map-layout {
        grid-template-columns: 1fr;
    }

    /* Typography Overrides */
    h1 {
        font-size: 2rem;
    }

    h2,
    .section-title {
        font-size: 1.75rem;
    }
}

/* Small mobile tweaks for slightly larger phones */
@media (min-width: 480px) and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

/* ==========================================
   MODAL STYLES
   ========================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    /* High z-index to block everything */
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.modal-content h2 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Special Events Section */
.special-events {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.special-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/pattern.png');
    /* Fallback if no pattern, but adds texture if available - or just use opacity */
    opacity: 0.05;
    pointer-events: none;
}

.special-events h2,
.special-events .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.special-events p {
    color: rgba(255, 255, 255, 0.95);
}

.special-events .btn-primary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.special-events .btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}