/* ================================================================
   Mimmy Urban Wok - Custom CSS v6
   WooCommerce overrides, new components, full responsive
   ================================================================ */

/* ------ CSS Variables (shared) ---------------------------------- */
:root {
    --primary   : #FF6B00;
    --secondary : #1a1a2e;
    --accent    : #FFD700;
    --success   : #00C853;
    --wa        : #25D366;
    --white     : #ffffff;
    --off-white : #fafafa;
    --text      : #333333;
    --text-light: #777777;
    --light-gray: #e8e8e8;
    --radius    : 12px;
    --shadow    : 0 4px 24px rgba(0,0,0,0.08);
    --transition: all 0.25s ease;
}

/* ------ ANNOUNCEMENT BAR ---------------------------------------- */
.announcement-bar {
    position: relative;
    background: linear-gradient(90deg, #FF6B00, #e55c00);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    text-align: center;
    z-index: 1001;
    letter-spacing: 0.3px;
}
.announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.announcement-bar p { margin: 0; }
.announcement-bar .bar-close {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 2px 6px;
}
.announcement-bar .bar-close:hover { color: #fff; }
.countdown-inline { font-size: 12px; opacity: 0.9; letter-spacing: 1px; }

/* ------ HEADER --------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(10,10,30,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 14px 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.site-logo img { height: 48px; width: auto; display: block; }
/* Desktop nav (inside header) */
.nav-desktop { display: flex; align-items: center; gap: 6px; }
.nav-desktop a,
.nav-desktop li a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    list-style: none;
}
.nav-desktop a:hover,
.nav-desktop a.active,
.nav-desktop li a:hover { color: #fff; background: rgba(255,107,0,0.2); }
.nav-desktop li { list-style: none; }

/* Mobile nav overlay (OUTSIDE header, full-screen) */
.nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,30,0.98);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    overflow-y: auto;
}
.nav-menu.is-open {
    display: flex !important;
}
.nav-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.nav-menu-close:hover { background: rgba(255,107,0,0.7); }
.nav-menu-logo { margin-bottom: 30px; }
.nav-menu-links { width: 100%; max-width: 320px; }
.nav-mobile-list { list-style: none; padding: 0; margin: 0; width: 100%; }
.nav-mobile-list li { width: 100%; margin-bottom: 8px; }
.nav-mobile-list li a,
.nav-menu-links a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s;
    background: rgba(255,255,255,0.05);
    margin-bottom: 8px;
}
.nav-mobile-list li a:hover,
.nav-menu-links a:hover { background: rgba(255,107,0,0.25); color: #fff; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cart {
    position: relative;
    color: rgba(255,255,255,0.8);
    padding: 8px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}
.nav-cart:hover { color: var(--primary); }
.cart-count {
    position: absolute;
    top: 0; right: 0;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.cart-count.empty { opacity: 0; transform: scale(0); }
.nav-order-btn { font-size: 13px !important; padding: 10px 20px !important; }

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ------ PAGE HERO ----------------------------------------------- */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg,#0a0a1e 0%,#1a1a3e 100%);
    text-align: center;
}
.page-hero h1 { font-size: clamp(32px,5vw,52px); color: #fff; margin: 12px 0; }
.page-hero p  { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 580px; margin: 0 auto; }
.page-hero .badge { background: rgba(255,107,0,0.2); color: var(--primary); padding: 6px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; }

/* ------ SECTION HELPERS ----------------------------------------- */
.section-cta { text-align: center; margin-top: 40px; }
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg,#FF6B00,#e55c00);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta-section h2 { font-size: clamp(28px,4vw,42px); color: #fff; margin-bottom: 14px; }
.final-cta-section p  { font-size: 17px; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-light { background: #fff !important; color: var(--primary) !important; box-shadow: 0 6px 20px rgba(0,0,0,0.15) !important; }

/* ------ WOOCOMMERCE FORM OVERRIDES ------------------------------ */
.woocommerce-checkout .form-row { margin-bottom: 18px !important; padding: 0 !important; }
.woocommerce-checkout .form-row label { font-size: 13px !important; font-weight: 600 !important; color: var(--text) !important; margin-bottom: 6px !important; display: block !important; }
.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    width: 100% !important;
    padding: 13px 16px !important;
    border: 2px solid var(--light-gray) !important;
    border-radius: var(--radius) !important;
    font-size: 15px !important;
    font-family: inherit !important;
    transition: border-color 0.2s !important;
    background: #fff !important;
    color: var(--text) !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
}
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    border-color: var(--primary) !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(255,107,0,0.1) !important;
}
.woocommerce-checkout .select2-container .select2-selection--single {
    height: 50px !important; border: 2px solid var(--light-gray) !important; border-radius: var(--radius) !important;
}
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered { line-height: 50px !important; padding-left: 16px !important; font-size: 15px !important; font-family: inherit !important; }
.woocommerce-checkout-review-order-table { width: 100% !important; border-collapse: collapse !important; }
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td { padding: 12px 8px !important; border-bottom: 1px solid var(--light-gray) !important; font-size: 14px !important; }
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td { font-size: 20px !important; font-weight: 800 !important; color: var(--primary) !important; border-top: 2px solid var(--primary) !important; padding-top: 16px !important; }
.woocommerce-checkout-review-order-table .fee td { color: var(--success) !important; font-weight: 700 !important; }
#place_order { width: 100% !important; padding: 18px !important; background: linear-gradient(135deg,#FF6B00,#e55c00) !important; color: #fff !important; border: none !important; border-radius: 50px !important; font-size: 18px !important; font-weight: 800 !important; font-family: inherit !important; cursor: pointer !important; margin-top: 16px !important; transition: transform 0.2s, box-shadow 0.2s !important; }
#place_order:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 24px rgba(255,107,0,0.4) !important; }

/* ------ CHECKOUT PAGE ------------------------------------------- */
.muw-checkout { padding: 40px 0 80px; }
.checkout-page-header { text-align: center; margin-bottom: 40px; }
.checkout-page-header h1 { font-size: clamp(26px,4vw,36px); color: var(--secondary); margin-bottom: 8px; }
.checkout-page-header p  { color: var(--text-light); font-size: 16px; }
.checkout-discount-badge { display: inline-block; margin-top: 12px; background: linear-gradient(135deg,rgba(0,200,83,0.12),rgba(0,200,83,0.06)); border: 1px solid rgba(0,200,83,0.3); color: #00a040; padding: 10px 24px; border-radius: 50px; font-size: 14px; font-weight: 600; }
/* checkout-grid: FORM on LEFT (wider), SUMMARY on RIGHT (380px) */
.checkout-grid {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 32px !important;
    align-items: start !important;
}
.checkout-form-col { min-width: 0; order: 1; }
.checkout-summary-col { min-width: 0; order: 2; align-self: start; }
.checkout-section { background: #fff; border-radius: 16px; padding: 28px; margin-bottom: 20px; box-shadow: var(--shadow); border: 1px solid var(--light-gray); }
.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.section-num { width: 32px; height: 32px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.section-header h3 { font-size: 18px; font-weight: 700; color: var(--secondary); margin: 0; }
.sadapay-box { background: linear-gradient(135deg,rgba(255,107,0,0.08),rgba(255,107,0,0.04)); border: 2px solid rgba(255,107,0,0.3); border-radius: var(--radius); padding: 20px; text-align: center; margin-bottom: 20px; }
.sadapay-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 6px; }
.sadapay-number { font-size: 28px; font-weight: 900; color: var(--primary); letter-spacing: 2px; }
.sadapay-hint { font-size: 13px; color: var(--text-light); margin-top: 6px; }
.upload-section { margin-bottom: 16px; }
.upload-label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.req { color: var(--primary); }
.upload-drop-zone { border: 2px dashed var(--light-gray); border-radius: var(--radius); padding: 32px 20px; text-align: center; cursor: pointer; transition: var(--transition); }
.upload-drop-zone:hover,.upload-drop-zone.drag-over { border-color: var(--primary); background: rgba(255,107,0,0.04); }
.upload-icon { font-size: 36px; margin-bottom: 10px; }
.upload-text { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.upload-sub { font-size: 12px; color: var(--text-light); }
.upload-preview { position: relative; border-radius: var(--radius); overflow: hidden; border: 2px solid var(--success); }
.upload-preview img { width: 100%; max-height: 200px; object-fit: cover; display: block; }
.remove-preview { position: absolute; top: 8px; right: 8px; background: rgba(0,0,0,0.6); color: #fff; border: none; border-radius: 50px; padding: 4px 12px; font-size: 12px; cursor: pointer; }
.upload-status { margin-top: 8px; font-size: 13px; font-weight: 600; }
.upload-status.success { color: var(--success); }
.upload-status.error   { color: #e53935; }
.discount-reveal { background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.3); border-radius: var(--radius); padding: 16px; display: flex; align-items: flex-start; gap: 12px; }
.discount-icon { font-size: 20px; flex-shrink: 0; }
.discount-reveal strong { display: block; color: #007a30; font-size: 15px; margin-bottom: 4px; }
.discount-reveal p { color: var(--text-light); font-size: 13px; margin: 0; }
.form-group-custom { margin-bottom: 16px; }
.form-group-custom label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-control-custom { width: 100%; padding: 13px 16px; border: 2px solid var(--light-gray); border-radius: var(--radius); font-size: 15px; font-family: inherit; transition: border-color 0.2s; background: #fff; color: var(--text); }
.form-control-custom:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px rgba(255,107,0,0.1); }
.field-note { font-size: 12px; color: var(--text-light); margin-top: 6px; }
.btn-detect-location { width: 100%; padding: 12px; background: rgba(255,107,0,0.08); border: 2px solid rgba(255,107,0,0.3); color: var(--primary); border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); margin-top: 8px; }
.btn-detect-location:hover { background: rgba(255,107,0,0.15); }
.sticky-summary {
    position: sticky;
    top: 100px;
    /* Ensure sticky works inside CSS grid */
    align-self: start;
}
.order-summary-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--light-gray); }
.order-summary-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--secondary); }
.trust-list { margin: 20px 0; }
.trust-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text); margin-bottom: 8px; }
.trust-tick { color: var(--success); }
.wa-help-link { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; padding: 12px; background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.25); border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--wa); text-decoration: none; transition: var(--transition); }
.wa-help-link:hover { background: rgba(37,211,102,0.15); }

