/*
Theme Name: shopBu
Theme URI: https://example.com/shopbu
Author: Mavis Team
Author URI: https://example.com
Description: shopBu için modern, hızlı ve yönetilebilir WooCommerce e-ticaret teması.
Version: 1.3.37
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: yb-commerce
Tags: ecommerce, woocommerce, yellow, black, modern, responsive
*/

/* =========================================================
   Yellow Black Commerce - Main Stylesheet
   Renkler:
   --yb-yellow: #FFC107
   --yb-gold:   #FFD600
   --yb-dark-yellow: #FFB300
   --yb-black:  #0A0A0A
   --yb-dark:   #1A1A1A
   --yb-gray:   #2A2A2A
   --yb-light:  #F5F5F5
   --yb-text:   #666666
========================================================= */

:root {
    --yb-yellow: #FFC107;
    --yb-gold: #FFD600;
    --yb-dark-yellow: #FFB300;
    --yb-black: #0A0A0A;
    --yb-dark: #1A1A1A;
    --yb-gray: #2A2A2A;
    --yb-light: #F5F5F5;
    --yb-text: #666666;
    --yb-on-primary: #0A0A0A;
    --yb-on-dark: #ffffff;
    --yb-white: #ffffff;
    --yb-border: #e5e5e5;
    --yb-success: #25D366;
    --yb-radius: 8px;
    --yb-shadow: 0 4px 20px rgba(0,0,0,0.08);
    --yb-shadow-hover: 0 8px 30px rgba(255,193,7,0.25);
    --yb-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--yb-font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--yb-text);
    background: var(--yb-white);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--yb-black); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--yb-yellow); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
    color: var(--yb-black);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: .6em;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p { margin-bottom: 1em; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TOP BAR ===== */
.yb-topbar {
    background: var(--yb-black);
    color: rgba(255,255,255,.85);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,193,7,.2);
}
.yb-topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.yb-topbar a { color: var(--yb-yellow); }
.yb-topbar i { color: var(--yb-yellow); margin-right: 4px; }
.yb-topbar-left span { margin-right: 18px; }

/* ===== HEADER ===== */
.yb-header {
    background: var(--yb-white);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 100;
}
.yb-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 24px;
}
.yb-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--yb-black);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.yb-logo .logo-icon {
    width: 40px; height: 40px;
    background: var(--yb-yellow);
    color: var(--yb-black);
    display: grid;
    place-items: center;
    border-radius: var(--yb-radius);
    font-size: 20px;
}
.yb-logo span { color: var(--yb-yellow); }
.yb-logo .yb-logo-text { color: inherit; }
.yb-custom-logo { display: block; width: auto; }

/* Search */
.yb-search {
    flex: 1;
    max-width: 540px;
    position: relative;
}
.yb-search form { display: flex; }
.yb-search input[type="search"] {
    width: 100%;
    padding: 12px 50px 12px 18px;
    border: 2px solid var(--yb-border);
    border-right: none;
    border-radius: var(--yb-radius) 0 0 var(--yb-radius);
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}
.yb-search input[type="search"]:focus { border-color: var(--yb-yellow); }
.yb-search button {
    background: var(--yb-yellow);
    color: var(--yb-black);
    border: none;
    padding: 0 22px;
    border-radius: 0 var(--yb-radius) var(--yb-radius) 0;
    cursor: pointer;
    font-weight: 600;
    transition: background .2s;
}
.yb-search button:hover { background: var(--yb-dark-yellow); }
.yb-live-search { position: absolute; z-index: 1200; top: calc(100% + 9px); right: 0; left: 0; padding: 8px; border: 1px solid var(--yb-border); border-radius: 12px; background: var(--yb-white); box-shadow: 0 20px 55px rgba(0,0,0,.18); opacity: 0; visibility: hidden; transform: translateY(7px); transition: opacity .2s,visibility .2s,transform .2s; }
.yb-live-search.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.yb-live-search-head { display: flex; justify-content: space-between; gap: 12px; padding: 8px 9px 10px; border-bottom: 1px solid var(--yb-border); }
.yb-live-search-head strong { color: var(--yb-black); font-size: 11px; text-transform: uppercase; letter-spacing: .55px; }
.yb-live-search-head span { color: var(--yb-text); font-size: 10px; }
.yb-live-search-results { display: grid; max-height: min(62vh,470px); overflow-y: auto; }
.yb-live-search-item { display: grid; grid-template-columns: 58px minmax(0,1fr) auto; align-items: center; gap: 11px; padding: 10px 9px; border-bottom: 1px solid var(--yb-border); border-radius: 7px; color: var(--yb-black); }
.yb-live-search-item:hover,.yb-live-search-item.is-active { background: var(--yb-light); color: var(--yb-black); }
.yb-live-search-image { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 7px; background: var(--yb-light); overflow: hidden; }
.yb-live-search-image img { width: 100%; height: 100%; object-fit: contain; }
.yb-live-search-copy { display: grid; gap: 3px; min-width: 0; }
.yb-live-search-copy small { overflow: hidden; color: var(--yb-text); font-size: 9px; font-weight: 700; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.yb-live-search-copy strong { overflow: hidden; color: var(--yb-black); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.yb-live-search-copy em { color: var(--yb-success); font-size: 9px; font-style: normal; font-weight: 800; }
.yb-live-search-copy em.is-out { color: #d32f2f; }
.yb-live-search-price { color: var(--yb-black); font-size: 12px; font-weight: 800; white-space: nowrap; }
.yb-live-search-price del { display: none; }
.yb-live-search-price ins { text-decoration: none; }
.yb-live-search-all { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 42px; margin-top: 7px; padding: 9px 11px; border-radius: 7px; background: var(--yb-black); color: var(--yb-on-dark); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.yb-live-search-all:hover { background: var(--yb-yellow); color: var(--yb-on-primary); }
.yb-live-search-state { display: grid; place-items: center; min-height: 100px; padding: 20px; color: var(--yb-text); font-size: 12px; text-align: center; }
.yb-live-search-state i { margin-bottom: 8px; color: var(--yb-yellow); font-size: 20px; }

/* Header actions */
.yb-header-actions { display: flex; align-items: center; gap: 18px; }
.yb-header-actions a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--yb-black);
    position: relative;
}
.yb-header-actions i { font-size: 20px; }
.yb-cart-count {
    position: absolute;
    top: -8px; right: -10px;
    background: var(--yb-yellow);
    color: var(--yb-black);
    font-size: 11px;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.yb-cart-toast { position: fixed; z-index: 10020; top: 22px; right: 22px; width: min(390px,calc(100vw - 32px)); padding: 18px; border: 1px solid var(--yb-border); border-top: 4px solid var(--yb-yellow); border-radius: 14px; background: var(--yb-white); color: var(--yb-black); box-shadow: 0 22px 65px rgba(0,0,0,.2); opacity: 0; visibility: hidden; transform: translate3d(30px,0,0); transition: opacity .25s,visibility .25s,transform .25s; }
.yb-cart-toast.is-open { opacity: 1; visibility: visible; transform: translate3d(0,0,0); }
.yb-cart-toast-close { position: absolute; top: 10px; right: 10px; display: grid; place-items: center; width: 30px; height: 30px; border: 0; border-radius: 50%; background: var(--yb-light); color: var(--yb-text); cursor: pointer; }
.yb-cart-toast-success { display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 10px; border-radius: 50%; background: var(--yb-yellow); color: var(--yb-on-primary); box-shadow: 0 5px 14px rgba(0,0,0,.1); }
.yb-cart-toast-copy { display: grid; padding-right: 32px; line-height: 1.25; }
.yb-cart-toast-copy small { margin-bottom: 3px; color: var(--yb-yellow); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .8px; }
.yb-cart-toast-copy strong { color: var(--yb-black); font-size: 16px; }
.yb-cart-toast-product { display: flex; align-items: center; gap: 10px; margin: 14px 0; padding: 9px; border-radius: 9px; background: var(--yb-light); }
.yb-cart-toast-product img { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 7px; background: var(--yb-white); object-fit: contain; }
.yb-cart-toast-product span { display: inline-flex; align-items: center; gap: 7px; color: var(--yb-text); font-size: 12px; font-weight: 700; }
.yb-cart-toast-product i { color: var(--yb-yellow); }
.yb-cart-toast-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.yb-cart-toast-actions button,.yb-cart-toast-actions a { display: inline-flex; align-items: center; justify-content: center; gap: 7px; min-height: 42px; padding: 9px 11px; border-radius: 7px; font: inherit; font-size: 11px; font-weight: 800; text-align: center; text-transform: uppercase; cursor: pointer; }
.yb-cart-toast-actions button { border: 1px solid var(--yb-border); background: var(--yb-white); color: var(--yb-black); }
.yb-cart-toast-actions a { border: 1px solid var(--yb-black); background: var(--yb-black); color: var(--yb-on-dark); }
.yb-cart-toast-actions a:hover { border-color: var(--yb-yellow); background: var(--yb-yellow); color: var(--yb-on-primary); }

/* ===== NAVIGATION ===== */
.yb-nav {
    position: relative;
    z-index: 500;
    background: var(--yb-black);
    color: var(--yb-white);
}
.yb-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.yb-nav-category-bar .container { justify-content: flex-start; }
.yb-category-bar-menu { width: auto; max-width: 100%; flex-wrap: nowrap; gap: 4px; }
.yb-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.yb-menu > li { position: relative; }
.yb-menu > li > a {
    display: block;
    padding: 16px 20px;
    color: var(--yb-white);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: all .2s;
}
.yb-menu > li > a:hover,
.yb-menu > li.current-menu-item > a {
    background: var(--yb-yellow);
    color: var(--yb-black);
}
.yb-menu .sub-menu {
    list-style: none;
    position: absolute;
    top: 100%; left: 0;
    background: var(--yb-white);
    min-width: 220px;
    box-shadow: var(--yb-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .2s;
    z-index: 50;
}
.yb-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.yb-menu .sub-menu a {
    display: block;
    padding: 12px 18px;
    color: var(--yb-black);
    font-size: 14px;
    border-bottom: 1px solid var(--yb-light);
}
.yb-menu .sub-menu a:hover { background: var(--yb-yellow); color: var(--yb-black); }

.yb-nav .container { position: relative; }
.yb-mega-menu-item { position: static!important; }
.yb-mega-menu-item > a { display: flex!important; align-items: center; gap: 8px; }
.yb-mega-menu-item > a i { color: var(--yb-yellow); }
.yb-mega-menu-item > a:hover i { color: inherit; }
.yb-mega-category-item { position: static!important; flex: 0 0 auto; }
.yb-mega-category-item > a { justify-content: center; padding: 13px 16px!important; font-size: 12px; letter-spacing: .35px; white-space: nowrap; }
.yb-mega-panel { position: absolute; z-index: 80; top: 100%; right: 0; left: 0; max-height: min(72vh, 680px); padding: 22px; border: 1px solid var(--yb-border); border-top: 3px solid var(--yb-yellow); border-radius: 0 0 14px 14px; background: var(--yb-white); box-shadow: 0 24px 60px rgba(0,0,0,.18); color: var(--yb-black); overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s, visibility .2s, transform .2s; }
.yb-category-mega-panel { right: auto; left: 0; width: min(1280px,calc(100vw - 40px)); max-height: min(62vh,560px); padding: 20px; border-radius: 0 0 11px 11px; }
.yb-mega-menu-item:hover .yb-mega-panel,.yb-mega-menu-item:focus-within .yb-mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.yb-mega-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--yb-border); }
.yb-mega-panel-heading strong { color: var(--yb-black); font-size: 15px; }
.yb-mega-panel-heading a { display: inline-flex; align-items: center; gap: 7px; color: var(--yb-yellow); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.yb-mega-grid { display: grid; grid-template-columns: repeat(var(--yb-mega-columns,4),minmax(0,1fr)); gap: 17px 20px; align-items: start; }
.yb-category-mega-panel .yb-mega-grid { display: block; columns: var(--yb-mega-columns,4); column-gap: 20px; }
.yb-mega-column { min-width: 0; }
.yb-category-mega-panel .yb-mega-column { break-inside: avoid; margin: 0 0 18px; }
.yb-mega-parent { display: flex; align-items: center; gap: 10px; min-height: 42px; padding: 0 0 10px; margin-bottom: 8px; border-bottom: 2px solid var(--yb-yellow); color: var(--yb-black); font-size: 14px; font-weight: 800; }
.yb-mega-parent img { flex: 0 0 38px; width: 38px; height: 38px; border-radius: 8px; object-fit: cover; background: var(--yb-light); }
.yb-mega-parent span,.yb-mega-column li a span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.yb-mega-parent small,.yb-mega-column li small { margin-left: auto; padding: 2px 7px; border-radius: 12px; background: var(--yb-light); color: var(--yb-text); font-size: 10px; font-weight: 700; }
.yb-mega-column ul { display: grid; gap: 2px; margin: 0; padding: 0; list-style: none; }
.yb-mega-column li a { display: flex; align-items: center; gap: 7px; padding: 7px 8px; border-radius: 6px; color: var(--yb-text); font-size: 13px; transition: background .2s, color .2s; }
.yb-mega-column li a:hover { background: var(--yb-light); color: var(--yb-black); }
.yb-mega-view-all { display: inline-flex; align-items: center; gap: 6px; margin-top: 9px; color: var(--yb-yellow); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.yb-mega-all { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 20px; padding: 12px; border-radius: 8px; background: var(--yb-black); color: var(--yb-yellow); font-size: 13px; font-weight: 800; text-transform: uppercase; }

.yb-nav-extra { display: flex; align-items: center; gap: 16px; padding: 8px 0; }
.yb-nav-extra span { color: var(--yb-yellow); font-size: 13px; font-weight: 500; }
.yb-header-notice { position: relative; z-index: 90; border-bottom: 1px solid var(--yb-border); background: var(--yb-white); }
.yb-header-notice .container { display: flex; align-items: center; justify-content: center; gap: 28px; min-height: 34px; }
.yb-header-notice span { display: inline-flex; align-items: center; gap: 7px; color: var(--yb-text); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .35px; }
.yb-header-notice i { color: var(--yb-yellow); font-size: 11px; }
.yb-menu-toggle, .yb-menu-overlay, .yb-submenu-toggle, .yb-mobile-menu-head { display: none; }

/* Preset-aware contrast */
.yb-search button, .yb-cart-count, .yb-menu > li > a:hover, .yb-menu > li.current-menu-item > a,
.yb-menu .sub-menu a:hover, .yb-btn-primary, .yb-product-badge, .yb-product-price .discount,
.yb-banner-1, .yb-banner a, .yb-feature .feature-icon,
.yb-account-nav ul li a:hover, .yb-account-nav ul li.is-active a, .yb-account-stat.is-primary {
    color: var(--yb-on-primary);
}
.yb-nav, .yb-btn-dark, .yb-add-to-cart, .yb-featured-cart, .yb-footer, .yb-account-stat.is-dark {
    color: var(--yb-on-dark);
}
.yb-btn-dark, .yb-add-to-cart, .yb-featured-cart { color: var(--yb-on-dark); }
.yb-add-to-cart i, .yb-featured-cart i { color: var(--yb-yellow); }
.yb-btn-primary:hover, .yb-add-to-cart:hover, .yb-featured-cart:hover { color: var(--yb-on-primary); }

/* ===== BUTTONS ===== */
.yb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: var(--yb-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    text-decoration: none;
    line-height: 1;
}
.yb-btn-primary {
    background: var(--yb-yellow);
    color: var(--yb-black);
    border-color: var(--yb-yellow);
}
.yb-btn-primary:hover {
    background: var(--yb-black);
    color: var(--yb-yellow);
    border-color: var(--yb-black);
    transform: translateY(-2px);
}
.yb-btn-dark {
    background: var(--yb-black);
    color: var(--yb-yellow);
    border-color: var(--yb-black);
}
.yb-btn-dark:hover {
    background: var(--yb-yellow);
    color: var(--yb-black);
}
.yb-btn-outline {
    background: transparent;
    color: var(--yb-black);
    border-color: var(--yb-black);
}
.yb-btn-outline:hover { background: var(--yb-black); color: var(--yb-yellow); }
.yb-btn-block { width: 100%; }

/* ===== HERO / SLIDER ===== */
.yb-hero {
    background-position: center;
    background-size: cover;
    color: var(--yb-white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    display: flex;
    align-items: center;
}
.yb-hero-backdrop { position: absolute; inset: 0; z-index: 0; }
.yb-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,193,7,.15) 0%, transparent 70%);
    border-radius: 50%;
}
.yb-hero::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,193,7,.1) 0%, transparent 70%);
    border-radius: 50%;
}
.yb-hero .container {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.yb-hero-content h1 {
    color: var(--yb-white);
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.yb-hero-content h1 span {
    color: var(--yb-yellow);
    display: block;
}
.yb-hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    margin-bottom: 32px;
    max-width: 500px;
}
.yb-hero-content .yb-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.yb-hero-buttons .yb-btn { transition: filter .2s, transform .2s; }
.yb-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,193,7,.2);
}
.yb-hero-stats .stat strong {
    display: block;
    color: var(--yb-yellow);
    font-size: 30px;
    font-weight: 800;
}
.yb-hero-stats .stat span { font-size: 13px; color: rgba(255,255,255,.6); }

