/*
Theme Name: Hello Elementor Child - Bshara Hinnawi
Description: Child theme for Hello Elementor - Butcher Shop
Author: Custom
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* ========================================
   GLOBAL COLOR PALETTE & TYPOGRAPHY
   ======================================== */

:root {
    /* Colors */
    --color-primary: #e00000; /* אדום עמוק - כפתורים ומחירים */
    --color-primary-hover: #c00000;
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-white: #ffffff;
    --color-light-gray: #f5f5f5;
    --color-gray: #666666;
    --color-dark-gray: #333333;
    
    /* Typography */
    --font-main: 'Assistant', 'Alef', 'Heebo', sans-serif;
    --font-logo: 'Amatic SC', cursive; /* כתב יד ללוגו */
    
    /* Font Sizes - Desktop */
    --font-size-h1: 40px;
    --font-size-h2: 32px;
    --font-size-h3: 24px;
    --font-size-body: 16px;
    --font-size-small: 14px;
    
    /* Font Sizes - Mobile */
    --font-size-h1-mobile: 24px;
    --font-size-h2-mobile: 22px;
    --font-size-h3-mobile: 20px;
    --font-size-body-mobile: 14px;
}

/* ========================================
   GLOBAL TYPOGRAPHY
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@400;600;700&family=Amatic+SC:wght@700&display=swap');

body {
    font-family: var(--font-main);
    font-size: var(--font-size-body);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.3;
}

h1 {
    font-size: var(--font-size-h1);
}

h2 {
    font-size: var(--font-size-h2);
}

h3 {
    font-size: var(--font-size-h3);
}

/* Mobile Typography */
@media (max-width: 768px) {
    h1 {
        font-size: var(--font-size-h1-mobile);
    }
    
    h2 {
        font-size: var(--font-size-h2-mobile);
    }
    
    h3 {
        font-size: var(--font-size-h3-mobile);
    }
    
    body {
        font-size: var(--font-size-body-mobile);
    }
}

/* ========================================
   HEADER STYLES
   ======================================== */

.elementor-location-header {
    background-color: var(--color-black);
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.elementor-location-header .elementor-container {
    align-items: center;
    height: 100%;
}

/* Logo Styles */
.site-logo {
    font-family: var(--font-logo);
    font-size: 32px;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 700;
}

.site-logo img {
    max-height: 60px;
}

/* Navigation Menu */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    color: var(--color-white);
    text-decoration: none;
    font-size: var(--font-size-body);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .elementor-location-header {
        height: 70px;
    }
    
    .site-logo {
        font-size: 24px;
    }
}

/* Search & Cart Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icons a {
    color: var(--color-white);
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-icons a:hover {
    color: var(--color-primary);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: var(--font-size-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 0, 0, 0.3);
    color: var(--color-white);
}

.btn-primary:active {
    transform: translateY(0);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
}

.hero-title {
    font-size: var(--font-size-h1);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: var(--font-size-h1-mobile);
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

/* ========================================
   PRODUCT CARDS
   ======================================== */

.product-card {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card-content {
    padding: 15px;
}

.product-card-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-black);
}

.product-card-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.product-card-price .sale-price {
    color: var(--color-gray);
    text-decoration: line-through;
    font-size: 16px;
    margin-left: 10px;
}

.sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* ========================================
   CATEGORY CARDS
   ======================================== */

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */

.elementor-location-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column a {
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   PRODUCT PAGE
   ======================================== */

.product-gallery {
    margin-bottom: 30px;
}

.product-main-image {
    width: 100%;
    border-radius: 8px;
}

.product-info {
    padding: 20px 0;
}

.product-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.product-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.product-price .old-price {
    color: var(--color-gray);
    text-decoration: line-through;
    font-size: 24px;
    margin-left: 10px;
}

.product-description {
    margin-bottom: 30px;
    color: var(--color-dark-gray);
    line-height: 1.8;
}

/* Product Tabs */
.product-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 20px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: var(--color-gray);
    border-bottom: 3px solid transparent;
    transition: color 0.3s ease;
}

.tab-button.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white);
}

.text-black {
    color: var(--color-black);
}

.bg-dark {
    background-color: var(--color-dark);
}

