/*
Theme Name: VieiraOS
Theme URI: https://vieiracafe.com
Author: Vieira Architect
Author URI: https://vieiracafe.com
Description: Uncomplicated, high-conversion custom WooCommerce theme for Vieira Café & Delicana Cachaça. Built lean.
Version: 1.0.0
Text Domain: vieiraos
*/

/* --- 1. RESET & VARS --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --bg-color: #E5E5E5;
    --text-color: #1a1a1a;
    --pitch-black: #000000;
    --accent-color: #088032;
}

body, html {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Oswald', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.mono { font-family: 'Courier New', Courier, monospace; text-transform: uppercase; letter-spacing: -0.05em; }

.lang-switch { font-family: 'Courier New', monospace; cursor: pointer; margin-left: 20px; font-weight: bold; transition: opacity 0.3s; }
.lang-switch:hover { opacity: 0.6; } 
.lang-active { border-bottom: 2px solid #000; }
[lang="en"] { display: none; }

/* --- 2. HEADER (Fixed Mobile Menu) --- */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center; 
    padding: 12px 30px; background-color: var(--bg-color); 
    z-index: 1000; border-bottom: 1px solid var(--pitch-black); 
    flex-wrap: wrap; /* Allows menu to drop down on mobile */
}
.header a { 
    text-decoration: none; color: var(--text-color); text-transform: uppercase; 
    font-size: 16px; font-weight: 500; letter-spacing: 0.05em; transition: all 0.3s; cursor: pointer; 
}
.header a:hover { opacity: 0.6; }
.header-center { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 40px; }
.header-right { display: flex; align-items: center; }

/* Mobile Header Layout: 2 Rows */
@media (max-width: 768px) {
    .header { padding: 10px 15px; }
    .header-logo { width: 50%; order: 1; }
    .header-right { width: 50%; order: 2; justify-content: flex-end; }
    .header-center { 
        position: static; transform: none; width: 100%; order: 3; 
        justify-content: space-between; gap: 10px; margin-top: 10px; 
        padding-top: 10px; border-top: 1px solid #ccc; 
    }
    .header-center a { font-size: 13px; } /* Smaller font for mobile menu */
    .header-logo strong { font-size: 1.5rem !important; }
    .header-logo span.mono { font-size: 10px !important; }
    .lang-switch { margin-left: 10px; }
}

/* --- 3. HERO --- */
.poster-screen { min-height: 100vh; display: flex; flex-direction: column; justify-content: space-between; padding-top: 80px; }
.hero-stage { flex-grow: 1; display: flex; align-items: center; justify-content: center; position: relative; width: 100%; overflow: hidden; background-color: #000; padding: 50px 0; margin: 0 0 4vh 0; }
.hero-stage img { width: 100%; height: 100%; max-height: 55vh; object-fit: cover; filter: grayscale(100%) contrast(1.2); opacity: 0.95; transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1); }
.hero-stage:hover img { transform: scale(1.08); } 
.hero-footer { width: 100%; text-align: center; line-height: 1.0; padding: 0 30px 2vh 30px; }
.massive-type { font-family: 'Anton', sans-serif; font-size: 13.5vw; text-transform: uppercase; margin: 0; color: var(--pitch-black); display: block; }