.yb-hero-image {
    position: relative;
    aspect-ratio: 1/1;
    background: linear-gradient(135deg, var(--yb-yellow) 0%, var(--yb-dark-yellow) 100%);
    border-radius: 20px;
    display: grid;
    place-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,.3);
    overflow: hidden;
}
.yb-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.2) 0%, transparent 50%);
}
.yb-hero-image i { font-size: 120px; color: var(--yb-black); }
.yb-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.yb-hero-image img.is-contain { object-fit: contain; padding: 22px; }

/* ===== SECTIONS ===== */
.yb-section { padding: 80px 0; }
.yb-section-gray { background: var(--yb-light); }
.yb-section-dark { background: var(--yb-black); color: var(--yb-white); }
.yb-section-dark h2, .yb-section-dark h3 { color: var(--yb-white); }

.yb-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.yb-section-title .subtitle {
    color: var(--yb-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}
.yb-section-title h2 { font-size: 36px; margin-bottom: 12px; }
.yb-section-title p { color: var(--yb-text); max-width: 600px; margin: 0 auto; }
.yb-section-dark .yb-section-title p { color: rgba(255,255,255,.7); }

/* ===== FEATURED CATEGORIES ===== */
.yb-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.yb-category-card {
    position: relative;
    border-radius: var(--yb-radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--yb-light);
    transition: transform .3s;
    cursor: pointer;
}
.yb-category-card:hover { transform: translateY(-6px); }
.yb-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85) 100%);
    z-index: 1;
}
.yb-category-card .cat-icon {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--yb-yellow);
    font-size: 80px;
    opacity: .25;
}
.yb-category-card .cat-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    z-index: 2;
    color: var(--yb-white);
}
.yb-category-card .cat-content h3 {
    color: var(--yb-white);
    font-size: 20px;
    margin-bottom: 4px;
}
.yb-category-card .cat-content span {
    color: var(--yb-yellow);
    font-size: 13px;
    font-weight: 600;
}

/* ===== PRODUCT GRID ===== */
.yb-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.yb-product-card {
    background: var(--yb-white);
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s;
    border: 1px solid var(--yb-border);
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.yb-product-card:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,.10);
    transform: translateY(-3px);
    border-color: rgba(255,193,7,.7);
}
.yb-product-thumb {
    display: block;
    width: 100%;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--yb-light);
    overflow: hidden;
}
.yb-product-thumb img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform .4s;
}
.yb-product-card:hover .yb-product-thumb img { transform: scale(1.04); }
.yb-product-thumb .product-icon {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    color: rgba(0,0,0,.15);
    font-size: 90px;
}
.yb-product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--yb-yellow);
    color: var(--yb-black);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}
.yb-product-badge.sale { background: #E53935; color: white; }
.yb-auto-product-badge { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 6px; max-width: calc(100% - 24px); padding: 6px 9px; border-radius: 20px; background: var(--yb-badge-bg, var(--yb-black)); color: var(--yb-badge-text, var(--yb-on-dark)); font-size: 9px; font-weight: 900; line-height: 1.2; letter-spacing: .35px; text-transform: uppercase; box-shadow: 0 6px 18px rgba(0,0,0,.16); pointer-events: none; }
.yb-auto-product-badge i { flex: 0 0 auto; color: inherit; font-size: 10px; }
.yb-auto-product-badge.is-grid { left: 12px; bottom: 12px; }
.yb-auto-product-badge.is-single { top: 16px; left: 16px; padding: 8px 12px; font-size: 10px; }
.yb-auto-product-badge.is-grid.is-custom.has-shipping { bottom: 44px; }
.yb-auto-product-badge.is-single.is-custom.has-shipping { top: 54px; }
.yb-product-actions {
    position: absolute;
    top: 12px; right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all .3s;
    z-index: 2;
}
.yb-product-card:hover .yb-product-actions {
    opacity: 1;
    transform: translateX(0);
}
.yb-product-actions button {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--yb-white);
    color: var(--yb-black);
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transition: all .2s;
}
.yb-product-actions button:hover { background: var(--yb-yellow); }