.bg-light {
    background-color: var(--color-light-gray);
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .product-card-image {
        height: 200px;
    }
    
    .category-card-image {
        height: 150px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price {
        font-size: 28px;
    }
}

/* ========================================
   WHATSAPP BUTTON
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-float:hover {
    background: #20BA5A;
    color: white;
}

/* ========================================
   LOADING SPINNER
   ======================================== */

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--color-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   GLOBAL FIXES - REMOVE PINK, WHITE BG, ETC
   ======================================== */

/* Import Open Sans Hebrew */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');

/* Force Open Sans Hebrew everywhere */
html,
body,
body *,
.elementor-widget-text-editor,
.elementor-widget-heading,
.elementor-widget-button,
.elementor-button,
.elementor *,
p, span, div, a, li, td, th, input, textarea, select, button {
    font-family: 'Open Sans', 'Open Sans Hebrew', sans-serif !important;
}

/* Reset Elementor pink/purple accent colors */
:root {
    --e-global-color-primary: #c00000 !important;
    --e-global-color-secondary: #1a1a1a !important;
    --e-global-color-accent: #c00000 !important;
    --e-global-color-text: #ffffff !important;
}

/* Force dark background on body */
body,
html {
    background-color: #0a0a0a !important;
    overflow-x: hidden;
}

/* Remove white floating elements */
body::before,
body::after,
html::before,
html::after {
    display: none !important;
}

/* Fix page content background */
.elementor-page,
.page,
.single-product,
.woocommerce,
.site-main,
#content,
.entry-content,
.elementor,
.elementor-section,
.e-con,
.e-con-inner {
    background-color: #0a0a0a !important;
}

/* Fix any pink/purple Elementor widgets */
.elementor-button,
.elementor-widget-button .elementor-button,
a.elementor-button,
button.elementor-button {
    background-color: #c00000 !important;
    color: #fff !important;
    border-color: #c00000 !important;
}

.elementor-button:hover,
.elementor-widget-button .elementor-button:hover {
    background-color: #a00000 !important;
    border-color: #a00000 !important;
}

/* Fix checkout and cart pages */
.woocommerce-checkout,
.woocommerce-cart,
.woocommerce-account,
.checkout,
.cart,
form.checkout,
#order_review,
.woocommerce form,
.woocommerce-form {
    background-color: #0a0a0a !important;
    color: #fff !important;
}

.woocommerce-checkout .woocommerce-form-row input,
.woocommerce-checkout .woocommerce-form-row textarea,
.woocommerce-checkout select,
.woocommerce-cart input,
.woocommerce-account input {
    background-color: #1a1a1a !important;
    color: #fff !important;
    border: 1px solid #333 !important;
}

.woocommerce-checkout label,
.woocommerce-cart label {
    color: #fff !important;
}

/* Fix white containers in WooCommerce */
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
#order_review_heading,
#order_review,
.woocommerce-checkout-review-order-table,
.woocommerce-checkout-payment,
.payment_box {
    background-color: #1a1a1a !important;
    color: #fff !important;
    border-radius: 8px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
}

/* Payment box fix */
.woocommerce-checkout-payment,
.payment_box {
    background-color: #222 !important;
}

/* Tables in checkout */
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    color: #fff !important;
    border-color: #333 !important;
}

/* Place order button */
#place_order {
    background-color: #c00000 !important;
    color: #fff !important;
    font-size: 18px !important;
    padding: 15px 30px !important;
}

#place_order:hover {
    background-color: #a00000 !important;
}

/* Remove any pink/purple links */
a {
    color: #c00000;
}

a:hover {
    color: #ff3333;
}

/* Fix floating white element on the left */
.elementor-location-header + *,
.site-main::before,
#content::before,
.page::before {
    content: none !important;
    display: none !important;
}

/* Hide any unwanted white space */
.elementor-kit-* {
    background: transparent !important;
}