/* ------ CART PAGE ----------------------------------------------- */
.muw-cart-page { padding: 40px 0 80px; }
.cart-page-header { text-align: center; margin-bottom: 40px; }
.cart-page-header h1 { font-size: clamp(28px,4vw,40px); color: var(--secondary); margin-bottom: 8px; }
.cart-page-header p { color: var(--text-light); }
.cart-empty-state { text-align: center; padding: 80px 20px; }
.cart-empty-state .empty-icon { font-size: 72px; margin-bottom: 20px; }
.cart-empty-state h2 { font-size: 28px; color: var(--secondary); margin-bottom: 12px; }
.cart-empty-state p { font-size: 16px; color: var(--text-light); max-width: 480px; margin: 0 auto 28px; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.cart-items-wrapper { background: #fff; border-radius: 16px; box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--light-gray); }
.cart-items-header { display: grid; grid-template-columns: 2fr 80px 120px 80px 32px; gap: 12px; padding: 14px 20px; background: var(--off-white); border-bottom: 1px solid var(--light-gray); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); }
.cart-item { display: grid; grid-template-columns: 72px 1fr 80px 120px 80px 32px; gap: 12px; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--light-gray); transition: background 0.2s; }
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: #fafafa; }
.cart-remove { color: #ccc; font-size: 14px; text-decoration: none; line-height: 1; transition: color 0.2s; }
.cart-remove:hover { color: #e53935; }
.cart-item-img { width: 72px; height: 60px; border-radius: 8px; overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-name { font-size: 15px; font-weight: 600; color: var(--secondary); text-decoration: none; }
.cart-item-name:hover { color: var(--primary); }
.on-sale-tag { display: inline-block; background: rgba(255,107,0,0.1); color: var(--primary); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 50px; margin-top: 4px; }
.cart-item-price,.cart-item-subtotal { font-size: 15px; font-weight: 600; color: var(--text); }
.cart-item-subtotal { color: var(--primary); font-weight: 700; }
.qty-control { display: flex; align-items: center; border: 2px solid var(--light-gray); border-radius: var(--radius); overflow: hidden; width: fit-content; }
.qty-btn { background: none; border: none; padding: 8px 12px; font-size: 16px; cursor: pointer; color: var(--text-light); transition: background 0.2s; }
.qty-btn:hover { background: var(--off-white); }
.qty-input { width: 40px; text-align: center; border: none; border-left: 1px solid var(--light-gray); border-right: 1px solid var(--light-gray); padding: 8px 4px; font-size: 15px; font-weight: 600; }
.cart-actions { padding: 20px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: space-between; }
.coupon-row { display: flex; gap: 8px; flex: 1; min-width: 240px; }
.coupon-input { flex: 1; padding: 11px 16px; border: 2px solid var(--light-gray); border-radius: var(--radius); font-size: 14px; font-family: inherit; }
.coupon-input:focus { border-color: var(--primary); outline: none; }
.btn-apply-coupon { padding: 11px 22px; background: var(--secondary); color: #fff; border: none; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.btn-apply-coupon:hover { background: #2c2c5e; }
.btn-update-cart { padding: 11px 22px; background: none; border: 2px solid var(--light-gray); color: var(--text-light); border-radius: var(--radius); font-size: 14px; cursor: pointer; transition: var(--transition); }
.btn-update-cart:hover { border-color: var(--primary); color: var(--primary); }
.cart-discount-reminder { display: flex; align-items: flex-start; gap: 12px; background: rgba(0,200,83,0.07); border: 1px solid rgba(0,200,83,0.25); border-radius: var(--radius); padding: 16px 20px; margin-top: 16px; }
.reminder-icon { font-size: 22px; flex-shrink: 0; }
.cart-discount-reminder strong { font-size: 14px; color: #007a30; }
.cart-discount-reminder p { font-size: 13px; color: var(--text-light); margin: 4px 0 0; }
.cart-totals-card { background: #fff; border-radius: 16px; box-shadow: var(--shadow); padding: 24px; border: 1px solid var(--light-gray); position: sticky; top: 100px; }
.cart-totals-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--secondary); }
.cart-totals-card .cart_totals h2 { display: none; }
.checkout-btn { width: 100%; text-align: center; margin-top: 16px; font-size: 17px !important; padding: 16px !important; }
.btn-continue-shopping { display: block; text-align: center; margin-top: 12px; font-size: 13px; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.btn-continue-shopping:hover { color: var(--primary); }
.cart-trust-badges { margin: 16px 0; border-top: 1px solid var(--light-gray); padding-top: 16px; }
.cart-trust-item { font-size: 13px; color: var(--text-light); margin-bottom: 6px; }
.wa-cart-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.25); border-radius: var(--radius); font-size: 13px; font-weight: 600; color: var(--wa); text-decoration: none; margin-top: 12px; transition: var(--transition); }
.wa-cart-btn:hover { background: rgba(37,211,102,0.2); }

/* ------ THANK YOU PAGE ------------------------------------------ */
.muw-thankyou-extra { margin-top: 40px; }
.thankyou-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; margin-bottom: 32px; }
.ty-info-item { background: #fff; border: 1px solid var(--light-gray); border-radius: var(--radius); padding: 16px; text-align: center; }
.ty-icon { font-size: 24px; display: block; margin-bottom: 6px; }
.ty-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 4px; }
.ty-value { font-size: 15px; font-weight: 700; color: var(--secondary); }
.thankyou-steps { background: #fff; border-radius: 16px; padding: 28px; margin-bottom: 24px; box-shadow: var(--shadow); }
.thankyou-steps h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--secondary); }
.ty-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.step-dot { width: 28px; height: 28px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.ty-step div { font-size: 14px; color: var(--text); line-height: 1.6; }
.ty-review-cta { text-align: center; padding: 32px 20px; background: linear-gradient(135deg,#0a0a1e,#1a1a3e); border-radius: 16px; }
.ty-review-cta p { color: rgba(255,255,255,0.7); margin-bottom: 16px; }

/* ------ CONTACT PAGE -------------------------------------------- */
.contact-section { padding: 60px 0 80px; }
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow); border: 1px solid var(--light-gray); transition: var(--transition); }
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.contact-card-icon { width: 44px; height: 44px; background: rgba(255,107,0,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary); }
.contact-card-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 3px; }
.contact-card-value a { font-size: 15px; font-weight: 600; color: var(--secondary); text-decoration: none; }
.contact-card-value a:hover { color: var(--primary); }
.contact-card-value { font-size: 15px; font-weight: 600; color: var(--secondary); }
.contact-form-wrap { background: #fff; border-radius: 16px; padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--light-gray); }
.contact-form-wrap h3 { font-size: 22px; font-weight: 700; color: var(--secondary); margin-bottom: 24px; }
.form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input,
.form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--light-gray); border-radius: var(--radius); font-size: 15px; font-family: inherit; transition: border-color 0.2s; box-sizing: border-box; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px rgba(255,107,0,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-success { background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.3); color: #007a30; padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-weight: 600; }
.form-error   { background: rgba(229,57,53,0.1);  border: 1px solid rgba(229,57,53,0.3); color: #c62828; padding: 14px 18px; border-radius: var(--radius); margin-bottom: 20px; font-weight: 600; }

/* ------ CHAT WIDGET --------------------------------------------- */
#muw-chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 9990; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
#muw-chat-toggle { width: 58px; height: 58px; background: var(--wa); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform 0.2s, box-shadow 0.2s; }
#muw-chat-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
#muw-chat-box { display: none; flex-direction: column; width: 300px; background: #fff; border-radius: 18px; box-shadow: 0 8px 40px rgba(0,0,0,0.18); overflow: hidden; border: 1px solid var(--light-gray); }
.chat-header { background: #075e54; padding: 16px 16px; display: flex; align-items: center; gap: 10px; }
.chat-avatar { width: 38px; height: 38px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.chat-info { flex: 1; }
.chat-name { display: block; color: #fff; font-weight: 700; font-size: 14px; }
.chat-status { font-size: 11px; color: rgba(255,255,255,0.75); }
.chat-close { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 16px; padding: 0; }
.chat-body { padding: 16px; background: #f0f0f0; }
.chat-msg { background: #fff; border-radius: 12px 12px 12px 2px; padding: 12px 14px; font-size: 13px; color: #333; line-height: 1.5; box-shadow: 0 1px 4px rgba(0,0,0,0.07); margin-bottom: 12px; }
.chat-quick-btns { display: flex; flex-direction: column; gap: 6px; }
.chat-quick-btn { background: #fff; border-radius: 50px; padding: 9px 14px; font-size: 12px; font-weight: 600; color: #075e54; text-decoration: none; border: 1px solid #ddd; transition: background 0.2s; text-align: center; }
.chat-quick-btn:hover { background: #f9f9f9; }
.chat-cta { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--wa); color: #fff; font-weight: 700; font-size: 14px; padding: 14px; text-decoration: none; transition: background 0.2s; }
.chat-cta:hover { background: #1da851; }

/* ------ NO PRODUCTS MSG ----------------------------------------- */
.no-products { text-align: center; padding: 40px; color: var(--text-light); font-size: 16px; background: var(--off-white); border-radius: var(--radius); }

/* ------ WC TOTALS ----------------------------------------------- */
.cart_totals table { width: 100%; border-collapse: collapse; }
.cart_totals table th,
.cart_totals table td { padding: 10px 4px; border-bottom: 1px solid var(--light-gray); font-size: 14px; }
.cart_totals table .order-total th,
.cart_totals table .order-total td { font-size: 20px; font-weight: 800; color: var(--primary); border-top: 2px solid var(--primary); padding-top: 14px; border-bottom: none; }

/* ------ RESPONSIVE ---------------------------------------------- */
@media (max-width: 1024px) {
    /* checkout-grid stays 2-col on tablet — collapses at 768px */
    .checkout-grid { grid-template-columns: 1fr 300px !important; }
    /* sticky-summary stays sticky on tablet too — only disable on mobile (768px) */
    .cart-layout { grid-template-columns: 1fr; }
    .cart-totals-col { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    /* nav-desktop hides on mobile — nav-menu overlay handles mobile */
    .nav-desktop { display: none !important; }
    .mobile-menu-toggle { display: flex; z-index: 1000; }
    .nav-order-btn { display: none; }
    .cart-items-header { display: none; }
    .cart-item { grid-template-columns: 56px 1fr 80px; grid-template-rows: auto auto; gap: 8px 12px; padding: 14px 16px; }
    .cart-remove { order: -1; grid-column: span 3; text-align: right; }
    .cart-item-price,.cart-item-subtotal { font-size: 13px; }
    .form-row-two { grid-template-columns: 1fr; }
    .cart-actions { flex-direction: column; }
    .coupon-row { width: 100%; }
    .thankyou-info-grid { grid-template-columns: 1fr 1fr; }
    #muw-chat-box { width: 270px; }
}

@media (max-width: 480px) {
    .cart-item { grid-template-columns: 1fr; }
    .thankyou-info-grid { grid-template-columns: 1fr; }
    .announcement-bar p { font-size: 11px; }
    .checkout-page-header h1 { font-size: 22px; }
    .muw-cart-page,.muw-checkout { padding: 20px 0 60px; }
}

/* ================================================================
   V4 - Header, Announcement Bar, Products, Reels
   ================================================================ */

/* --- HEADER: Always dark, always fixed -------------------------  */
.site-header,
.site-header.scrolled,
.site-header.has-announcement {
    background: rgba(13,13,31,0.97) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    padding: 0 !important;
}
.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.35) !important;
}
.nav-wrapper { padding: 14px 0 !important; }
.site-header.scrolled .nav-wrapper { padding: 10px 0 !important; }

/* Announcement bar: fixed on top, slides up on scroll */
.announcement-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1001 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

/* Desktop nav links always white */
.nav-desktop a,
.nav-desktop li a { color: rgba(255,255,255,0.85) !important; }
.nav-desktop a:hover,
.nav-desktop a.active,
.nav-desktop li a:hover,
.nav-desktop li.current-menu-item > a {
    color: #fff !important;
    background: rgba(255,107,0,0.2) !important;
}
.nav-cart { color: #fff !important; background: rgba(255,255,255,0.12) !important; }
.nav-cart svg { stroke: #fff !important; }
.site-logo img { height: 46px !important; }

/* --- PRODUCTS SECTION: Fix white gradient overlay hiding section title --- */
/* The ::before pseudo-element in style.css is position:absolute and covers .section-title */
/* Fix: remove it + give section-title proper z-index */
.products-section::before { display: none !important; }
.products-section,
.products-section.woocommerce {
    background: #F8F9FA !important;
    background-image: none !important;
}
.products-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative !important;
    z-index: 3 !important;
}
.products-section .section-title .badge {
    display: inline-block !important;
    background: rgba(255,107,0,0.15) !important;
    color: #e55c00 !important;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.products-section .section-title h2 {
    font-size: clamp(26px,4vw,42px) !important;
    color: #1A1A2E !important;
    margin: 8px 0 14px !important;
    display: block !important;
    position: relative !important;
    z-index: 3 !important;
}
.products-section .section-title p {
    color: #555555 !important;
    font-size: 16px !important;
    display: block !important;
}
.no-products { color: #555 !important; background: #e8e8e8 !important; }

/* Product grid responsive columns */
.products-grid.cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.products-grid.cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 900px) { .products-grid.cols-3 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) { .products-grid, .products-grid.cols-3, .products-grid.cols-2 { grid-template-columns: 1fr !important; } }

/* Shop page trust badges - fix overflow on mobile */
@media (max-width: 600px) {
    .products-section > .container > div[style*="justify-content:center"] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        padding: 0 16px !important;
    }
}

/* --- WHITE GAP FIX ---------------------------------------------------
   The gap between fixed header bottom and first section is the html/body
   background showing through. Setting html to dark hides it on all pages.
   White-background sections use their own background: #fff.
   --------------------------------------------------------------------- */
html { background-color: #0d0d1f; }
body { background-color: #fff; }
/* Body padding-top is set by JS dynamically (bar height + header height).
   CSS fallback: */
body { padding-top: 110px; }
body.muw-bar-hidden { padding-top: 70px; }
body.admin-bar { padding-top: 142px !important; }
body.admin-bar.muw-bar-hidden { padding-top: 102px !important; }
/* Pages that start with a dark section — no extra top needed */
.home #main-content,
.woocommerce #main-content { background: transparent; }
/* Force first section of inner pages to cover full area */
.page-template-default > #main-content > section:first-child,
.woocommerce-page > #main-content > section:first-child { margin-top: 0; }

/* Product card — div wrapper (not anchor) */
.product-card { display: flex; flex-direction: column; position: relative; }
/* Image link covers image area */
.product-card-link { display: block; text-decoration: none; }
.product-card-link:hover { text-decoration: none; }
/* Title link */
.product-title-link { text-decoration: none; color: inherit; display: block; }
.product-title-link:hover h3 { color: var(--primary); }
/* Keep old a.product-card rule for backwards compatibility */
a.product-card { text-decoration: none !important; color: inherit !important; }

/* --- QTY BONUS TEXT -------------------------------------------- */
.qty-bonus { display: inline-flex; align-items: center; }
.qty-bonus.gift-active { color: #e65c00; font-weight: 700; }

/* --- SINGLE PRODUCT: Sticky right column ----------------------- */
.single-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.single-product-sticky { position: sticky; top: 90px; }

/* YouTube embed on product page */
.product-video-wrap { margin: 20px 0; border-radius: 16px; overflow: hidden; }
.product-video-wrap iframe { width: 100%; height: 320px; border: none; display: block; }

/* --- REELS SECTION: Clean grid --------------------------------- */
.reels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reel-card { border-radius: 16px; overflow: hidden; background: #1a1a2e; }
.reel-card .instagram-media,
.reel-card blockquote { margin: 0 !important; min-width: unset !important; max-width: 100% !important; width: 100% !important; border-radius: 0 !important; border: none !important; box-shadow: none !important; }
@media (max-width: 900px) { .reels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .reels-grid { grid-template-columns: 1fr; } }

/* --- SECTION TITLE fix ----------------------------------------- */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title .badge { display: inline-block; margin-bottom: 12px; }
.section-title h2 { font-size: clamp(26px,4vw,40px); margin: 0 0 10px; }
.section-title p  { font-size: 16px; opacity: 0.8; }

/* --- CART + CHECKOUT top padding fix after fixed header -------- */
.muw-cart-page,
.muw-checkout { padding-top: 40px !important; }

/* Prevent fixed header from overlapping page content on ALL pages */
.muw-checkout .container,
.muw-cart-page .container { position: relative; z-index: 1; }

@media (max-width: 768px) {
    .single-product-layout { grid-template-columns: 1fr !important; }
    .single-product-sticky { position: static !important; }
    body { padding-top: 100px !important; }
}

/* ================================================================
   INSTAGRAM REELS - Clean thumbnail cards (no embed widget)
   ================================================================ */
.reels-section { padding: 80px 0; background: var(--secondary); }
.reels-section .section-title h2 { color: #fff; }
.reels-section .section-title p  { color: rgba(255,255,255,0.7); }
.reels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reel-card-thumb { display: block; text-decoration: none; border-radius: 16px; overflow: hidden; position: relative; }
.reel-card-thumb:hover .reel-thumb-inner { transform: scale(1.03); }
.reel-thumb-inner {
    position: relative;
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.reel-emoji { font-size: 52px; margin-bottom: 12px; }
.reel-play-btn {
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.5);
    transition: background 0.2s;
    margin-bottom: 16px;
}
.reel-card-thumb:hover .reel-play-btn { background: rgba(255,107,0,0.8); }
.reel-play-btn svg { width: 28px; height: 28px; margin-left: 4px; }
.reel-label { text-align: center; padding: 0 12px; }
.reel-title { display: block; color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.reel-handle { display: block; color: rgba(255,255,255,0.7); font-size: 12px; }
.reels-cta { text-align: center; margin-top: 36px; }
@media (max-width: 900px) { .reels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ================================================================
   V3 - Single Product Page Styles
   ================================================================ */
.single-product-section { padding: 40px 0 80px; }
.breadcrumb-nav { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }
.breadcrumb-nav a { color: var(--primary); text-decoration: none; }
.breadcrumb-nav span { margin: 0 6px; }
.single-product-images { display: flex; flex-direction: column; gap: 14px; }
.main-image-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.product-badges-top { position: absolute; top: 16px; left: 16px; z-index: 3; display: flex; flex-direction: column; gap: 6px; }
.main-product-img { width: 100%; height: auto; display: block; transition: transform 0.3s ease; }
.main-image-wrap:hover .main-product-img { transform: scale(1.02); }
.gallery-thumbs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb { width: 72px; height: 72px; border-radius: 10px; overflow: hidden; cursor: pointer; border: 2px solid var(--light-gray); flex-shrink: 0; transition: border-color 0.2s; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-title { font-size: clamp(24px,3.5vw,36px); font-weight: 800; color: var(--secondary); margin: 0 0 12px; line-height: 1.2; }
.product-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.rating-label { font-size: 13px; color: var(--text-light); }
.product-price-box { display: flex; align-items: baseline; gap: 14px; padding: 16px 20px; background: rgba(255,107,0,0.06); border: 1px solid rgba(255,107,0,0.15); border-radius: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.price-old { font-size: 18px; color: #bbb; text-decoration: line-through; }
.price-current { font-size: 36px; font-weight: 900; color: var(--primary); }
.product-short-desc { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.product-perks-list { background: rgba(0,200,83,0.05); border: 1px solid rgba(0,200,83,0.2); border-radius: 14px; padding: 18px 20px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 10px; }
.product-perks-list .perk { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.product-perks-list .perk svg { width: 18px; height: 18px; fill: var(--success); flex-shrink: 0; }
.perk-gift { font-weight: 600; color: var(--primary) !important; }
.qty-section { margin-bottom: 16px; }
.qty-label { display: block; font-size: 15px; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.qty-row { display: flex; align-items: center; gap: 14px; }
.qty-wrapper { display: inline-flex; align-items: center; border: 2px solid var(--primary); border-radius: 50px; overflow: hidden; }
.qty-btn { background: none; border: none; width: 42px; height: 42px; font-size: 20px; font-weight: 700; cursor: pointer; color: var(--primary); transition: background 0.2s; }
.qty-btn:hover { background: rgba(255,107,0,0.08); }
.qty-input { width: 52px; text-align: center; border: none; border-left: 1px solid var(--light-gray); border-right: 1px solid var(--light-gray); height: 42px; font-size: 17px; font-weight: 700; color: var(--secondary); }
.qty-bonus { font-size: 13px; font-weight: 600; color: var(--success); }
.qty-bonus.gift-active { color: var(--primary); font-size: 14px; }
.urgency-pill { background: rgba(255,23,68,0.07); border: 1px solid rgba(255,23,68,0.2); border-radius: 50px; padding: 10px 18px; font-size: 13px; font-weight: 600; color: #c0392b; text-align: center; margin-bottom: 18px; }
.single-product-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.btn-order-big { width: 100% !important; text-align: center !important; padding: 18px !important; font-size: 17px !important; justify-content: center !important; }
.sadapay-info-bar { background: rgba(255,107,0,0.06); border: 1px solid rgba(255,107,0,0.2); border-radius: 14px; padding: 16px 20px; text-align: center; }
.sadapay-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.sadapay-number { font-size: 24px; font-weight: 900; color: var(--primary); letter-spacing: 2px; }
.sadapay-note { font-size: 12px; color: var(--text-light); margin-top: 5px; }
.product-full-desc { background: #fff; border-radius: 16px; padding: 32px; margin-top: 40px; box-shadow: var(--shadow); border: 1px solid var(--light-gray); }
.product-full-desc h3 { font-size: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 16px; }
.more-deals-cta { padding: 60px 0; background: linear-gradient(135deg, #FF6B00, #e55c00); text-align: center; }
.more-deals-cta h2 { font-size: clamp(26px,4vw,36px); color: #fff; margin-bottom: 10px; }
.more-deals-cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; }

@media (max-width: 768px) {
    .product-price-box { padding: 12px 14px; }
    .price-current { font-size: 28px; }
    .product-title { font-size: 22px; }
}

/* ================================================================
   CHECKOUT V8 - Fix billing fields + grid + location
   Uses SAME class names as HTML (checkout-grid, checkout-form-col, etc.)
   ================================================================ */

/* --- Fix WooCommerce billing fields: FORCE single column -------- */
.muw-billing-wrap .woocommerce-billing-fields > h3 { display: none !important; }
.muw-billing-wrap .woocommerce-billing-fields__field-wrapper { display: flex !important; flex-direction: column !important; }
.muw-billing-wrap .form-row,
.muw-billing-wrap .form-row-first,
.muw-billing-wrap .form-row-last,
.muw-billing-wrap .form-row-wide {
    width: 100% !important;
    float: none !important;
    clear: both !important;
    padding: 0 !important;
    margin-bottom: 14px !important;
}
.muw-billing-wrap .col2-set { display: block !important; width: 100% !important; }
.muw-billing-wrap .col2-set .col-1,
.muw-billing-wrap .col2-set .col-2 { width: 100% !important; float: none !important; }

/* WC inputs consistent styling */
.muw-billing-wrap .input-text,
.muw-billing-wrap select,
.muw-billing-wrap textarea {
    width: 100% !important;
    padding: 13px 16px !important;
    border: 2px solid var(--light-gray) !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-family: inherit !important;
    background: #fff !important;
    color: var(--text) !important;
    box-sizing: border-box !important;
    transition: border-color 0.2s !important;
}
.muw-billing-wrap .input-text:focus,
.muw-billing-wrap select:focus { border-color: var(--primary) !important; outline: none !important; box-shadow: 0 0 0 4px rgba(255,107,0,0.1) !important; }
.muw-billing-wrap label { font-size: 13px !important; font-weight: 600 !important; color: var(--text) !important; }
.muw-billing-wrap .required { color: var(--primary) !important; }
.muw-billing-wrap .select2-container { width: 100% !important; }
.muw-billing-wrap .select2-selection--single { height: 50px !important; border: 2px solid var(--light-gray) !important; border-radius: 10px !important; }
.muw-billing-wrap .select2-selection--single .select2-selection__rendered { line-height: 48px !important; padding-left: 16px !important; font-size: 15px !important; }
.muw-billing-wrap .select2-selection--single .select2-selection__arrow { height: 50px !important; }

/* --- Location detect status ------------------------------------ */
.muw-loc-ok { margin-top: 8px; padding: 10px 14px; background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.3); border-radius: 10px; font-size: 13px; font-weight: 600; color: #007a30; }
.muw-opt-label { font-size: 12px; font-weight: 400; opacity: .65; margin-left: 4px; }

/* Location row: input flex-grows, button fixed width */
.muw-loc-row {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}
.muw-loc-input {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: 0 !important; /* flex overrides this to grow */
    padding: 13px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: var(--text);
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.muw-loc-input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px rgba(255,107,0,0.1); }
.muw-detect-btn {
    flex: 0 0 auto;
    padding: 13px 16px;
    background: rgba(255,107,0,0.09);
    border: 2px solid rgba(255,107,0,0.4);
    color: var(--primary);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}
.muw-detect-btn:hover { background: rgba(255,107,0,0.2); }
@media (max-width: 480px) {
    .muw-loc-row { flex-direction: column; }
    .muw-loc-input { width: 100% !important; }
    .muw-detect-btn { width: 100%; }
}

/* Bottom padding for checkout */
.muw-checkout { padding-bottom: 60px !important; }

/* ================================================================
   HIDE WOOCOMMERCE PAYMENT SECTION CLUTTER
   We have our own custom payment UI - just need the Place Order button
   ================================================================ */
.woocommerce-checkout #payment { background: none !important; border: none !important; border-radius: 0 !important; padding: 16px 0 0 !important; }
.woocommerce-checkout #payment .payment_methods { display: none !important; }
.woocommerce-checkout #payment .place-order { padding: 0 !important; }
.woocommerce-checkout #payment .woocommerce-privacy-policy-text { display: none !important; }
/* Hide the real Place Order button — our summary card button handles submission */
#place_order {
    display: none !important;
}

/* ================================================================
   PAGE.PHP - Inner page hero + content
   ================================================================ */
.muw-page-wrapper { min-height: 60vh; }
.muw-page-hero {
    padding: 100px 0 60px;
    background: var(--gradient-dark, linear-gradient(135deg,#0d0d1f,#1a1a2e));
    text-align: center;
    position: relative;
    overflow: hidden;
}
.muw-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,107,0,0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(255,215,0,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.muw-page-hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 1;
}
.muw-page-content {
    padding: 60px 0 80px;
    background: #fff;
}
.muw-page-content .entry-content,
.muw-page-content p,
.muw-page-content li,
.muw-page-content h2,
.muw-page-content h3 { color: var(--text, #333); }
@media (max-width: 768px) {
    .muw-page-hero { padding: 70px 0 40px; }
    .muw-page-content { padding: 40px 0 60px; }
}

/* ================================================================
   REEL VIDEO MODAL
   ================================================================ */
.reel-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.reel-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
    cursor: pointer;
}
.reel-modal-box {
    position: relative;
    z-index: 1;
    background: #1a1a2e;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}
.reel-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.reel-modal-close:hover { background: rgba(255,107,0,0.7); }
.reel-modal-title {
    padding: 14px 50px 10px 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    min-height: 44px;
}
.reel-modal-frame {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    background: #000;
    overflow: hidden;
}
.reel-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.reel-modal-footer {
    padding: 14px 16px;
    text-align: center;
    background: rgba(0,0,0,0.3);
}
/* Reel thumbnail button reset */
.reel-card-thumb {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
    border-radius: 16px;
    overflow: hidden;
}

/* ================================================================
   MOBILE RESPONSIVE - HEADER
   ================================================================ */
@media (max-width: 768px) {
    /* Announcement bar smaller text */
    .announcement-bar { font-size: 11px; padding: 8px 40px 8px 10px; }
    .announcement-bar .countdown-inline { display: none; }

    /* Nav wrapper compact */
    .nav-wrapper { padding: 10px 0 !important; gap: 10px; }
    .site-logo img { height: 38px !important; }

    /* Desktop nav hidden on mobile */
    .nav-desktop { display: none !important; }
    .mobile-menu-toggle { display: flex !important; }
    .nav-order-btn { display: none !important; }

    /* Body padding for mobile */
    body { padding-top: 100px !important; }
    body.muw-bar-hidden { padding-top: 62px !important; }
}

@media (max-width: 480px) {
    .announcement-bar { font-size: 10px; }
    body { padding-top: 96px !important; }
}

/* ================================================================
   MOBILE RESPONSIVE - CHECKOUT
   ================================================================ */
@media (max-width: 768px) {
    .muw-checkout { padding: 20px 0 60px !important; }
    .checkout-page-header { padding: 60px 0 30px; }
    .checkout-page-header h1 { font-size: 24px; }

    /* Checkout grid stacks */
    .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .sticky-summary { position: static !important; }

    /* WooCommerce form fields responsive */
    .woocommerce-checkout .form-row,
    .woocommerce form .form-row { width: 100% !important; float: none !important; clear: both !important; }
    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last { width: 100% !important; }

    /* Checkout fields bigger tap targets */
    .woocommerce-checkout .input-text,
    .woocommerce-checkout select,
    .woocommerce-checkout textarea {
        font-size: 16px !important; /* prevents iOS zoom */
        padding: 14px 16px !important;
        border-radius: 10px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Order summary in checkout */
    .woocommerce-checkout-review-order-table { font-size: 14px; }
    .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout-review-order-table td { padding: 10px 8px !important; }

    /* Payment methods */
    .woocommerce-checkout #payment { border-radius: 12px; }
    .woocommerce-checkout #payment .payment_methods li { padding: 14px 16px !important; }
    .woocommerce-checkout #payment .place-order { padding: 16px 0 0 !important; }
    #place_order {
        width: 100% !important;
        padding: 18px !important;
        font-size: 16px !important;
        border-radius: 50px !important;
    }

    /* Checkout section headings */
    .muw-checkout h3,
    .woocommerce-billing-fields h3,
    .woocommerce-shipping-fields h3 { font-size: 18px !important; margin-bottom: 14px !important; }
}

@media (max-width: 480px) {
    .checkout-page-header h1 { font-size: 20px; }
    .checkout-grid { gap: 16px !important; }
}

/* ================================================================
   MOBILE RESPONSIVE - CART
   ================================================================ */
@media (max-width: 768px) {
    .muw-cart-page { padding: 20px 0 60px !important; }
    .cart-layout {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .cart-totals-col { position: static !important; }

    /* Cart item rows */
    .cart-items-header { display: none !important; }
    .cart-item {
        grid-template-columns: 64px 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 8px 12px !important;
        padding: 14px 12px !important;
    }
    .cart-item-image { width: 64px !important; height: 64px !important; }
    .cart-item-details { grid-column: 2; }
    .cart-item-price,
    .cart-item-qty { grid-column: 2; }
    .cart-item-subtotal { grid-column: 2; font-weight: 700; }
    .cart-remove { position: absolute; top: 10px; right: 10px; }
    .cart-item { position: relative; }

    /* Cart actions */
    .cart-actions {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
    }
    .coupon-row {
        width: 100% !important;
        flex-direction: column !important;
        gap: 8px !important;
    }
    .coupon-row input,
    .coupon-row button { width: 100% !important; }
    .btn-update-cart { width: 100% !important; }

    /* Cart totals */
    .cart_totals { padding: 20px !important; }
    .cart-proceed-btn { width: 100% !important; }

    /* WooCommerce cart responsive */
    .woocommerce-cart .wc-proceed-to-checkout .checkout-button {
        width: 100% !important;
        padding: 18px !important;
        font-size: 16px !important;
        border-radius: 50px !important;
    }
}

/* ================================================================
   MOBILE RESPONSIVE - PRODUCTS / SHOP
   ================================================================ */
@media (max-width: 768px) {
    /* Product cards */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .product-card { border-radius: 16px; }
    .product-image-wrap { height: 200px !important; }

    /* Archive / Shop page header */
    .shop-page-hero h1 { font-size: 28px !important; }

    /* Product qty controls */
    .product-qty-controls {
        flex-wrap: wrap;
        gap: 8px;
    }
    .qty-wrapper { flex: 0 0 auto; }
    .qty-input { width: 44px !important; }
    .product-actions { flex-direction: column !important; gap: 10px !important; }
    .product-actions .btn-3d { width: 100% !important; text-align: center !important; justify-content: center !important; }
    .btn-whatsapp-sm { align-self: center !important; }
}

@media (max-width: 560px) {
    .products-grid { grid-template-columns: 1fr !important; }
}

/* ================================================================
   MOBILE RESPONSIVE - HERO SECTION
   ================================================================ */
@media (max-width: 768px) {
    .hero-section { padding: 60px 0 50px; min-height: auto; }
    .hero-content-wrapper { grid-template-columns: 1fr !important; gap: 40px; }
    .hero-text h1 { font-size: clamp(26px, 6vw, 38px); }
    .hero-text .tagline { font-size: 15px; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .hero-buttons .btn-3d { width: 100%; text-align: center; justify-content: center; }
    .hero-trust-badges { grid-template-columns: 1fr 1fr !important; gap: 8px; }
    .hero-image-wrap { max-width: 280px !important; margin: 0 auto; }
}

/* ================================================================
   MOBILE RESPONSIVE - REELS SECTION
   ================================================================ */
@media (max-width: 768px) {
    .reels-section { padding: 50px 0; }
    .reels-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
    .reel-modal-box { max-width: 100%; margin: 0; border-radius: 16px; }
    .reel-modal { padding: 10px; }
}
@media (max-width: 400px) {
    .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ================================================================
   MOBILE RESPONSIVE - GENERAL
   ================================================================ */
@media (max-width: 768px) {
    .container { padding: 0 16px !important; }
    .section-title h2 { font-size: clamp(22px, 5vw, 32px); }
    .section-title p  { font-size: 14px; }
    .btn-3d { font-size: 14px !important; padding: 13px 22px !important; }
    .reviews-section { padding: 50px 0; }
    .reviews-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
    .contact-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* ================================================================
   WOOCOMMERCE GENERAL MOBILE FIXES
   ================================================================ */
@media (max-width: 768px) {
    /* WooCommerce notices */
    .woocommerce-message,
    .woocommerce-error,
    .woocommerce-info {
        font-size: 14px !important;
        padding: 12px 14px !important;
    }
    /* WooCommerce tables */
    .shop_table th { display: none; }
    .shop_table td { display: block; text-align: right; padding: 8px 12px !important; }
    .shop_table td::before {
        content: attr(data-title);
        float: left;
        font-weight: 700;
        color: var(--secondary);
    }
}

/* ================================================================
   V8.2 FIXES
   ================================================================ */

/* -------  Prevent horizontal overflow on ALL pages  ------------ */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

/* -------  Hero floating cards: don't overflow viewport  -------- */
@media (max-width: 900px) {
    .hero-floating-card.card-1 { right: 4px !important; }
    .hero-floating-card.card-2 { left: 4px !important; }
    .hero-image-container { overflow: visible; }
}
@media (max-width: 768px) {
    .hero-floating-card { display: none; } /* hide on small screens - cleaner */
    .about-image .experience-badge { right: 0 !important; bottom: 0 !important; }
}

/* -------  About section: fix features grid on mobile  ---------- */
@media (max-width: 480px) {
    .about-features { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .about-feature { padding: 10px 12px !important; }
    .about-feature .feature-text { font-size: 12px !important; }
    .about-feature .feature-icon { width: 32px !important; height: 32px !important; font-size: 16px !important; }
}

/* -------  Checkout summary sticky: works in CSS grid  ---------- */
.checkout-summary-col {
    /* align-self: start is required for position:sticky inside grid */
    align-self: start !important;
}
@media (max-width: 768px) {
    /* Single column on mobile — sticky has no effect, disable */
    .sticky-summary { position: static !important; }
}

/* -------  Summary card Place Order button (ALWAYS visible)  ---- */
.muw-summary-place-btn {
    display: block; /* Always visible - this is the main Place Order button */
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FF6B00, #e55c00);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
    margin-top: 18px;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(255,107,0,0.4);
    text-align: center;
}
.muw-summary-place-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,0,0.55);
}

/* Sticky bar removed — Place Order button is now in the summary card */
.muw-sticky-bar { display: none !important; }

/* -------  WooCommerce #payment cleanup  ------------------------ */
.woocommerce-checkout #payment { background: none !important; border: none !important; border-radius: 0 !important; padding: 0 !important; }
.woocommerce-checkout #payment .payment_methods { display: none !important; }
.woocommerce-checkout #payment .place-order { padding: 0 !important; margin: 0 !important; }
.woocommerce-checkout #payment .woocommerce-privacy-policy-text { display: none !important; }

/* -------  Mobile shop: force single column always  ------------- */
@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        padding: 0 !important;
    }
    .product-card { max-width: 100% !important; }
}

/* -------  Shop hero / archive hero on mobile  ------------------ */
@media (max-width: 768px) {
    .shop-page-hero { padding: 60px 0 30px !important; }
    .shop-page-hero h1 { font-size: 26px !important; }
    .shop-page-hero p { font-size: 14px !important; }
    .archive-header h1 { font-size: 26px !important; }
}

/* ================================================================
   V8.3 FIXES
   ================================================================ */

/* -------  Reel cards with real photos  ------------------------- */
.reel-thumb-img {
    position: relative;
    overflow: hidden;
    background: #1a1a2e;
}
.reel-thumb-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.reel-card-thumb:hover .reel-thumb-img img { transform: scale(1.06); }
.reel-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.25) 50%,
        rgba(0,0,0,0.10) 100%
    );
    z-index: 1;
}
.reel-thumb-img .reel-play-btn,
.reel-thumb-img .reel-label { position: relative; z-index: 2; }

/* -------  Checkout: no more bottom padding for sticky bar  ----- */
@media (max-width: 768px) {
    .muw-checkout { padding-bottom: 30px !important; }
    /* Summary place btn: full width on mobile */
    .muw-summary-place-btn { font-size: 15px !important; padding: 16px !important; }
}

/* -------  Make sticky right column truly sticky  --------------- */
/* Already handled by position:sticky + align-self:start, but ensure
   parent grid row height is long enough for sticky to scroll in */
.checkout-grid {
    /* Remove any max-height that could prevent sticky scrolling */
    height: auto !important;
}
.checkout-summary-col {
    align-self: start !important;
}
.sticky-summary {
    position: sticky !important;
    top: 90px !important; /* header height + small gap */
}
@media (max-width: 768px) {
    .sticky-summary { position: static !important; }
}

/* -------  Logo: Urban Wok always white on dark header  --------- */
.site-header .site-logo img,
.site-header.scrolled .site-logo img {
    /* SVG rendered via img tag - color handled in SVG file itself */
    filter: none;
}

/* -------  Detect button: better UX  ---------------------------- */
#muwDetectBtn:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* -------  Checkout summary card: extra visual polish  ---------- */
.wa-help-link {
    border-radius: 12px !important;
}
.order-summary-card {
    border: 2px solid var(--light-gray) !important;
}

/* -------  Remove any duplicate/conflicting sticky bar rules  --- */
.muw-sticky-bar,
.muw-sticky-bar-inner,
.muw-sticky-btn,
.muw-sticky-total,
.muw-sticky-label,
.muw-sticky-amount {
    display: none !important;
}

/* ================================================================
   SHOP PAGE HERO (archive-product.php) - Properly dark
   ================================================================ */
.muw-shop-hero {
    position: relative;
    padding: 160px 0 70px;
    text-align: center;
    overflow: hidden;
    background: #0d0d1f; /* fallback */
    background: linear-gradient(135deg, #0d0d1f 0%, #1a1a2e 100%);
}
.muw-shop-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,107,0,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,215,0,0.07) 0%, transparent 50%);
    pointer-events: none;
}
.muw-shop-hero-content { position: relative; z-index: 2; }
.muw-shop-badge {
    display: inline-block;
    background: rgba(255,107,0,0.2);
    color: #FFD700;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}
.muw-shop-h1 {
    font-size: clamp(32px, 5vw, 52px);
    color: #fff;
    margin: 0 0 14px;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-weight: 700;
    line-height: 1.15;
}
.muw-shop-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.6;
}
.muw-shop-countdown-box {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: rgba(255,107,0,0.15);
    border: 1px solid rgba(255,107,0,0.35);
    border-radius: 16px;
    padding: 12px 28px;
}
.muw-shop-countdown-label { color: #FFD700; font-weight: 700; font-size: 15px; }
.muw-shop-countdown-timer { color: #fff; font-weight: 800; font-size: 16px; }
.muw-shop-urgency {
    background: #e53935;
    padding: 13px 0;
    text-align: center;
}
.muw-shop-urgency p {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin: 0;
}
@media (max-width: 768px) {
    .muw-shop-hero { padding: 110px 0 50px; }
    .muw-shop-hero-content { padding: 0 20px; }
    .muw-shop-h1 { font-size: 24px !important; word-break: break-word; overflow-wrap: break-word; line-height: 1.2 !important; }
    .muw-shop-sub { font-size: 13px !important; padding: 0 8px; word-break: break-word; }
    .muw-shop-badge { font-size: 12px; padding: 6px 16px; }
    .muw-shop-urgency p { font-size: 12px; padding: 0 16px; }
    .muw-shop-countdown-box { padding: 10px 14px; flex-wrap: wrap; gap: 6px; max-width: 280px; margin: 0 auto; }
    .muw-shop-countdown-label, .muw-shop-countdown-timer { font-size: 12px; }
}
@media (max-width: 480px) {
    .muw-shop-hero { padding: 100px 0 40px; }
    .muw-shop-h1 { font-size: 20px !important; }
    .muw-shop-sub { font-size: 12px !important; }
}

/* ================================================================
   CART DRAWER (slide from right)
   ================================================================ */
.muw-cart-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9100;
    backdrop-filter: blur(3px);
}
.muw-cart-overlay.active { display: block; }

.muw-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 380px;
    max-width: 95vw;
    background: #fff;
    z-index: 9200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.muw-cart-drawer.open { transform: translateX(0); }

.muw-cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 2px solid #f0f0f0;
    background: #fff;
    flex-shrink: 0;
}
.muw-cart-drawer-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}
.muw-cart-drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}
.muw-cart-drawer-close:hover { background: #f5f5f5; color: #333; }

.muw-cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

/* Items inside drawer */
.muw-drawer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.muw-drawer-item img {
    width: 64px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}
.muw-drawer-item-info { flex: 1; min-width: 0; }
.muw-drawer-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.muw-drawer-item-price { font-size: 14px; font-weight: 700; color: #FF6B00; margin: 0; }
.muw-drawer-remove {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
}
.muw-drawer-remove:hover { color: #e53935; background: rgba(229,57,53,0.08); }

.muw-drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    border-top: 2px solid #FF6B00;
    margin-top: 8px;
}
.muw-drawer-total-amt { color: #FF6B00; font-size: 20px; font-weight: 900; }
.muw-drawer-checkout-btn {
    display: block !important;
    width: 100%;
    text-align: center;
    padding: 16px !important;
    font-size: 16px !important;
    border-radius: 50px !important;
    margin-top: 12px;
    box-shadow: 0 6px 20px rgba(255,107,0,0.4);
}
.muw-cart-empty {
    text-align: center;
    padding: 50px 20px;
}
.muw-cart-empty span { font-size: 56px; display: block; margin-bottom: 16px; }
.muw-cart-empty p { font-size: 16px; color: #888; margin-bottom: 20px; }
.muw-cart-loading { text-align: center; padding: 40px; color: #888; font-size: 15px; }

/* nav-cart as button */
button.nav-cart {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.85);
    position: relative;
}
button.nav-cart:hover { color: #fff; }