.yb-product-info {
    padding: 14px;
    display: flex;
    flex: 1;
    flex-direction: column;
}
.yb-product-cat {
    color: var(--yb-text);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .75px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.yb-product-info h3 {
    font-size: 14px;
    margin-bottom: 7px;
    line-height: 1.35;
    min-height: 38px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.yb-product-info h3 a { color: var(--yb-black); }
.yb-product-info h3 a:hover { color: var(--yb-yellow); }

.yb-product-rating { color: var(--yb-yellow); font-size: 11px; margin-bottom: 8px; line-height: 1; }
.yb-product-rating span { color: var(--yb-text); margin-left: 4px; }

.yb-product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 10px;
}
.yb-product-price .current {
    color: var(--yb-black);
    font-size: 18px;
    font-weight: 750;
    letter-spacing: -.3px;
}
.yb-product-price .old {
    color: var(--yb-text);
    text-decoration: line-through;
    font-size: 12px;
}
.yb-product-price .discount {
    background: var(--yb-yellow);
    color: var(--yb-black);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-left: auto;
}

.yb-add-to-cart {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    background: var(--yb-black);
    color: var(--yb-yellow);
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .4px;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.yb-add-to-cart:hover { background: var(--yb-yellow); color: var(--yb-black); }

/* ===== FEATURED PRODUCT SHOWCASE ===== */
.yb-featured-products {
    gap: 22px;
}
.yb-featured-card {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(15, 15, 15, .06);
}
.yb-featured-card:hover {
    border-color: transparent;
    box-shadow: 0 18px 42px rgba(15, 15, 15, .12);
}
.yb-featured-card .yb-product-thumb {
    aspect-ratio: 1 / 1;
    margin: 8px;
    width: calc(100% - 16px);
    border-radius: 12px;
}
.yb-featured-card .yb-product-thumb img { padding: 10px; object-fit: contain; transform: none; }
.yb-featured-card:hover .yb-product-thumb img { transform: none; }
.yb-featured-card .yb-product-info {
    padding: 10px 16px 16px;
}
.yb-featured-card .yb-product-cat {
    color: var(--yb-yellow);
    font-size: 9px;
    font-weight: 700;
}
.yb-featured-card .yb-product-info h3 {
    font-size: 14px;
    min-height: 38px;
    margin-bottom: 8px;
}
.yb-featured-card .yb-product-rating {
    margin-bottom: 12px;
}
.yb-featured-buy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--yb-border);
}
.yb-featured-buy-row .yb-product-price {
    display: grid;
    gap: 1px;
    margin: 0;
}
.yb-featured-buy-row .yb-product-price .current {
    font-size: 17px;
}
.yb-featured-cart {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--yb-black);
    color: var(--yb-yellow);
    transition: .2s;
}
.yb-featured-cart:hover {
    background: var(--yb-yellow);
    color: var(--yb-black);
    transform: translateY(-2px);
}
.yb-best-sellers-section { background: var(--yb-white); }
.yb-best-seller-card .yb-product-thumb { position: relative; }
.yb-best-seller-badge { position: absolute; z-index: 3; top: 12px; left: 12px; display: inline-flex; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 20px; background: var(--yb-black); color: var(--yb-on-dark); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .4px; box-shadow: 0 5px 14px rgba(0,0,0,.13); }
.yb-best-seller-badge i { color: var(--yb-yellow); }
.yb-best-seller-card .yb-product-badge { top: 43px; }
.yb-best-sellers-link { margin-top: 50px; text-align: center; }

/* ===== BANNER STRIP ===== */
.yb-banner-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 60px 0;
}
.yb-banner {
    padding: 36px 28px;
    border-radius: var(--yb-radius);
    color: var(--yb-white);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-position: center;
    background-size: cover;
}
.yb-banner-overlay { position: absolute; inset: 0; z-index: 0; }
.yb-banner-content { position: relative; z-index: 1; }
.yb-banner.has-image { color: var(--yb-white); border: 0; }
.yb-banner.has-image.is-contain { background-size: contain; background-repeat: no-repeat; background-color: var(--yb-black); }
.yb-banner.has-image.is-cover { background-size: cover; }
.yb-banner.has-image h3 { color: var(--yb-white); }
.yb-banner-1 { background: linear-gradient(135deg, var(--yb-yellow) 0%, var(--yb-dark-yellow) 100%); color: var(--yb-black); }
.yb-banner-2 { background: linear-gradient(135deg, var(--yb-black) 0%, var(--yb-gray) 100%); }
.yb-banner-3 { background: linear-gradient(135deg, var(--yb-gray) 0%, var(--yb-black) 100%); border: 2px solid var(--yb-yellow); }
.yb-banner h3 { color: inherit; font-size: 24px; margin-bottom: 8px; }
.yb-banner p { margin-bottom: 16px; opacity: .9; }
.yb-banner a {
    align-self: flex-start;
    padding: 8px 18px;
    background: var(--yb-yellow);
    color: var(--yb-black);
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}
.yb-banner-2 a, .yb-banner-3 a { background: var(--yb-yellow); color: var(--yb-black); }

/* ===== FEATURES ===== */
.yb-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 50px 0;
}
.yb-feature {
    text-align: center;
    padding: 20px;
}
.yb-feature .feature-icon {
    width: 70px; height: 70px;
    background: var(--yb-yellow);
    color: var(--yb-black);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    font-size: 28px;
    transition: transform .3s;
}
.yb-feature:hover .feature-icon { transform: rotate(360deg); }
.yb-feature h4 { font-size: 16px; margin-bottom: 6px; }
.yb-feature p { color: var(--yb-text); font-size: 13px; margin: 0; }

/* ===== NEWSLETTER ===== */
.yb-newsletter {
    background: linear-gradient(135deg, var(--yb-yellow) 0%, var(--yb-dark-yellow) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--yb-black);
}
.yb-newsletter h2 { color: var(--yb-black); }
.yb-newsletter p { color: rgba(0,0,0,.7); max-width: 500px; margin: 0 auto 28px; }
.yb-newsletter form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 8px;
    background: var(--yb-white);
    padding: 6px;
    border-radius: var(--yb-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}
.yb-newsletter input[type="email"] {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    background: transparent;
    color: var(--yb-black);
}
.yb-newsletter button {
    background: var(--yb-black);
    color: var(--yb-yellow);
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    transition: all .2s;
}
.yb-newsletter button:hover { background: var(--yb-dark); }

/* ===== FOOTER ===== */
.yb-footer {
    background: var(--yb-black);
    color: rgba(255,255,255,.7);
    padding: 70px 0 0;
}
.yb-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}
.yb-footer h4 {
    color: var(--yb-yellow);
    font-size: 14px;
    line-height: 1.35;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: .65px;
}
.yb-footer ul { list-style: none; }
.yb-footer ul li { margin-bottom: 10px; }
.yb-footer ul a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s; }
.yb-footer ul a:hover { color: var(--yb-yellow); padding-left: 4px; }
.yb-footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.yb-social { display: flex; gap: 10px; }
.yb-social a {
    width: 38px; height: 38px;
    background: var(--yb-gray);
    color: var(--yb-white);
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: all .2s;
}
.yb-social a:hover { background: var(--yb-yellow); color: var(--yb-black); transform: translateY(-3px); }
.yb-footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.55; }
.yb-footer-contact a { padding-left: 0!important; overflow-wrap: anywhere; }
.yb-footer-contact i { color: var(--yb-yellow); margin-top: 4px; }

.yb-payment { display: flex; gap: 8px; flex-wrap: wrap; }
.yb-payment-badges i {
    background: var(--yb-white);
    color: var(--yb-black);
    width: 44px; height: 28px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}
.yb-payment-logos { align-items: center; gap: 10px; }
.yb-payment-logos img {
    display: block;
    width: auto;
    max-width: 82px;
    padding: 5px 8px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 7px;
    background: var(--yb-white);
    object-fit: contain;
    box-sizing: content-box;
    transition: transform .2s, border-color .2s;
}
.yb-payment-logos img:hover { transform: translateY(-2px); border-color: var(--yb-yellow); }

.yb-footer-bottom {
    border-top: 1px solid var(--yb-gray);
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,.5);
}
.yb-footer-bottom a { color: var(--yb-yellow); }

/* ===== BREADCRUMB ===== */
.yb-breadcrumb {
    background: var(--yb-light);
    padding: 20px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--yb-border);
}
.yb-breadcrumb .container { display: flex; align-items: center; gap: 8px; }
.yb-breadcrumb a { color: var(--yb-text); }
.yb-breadcrumb a:hover { color: var(--yb-yellow); }
.yb-breadcrumb span.sep { color: var(--yb-yellow); }
.yb-breadcrumb .current { color: var(--yb-black); font-weight: 600; }