/* Force no horizontal scroll */
body.elementor-page,
body.page,
.elementor-inner,
.elementor-section-wrap {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* Fix WooCommerce notices */
.woocommerce-message,
.woocommerce-info {
    background-color: #1a1a1a !important;
    color: #fff !important;
    border-top-color: #c00000 !important;
}

.woocommerce-error {
    background-color: #1a1a1a !important;
    color: #c00000 !important;
    border-top-color: #c00000 !important;
}

/* Product page styling */
.single-product .product {
    background-color: #0a0a0a !important;
    color: #fff !important;
}

.single-product .summary,
.single-product .woocommerce-tabs {
    color: #fff !important;
}

.single-product .price {
    color: #c00000 !important;
}

/* Quantity input fix */
.quantity .qty {
    background-color: #1a1a1a !important;
    color: #fff !important;
    border-color: #333 !important;
}

/* Fix Elementor navigation menu colors */
.elementor-nav-menu a,
.elementor-nav-menu--main a {
    color: #fff !important;
}

.elementor-nav-menu a:hover,
.elementor-nav-menu--main a:hover {
    color: #c00000 !important;
}

/* Fix any pink icons */
.elementor-icon,
.elementor-icon i,
.elementor-icon svg {
    color: #c00000 !important;
    fill: #c00000 !important;
}

/* Mobile Menu Fixes */
@media (max-width: 768px) {
    .elementor-nav-menu--dropdown,
    .elementor-menu-toggle {
        background-color: #0a0a0a !important;
    }
    
    .elementor-nav-menu--dropdown a {
        color: #fff !important;
    }
}

/* ========================================
   COMPLETE PINK/PURPLE COLOR OVERRIDE
   ======================================== */

/* Override ALL possible Elementor global colors */
:root,
body,
.elementor-kit-*,
[data-elementor-type] {
    --e-global-color-primary: #c00000 !important;
    --e-global-color-secondary: #1a1a1a !important;
    --e-global-color-text: #ffffff !important;
    --e-global-color-accent: #c00000 !important;
}

/* All links must be red or white */
a,
.elementor a,
.elementor-widget a,
.elementor-heading-title a,
.elementor-button-link,
.elementor-nav-menu a,
.elementor-nav-menu--main a,
.e-n-menu a,
nav a,
.menu a,
.menu-item a {
    color: #c00000 !important;
}

/* White links in header */
header a,
.elementor-location-header a,
.site-header a,
.elementor-nav-menu--main a,
.elementor-nav-menu a,
.e-n-menu a {
    color: #fff !important;
}

header a:hover,
.elementor-location-header a:hover,
.site-header a:hover,
.elementor-nav-menu--main a:hover,
.elementor-nav-menu a:hover,
.e-n-menu a:hover {
    color: #c00000 !important;
}

/* Form buttons and CTA buttons red */
input[type="submit"],
input[type="button"],
.wp-block-button__link,
.wc-block-components-button,
.woocommerce-button,
.bb-add-to-cart,
.bb-cart-submit,
.button.alt,
#place_order {
    background-color: #c00000 !important;
    border-color: #c00000 !important;
    color: #fff !important;
}

input[type="submit"]:hover,
input[type="button"]:hover,
.wp-block-button__link:hover,
.bb-add-to-cart:hover,
#place_order:hover {
    background-color: #a00000 !important;
    border-color: #a00000 !important;
}

/* Header buttons - transparent with text */
.bb-header-btn,
.bb-header-action {
    background-color: transparent !important;
    border: none !important;
    color: #fff !important;
}

.bb-header-btn:hover,
.bb-header-action:hover {
    background-color: transparent !important;
    color: #c00000 !important;
}

/* Override any inline styles that use pink */
[style*="e91e63"],
[style*="E91E63"],
[style*="ec407a"],
[style*="EC407A"],
[style*="f06292"],
[style*="F06292"],
[style*="d81b60"],
[style*="D81B60"] {
    color: #c00000 !important;
    background-color: inherit !important;
    border-color: #c00000 !important;
}

/* Specific Elementor widget overrides */
.elementor-icon-list-icon,
.elementor-icon-list-icon i,
.elementor-icon-list-icon svg {
    color: #c00000 !important;
    fill: #c00000 !important;
}

/* Override Elementor nav menu */
.elementor-nav-menu .menu-item a,
.elementor-nav-menu__container .menu-item a {
    color: #fff !important;
}

.elementor-nav-menu .menu-item a:hover,
.elementor-nav-menu__container .menu-item a:hover {
    color: #c00000 !important;
}

/* Tab and accordion active states */
.elementor-tab-title.elementor-active,
.elementor-accordion-title.elementor-active {
    color: #c00000 !important;
}