@media (max-width: 768px) {
    .poster-screen { 
        min-height: auto; 
        padding-top: 100px; 
        padding-bottom: 20px;
    }
    .hero-stage { 
        /* We use borders instead of padding to create a hard physical trap for the image */
        padding: 0 !important; 
        border-top: 15px solid #000;
        border-bottom: 15px solid #000;
        height: 60vh; 
        flex-grow: 0; 
        margin-bottom: 20px;
    }
    .hero-stage img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* This stretches the photo 5% larger, shoving the white edge completely out of bounds */
        transform: scale(1.05) !important; 
    }
    .massive-type { font-size: 16vw; }
    .hero-footer { padding: 0 15px; }
}
/* --- 4. INFINITE TICKER --- */
.ticker-wrap { 
    width: 100%; 
    background: var(--accent-color); 
    color: var(--pitch-black); 
    padding: 15px 0; 
    overflow: hidden; 
    white-space: nowrap; 
    display: flex; 
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
}
.ticker-track { display: flex; animation: marquee 40s linear infinite; }
.ticker-item { font-family: 'Anton', sans-serif; font-size: 32px; line-height: 1; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* FIXED TYPO HERE: Removed the slash before @media */
@media (max-width: 768px) {
    .ticker-wrap {
        padding: 6px 0 !important; /* Crushes the green background down */
    }
    .ticker-item { 
        font-size: 20px !important; /* Clean, static size for the text */
        line-height: 1 !important; /* Removes the invisible space around the font */
        padding: 0 !important;
    }
}

/* --- 5. GRID (RESTORED FADE-IN ANIMATIONS) --- */
.arsenal-section { padding: 60px 30px; }
.grid-container { display: grid; grid-template-columns: 1fr 1fr 1fr; border: 3px solid var(--text-color); }

/* Base State: Hidden, waiting to scroll into view */
.grid-box { 
    position: relative; overflow: hidden; padding: 40px; border-right: 3px solid var(--text-color); 
    min-height: 450px; display: flex; flex-direction: column; justify-content: space-between; 
    background: transparent; cursor: pointer; 
    opacity: 0; transform: translateY(40px); /* Pushed down and invisible */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.4s ease;
}

/* Revealed State: Floats up and fades in */
.grid-box.reveal { opacity: 1; transform: translateY(0); }

.grid-box:last-child { border-right: none; }

.ghost-img { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(1.1); 
    width: 80%; opacity: 0; transition: all 0.5s ease; filter: grayscale(100%) contrast(1.3); 
    pointer-events: none; z-index: 1; 
}

.grid-box > div { position: relative; z-index: 5; pointer-events: none; } 
.box-number { font-family: 'Anton', sans-serif; font-size: 1.5rem; border: 2px solid var(--text-color); width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: 0.3s; color: inherit; }
.box-title { font-family: 'Anton', sans-serif; font-size: 2.5rem; text-transform: uppercase; line-height: 0.9; margin-bottom: 20px; transition: 0.3s; color: inherit; }
.box-tag { font-family: 'Courier New', monospace; font-size: 0.8rem; text-transform: uppercase; border-top: 1px solid #000; padding-top: 10px; transition: 0.3s; color: inherit; }

/* PC Desktop Hover */
@media (min-width: 1025px) {
    .grid-box:hover { background-color: var(--pitch-black); }
    .grid-box:hover .ghost-img { opacity: 0.6; transform: translate(-50%, -50%) scale(1); filter: grayscale(0%) contrast(1.1); }
    .grid-box:hover .box-number { border-color: #FFFFFF !important; color: #FFFFFF !important; }
    .grid-box:hover .box-title { color: #FFFFFF !important; }
    .grid-box:hover .box-tag { border-top: 1px solid #FFFFFF !important; color: #FFFFFF !important; }
}

/* Mobile Scroll Effect */
@media (max-width: 1024px) {
    .grid-container { grid-template-columns: 1fr; }
    .grid-box { border-right: none; border-bottom: 3px solid var(--text-color); min-height: 400px; }
    .grid-box:last-child { border-bottom: none; }
    
    /* We use .mobile-focus here so the black "hover" effect goes away when you scroll past it */
    .grid-box.mobile-focus { background-color: var(--pitch-black); color: #fff; }
    .grid-box.mobile-focus .ghost-img { opacity: 0.6; transform: translate(-50%, -50%) scale(1); filter: grayscale(0%) contrast(1.1); }
    .grid-box.mobile-focus .box-number { border-color: #FFFFFF !important; color: #FFFFFF !important; }
    .grid-box.mobile-focus .box-title { color: #FFFFFF !important; }
    .grid-box.mobile-focus .box-tag { border-top: 1px solid #FFFFFF !important; color: #FFFFFF !important; }
}

@media (max-width: 768px) {
    .arsenal-section { padding: 40px 15px; }
    .grid-box { padding: 30px 20px; min-height: 350px; }
    .ghost-img { width: 95%; }
}

/* --- 6. MANIFESTO --- */
.manifesto-section { background-color: var(--text-color); color: var(--bg-color); padding: 120px 30px; display: flex; justify-content: center; align-items: center; text-align: center; }
.manifesto-content { border: 4px solid var(--bg-color); padding: 80px; max-width: 900px; }
.manifesto-title { font-family: 'Anton', sans-serif; font-size: 6vw; line-height: 0.9; text-transform: uppercase; margin-bottom: 30px; }

@media (max-width: 768px) {
    .manifesto-section { padding: 60px 15px; }
    .manifesto-content { padding: 40px 20px; }
    .manifesto-title { font-size: 12vw; }
}

/* --- 7. DRAWERS BASE --- */
.drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1999; display: none; }
.product-drawer { position: fixed; top: 0; right: -100%; width: 40%; height: 100vh; background-color: var(--bg-color); z-index: 2000; border-left: 2px solid var(--pitch-black); padding: 80px 40px; transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1); overflow-y: auto; color: var(--text-color); }
.product-drawer.open { right: 0; }
.close-drawer { position: absolute; top: 20px; right: 30px; font-family: 'Anton', sans-serif; font-size: 1.2rem; cursor: pointer; border-bottom: 2px solid #000; }

@media (max-width: 768px) { 
    .product-drawer { width: 100% !important; padding: 70px 20px 40px 20px !important; } 
    .close-drawer { top: 15px; right: 20px; }
}

/* --- 8. DRAWER UI --- */
.drawer-img-frame { border: 4px solid var(--pitch-black); margin-bottom: 30px; background: #FFFFFF; aspect-ratio: 1/1; display: flex; justify-content: center; align-items: center; overflow: hidden; }
.drawer-img-frame img { width: 100%; height: 100%; object-fit: contain; filter: grayscale(100%); transition: 0.5s; }
.drawer-img-frame img { 
    width: 100%; height: 100%; object-fit: contain; 
    filter: grayscale(100%); transition: 0.5s; 
}
.drawer-img-frame:hover img { 
    transform: scale(1.05); 
    filter: grayscale(0%); /* This brings the color back on hover */
}

.roots-drawer-img { 
    width: 100%; 
    max-width: 450px !important; 
    height: auto; 
    display: block; 
    margin: 0 auto 30px auto; 
    filter: grayscale(100%) contrast(1.2) !important; 
    border: 4px solid var(--pitch-black); 
    box-shadow: 8px 8px 0px var(--pitch-black); 
}

.choice-group { margin-bottom: 25px; }
.choice-title { font-family: 'Courier New', monospace; font-size: 0.85rem; text-transform: uppercase; font-weight: bold; margin-bottom: 12px; border-bottom: 2px solid var(--pitch-black); padding-bottom: 5px; letter-spacing: 0.05em; }

.btn-choice { background: transparent; border: 2px solid var(--pitch-black); color: var(--pitch-black); font-family: 'Anton', sans-serif; font-size: 1.2rem; padding: 8px 18px; margin: 0 10px 10px 0; cursor: pointer; text-transform: uppercase; transition: all 0.1s ease; }
.btn-choice:hover { background: var(--pitch-black); color: var(--bg-color); }
.btn-choice.selected { background: var(--pitch-black); color: var(--bg-color); box-shadow: 4px 4px 0px var(--pitch-black); transform: translate(-2px, -2px); }

.qty-stepper { display: inline-flex; align-items: center; border: 3px solid var(--pitch-black); margin-bottom: 25px; background: transparent; }
.qty-btn { background: transparent; border: none; color: var(--pitch-black); font-family: 'Anton', sans-serif; font-size: 1.5rem; width: 45px; height: 45px; cursor: pointer; transition: background 0.2s, color 0.2s; }
.qty-btn:hover { background: var(--pitch-black); color: var(--bg-color); }
.qty-val { font-family: 'Courier New', monospace; font-size: 1.2rem; font-weight: bold; width: 50px; text-align: center; border-left: 3px solid var(--pitch-black); border-right: 3px solid var(--pitch-black); line-height: 45px; }

.price-tag { font-family: 'Anton', sans-serif; font-size: 3rem; line-height: 1; margin-bottom: 20px; color: var(--pitch-black); }

.btn-white { width: 100%; background: #000; color: #fff; border: 3px solid #000; font-family: 'Anton'; font-size: 1.5rem; padding: 15px; cursor: pointer; box-shadow: 6px 6px 0px #000; transition: 0.2s; }
.btn-white:hover { background: var(--accent-color); color: #000; transform: translate(4px, 4px); box-shadow: none; }

@media (max-width: 768px) {
    .btn-choice { font-size: 1rem; padding: 8px 12px; margin: 0 5px 10px 0; }
    .price-tag { font-size: 2.2rem; }
    .qty-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .qty-val { width: 40px; font-size: 1rem; line-height: 40px; }
    .drawer-img-frame { margin-bottom: 20px; }
}

/* --- 9. AUTH, DASHBOARD & CART STYLES --- */
.auth-form { margin-top: 30px; }
.auth-input { width: 100%; padding: 15px; background: transparent; border: 2px solid #000; font-family: 'Oswald'; font-size: 1rem; margin-bottom: 15px; outline: none; }
.auth-input:focus { background: #fff; }
.auth-toggle { cursor: pointer; text-decoration: underline; font-family: 'Courier New'; font-size: 0.8rem; text-transform: uppercase; }

.dash-nav { display: flex; gap: 20px; border-bottom: 2px solid #000; margin-bottom: 30px; padding-bottom: 10px; }
.dash-nav-item { cursor: pointer; font-family: 'Anton'; text-transform: uppercase; font-size: 1.2rem; opacity: 0.4; }
.dash-nav-item.active { opacity: 1; border-bottom: 3px solid #000; }
.order-history-item { border: 2px solid #000; padding: 20px; margin-bottom: 15px; background: #fff; color: #000; }

.cart-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid #ccc; }
.cart-item-info h4 { font-family: 'Anton', sans-serif; text-transform: uppercase; font-size: 1.4rem; }
.cart-total-box { margin-top: 40px; border-top: 4px solid #000; padding-top: 20px; }
.total-price { font-family: 'Anton', sans-serif; font-size: 3rem; }

/* --- 10. WOOCOMMERCE DRAWER CHECKOUT --- */
.brutalist-checkout-wrapper input,
.brutalist-checkout-wrapper select,
.brutalist-checkout-wrapper textarea {
    width: 100% !important;
    background: transparent !important;
    border: 2px solid #000 !important;
    padding: 10px !important;
    font-family: 'Courier New', monospace !important;
    margin-bottom: 15px !important;
    pointer-events: auto !important;
    opacity: 1 !important;
    cursor: text !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* CRITICAL: Override WooCommerce disabled/readonly states */
.brutalist-checkout-wrapper input:disabled,
.brutalist-checkout-wrapper input[readonly],
.brutalist-checkout-wrapper select:disabled,
.brutalist-checkout-wrapper textarea:disabled {
    pointer-events: auto !important;
    opacity: 1 !important;
    background: transparent !important;
    cursor: text !important;
}

/* Enable focus states */
.brutalist-checkout-wrapper input:focus,
.brutalist-checkout-wrapper select:focus,
.brutalist-checkout-wrapper textarea:focus {
    outline: none !important;
    background: #fff !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 2px var(--accent-color) !important;
}

/* Fix label styling */
.brutalist-checkout-wrapper label {
    font-family: 'Courier New', monospace !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    font-weight: bold !important;
    margin-bottom: 5px !important;
    display: block !important;
    cursor: pointer !important;
    color: var(--text-color) !important;
}

/* Ensure form rows are structured properly */
.brutalist-checkout-wrapper .form-row {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 15px !important;
}

.brutalist-checkout-wrapper .form-row.form-row-wide {
    width: 100% !important;
}

.brutalist-checkout-wrapper .form-row.form-row-first,
.brutalist-checkout-wrapper .form-row.form-row-last {
    width: 48% !important;
    display: inline-flex !important;
    flex-direction: column !important;
    margin-right: 2% !important;
}

.brutalist-checkout-wrapper .form-row.form-row-last {
    margin-right: 0 !important;
}

/* Fix select dropdowns */
.brutalist-checkout-wrapper select {
    height: 45px !important;
    background-color: #fff !important;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212%27%20height%3D%278%27%20viewBox%3D%220%200%2012%208%22%3E%3Cpath%20fill%3D%22%23000%22%20d%3D%22M0%200l6%208%206-8z%22/%3E%3C/svg%3E') !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    padding-right: 30px !important;
    padding-left: 10px !important;
}

/* Hide default select arrow */
.brutalist-checkout-wrapper select::-ms-expand {
    display: none !important;
}

.brutalist-checkout-wrapper #order_review_heading { 
    font-family: 'Anton'; 
    font-size: 1.5rem; 
    margin-top: 20px; 
}

#place_order {
    width: 100% !important;
    background: #000 !important;
    color: #fff !important;
    font-family: 'Anton' !important;
    font-size: 1.5rem !important;
    padding: 20px !important;
    box-shadow: 6px 6px 0px var(--accent-color) !important;
    border: none !important;
    cursor: pointer;
}

#place_order:hover {
    background: var(--accent-color) !important;
    color: #000 !important;
}

/* --- 11. AGE GATE --- */
.age-gate-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); z-index: 9999; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; pointer-events: none; }
.age-gate-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }
.age-gate-box { background: var(--bg-color); border: 4px solid #000; padding: 40px; width: 320px; text-align: center; box-shadow: 12px 12px 0px #000; }

@media (max-width: 768px) {
    .age-gate-box { width: 90%; padding: 30px 20px; }
}

/* --- 12. FOOTER --- */
.utility-footer { 
    background-color: var(--pitch-black); color: #ccc; 
    padding: 80px 30px 20px 30px; 
    font-family: 'Oswald', sans-serif; font-size: 16px; text-transform: uppercase; 
    border-top: 4px solid var(--pitch-black); 
    position: relative; overflow: hidden;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; position: relative; z-index: 10; }
.footer-col h4 { 
    color: #fff; font-family: 'Anton', sans-serif; font-size: 1.5rem; 
    margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #333; display: inline-block;
}
.footer-col a { 
    color: #aaa; text-decoration: none; display: table; 
    margin-bottom: 8px; transition: all 0.2s; cursor: pointer;
}

.footer-col a:hover { 
    color: #fff; 
    text-decoration: underline; 
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.footer-right { text-align: right; }
.footer-right h4, .footer-right a { margin-left: auto; } 

.massive-footer-text {
    font-family: 'Anton', sans-serif;
    font-size: 18vw;
    line-height: 0.75;
    color: #111; 
    text-align: center;
    margin-top: 60px;
    user-select: none;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .utility-footer { padding: 50px 15px 20px 15px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .footer-col h4, .footer-col a, .footer-right h4, .footer-right a { margin: 0 auto 8px auto; }
    .massive-footer-text { font-size: 20vw; margin-top: 40px; }
}

/* =========================================================
   VIEIRA OS: APACZKA MAP & BUTTON OVERRIDES (CORRECTED)
   ========================================================= */

/* 1. BRUTALIST BUTTON STYLING */
button#apaczka_map_button,
.apaczka-map-button,
.inpost-easypack-button,
button[class*="apaczka"] {
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 20px !important;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase !important;
    font-size: 1rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    width: 100% !important;
    border-radius: 0 !important; 
    margin-top: 15px !important;
    box-shadow: none !important;
    text-align: center !important;
}

button#apaczka_map_button:hover,
.apaczka-map-button:hover {
    background-color: red !important; 
    color: #fff !important;
}

/* 2. FORCE MAP MODAL TO THE ABSOLUTE FRONT */
div#apaczka-map-modal,
div.apaczka-map-modal,
div[id*="geowidget"],
div[class*="geowidget"],
div#easypack-map-modal,
div.inpost-easypack-map {
    z-index: 99999999 !important;
    position: fixed !important;
}

/* 3. FIX THE MAP BACKGROUND SHADOW (STRICTLY APACZKA ONLY) */
.apaczka-overlay,
.geowidget-overlay,
#easypack-map-overlay {
    z-index: 99999998 !important; 
}

/* 4. HIDE WOOCOMMERCE DEFAULT SHIPPING JUNK */
ul#shipping_method li label {
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.1rem !important;
}
/* --- 5. MOBILE FULLSCREEN FIX FOR APACZKA MAP --- */
@media (max-width: 768px) {
    div#apaczka-map-modal,
    div.apaczka-map-modal,
    div[id*="geowidget"],
    div[class*="geowidget"],
    div#easypack-map-modal,
    div.inpost-easypack-map {
        width: 100vw !important;
        height: 100dvh !important; /* Uses dynamic viewport height so mobile browsers don't cut off the bottom */
        max-width: 100vw !important;
        max-height: 100dvh !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important; /* Kills any weird centering the plugin tries to do */
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    /* Force the actual map iframe/canvas inside to fill the new container */
    div#apaczka-map-modal iframe,
    div.apaczka-map-modal iframe,
    div[id*="geowidget"] iframe,
    .easypack-map-modal iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
    }

    /* Make sure the map close 'X' button is reachable and looks clean */
    .apaczka-map-close,
    .geowidget-close,
    .easypack-close {
        top: 15px !important;
        right: 15px !important;
        background: #000 !important;
        color: #fff !important;
        border-radius: 0 !important;
        padding: 10px !important;
    }
}

/* =========================================================
   VIEIRA OS: PAYMENT GATEWAY STYLING (PAYNOW / MBANK)
   ========================================================= */

/* Clean up the payment methods list */
#payment ul.payment_methods {
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    border-bottom: 2px solid #000;
}

#payment ul.payment_methods li {
    list-style: none !important;
    padding: 15px 0 !important;
    border-top: 2px solid #000;
    margin: 0 !important;
    background: transparent !important;
}

/* Style the payment labels (radio buttons) */
#payment ul.payment_methods li label {
    font-family: 'Oswald', sans-serif !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
    text-transform: uppercase !important;
    color: #000 !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ✅ SIMPLE RADIO BUTTONS - Just basic circles */
#payment ul.payment_methods li input[type="radio"],
#shipping_method li input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    cursor: pointer !important;
    margin: 0 !important;
    accent-color: var(--accent-color) !important;
}

/* Hide ugly default plugin descriptions unless selected */
div.payment_box {
    background: #f4f4f4 !important;
    padding: 15px !important;
    margin-top: 10px !important;
    font-family: 'Courier New', Courier, monospace !important;
    font-size: 0.9rem !important;
    border: 1px dashed #000;
    color: #000 !important;
}

/* The brutalist "PLACE ORDER" button */
button#place_order {
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
    padding: 20px !important;
    font-family: 'Oswald', sans-serif !important;
    text-transform: uppercase !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    cursor: pointer !important;
    width: 100% !important;
    border-radius: 0 !important;
    transition: background 0.3s ease, color 0.3s ease;
}

button#place_order:hover {
    background-color: red !important;
    color: #fff !important;
}