/* ===== SHOP / ARCHIVE ===== */
.yb-shop-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 40px; }
.yb-sidebar { background: var(--yb-white); }
.yb-widget {
    background: var(--yb-white);
    border: 1px solid var(--yb-border);
    border-radius: var(--yb-radius);
    padding: 22px;
    margin-bottom: 24px;
}
.yb-widget h3 {
    font-size: 16px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--yb-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.yb-widget ul { list-style: none; }
.yb-widget ul li { padding: 8px 0; border-bottom: 1px dashed var(--yb-border); display: flex; justify-content: space-between; }
.yb-widget ul li:last-child { border-bottom: none; }
.yb-widget ul li a { color: var(--yb-text); font-size: 14px; }
.yb-widget ul li a:hover { color: var(--yb-yellow); }
.yb-widget ul li .count { background: var(--yb-light); color: var(--yb-black); font-size: 12px; padding: 2px 8px; border-radius: 10px; font-weight: 600; }

.yb-category-filter h3 { display: flex; align-items: center; gap: 9px; }
.yb-category-filter h3 i { color: var(--yb-yellow); font-size: 13px; }
.yb-category-back { display: flex; align-items: center; gap: 8px; margin: -5px 0 12px; color: var(--yb-text); font-size: 12px; font-weight: 700; }
.yb-category-back i { color: var(--yb-yellow); font-size: 10px; transition: transform .2s; }
.yb-category-back:hover { color: var(--yb-black); }
.yb-category-back:hover i { transform: translateX(-3px); }
.yb-category-path { display: flex; align-items: center; gap: 5px; margin-bottom: 10px; overflow: hidden; color: var(--yb-text); font-size: 10px; white-space: nowrap; }
.yb-category-path a { color: var(--yb-text); }
.yb-category-path a:hover { color: var(--yb-yellow); }
.yb-category-path i { flex: 0 0 auto; color: var(--yb-border); font-size: 7px; }
.yb-category-path span { overflow: hidden; color: var(--yb-black); font-weight: 700; text-overflow: ellipsis; }
.yb-category-current { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 8px; padding: 11px 12px; border-radius: 8px; background: var(--yb-yellow); color: var(--yb-on-primary); font-size: 13px; font-weight: 800; }
.yb-category-current span { display: flex; align-items: center; gap: 8px; min-width: 0; }
.yb-category-current small { display: grid; flex: 0 0 auto; place-items: center; min-width: 25px; height: 23px; padding: 0 6px; border-radius: 12px; background: rgba(255,255,255,.72); color: var(--yb-black); font-size: 10px; }
.yb-category-list { display: grid; gap: 2px; }
.yb-widget .yb-category-list li { display: block; padding: 0; border: 0; }
.yb-widget .yb-category-list li a { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: 38px; padding: 6px 7px; border-bottom: 1px dashed var(--yb-border); border-radius: 6px; }
.yb-widget .yb-category-list li:last-child a { border-bottom: 0; }
.yb-widget .yb-category-list li a:hover { padding-left: 11px; background: var(--yb-light); color: var(--yb-black); }
.yb-category-list small { display: grid; flex: 0 0 auto; place-items: center; min-width: 25px; height: 23px; padding: 0 6px; border-radius: 12px; background: var(--yb-light); color: var(--yb-black); font-size: 10px; font-weight: 700; }
.yb-category-empty { margin: 10px 0 0; color: var(--yb-text); font-size: 12px; line-height: 1.55; }

.yb-price-range { display: grid; grid-template-columns: minmax(0,1fr) auto minmax(0,1fr); gap: 8px; align-items: end; margin-top: 12px; }
.yb-price-range label { display: grid; gap: 5px; min-width: 0; }
.yb-price-range label span { color: var(--yb-text); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; }
.yb-price-range input { width: 100%; min-width: 0; padding: 10px 8px; border: 1px solid var(--yb-border); border-radius: 7px; background: var(--yb-white); color: var(--yb-black); font: inherit; font-size: 13px; outline: none; }
.yb-price-range input:focus { border-color: var(--yb-yellow); }
.yb-price-separator { padding-bottom: 10px; color: var(--yb-text); font-size: 12px; }
.yb-price-submit { display: flex; align-items: center; justify-content: center; gap: 7px; width: 100%; margin-top: 11px; padding: 11px 12px; border: 0; border-radius: 7px; background: var(--yb-black); color: var(--yb-yellow); font: inherit; font-size: 11px; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: background .2s,color .2s; }
.yb-price-submit:hover { background: var(--yb-yellow); color: var(--yb-on-primary); }
.yb-price-clear { display: block; margin-top: 9px; color: var(--yb-text); font-size: 11px; text-align: center; text-decoration: underline; }
.yb-auto-filters { display: block; }
.yb-filter-widget h3 { display: flex; align-items: center; gap: 9px; }
.yb-filter-widget h3 i { color: var(--yb-yellow); font-size: 13px; }
.yb-filter-options { display: grid; gap: 3px; max-height: 310px; padding-right: 3px; overflow-y: auto; scrollbar-width: thin; }
.yb-filter-option { display: grid; grid-template-columns: 20px minmax(0,1fr) auto; align-items: center; gap: 9px; min-height: 38px; padding: 5px 7px; border-radius: 7px; color: var(--yb-text); cursor: pointer; transition: background .2s, color .2s; }
.yb-filter-option:hover { background: var(--yb-light); color: var(--yb-black); }
.yb-filter-option input { position: absolute; opacity: 0; pointer-events: none; }
.yb-filter-check { display: grid; place-items: center; width: 18px; height: 18px; border: 1px solid var(--yb-border); border-radius: 5px; background: var(--yb-white); color: transparent; font-size: 9px; transition: .2s; }
.yb-filter-option input:checked + .yb-filter-check { border-color: var(--yb-yellow); background: var(--yb-yellow); color: var(--yb-on-primary); }
.yb-filter-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.yb-filter-option small { display: grid; place-items: center; min-width: 25px; height: 23px; padding: 0 6px; border-radius: 12px; background: var(--yb-light); color: var(--yb-black); font-size: 10px; font-weight: 700; }
.yb-clear-filters { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 4px 0 24px; padding: 10px 12px; border: 1px solid var(--yb-border); border-radius: var(--yb-radius); background: var(--yb-white); color: var(--yb-text); font-size: 12px; font-weight: 700; }
.yb-clear-filters:hover { border-color: var(--yb-yellow); color: var(--yb-black); }

.yb-shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--yb-white);
    padding: 18px 22px;
    border: 1px solid var(--yb-border);
    border-radius: var(--yb-radius);
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}
.yb-shop-header .result-count { color: var(--yb-text); font-size: 14px; }
.yb-shop-header select {
    padding: 8px 12px;
    border: 1px solid var(--yb-border);
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

/* ===== SINGLE PRODUCT ===== */
.yb-single-product { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.yb-product-gallery { background: var(--yb-light); border-radius: var(--yb-radius); aspect-ratio: 1/1; display: grid; place-items: center; position: relative; overflow: hidden; }
.yb-product-gallery.is-portrait { aspect-ratio: 4/5; }
.yb-product-gallery.is-landscape { aspect-ratio: 4/3; }
.yb-product-gallery .main-image { position: absolute; inset: 0; width: 100%; border: 0; background-color: transparent; background-position: center; background-repeat: no-repeat; background-size: contain; display: grid; place-items: center; padding: 18px 18px 92px; cursor: zoom-in; }
.yb-product-gallery[data-lightbox="0"] .main-image { cursor: default; }
.yb-product-gallery .main-image img { width: 100%; height: 100%; object-fit: contain; transition: opacity .2s ease; }
.yb-product-gallery .main-image.is-swapped img { opacity: 0!important; visibility: hidden; }
.yb-product-gallery.fit-cover .main-image.is-swapped { background-size: cover; }
.yb-product-gallery.fit-cover .main-image img { object-fit: cover; }
.yb-product-gallery .main-image > i { font-size: 200px; color: rgba(0,0,0,.1); }
.yb-gallery-zoom { position: absolute; z-index: 3; top: 16px; right: 16px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(10,10,10,.72); color: #fff; font-size: 14px; backdrop-filter: blur(8px); box-shadow: 0 6px 20px rgba(0,0,0,.18); transition: background .2s, color .2s, transform .2s; }
.yb-gallery-zoom i { color: inherit; font-size: 14px; line-height: 1; }
.yb-gallery-main:hover .yb-gallery-zoom { background: var(--yb-yellow); color: var(--yb-black); transform: scale(1.06); }
.yb-product-gallery .thumb-list { position: absolute; z-index: 2; right: 16px; bottom: 16px; left: 16px; display: flex; justify-content: center; gap: 8px; overflow-x: auto; }
.yb-product-gallery .thumb-list .thumb { flex: 0 0 62px; width: 62px; height: 62px; padding: 3px; background: var(--yb-white); border: 2px solid transparent; border-radius: 8px; display: grid; place-items: center; cursor: pointer; }
.yb-product-gallery .thumb-list .thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.yb-product-gallery .thumb-list .thumb.active { border-color: var(--yb-yellow); }

.yb-lightbox { position: fixed; inset: 0; z-index: 99999; display: grid; place-items: center; padding: 72px 90px; background: rgba(5,5,5,.94); opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
.yb-lightbox.is-open { opacity: 1; visibility: visible; }
body.yb-lightbox-open { overflow: hidden; }
.yb-lightbox-stage { display: grid; place-items: center; width: 100%; height: 100%; }
.yb-lightbox-stage img { display: block; max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,.45); }
.yb-lightbox button { position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; cursor: pointer; transition: background .2s, transform .2s; }
.yb-lightbox button:hover { background: var(--yb-yellow); color: var(--yb-black); transform: scale(1.05); }
.yb-lightbox-close { top: 22px; right: 22px; width: 46px; height: 46px; }
.yb-lightbox-prev,.yb-lightbox-next { top: 50%; width: 52px; height: 52px; transform: translateY(-50%); }
.yb-lightbox-prev:hover,.yb-lightbox-next:hover { transform: translateY(-50%) scale(1.05)!important; }
.yb-lightbox-prev { left: 22px; }
.yb-lightbox-next { right: 22px; }
.yb-lightbox:not(.has-multiple) .yb-lightbox-prev,.yb-lightbox:not(.has-multiple) .yb-lightbox-next { display: none; }
.yb-lightbox-count { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); padding: 7px 13px; border-radius: 20px; background: rgba(255,255,255,.1); color: #fff; font-size: 12px; }

.yb-product-detail .product-category { color: var(--yb-yellow); text-transform: uppercase; font-size: 12px; letter-spacing: 2px; font-weight: 600; }
.yb-product-brands { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 8px; }
.yb-product-brand { display: inline-flex; align-items: center; gap: 10px; min-width: 170px; padding: 8px 10px 8px 8px; border: 1px solid var(--yb-border); border-radius: 10px; background: linear-gradient(135deg,var(--yb-white),var(--yb-light)); color: var(--yb-black); box-shadow: 0 5px 16px rgba(0,0,0,.045); transition: border-color .2s, box-shadow .2s, transform .2s; }
.yb-product-brand:hover { border-color: var(--yb-yellow); color: var(--yb-black); box-shadow: 0 8px 22px rgba(0,0,0,.08); transform: translateY(-1px); }
.yb-product-brand-icon { display: grid; place-items: center; flex: 0 0 34px; width: 34px; height: 34px; border-radius: 8px; background: var(--yb-yellow); color: var(--yb-on-primary); font-size: 14px; }
.yb-product-brand-copy { display: grid; min-width: 0; line-height: 1.15; }
.yb-product-brand-copy small { margin-bottom: 3px; color: var(--yb-text); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; }
.yb-product-brand-copy strong { overflow: hidden; color: var(--yb-black); font-size: 13px; font-weight: 800; text-overflow: ellipsis; white-space: nowrap; }
.yb-product-brand-arrow { margin-left: auto; color: var(--yb-yellow); font-size: 10px; transition: transform .2s; }
.yb-product-brand:hover .yb-product-brand-arrow { transform: translateX(2px); }
.yb-product-detail h1 { font-size: 36px; margin: 8px 0 16px; }
.yb-product-detail .rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--yb-border); }
.yb-product-detail .rating-row .stars { color: var(--yb-yellow); }
.yb-product-detail .rating-row a { color: var(--yb-text); font-size: 13px; }
.yb-product-detail .price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.yb-product-detail .price-row .current { font-size: 36px; font-weight: 800; color: var(--yb-black); }
.yb-product-detail .price-row .old { font-size: 18px; color: var(--yb-text); text-decoration: line-through; }
.yb-product-detail .price-row .save { background: var(--yb-yellow); color: var(--yb-black); padding: 4px 12px; border-radius: 4px; font-size: 13px; font-weight: 700; }
.yb-product-detail .description { color: var(--yb-text); margin-bottom: 24px; line-height: 1.8; }
.yb-product-detail .stock { color: var(--yb-success); font-weight: 600; margin-bottom: 24px; }
.yb-product-detail .stock i { margin-right: 6px; }
.yb-product-detail .quantity-row { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; }
.yb-product-purchase { position: relative; margin: 26px 0 24px; padding: 22px; border: 1px solid var(--yb-border); border-radius: calc(var(--yb-radius) + 5px); background: linear-gradient(145deg,var(--yb-white),var(--yb-light)); box-shadow: 0 12px 35px rgba(0,0,0,.055); }
.yb-purchase-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--yb-border); }
.yb-purchase-heading span { display: inline-flex; align-items: center; gap: 9px; color: var(--yb-black); font-size: 14px; font-weight: 800; }
.yb-purchase-heading span i { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; background: var(--yb-yellow); color: var(--yb-on-primary); font-size: 12px; }
.yb-purchase-heading small { color: var(--yb-text); font-size: 11px; }
.yb-product-purchase form.cart { margin: 0; }
.yb-product-purchase form.cart:not(.variations_form) { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.yb-product-purchase .quantity { display: inline-flex; align-items: center; }
.yb-product-purchase .quantity input.qty { width: 72px; height: 50px; padding: 0 8px; border: 1px solid var(--yb-border); border-radius: 9px; background: var(--yb-white); color: var(--yb-black); text-align: center; font: inherit; font-weight: 800; box-shadow: 0 3px 10px rgba(0,0,0,.04); }
.yb-product-purchase .single_add_to_cart_button { flex: 1; min-height: 50px; padding: 12px 24px; border: 2px solid var(--yb-black); border-radius: 9px; background: var(--yb-black)!important; color: var(--yb-yellow)!important; font: inherit; font-weight: 800; text-transform: uppercase; letter-spacing: .3px; cursor: pointer; box-shadow: 0 7px 18px rgba(0,0,0,.12); transition: transform .2s, background .2s, color .2s, opacity .2s; }
.yb-product-purchase .single_add_to_cart_button::before { content: "\f290"; margin-right: 9px; color: var(--yb-yellow); font-family: "Font Awesome 6 Free"; font-weight: 900; }
.yb-product-purchase .single_add_to_cart_button:not(.disabled):hover { border-color: var(--yb-yellow); background: var(--yb-yellow)!important; color: var(--yb-on-primary)!important; transform: translateY(-2px); }
.yb-product-purchase .single_add_to_cart_button:not(.disabled):hover::before { color: var(--yb-on-primary); }
.yb-product-purchase .single_add_to_cart_button.disabled { opacity: .45; cursor: not-allowed; }
.yb-single-wishlist { position: absolute; right: 22px; bottom: 22px; min-width: 50px; min-height: 50px; padding: 0 15px; margin: 0; border-radius: 9px; background: var(--yb-white); }
.yb-product-purchase form.cart:not(.variations_form) { padding-right: 62px; }
.yb-product-purchase .variations { width: 100%; margin: 0 0 14px; border-collapse: separate; border-spacing: 0 8px; }
.yb-product-purchase .variations th,.yb-product-purchase .variations td { padding: 0; border: 0; text-align: left; vertical-align: middle; }
.yb-product-purchase .variations th { width: 105px; padding-right: 14px; color: var(--yb-black); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.yb-product-purchase .variations select { width: 100%; min-height: 50px; padding: 10px 40px 10px 14px; border: 1px solid var(--yb-border); border-radius: 9px; background: var(--yb-white); color: var(--yb-black); font: inherit; font-weight: 600; cursor: pointer; box-shadow: 0 3px 10px rgba(0,0,0,.04); }
.yb-product-purchase .yb-variation-select-native { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }
.yb-variation-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.yb-variation-tag { min-width: 44px; min-height: 40px; padding: 8px 15px; border: 1px solid var(--yb-border); border-radius: 20px; background: var(--yb-white); color: var(--yb-black); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; box-shadow: 0 3px 9px rgba(0,0,0,.035); transition: border-color .2s, background .2s, color .2s, transform .2s; }
.yb-variation-tag:hover { border-color: var(--yb-yellow); transform: translateY(-1px); }
.yb-variation-tag.is-selected { border-color: var(--yb-black); background: var(--yb-black); color: var(--yb-yellow); box-shadow: 0 5px 14px rgba(0,0,0,.14); }
.yb-variation-tag.is-disabled,.yb-variation-tag:disabled { opacity: .35; cursor: not-allowed; text-decoration: line-through; transform: none; }
.yb-product-purchase .variations select:hover,.yb-product-purchase .variations select:focus { border-color: var(--yb-yellow); outline: none; }
.yb-product-purchase .reset_variations { display: inline-flex; align-items: center; margin-top: 7px; padding: 5px 9px; border-radius: 5px; background: rgba(0,0,0,.045); color: var(--yb-text); font-size: 11px; font-weight: 700; }
.yb-product-purchase .single_variation_wrap { display: grid; gap: 12px; padding-top: 14px; padding-right: 62px; border-top: 1px solid var(--yb-border); }
.yb-product-purchase .woocommerce-variation-description p { margin: 0; color: var(--yb-text); font-size: 13px; }
.yb-product-purchase .woocommerce-variation-price .price { color: var(--yb-black); font-size: 24px; font-weight: 800; }
.yb-product-purchase .woocommerce-variation-availability { display: inline-flex; align-items: center; width: fit-content; padding: 6px 10px; border-radius: 20px; background: rgba(0,180,90,.1); color: var(--yb-success); font-size: 12px; font-weight: 800; }
.yb-product-purchase .woocommerce-variation-availability p { margin: 0; }
.yb-product-purchase .woocommerce-variation-add-to-cart { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.yb-product-purchase .stock.out-of-stock { color: #d32f2f; }
.yb-quantity {
    display: flex;
    align-items: center;
    border: 2px solid var(--yb-border);
    border-radius: var(--yb-radius);
    overflow: hidden;
}
.yb-quantity button { background: var(--yb-light); border: none; width: 40px; height: 44px; cursor: pointer; font-size: 18px; color: var(--yb-black); }
.yb-quantity button:hover { background: var(--yb-yellow); }
.yb-quantity input { width: 50px; height: 44px; text-align: center; border: none; font-size: 16px; font-weight: 600; outline: none; }
.yb-product-detail .meta { border-top: 1px solid var(--yb-border); padding-top: 20px; font-size: 14px; }
.yb-product-detail .meta-row { display: flex; gap: 8px; margin-bottom: 6px; }
.yb-product-detail .meta-row strong { color: var(--yb-black); min-width: 100px; }

.yb-product-data-tabs { margin: 72px 0 60px; border: 1px solid var(--yb-border); border-radius: calc(var(--yb-radius) + 4px); background: var(--yb-white); overflow: hidden; }
.yb-product-tab-nav { display: flex; gap: 4px; padding: 8px 8px 0; border-bottom: 1px solid var(--yb-border); background: var(--yb-light); overflow-x: auto; }
.yb-product-tab-button { display: inline-flex; align-items: center; gap: 9px; min-height: 52px; padding: 0 22px; border: 0; border-radius: 8px 8px 0 0; background: transparent; color: var(--yb-text); font: inherit; font-size: 14px; font-weight: 700; white-space: nowrap; cursor: pointer; transition: background .2s, color .2s; }
.yb-product-tab-button i { color: var(--yb-yellow); }
.yb-product-tab-button span { display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 12px; background: var(--yb-white); color: var(--yb-black); font-size: 11px; }
.yb-product-tab-button:hover { color: var(--yb-black); }
.yb-product-tab-button.is-active { background: var(--yb-white); color: var(--yb-black); box-shadow: 0 -2px 0 var(--yb-yellow) inset; }
.yb-product-tab-content { padding: 32px; }
.yb-product-tab-panel { display: none; color: var(--yb-text); line-height: 1.75; }
.yb-product-tab-panel.is-active { display: block; animation: ybTabFade .2s ease; }
.yb-product-tab-panel > :first-child,.yb-product-tab-panel .woocommerce-Reviews > :first-child { margin-top: 0; }
.yb-product-tab-panel > :last-child,.yb-product-tab-panel .woocommerce-Reviews > :last-child { margin-bottom: 0; }
.yb-product-tab-panel .woocommerce-product-attributes { width: 100%; border-collapse: collapse; }
.yb-product-tab-panel .woocommerce-product-attributes th,.yb-product-tab-panel .woocommerce-product-attributes td { padding: 13px 15px; border-bottom: 1px solid var(--yb-border); text-align: left; }
.yb-product-tab-panel .woocommerce-product-attributes th { width: 30%; color: var(--yb-black); font-size: 13px; }
.yb-product-tab-panel .woocommerce-product-attributes tr:last-child th,.yb-product-tab-panel .woocommerce-product-attributes tr:last-child td { border-bottom: 0; }
@keyframes ybTabFade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* ===== CART ===== */
.yb-cart-table { width: 100%; background: var(--yb-white); border-radius: var(--yb-radius); overflow: hidden; border: 1px solid var(--yb-border); }
.yb-cart-table th { background: var(--yb-black); color: var(--yb-yellow); padding: 16px; text-align: left; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.yb-cart-table td { padding: 16px; border-bottom: 1px solid var(--yb-border); vertical-align: middle; }
.yb-cart-table tr:last-child td { border-bottom: none; }
.yb-cart-item { display: flex; align-items: center; gap: 16px; }
.yb-cart-item .item-thumb { width: 70px; height: 70px; background: var(--yb-light); border-radius: 6px; display: grid; place-items: center; color: var(--yb-yellow); font-size: 28px; }
.yb-cart-item h4 { font-size: 15px; margin-bottom: 4px; }
.yb-cart-item span { color: var(--yb-text); font-size: 12px; }
.yb-cart-table .item-subtotal { font-weight: 700; color: var(--yb-black); }
.yb-cart-table .remove { color: #E53935; cursor: pointer; }

.yb-cart-actions { display: flex; justify-content: space-between; margin: 24px 0; gap: 12px; flex-wrap: wrap; }
.yb-coupon { display: flex; gap: 8px; }
.yb-coupon input { padding: 12px 16px; border: 2px solid var(--yb-border); border-radius: var(--yb-radius); min-width: 200px; }

.yb-cart-summary { background: var(--yb-light); border-radius: var(--yb-radius); padding: 28px; }
.yb-cart-summary h3 { padding-bottom: 12px; border-bottom: 2px solid var(--yb-yellow); margin-bottom: 20px; }
.yb-cart-summary .summary-row { display: flex; justify-content: space-between; padding: 8px 0; }
.yb-cart-summary .summary-row.total { border-top: 2px solid var(--yb-black); padding-top: 16px; margin-top: 12px; font-size: 20px; font-weight: 800; color: var(--yb-black); }

/* ===== CHECKOUT ===== */
.yb-checkout-section-wrap { padding-top: 52px; background: linear-gradient(180deg,var(--yb-light),var(--yb-white) 260px); }
.yb-checkout-container { max-width: 1240px!important; }
.yb-checkout-section-wrap .yb-section-title { margin-bottom: 30px; }
.yb-checkout-section-wrap .yb-section-title h2 { margin-bottom: 14px; }
.yb-checkout-trust { display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap; }
.yb-checkout-trust span { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid var(--yb-border); border-radius: 20px; background: var(--yb-white); color: var(--yb-text); font-size: 10px; font-weight: 700; }
.yb-checkout-trust i { color: var(--yb-yellow); }
.yb-checkout-wrap { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(390px,.85fr); gap: 28px; align-items: start; }
.yb-checkout-form { min-width: 0; padding: 28px; border: 1px solid var(--yb-border); border-radius: 14px; background: var(--yb-white); box-shadow: 0 14px 38px rgba(0,0,0,.045); }
.yb-checkout-form h3,.yb-checkout-order>h3 { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; border-bottom: 2px solid var(--yb-yellow); margin-bottom: 20px; }
.yb-checkout-form h3 span,.yb-checkout-order>h3 span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--yb-yellow); color: var(--yb-on-primary); font-size: 12px; }
.yb-checkout-order { position: sticky; top: 92px; align-self: start; min-width: 0; padding: 24px; border: 1px solid var(--yb-border); border-radius: 14px; background: var(--yb-white); box-shadow: 0 14px 38px rgba(0,0,0,.06); }
.yb-checkout-form .woocommerce-billing-fields__field-wrapper,.yb-checkout-form .woocommerce-shipping-fields__field-wrapper,.yb-checkout-form .woocommerce-additional-fields__field-wrapper { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 16px; }
.yb-checkout-form .form-row { float: none!important; clear: none!important; width: 100%!important; min-width: 0; margin: 0 0 15px!important; padding: 0!important; }
.yb-checkout-form .form-row-first { grid-column: 1; }
.yb-checkout-form .form-row-last { grid-column: 2; }
.yb-checkout-form .form-row-wide,.yb-checkout-form #billing_address_1_field,.yb-checkout-form #billing_address_2_field,.yb-checkout-form #shipping_address_1_field,.yb-checkout-form #shipping_address_2_field { grid-column: 1/-1!important; }
.yb-checkout-form label { display: block; margin-bottom: 6px; color: var(--yb-black); font-size: 13px; font-weight: 700; }
.yb-checkout-form .input-text,.yb-checkout-form select,.yb-checkout-form textarea,.yb-checkout-form .select2-selection { box-sizing: border-box; width: 100%!important; min-height: 46px; padding: 11px 13px; border: 1px solid var(--yb-border); border-radius: 8px; background: var(--yb-white); color: var(--yb-black); font: inherit; outline: none; }
.yb-checkout-form textarea.input-text { min-height: 110px; resize: vertical; }
.yb-checkout-form .input-text:focus,.yb-checkout-form select:focus,.yb-checkout-form textarea:focus { border-color: var(--yb-yellow); box-shadow: 0 0 0 3px rgba(255,193,7,.13); }
.yb-checkout-form .select2-container { width: 100%!important; }
.yb-checkout-form .select2-selection { display: flex; align-items: center; }
.yb-checkout-form .woocommerce-account-fields,.yb-checkout-form .woocommerce-shipping-fields,.yb-checkout-form .woocommerce-additional-fields { margin-top: 24px; }
.yb-checkout-form #ship-to-different-address { display: block; width: 100%; margin: 0 0 18px; padding: 0; border: 0; background: transparent; }
.yb-checkout-form #ship-to-different-address::after { display: none; }
.yb-checkout-form #ship-to-different-address label { display: flex!important; align-items: center; gap: 10px; width: 100%!important; min-height: 48px; margin: 0; padding: 12px 14px; border: 1px solid var(--yb-border); border-radius: 9px; background: var(--yb-light); color: var(--yb-black); font-size: 13px; font-weight: 800; line-height: 1.35; cursor: pointer; box-sizing: border-box; }
.yb-checkout-form #ship-to-different-address label span { display: block; width: auto; max-width: none; white-space: normal; }
.yb-checkout-form .woocommerce-form__label-for-checkbox:not([for="ship-to-different-address-checkbox"]) { display: flex!important; align-items: center; gap: 9px; width: auto!important; margin: 0; line-height: 1.35; cursor: pointer; }
.yb-checkout-form #ship-to-different-address-checkbox,.yb-checkout-form .woocommerce-form__input-checkbox { flex: 0 0 auto; width: 17px!important; height: 17px; margin: 0!important; accent-color: var(--yb-yellow); }
.yb-checkout-order .shop_table { width: 100%; margin: 0 0 20px; border-collapse: collapse; background: transparent; }
.yb-checkout-order .shop_table th,.yb-checkout-order .shop_table td { padding: 11px 7px; border-bottom: 1px solid var(--yb-border); color: var(--yb-text); font-size: 12px; line-height: 1.45; text-align: left; vertical-align: middle; }
.yb-checkout-order .shop_table thead th { color: var(--yb-black); font-size: 10px; text-transform: uppercase; letter-spacing: .45px; }
.yb-checkout-order .shop_table .product-name { width: 68%; }
.yb-checkout-order .shop_table th:last-child,.yb-checkout-order .shop_table td:last-child { text-align: right; }
.yb-checkout-order .shop_table tr.woocommerce-shipping-totals { display: grid; grid-template-columns: 1fr; padding: 12px 0; border-bottom: 1px solid var(--yb-border); }
.yb-checkout-order .shop_table tr.woocommerce-shipping-totals th,.yb-checkout-order .shop_table tr.woocommerce-shipping-totals td { display: block; width: 100%; padding: 0; border: 0; text-align: left; }
.yb-checkout-order .shop_table tr.woocommerce-shipping-totals th { margin-bottom: 9px; color: var(--yb-black); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .45px; }
.yb-checkout-order #shipping_method { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.yb-checkout-order #shipping_method li { display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 9px; min-height: 42px; margin: 0; padding: 9px 11px; border: 1px solid var(--yb-border); border-radius: 7px; background: var(--yb-white); text-indent: 0; }
.yb-checkout-order #shipping_method li:has(input:checked) { border-color: var(--yb-yellow); background: rgba(255,193,7,.07); }
.yb-checkout-order #shipping_method label { display: block; width: auto; margin: 0; color: var(--yb-text); font-size: 11px; font-weight: 700; line-height: 1.35; text-align: left; cursor: pointer; }
.yb-checkout-order #shipping_method li:has(input:checked) label { color: var(--yb-black); }
.yb-checkout-order #shipping_method input { width: 16px; height: 16px; margin: 0; accent-color: var(--yb-yellow); }
.yb-checkout-order .woocommerce-shipping-destination,.yb-checkout-order .woocommerce-shipping-calculator { margin: 9px 0 0; color: var(--yb-text); font-size: 10px; line-height: 1.45; }
.yb-checkout-order .shop_table tfoot .order-total th,.yb-checkout-order .shop_table tfoot .order-total td { padding-top: 16px; border-bottom: 0; color: var(--yb-black); font-size: 18px; font-weight: 800; }
.yb-checkout-order #payment { padding-top: 6px; background: transparent; }
.yb-checkout-order #payment::before { content: "Ödeme yöntemi"; display: block; margin: 4px 0 12px; color: var(--yb-black); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .45px; }
.yb-checkout-order .payment_methods { display: grid; gap: 10px; margin: 0 0 18px; padding: 0; list-style: none; }
.yb-checkout-order .payment_methods>li { padding: 13px; border: 1px solid var(--yb-border); border-radius: 8px; background: var(--yb-white); }
.yb-checkout-order .payment_methods>li:has(input:checked) { border-color: var(--yb-yellow); box-shadow: 0 0 0 2px rgba(255,193,7,.12); }
.yb-checkout-order .payment_methods label { display: flex; align-items: center; gap: 8px; color: var(--yb-black); font-size: 13px; font-weight: 800; cursor: pointer; }
.yb-checkout-order .payment_methods label img { width: auto; max-width: 110px; max-height: 28px; margin-left: auto; object-fit: contain; }
.yb-checkout-order .payment_box { margin: 11px 0 0; padding: 11px; border-radius: 6px; background: var(--yb-light); color: var(--yb-text); font-size: 12px; line-height: 1.55; }
.yb-checkout-order .payment_box p:last-child { margin-bottom: 0; }
.yb-checkout-order .woocommerce-privacy-policy-text { color: var(--yb-text); font-size: 11px; line-height: 1.55; }
.yb-checkout-order #place_order { width: 100%; min-height: 52px; margin-top: 12px; border: 0; border-radius: 8px; background: var(--yb-yellow); color: var(--yb-on-primary); font: inherit; font-size: 13px; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.yb-checkout-order #place_order:hover { filter: brightness(.94); transform: translateY(-1px); }

/* ===== ORDER RECEIVED ===== */
.yb-thankyou-page { background: linear-gradient(180deg,var(--yb-light),var(--yb-white) 420px); }
.yb-thankyou-container { max-width: 1120px!important; }
.yb-thankyou-hero { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.yb-thankyou-icon { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 17px; border-radius: 50%; background: var(--yb-yellow); color: var(--yb-on-primary); font-size: 27px; box-shadow: 0 12px 34px rgba(0,0,0,.13); }
.yb-thankyou-hero.is-error .yb-thankyou-icon { background: #d32f2f; color: #fff; }
.yb-thankyou-kicker { display: block; margin-bottom: 7px; color: var(--yb-yellow); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; }
.yb-thankyou-hero h1 { margin-bottom: 9px; font-size: 38px; }
.yb-thankyou-hero p { max-width: 620px; margin: 0 auto; color: var(--yb-text); }
.yb-thankyou-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.yb-thankyou-actions .yb-btn { min-height: 44px; padding: 11px 18px; font-size: 11px; }
.yb-thankyou-summary { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); margin-bottom: 24px; border: 1px solid var(--yb-border); border-radius: 13px; background: var(--yb-white); box-shadow: 0 12px 34px rgba(0,0,0,.045); overflow: hidden; }
.yb-thankyou-summary>div { position: relative; display: grid; align-content: center; min-width: 0; min-height: 105px; padding: 16px; border-right: 1px solid var(--yb-border); }
.yb-thankyou-summary>div:last-child { border-right: 0; }
.yb-thankyou-summary i { margin-bottom: 8px; color: var(--yb-yellow); font-size: 15px; }
.yb-thankyou-summary span { margin-bottom: 3px; color: var(--yb-text); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.yb-thankyou-summary strong { overflow: hidden; color: var(--yb-black); font-size: 13px; text-overflow: ellipsis; }
.yb-thankyou-summary .is-total { background: var(--yb-black); }
.yb-thankyou-summary .is-total span { color: rgba(255,255,255,.65); }
.yb-thankyou-summary .is-total strong { color: var(--yb-on-dark); font-size: 18px; }
.yb-thankyou-payment { margin-bottom: 24px; padding: 24px; border: 1px solid var(--yb-border); border-left: 4px solid var(--yb-yellow); border-radius: 12px; background: var(--yb-white); box-shadow: 0 10px 28px rgba(0,0,0,.04); }
.yb-thankyou-payment h2,.yb-thankyou-payment h3 { font-size: 17px; }
.yb-thankyou-payment>p:last-child { margin-bottom: 0; }
.yb-thankyou-payment ul { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin: 14px 0 0; padding: 0; list-style: none; }
.yb-thankyou-payment li { padding: 13px; border: 1px solid var(--yb-border); border-radius: 8px; background: var(--yb-light); color: var(--yb-text); font-size: 11px; }
.yb-thankyou-card { margin-bottom: 24px; padding: 24px; border: 1px solid var(--yb-border); border-radius: 13px; background: var(--yb-white); box-shadow: 0 12px 34px rgba(0,0,0,.045); }
.yb-thankyou-card-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 15px; border-bottom: 1px solid var(--yb-border); }
.yb-thankyou-card-heading>span { display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px; border-radius: 9px; background: var(--yb-yellow); color: var(--yb-on-primary); }
.yb-thankyou-card-heading div { display: grid; gap: 2px; }
.yb-thankyou-card-heading small { color: var(--yb-text); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; }
.yb-thankyou-card-heading h2 { margin: 0; font-size: 20px; }
.yb-thankyou-items { display: grid; gap: 10px; }
.yb-thankyou-item { display: grid; grid-template-columns: 62px minmax(0,1fr) auto; gap: 13px; align-items: center; padding: 10px; border-radius: 9px; background: var(--yb-light); }
.yb-thankyou-item-image { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 7px; background: var(--yb-white); overflow: hidden; }
.yb-thankyou-item-image img { width: 100%; height: 100%; object-fit: contain; }
.yb-thankyou-item-copy { display: grid; gap: 3px; min-width: 0; }
.yb-thankyou-item-copy strong { overflow: hidden; color: var(--yb-black); font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.yb-thankyou-item-copy span,.yb-thankyou-item-copy small { color: var(--yb-text); font-size: 10px; }
.yb-thankyou-item-copy ul { margin: 0; padding: 0; list-style: none; }
.yb-thankyou-item-total { color: var(--yb-black); font-size: 14px; font-weight: 800; white-space: nowrap; }
.yb-thankyou-totals { width: min(100%,430px); margin: 18px 0 0 auto; padding-top: 12px; border-top: 1px solid var(--yb-border); }
.yb-thankyou-totals>div { display: flex; justify-content: space-between; gap: 20px; padding: 6px 0; color: var(--yb-text); font-size: 12px; }
.yb-thankyou-totals>div:last-child { margin-top: 5px; padding-top: 12px; border-top: 2px solid var(--yb-black); color: var(--yb-black); font-size: 17px; }
.yb-thankyou-addresses { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.yb-thankyou-addresses .yb-thankyou-card { margin-bottom: 0; }
.yb-thankyou-addresses address { min-height: 100px; color: var(--yb-text); font-style: normal; line-height: 1.75; }
.yb-thankyou-addresses p { display: flex; align-items: center; gap: 8px; margin: 11px 0 0; color: var(--yb-text); font-size: 12px; }
.yb-thankyou-addresses p i { color: var(--yb-yellow); }
.yb-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.yb-form-row.single { grid-template-columns: 1fr; }
.yb-form-row label { display: block; font-size: 13px; color: var(--yb-black); font-weight: 600; margin-bottom: 6px; }
.yb-form-row input, .yb-form-row select, .yb-form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--yb-border);
    border-radius: var(--yb-radius);
    font-size: 14px;
    font-family: inherit;
    transition: border-color .2s;
    outline: none;
}
.yb-form-row input:focus, .yb-form-row select:focus, .yb-form-row textarea:focus { border-color: var(--yb-yellow); }
.yb-payment-method { border: 2px solid var(--yb-border); padding: 16px; border-radius: var(--yb-radius); margin-bottom: 12px; cursor: pointer; }
.yb-payment-method.active { border-color: var(--yb-yellow); background: rgba(255,193,7,.05); }
.yb-payment-method label { display: flex; align-items: center; gap: 10px; font-weight: 600; cursor: pointer; }
.yb-payment-method label i { color: var(--yb-yellow); font-size: 20px; }

/* ===== MY ACCOUNT ===== */
.yb-account-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 30px; }
.yb-account-nav { background: var(--yb-white); border-radius: var(--yb-radius); padding: 20px; border: 1px solid var(--yb-border); }
.yb-account-nav ul { list-style: none; }
.yb-account-nav .woocommerce-MyAccount-navigation { float: none; width: auto; }
.yb-account-nav ul li { margin: 3px 0; }
.yb-account-nav ul li a { display: block; padding: 12px 14px; color: var(--yb-black); border-radius: 6px; font-size: 14px; font-weight: 600; transition: all .2s; }
.yb-account-nav ul li a:hover, .yb-account-nav ul li.is-active a { background: var(--yb-yellow); color: var(--yb-black); }
.yb-account-nav ul li a i { width: 20px; color: var(--yb-yellow); }
.yb-account-nav ul li.is-active a i, .yb-account-nav ul li a:hover i { color: var(--yb-black); }

.yb-account-content { background: var(--yb-white); padding: 30px; border-radius: var(--yb-radius); border: 1px solid var(--yb-border); }
.yb-account-content h2 { margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--yb-yellow); }
.yb-account-content .woocommerce-MyAccount-content { float: none; width: auto; }
.yb-account-content p:last-child { margin-bottom: 0; }
.yb-account-content table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.yb-account-content th, .yb-account-content td { padding: 13px 12px; border-bottom: 1px solid var(--yb-border); text-align: left; }
.yb-account-content th { background: var(--yb-light); color: var(--yb-black); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.yb-account-content .button {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border: 0;
    border-radius: 6px;
    background: var(--yb-black);
    color: var(--yb-yellow);
    font-weight: 600;
}
.yb-account-content .button:hover { background: var(--yb-yellow); color: var(--yb-black); }
.yb-account-content .woocommerce-Addresses { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: stretch; gap: 20px; }
.yb-account-content .woocommerce-Addresses::before, .yb-account-content .woocommerce-Addresses::after { display: none !important; content: none !important; }
.yb-account-content .woocommerce-Address,
.yb-account-content .woocommerce-Address.col-1,
.yb-account-content .woocommerce-Address.col-2 { width: auto !important; max-width: none; float: none !important; margin: 0 !important; padding: 20px; border: 1px solid var(--yb-border); border-radius: var(--yb-radius); }
.yb-account-content .woocommerce-Address-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.yb-account-content .woocommerce-Address-title h2 { margin: 0 0 14px; font-size: 20px; }
.yb-account-content .woocommerce-Address-title .edit { font-size: 12px; font-weight: 700; color: var(--yb-yellow); }
.yb-account-content address { line-height: 1.8; color: var(--yb-text); }
.yb-account-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin: 22px 0 28px; }
.yb-account-stat { display: grid; gap: 8px; padding: 22px; border-radius: 12px; }
.yb-account-stat span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; opacity: .72; }
.yb-account-stat strong { font-size: 27px; line-height: 1.1; }
.yb-account-stat.is-primary { background: var(--yb-yellow); color: var(--yb-black); }
.yb-account-stat.is-dark { background: var(--yb-black); color: var(--yb-yellow); }
.yb-account-stat.is-light { background: var(--yb-light); color: var(--yb-black); border: 1px solid var(--yb-border); }
.yb-account-content fieldset { margin: 24px 0; padding: 20px; border: 1px solid var(--yb-border); border-radius: var(--yb-radius); }
.yb-account-content .form-row { margin-bottom: 14px; }
.yb-account-content input[type="text"], .yb-account-content input[type="email"], .yb-account-content input[type="password"], .yb-account-content select {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--yb-border);
    border-radius: 6px;
}

/* Final contrast mapping for preset colors */
.yb-logo .logo-icon, .yb-search button, .yb-cart-count, .yb-btn-primary,
.yb-product-badge, .yb-product-price .discount, .yb-add-to-cart:hover,
.yb-featured-cart:hover, .yb-banner-1, .yb-banner a, .yb-feature .feature-icon,
.yb-account-stat.is-primary {
    color: var(--yb-on-primary);
}
.yb-menu > li > a, .yb-btn-dark, .yb-add-to-cart, .yb-featured-cart,
.yb-footer, .yb-footer h2, .yb-footer h3, .yb-footer h4, .yb-account-stat.is-dark {
    color: var(--yb-on-dark);
}
.yb-btn-primary:hover { color: var(--yb-on-dark); }
.yb-btn-dark:hover { color: var(--yb-on-primary); }

/* HTC preset: teal accents with black interface surfaces */
.yb-preset-htc .yb-nav,
.yb-preset-htc .yb-footer { background: #0A0A0A; color: #FFFFFF; }
.yb-preset-htc .yb-menu > li > a,
.yb-preset-htc .yb-footer,
.yb-preset-htc .yb-footer h4,
.yb-preset-htc .yb-footer a { color: #FFFFFF; }
.yb-preset-htc .yb-header { background: #FFFFFF; color: #0A0A0A; }
.yb-preset-htc .yb-logo,
.yb-preset-htc .yb-header-actions a { color: #0A0A0A; }
.yb-preset-htc .yb-search input[type="search"] { border-color: var(--yb-border); background: #FFFFFF; color: #0A0A0A; }
.yb-preset-htc .yb-search input[type="search"]::placeholder { color: var(--yb-text); }
.yb-preset-htc .yb-header-notice { background: #FFFFFF; border-bottom-color: var(--yb-border); }
.yb-preset-htc .yb-header-notice span { color: var(--yb-text); }
.yb-preset-htc .yb-header-notice i { color: #0A0A0A!important; }
.yb-preset-htc .yb-btn,
.yb-preset-htc .yb-add-to-cart,
.yb-preset-htc .yb-featured-cart,
.yb-preset-htc .yb-search button,
.yb-preset-htc .yb-banner a,
.yb-preset-htc .yb-newsletter button,
.yb-preset-htc .yb-price-submit,
.yb-preset-htc .yb-checkout-order #place_order,
.yb-preset-htc .yb-variation-tag.is-selected,
.yb-preset-htc .yb-product-purchase .single_add_to_cart_button,
.yb-preset-htc .yb-hero-buttons .yb-btn { border-color: #0A0A0A!important; background: #0A0A0A!important; color: #FFFFFF!important; }
.yb-preset-htc .yb-btn:hover,
.yb-preset-htc .yb-add-to-cart:hover,
.yb-preset-htc .yb-featured-cart:hover,
.yb-preset-htc .yb-search button:hover,
.yb-preset-htc .yb-banner a:hover,
.yb-preset-htc .yb-newsletter button:hover,
.yb-preset-htc .yb-price-submit:hover,
.yb-preset-htc .yb-checkout-order #place_order:hover,
.yb-preset-htc .yb-variation-tag.is-selected:hover,
.yb-preset-htc .yb-product-purchase .single_add_to_cart_button:hover,
.yb-preset-htc .yb-hero-buttons .yb-btn:hover { border-color: #5CB7B2!important; background: #5CB7B2!important; color: #FFFFFF!important; }
.yb-preset-htc .yb-logo .logo-icon,
.yb-preset-htc .yb-feature .feature-icon,
.yb-preset-htc .yb-product-brand-icon,
.yb-preset-htc .yb-purchase-heading span i,
.yb-preset-htc .yb-account-stat.is-primary { background: #0A0A0A; color: #FFFFFF; }
.yb-preset-htc .yb-add-to-cart i,
.yb-preset-htc .yb-featured-cart i,
.yb-preset-htc .yb-search button i,
.yb-preset-htc .yb-product-purchase .single_add_to_cart_button::before,
.yb-preset-htc .yb-footer-contact i { color: #FFFFFF!important; }
.yb-preset-htc .yb-menu > li > a:hover,
.yb-preset-htc .yb-menu > li.current-menu-item > a { background: #5CB7B2; color: #FFFFFF; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .yb-categories, .yb-products, .yb-features { grid-template-columns: repeat(2, 1fr); }
    .yb-footer-grid { grid-template-columns: 1fr 1fr; }
    .yb-hero .container { grid-template-columns: 1fr; }
    .yb-hero-content h1 { font-size: 40px; }
    .yb-shop-wrap, .yb-account-wrap, .yb-checkout-wrap { grid-template-columns: 1fr; }
    .yb-checkout-order { position: static; }
    .yb-thankyou-summary { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .yb-thankyou-summary>div { border-bottom: 1px solid var(--yb-border); }
    .yb-thankyou-summary>div:nth-child(2n) { border-right: 0; }
    .yb-thankyou-summary .is-total { grid-column: 1/-1; border-bottom: 0; }
    .yb-thankyou-payment ul { grid-template-columns: 1fr; }
    .yb-single-product { grid-template-columns: 1fr; }
    .yb-banner-strip { grid-template-columns: 1fr; }
    .yb-account-stats { grid-template-columns: 1fr; }
    body.yb-menu-open { overflow: hidden; }
    .yb-nav { position: relative; z-index: 1000; }
    .yb-nav .container { min-height: 58px; }
    .yb-menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 10px 15px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 9px;
        background: rgba(255,255,255,.08);
        color: var(--yb-on-dark);
        font: inherit;
        font-weight: 700;
        cursor: pointer;
    }
    .yb-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 900;
        border: 0;
        background: rgba(0,0,0,.55);
        opacity: 0;
        visibility: hidden;
        transition: .25s;
    }
    body.yb-menu-open .yb-menu-overlay { opacity: 1; visibility: visible; }
    .yb-menu {
        display: block;
        position: fixed;
        z-index: 999;
        top: 0;
        bottom: 0;
        left: 0;
        width: min(86vw, 360px);
        padding: 16px 18px 28px;
        overflow-y: auto;
        background: var(--yb-black);
        box-shadow: 18px 0 45px rgba(0,0,0,.24);
        transform: translateX(-105%);
        transition: transform .3s ease;
    }
    body.yb-menu-open .yb-menu { transform: translateX(0); }
    .yb-mobile-menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 54px;
        margin-bottom: 10px;
        padding: 0 4px 12px 12px;
        border-bottom: 1px solid rgba(255,255,255,.14);
        color: var(--yb-on-dark);
    }
    .yb-menu-close {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        background: var(--yb-yellow);
        color: var(--yb-on-primary);
        cursor: pointer;
    }
    .yb-menu > li { position: relative; border-bottom: 1px solid rgba(255,255,255,.09); }
    .yb-menu > li > a { padding: 15px 44px 15px 12px; color: var(--yb-on-dark); border-radius: 8px; }
    .yb-menu > li > a:hover, .yb-menu > li.current-menu-item > a { color: var(--yb-on-primary); }
    .yb-menu .sub-menu {
        display: none;
        position: static;
        min-width: 0;
        padding: 3px 0 10px 14px;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .yb-menu li.submenu-open > .sub-menu { display: block; }
    .yb-menu .sub-menu a { padding: 11px 12px; color: rgba(255,255,255,.75); border: 0; border-radius: 7px; }
    .yb-mega-menu-item { position: relative!important; }
    .yb-mega-category-item { display: block; }
    .yb-mega-category-item > a { justify-content: flex-start; padding: 15px 44px 15px 12px!important; }
    .yb-category-mega-panel { width: auto; }
    .yb-category-mega-panel .yb-mega-grid { columns: 1; }
    .yb-mega-panel { display: none; position: static; max-height: none; margin: 0 0 10px; padding: 12px; border: 0; border-radius: 9px; background: rgba(255,255,255,.06); box-shadow: none; color: var(--yb-on-dark); overflow: visible; opacity: 1; visibility: visible; transform: none; }
    .yb-mega-menu-item.submenu-open > .yb-mega-panel { display: block; }
    .yb-mega-panel-heading { margin-bottom: 12px; padding-bottom: 10px; border-bottom-color: rgba(255,255,255,.12); }
    .yb-mega-panel-heading strong { color: var(--yb-on-dark); font-size: 14px; }
    .yb-mega-grid { grid-template-columns: 1fr; gap: 12px; }
    .yb-mega-parent { min-height: 38px; margin-bottom: 4px; padding-bottom: 7px; color: var(--yb-on-dark); border-bottom-color: rgba(255,255,255,.15); }
    .yb-mega-parent img { width: 34px; height: 34px; }
    .yb-mega-parent small,.yb-mega-column li small { background: rgba(255,255,255,.1); color: var(--yb-on-dark); }
    .yb-mega-column ul { display: grid; padding-left: 7px; }
    .yb-mega-column li a { padding: 7px; color: rgba(255,255,255,.7); }
    .yb-mega-column li a:hover { background: rgba(255,255,255,.08); color: var(--yb-on-dark); }
    .yb-mega-view-all { color: var(--yb-yellow); }
    .yb-mega-all { margin-top: 12px; background: var(--yb-yellow); color: var(--yb-on-primary); }
    .yb-submenu-toggle {
        display: grid;
        place-items: center;
        position: absolute;
        top: 8px;
        right: 3px;
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 8px;
        background: rgba(255,255,255,.08);
        color: var(--yb-on-dark);
        cursor: pointer;
        z-index: 2;
    }
    .yb-menu > li.submenu-open > .yb-submenu-toggle { background: var(--yb-yellow); color: var(--yb-on-primary); }
    .yb-nav-extra { margin-left: auto; }
}
@media (max-width: 640px) {
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    .yb-categories, .yb-products, .yb-features { grid-template-columns: 1fr; }
    .yb-header-notice .container { justify-content: flex-start; gap: 18px; overflow-x: auto; scrollbar-width: none; }
    .yb-header-notice span { flex: 0 0 auto; }
    .yb-cart-toast { top: auto; right: 12px; bottom: 12px; left: 12px; width: auto; transform: translate3d(0,30px,0); }
    .yb-cart-toast-actions { grid-template-columns: 1fr; }
    .yb-checkout-form .woocommerce-billing-fields__field-wrapper,.yb-checkout-form .woocommerce-shipping-fields__field-wrapper,.yb-checkout-form .woocommerce-additional-fields__field-wrapper { grid-template-columns: 1fr; }
    .yb-checkout-form .form-row { grid-column: 1; }
    .yb-thankyou-page .yb-section { padding: 36px 0; }
    .yb-thankyou-hero h1 { font-size: 30px; }
    .yb-thankyou-summary { grid-template-columns: 1fr; }
    .yb-thankyou-summary>div,.yb-thankyou-summary>div:nth-child(2n) { min-height: 86px; border-right: 0; border-bottom: 1px solid var(--yb-border); }
    .yb-thankyou-summary .is-total { grid-column: auto; }
    .yb-thankyou-card,.yb-thankyou-payment { padding: 18px; }
    .yb-thankyou-item { grid-template-columns: 52px minmax(0,1fr); }
    .yb-thankyou-item-image { width: 52px; height: 52px; }
    .yb-thankyou-item-total { grid-column: 2; }
    .yb-thankyou-addresses { grid-template-columns: 1fr; gap: 14px; }
    .yb-footer-grid { grid-template-columns: 1fr; }
    .yb-topbar { display: none; }
    .yb-header .container { flex-wrap: wrap; }
    .yb-header-actions { gap: 10px; margin-left: auto; }
    .yb-header-actions a { width: 36px; height: 36px; justify-content: center; border-radius: 50%; background: var(--yb-light); }
    .yb-header-actions a > span:not(.yb-cart-count) { display: none; }
    .yb-nav-extra span { font-size: 11px; }
    .yb-search { order: 3; flex-basis: 100%; }
    .yb-live-search { position: fixed; top: 132px; right: 10px; left: 10px; width: auto; }
    .yb-live-search-results { max-height: min(58vh,430px); }
    .yb-live-search-item { grid-template-columns: 50px minmax(0,1fr); }
    .yb-live-search-image { width: 50px; height: 50px; }
    .yb-live-search-price { grid-column: 2; }
    .yb-form-row { grid-template-columns: 1fr; }
    .yb-account-content .woocommerce-Addresses { grid-template-columns: 1fr; }
    .yb-account-content { padding: 20px; overflow-x: auto; }
    .yb-section { padding: 50px 0; }
    .yb-hero { padding: 60px 0; }
    .yb-lightbox { padding: 70px 14px 60px; }
    .yb-lightbox-prev,.yb-lightbox-next { top: auto; bottom: 12px; width: 42px; height: 42px; transform: none; }
    .yb-lightbox-prev:hover,.yb-lightbox-next:hover { transform: scale(1.05)!important; }
    .yb-lightbox-prev { left: 14px; }
    .yb-lightbox-next { right: 14px; }
    .yb-product-data-tabs { margin-top: 48px; }
    .yb-product-tab-nav { padding: 6px 6px 0; }
    .yb-product-tab-button { min-height: 46px; padding: 0 15px; font-size: 13px; }
    .yb-product-tab-content { padding: 22px 18px; }
    .yb-product-purchase .variations th,.yb-product-purchase .variations td { display: block; width: 100%; }
    .yb-product-purchase .variations th { padding: 0 0 6px; }
    .yb-product-purchase { padding: 17px; }
    .yb-purchase-heading { align-items: flex-start; flex-direction: column; }
    .yb-single-wishlist { right: 17px; bottom: 17px; }
    .yb-product-purchase .single_variation_wrap { padding-right: 60px; }
    .yb-product-purchase .woocommerce-variation-add-to-cart { align-items: stretch; }
    .yb-product-purchase .single_add_to_cart_button { flex: 1; }
    .yb-variation-tag { min-height: 38px; padding: 7px 12px; font-size: 12px; }
}