/* Progress bar */
.elementor-progress-bar {
    background-color: #c00000 !important;
}

/* Form focus */
.elementor-field:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: #c00000 !important;
    outline-color: #c00000 !important;
}

/* ========================================
   WOOCOMMERCE CHECKOUT PAGE - DARK THEME
   ======================================== */

/* Checkout page background */
.woocommerce-checkout,
.woocommerce-checkout .woocommerce,
body.woocommerce-checkout {
    background-color: #0a0a0a !important;
    color: #fff !important;
}

/* Main checkout container */
.woocommerce-checkout #content,
.woocommerce-checkout .site-content,
.woocommerce-checkout .entry-content,
.woocommerce-checkout .elementor-widget-container {
    background-color: #0a0a0a !important;
}

/* Checkout form sections */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields,
.woocommerce-checkout #order_review,
.woocommerce-checkout .woocommerce-checkout-review-order {
    background-color: #1a1a1a !important;
    padding: 25px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
}

/* Section headings */
.woocommerce-checkout h3,
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading {
    color: #fff !important;
    font-size: 22px !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #c00000 !important;
}

/* Form labels */
.woocommerce-checkout label,
.woocommerce-checkout .woocommerce-form__label,
.woocommerce-checkout .form-row label {
    color: #fff !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Required asterisk */
.woocommerce-checkout .required,
.woocommerce-checkout abbr.required {
    color: #c00000 !important;
    text-decoration: none !important;
}

/* Form inputs */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="number"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-checkout .input-text,
.woocommerce-checkout .select2-selection {
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
    color: #fff !important;
    padding: 12px 15px !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.woocommerce-checkout input[type="text"]:focus,
.woocommerce-checkout input[type="email"]:focus,
.woocommerce-checkout input[type="tel"]:focus,
.woocommerce-checkout textarea:focus,
.woocommerce-checkout select:focus {
    border-color: #c00000 !important;
    outline: none !important;
    box-shadow: 0 0 5px rgba(192, 0, 0, 0.3) !important;
}

/* Placeholder text */
.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: #888 !important;
}

/* Select2 dropdown styling */
.woocommerce-checkout .select2-container--default .select2-selection--single {
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
    height: 48px !important;
    border-radius: 6px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    line-height: 48px !important;
    padding-right: 15px !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
}

.select2-dropdown {
    background-color: #2a2a2a !important;
    border: 1px solid #444 !important;
}

.select2-results__option {
    color: #fff !important;
    padding: 10px 15px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #c00000 !important;
}

/* Order review table */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    background-color: #1a1a1a !important;
    border-collapse: collapse !important;
    width: 100% !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th,
.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    color: #fff !important;
    padding: 12px !important;
    border-bottom: 1px solid #333 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
    background-color: #222 !important;
    font-weight: 700 !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td {
    background-color: transparent !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #c00000 !important;
    border-top: 2px solid #c00000 !important;
}

/* Product names in order review */
.woocommerce-checkout .product-name {
    color: #fff !important;
}

.woocommerce-checkout .product-name .variation,
.woocommerce-checkout .product-name dl.variation {
    color: #aaa !important;
    font-size: 13px !important;
}

/* Payment methods */
.woocommerce-checkout .woocommerce-checkout-payment {
    background-color: #1a1a1a !important;
    padding: 20px !important;
    border-radius: 10px !important;
}

.woocommerce-checkout .wc_payment_methods {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-checkout .wc_payment_method {
    background-color: #2a2a2a !important;
    padding: 15px !important;
    margin-bottom: 10px !important;
    border-radius: 6px !important;
    border: 1px solid #444 !important;
}

.woocommerce-checkout .wc_payment_method label {
    color: #fff !important;
    cursor: pointer !important;
}

.woocommerce-checkout .wc_payment_method.payment_method_selected,
.woocommerce-checkout .wc_payment_method:has(input:checked) {
    border-color: #c00000 !important;
    background-color: rgba(192, 0, 0, 0.1) !important;
}

.woocommerce-checkout .payment_box {
    background-color: #333 !important;
    color: #ccc !important;
    padding: 15px !important;
    margin-top: 10px !important;
    border-radius: 6px !important;
}

/* Place order button */
.woocommerce-checkout #place_order {
    background-color: #c00000 !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 40px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}

.woocommerce-checkout #place_order:hover {
    background-color: #a00000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(192, 0, 0, 0.4) !important;
}

/* Error notices */
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
    background-color: #2a2a2a !important;
    color: #fff !important;
    border-right: 4px solid #c00000 !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
    border-radius: 6px !important;
}

.woocommerce-checkout .woocommerce-error::before,
.woocommerce-checkout .woocommerce-message::before,
.woocommerce-checkout .woocommerce-info::before {
    color: #c00000 !important;
}

/* Validation errors */
.woocommerce-checkout .woocommerce-invalid input,
.woocommerce-checkout .woocommerce-invalid select {
    border-color: #c00000 !important;
}

.woocommerce-checkout .form-row.woocommerce-invalid label {
    color: #ff6b6b !important;
}

/* Coupon form */
.woocommerce-checkout .checkout_coupon {
    background-color: #1a1a1a !important;
    padding: 20px !important;
    border-radius: 10px !important;
    margin-bottom: 20px !important;
}

.woocommerce-checkout .checkout_coupon .button {
    background-color: #c00000 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 6px !important;
}

/* Privacy policy text */
.woocommerce-checkout .woocommerce-privacy-policy-text {
    color: #888 !important;
    font-size: 13px !important;
}

.woocommerce-checkout .woocommerce-privacy-policy-text a {
    color: #c00000 !important;
}

/* Checkbox styling */
.woocommerce-checkout input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    accent-color: #c00000 !important;
}

/* Radio button styling */
.woocommerce-checkout input[type="radio"] {
    accent-color: #c00000 !important;
}

/* RTL Support */
.woocommerce-checkout {
    direction: rtl !important;
    text-align: right !important;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        width: 100% !important;
        float: none !important;
    }
    
    .woocommerce-checkout .woocommerce-billing-fields,
    .woocommerce-checkout .woocommerce-shipping-fields,
    .woocommerce-checkout #order_review {
        padding: 15px !important;
    }
}

/* ========================================
   WP ACCESSIBILITY TOOLBAR - FIX
   Move to LEFT side, make SMALLER
   ======================================== */

/* Main toolbar container */
.a11y-toolbar-widget,
ul.a11y-toolbar,
.wpa-toolbar,
#a11y-toolbar,
.wp-a11y-toolbar {
    position: fixed !important;
    left: 0 !important;
    right: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9990 !important;
    padding: 5px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border-radius: 0 8px 8px 0 !important;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3) !important;
}

/* Toolbar list */
ul.a11y-toolbar {
    list-style: none !important;
    margin: 0 !important;
    padding: 5px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
}

ul.a11y-toolbar li {
    margin: 0 !important;
    padding: 0 !important;
}

/* Toolbar buttons - SMALL */
ul.a11y-toolbar li button,
ul.a11y-toolbar li a,
.a11y-toolbar-widget button,
.wpa-toolbar button {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    font-size: 14px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

ul.a11y-toolbar li button:hover,
ul.a11y-toolbar li a:hover {
    background: #c00000 !important;
}

/* Hide text labels */
ul.a11y-toolbar li span.a11y-toggle-button-title,
ul.a11y-toolbar li .toggle-text,
.a11y-toolbar-widget .toolbar-text,
.wpa-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

/* Toggle button (open/close) */
button.a11y-toggle-btn,
.a11y-toggle,
.wpa-toggle {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    padding: 0 !important;
    background: #c00000 !important;
    border-radius: 0 6px 6px 0 !important;
    color: #fff !important;
    font-size: 16px !important;
}

button.a11y-toggle-btn:hover {
    background: #a00000 !important;
}

/* Mobile - even smaller */
@media (max-width: 768px) {
    .a11y-toolbar-widget,
    ul.a11y-toolbar,
    .wpa-toolbar,
    #a11y-toolbar {
        top: auto !important;
        bottom: 100px !important;
        transform: none !important;
        padding: 4px !important;
        flex-direction: row !important;
    }
    
    ul.a11y-toolbar {
        flex-direction: row !important;
        gap: 2px !important;
    }
    
    ul.a11y-toolbar li button,
    ul.a11y-toolbar li a {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        font-size: 12px !important;
    }
    
    button.a11y-toggle-btn {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 14px !important;
    }
}
