/* Custom WooCommerce Styles for AlexaStore */

/* WooCommerce Container */
.woocommerce-main {
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Final hard override for Woo Blocks select container (prevents white bg on some installs/caches) */
body.woocommerce-checkout .wc-block-components-select .wc-blocks-components-select__container,
body.woocommerce-checkout .wc-blocks-components-select__container {
    background-color: rgba(255, 255, 255, 0.06) !important;
    background-image: none !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
}

body.woocommerce-checkout .wc-block-components-select .wc-blocks-components-select__select,
body.woocommerce-checkout .wc-blocks-components-select__select {
    background-color: transparent !important;
    color: #fff !important;
}

.woocommerce-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Override WooCommerce default container constraints */
.woocommerce .col2-set,
.woocommerce-page .col2-set {
    max-width: 100%;
    width: 100%;
}

body.woocommerce #primary.woocommerce-main,
body.woocommerce-page #primary.woocommerce-main {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

body.woocommerce-cart #primary.woocommerce-main,
body.woocommerce-checkout #primary.woocommerce-main {
    max-width: 1400px !important;
    margin: 0 auto !important;
    width: 100% !important;
}

/* Product Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    display: none !important;
    border: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 170, 255, 0.3);
    border-bottom: 1px solid rgba(0, 170, 255, 0.3) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: rgba(0, 170, 255, 0.15);
    border-color: #00aaff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
    border-bottom: 1px solid #00aaff !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
    display: none !important;
    border: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    border: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none !important;
    border: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::after {
    display: none !important;
    border: none !important;
}

.woocommerce div.product .woocommerce-tabs .panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0 !important;
}

/* Quantity Input */
.single-product form.cart .quantity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.woocommerce div.product form.cart .quantity {
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.single-product form.cart .quantity input.qty,
.woocommerce div.product form.cart .quantity input.qty {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    padding: 12px 16px;
    width: 70px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.3s ease;
    -webkit-appearance: textfield;
    appearance: textfield;
    box-sizing: border-box;
}

.single-product form.cart .quantity input.qty::-webkit-outer-spin-button,
.single-product form.cart .quantity input.qty::-webkit-inner-spin-button,
.woocommerce div.product form.cart .quantity input.qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.single-product form.cart .quantity input.qty:focus,
.woocommerce div.product form.cart .quantity input.qty:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Quantity Buttons (if using plus/minus buttons) */
.single-product form.cart .quantity .qty-btn,
.woocommerce div.product form.cart .quantity .qty-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.single-product form.cart .quantity .qty-btn:hover,
.woocommerce div.product form.cart .quantity .qty-btn:hover {
    background: rgba(0, 170, 255, 0.2);
    border-color: #00aaff;
}

/* Buttons */
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button,
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
    background: linear-gradient(90deg, #00aaff, #0077ff);
    color: #fff;
    border-radius: 30px;
    padding: 12px 24px;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.4);
    transition: all 0.3s ease;
}

.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
    background: linear-gradient(90deg, #00bbff, #0088ff);
    box-shadow: 0 6px 20px rgba(0, 170, 255, 0.6);
    transform: translateY(-2px);
}

/* Secondary Button (IMG_6023: Kúpiť teraz) */
.woocommerce a.button.secondary {
    background: #fff;
    color: #0b1026;
    box-shadow: none;
}

/* Product Cards */
.woocommerce ul.products li.product {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px !important;
    text-align: left;
}

.woocommerce ul.products li.product .price {
    color: #fff;
    font-size: 1.1em;
}

/* Product Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #f8e71c;
    font-size: 1.5em;
    font-weight: 700;
}

/* Product Meta */
.woocommerce div.product .product_meta {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-top: 20px;
}

.woocommerce div.product .product_meta > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
}

.woocommerce div.product .product_meta a {
    color: #00aaff;
    text-decoration: none;
}

.woocommerce div.product .product_meta a:hover {
    color: #fff;
}

/* My Account */
.woocommerce-account .woocommerce {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

@media (min-width: 769px) {
    .woocommerce-account .woocommerce {
        display: grid;
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 22px;
        align-items: start;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        float: none !important;
        width: auto !important;
        margin: 0 !important;
        clear: none !important;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        grid-column: 1;
        grid-row: 1;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        grid-column: 2;
        grid-row: 1;
        margin-top: 0 !important;
    }
}

.woocommerce-account .woocommerce h2,
.woocommerce-account .woocommerce legend {
    color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    transition: all 0.2s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: rgba(0, 170, 255, 0.16);
    border-color: rgba(0, 170, 255, 0.5);
    color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
}

.woocommerce-account .woocommerce form .form-row label,
.woocommerce-account .woocommerce form label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.woocommerce-account .woocommerce form input.input-text,
.woocommerce-account .woocommerce form input[type="password"],
.woocommerce-account .woocommerce form input[type="email"],
.woocommerce-account .woocommerce form input[type="text"],
.woocommerce-account .woocommerce form textarea,
.woocommerce-account .woocommerce form select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    border-radius: 10px;
    min-height: 42px;
    padding: 10px 12px;
}

.woocommerce-account .woocommerce form input:focus,
.woocommerce-account .woocommerce form textarea:focus,
.woocommerce-account .woocommerce form select:focus {
    border-color: #00aaff;
    box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
    outline: none;
}

.woocommerce-account .woocommerce .woocommerce-form-login {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 20px;
}

.woocommerce-account .woocommerce .woocommerce-form-login .form-row {
    margin-bottom: 14px;
}

.woocommerce-account .woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    min-width: 130px;
}

.woocommerce-account .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    color: rgba(255, 255, 255, 0.9);
    margin-left: 10px;
}

.woocommerce-account .woocommerce form .show-password-input {
    color: rgba(255, 255, 255, 0.7);
    right: 12px;
}

.woocommerce-account .woocommerce form .show-password-input:hover {
    color: #fff;
}

.woocommerce-account .woocommerce .woocommerce-form-login .form-row-last {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.woocommerce-account .woocommerce .woocommerce-form-login .form-row-last .woocommerce-form-login__submit {
    margin: 0 !important;
}

.woocommerce-account .woocommerce .lost_password a {
    color: #00aaff;
    font-weight: 600;
}

/* Cart & Checkout (IMG_6024 & IMG_6026) */
.woocommerce-cart table.cart, 
.woocommerce-checkout #order_review, 
.woocommerce-checkout #payment {
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff;
}

.woocommerce-cart table.cart td,
.woocommerce-cart table.cart th {
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.9);
}

.woocommerce-cart .cart-empty {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.woocommerce-cart .cart-empty::before {
    content: "😢";
    display: block;
    font-size: 80px;
    margin-bottom: 20px;
}

.woocommerce .cart-empty,
.woocommerce-page .cart-empty {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.woocommerce .woocommerce-info,
.woocommerce-page .woocommerce-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-left: 3px solid var(--neon-blue);
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
}

.woocommerce .woocommerce-info::before,
.woocommerce-page .woocommerce-info::before {
    color: var(--neon-blue);
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.woocommerce .woocommerce-info a,
.woocommerce-page .woocommerce-info a {
    color: #fff;
    background: linear-gradient(90deg, #00aaff, #0077ff);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.4);
    transition: all 0.3s ease;
}

.woocommerce .woocommerce-info a:hover,
.woocommerce-page .woocommerce-info a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 170, 255, 0.6);
}

.woocommerce .return-to-shop,
.woocommerce-page .return-to-shop {
    margin-top: 30px;
    text-align: center;
}

.woocommerce-cart .return-to-shop {
    margin-top: 30px;
}

.woocommerce-cart .wc-empty-cart-message {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
}

.woocommerce-cart .cart_totals h2 {
    color: #fff;
}

.woocommerce-cart .cart_totals table {
    background: transparent;
    border: none;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.woocommerce-cart .product-name a {
    color: #fff;
}

.woocommerce-cart .product-name a:hover {
    color: var(--neon-blue);
}

.woocommerce-cart .product-remove a {
    background: rgba(255, 0, 0, 0.2) !important;
    color: #ff6b6b !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.woocommerce-cart .product-remove a:hover {
    background: rgba(255, 0, 0, 0.4) !important;
}

.woocommerce-cart .product-thumbnail img {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-cart .quantity input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    padding: 8px;
}

/* Cross-sells */
.woocommerce-cart .cross-sells {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.woocommerce-cart .cross-sells h2 {
    color: #fff;
}

.woocommerce-cart .cross-sells ul.products li.product {
    background: rgba(255, 255, 255, 0.05);
}

/* Shopify-like Checkout (clean and simple) */
.woocommerce-checkout .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
}

.woocommerce-checkout .alexa-checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px 0;
}

.woocommerce-checkout .alexa-checkout-steps .alexa-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    min-height: 44px;
}

.woocommerce-checkout .alexa-checkout-steps .step-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
}

.woocommerce-checkout .alexa-checkout-steps .alexa-step.is-done {
    border-color: rgba(0, 170, 255, 0.35);
    color: rgba(255, 255, 255, 0.88);
}

.woocommerce-checkout .alexa-checkout-steps .alexa-step.is-done .step-num {
    background: rgba(0, 170, 255, 0.28);
}

.woocommerce-checkout .alexa-checkout-steps .alexa-step.is-active {
    border-color: #00aaff;
    background: rgba(0, 170, 255, 0.12);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 170, 255, 0.2);
}

.woocommerce-checkout .alexa-checkout-steps .alexa-step.is-active .step-num {
    background: #00aaff;
    color: #001122;
}

.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 24px;
    margin: 0;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    float: none;
    width: 100%;
    max-width: 100%;
}

/* Sticky summary (classic checkout) */
.woocommerce-checkout .col2-set .col-2 {
    position: sticky;
    top: 20px;
    align-self: start;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review,
.woocommerce-checkout #payment {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
    padding: 20px;
    margin-bottom: 18px;
}

.woocommerce-checkout #order_review_heading {
    padding: 16px 18px;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.woocommerce-checkout #order_review,
.woocommerce-checkout #payment {
    padding: 18px;
}

.woocommerce-checkout .form-row {
    margin-bottom: 12px;
}

.woocommerce-checkout label {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout textarea,
.woocommerce-checkout select {
    min-height: 48px;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
}

.woocommerce-checkout textarea {
    min-height: 90px;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #00aaff !important;
    box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.18);
    outline: none;
}

.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: rgba(255, 255, 255, 0.58) !important;
}

.woocommerce-checkout table.shop_table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 12px;
}

.woocommerce-checkout #payment ul.payment_methods {
    margin: 0 0 14px 0;
    border: none;
    padding: 0;
}

.woocommerce-checkout #payment ul.payment_methods li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
}

.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 50px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
}

/* Checkout blocks support */
.woocommerce-checkout .wc-block-checkout {
    max-width: 1200px;
    margin: 0 auto;
    gap: 22px;
}

@media (min-width: 1024px) {
    .woocommerce-checkout .wc-block-checkout {
        display: flex !important;
        flex-wrap: wrap;
        align-items: start;
    }

    .woocommerce-checkout .wc-block-checkout > .alexa-checkout-steps {
        flex: 0 0 100%;
        width: 100%;
    }

    .woocommerce-checkout .wc-block-checkout__main {
        flex: 1 1 0;
        min-width: 0 !important;
        width: auto !important;
        max-width: none !important;
    }

    .woocommerce-checkout .wc-block-checkout__sidebar {
        flex: 0 0 380px;
        width: 380px !important;
        max-width: 380px !important;
        margin-top: 0 !important;
    }
}

.woocommerce-checkout .wc-block-checkout__main,
.woocommerce-checkout .wc-block-checkout__sidebar {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px;
}

/* Sticky summary (checkout blocks) */
.woocommerce-checkout .wc-block-checkout__sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-text-input select,
.woocommerce-checkout .wc-block-components-address-form__address_1 input,
.woocommerce-checkout .wc-block-components-address-form__address_2 input,
.woocommerce-checkout .wc-block-components-address-form__city input,
.woocommerce-checkout .wc-block-components-address-form__postcode input,
.woocommerce-checkout .wc-block-components-address-form__state input {
    min-height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.woocommerce-checkout .wc-block-components-text-input input:focus,
.woocommerce-checkout .wc-block-components-text-input select:focus,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #00aaff !important;
    box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.18) !important;
}

.woocommerce-checkout .wc-block-components-text-input label,
.woocommerce-checkout .wc-block-components-checkout-step__heading,
.woocommerce-checkout .wc-block-components-title {
    color: rgba(255, 255, 255, 0.88) !important;
}

.woocommerce-checkout .wc-block-components-text-input input::placeholder {
    color: rgba(255, 255, 255, 0.58) !important;
}

.woocommerce-checkout .wc-block-components-text-input.has-error input,
.woocommerce-checkout .wc-block-components-text-input.has-error select {
    border-color: rgba(255, 99, 99, 0.8) !important;
    box-shadow: 0 0 0 2px rgba(255, 99, 99, 0.15) !important;
}

/* Woo Blocks native select container (was still white) */
.woocommerce-checkout .wc-blocks-components-select__container {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 12px !important;
    color: #fff !important;
    min-height: 48px !important;
    box-shadow: none !important;
}

.woocommerce-checkout .wc-blocks-components-select__container:focus-within {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #00aaff !important;
    box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.18) !important;
}

.woocommerce-checkout .wc-blocks-components-select__select {
    color: #fff !important;
    background: transparent !important;
    min-height: 46px !important;
}

.woocommerce-checkout .wc-blocks-components-select__expand {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Woo Select2 dropdown (classic checkout country/state/city selectors) */
.woocommerce-checkout .select2-container--default .select2-selection--single,
.woocommerce-checkout .select2-container--default .select2-selection--multiple {
    min-height: 48px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    color: #fff !important;
    line-height: 46px !important;
    padding-left: 12px !important;
}

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

.select2-container--open .select2-dropdown {
    background: #0b1830 !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 10px !important;
    overflow: hidden;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
    border-radius: 8px !important;
}

.select2-container--default .select2-results__option {
    color: rgba(255, 255, 255, 0.9) !important;
    background: #0b1830 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background: rgba(0, 170, 255, 0.24) !important;
    color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default .select2-results__option[data-selected="true"] {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.woocommerce-checkout .wc-block-components-checkout-place-order-button {
    min-height: 50px;
    border-radius: 14px;
    font-size: 1rem;
}

/* Visual Credit Card in Checkout (IMG_6024) */
#payment ul.payment_methods li.payment_method_stripe {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Inputs */
.woocommerce-checkout input[type="text"], 
.woocommerce-checkout input[type="email"], 
.woocommerce-checkout input[type="tel"], 
.woocommerce-checkout select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    padding: 10px;
}

/* Product Description */
.woocommerce div.product .woocommerce-product-details__short-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Reviews */
.woocommerce #reviews #comments ol.commentlist li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    color: rgba(255, 255, 255, 0.8);
}

.woocommerce #reviews #comments ol.commentlist li .star-rating {
    color: #f8e71c;
}

/* Review Form */
.woocommerce #review_form #respond textarea,
.woocommerce #review_form #respond input[type="text"],
.woocommerce #review_form #respond input[type="email"] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    padding: 12px;
}

.woocommerce #review_form #respond textarea:focus,
.woocommerce #review_form #respond input:focus {
    outline: none;
    border-color: #00aaff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.3);
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    body.woocommerce #primary.woocommerce-main,
    body.woocommerce-page #primary.woocommerce-main {
        padding: 20px 20px 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce-container {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce-cart form {
        max-width: 100% !important;
        overflow: visible !important;
    }

    .woocommerce .cart-empty,
    .woocommerce-page .cart-empty,
    .woocommerce .woocommerce-info,
    .woocommerce-page .woocommerce-info {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .woocommerce .cart-empty.woocommerce-info,
    .woocommerce-page .cart-empty.woocommerce-info {
        border-left: 0 !important;
        text-align: center !important;
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .woocommerce .return-to-shop,
    .woocommerce-page .return-to-shop {
        width: 100% !important;
        text-align: center !important;
    }
    
    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        padding: 0 !important;
        margin: 20px 0 0 0 !important;
    }
    
    .woocommerce-cart .cart_totals {
        width: 100% !important;
        float: none !important;
    }

    .woocommerce-checkout form.checkout,
    .woocommerce-checkout #customer_details,
    .woocommerce-checkout .col2-set,
    .woocommerce-checkout #order_review,
    .woocommerce-checkout #payment {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .woocommerce-checkout .alexa-checkout-steps {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .woocommerce-checkout .col2-set .col-2,
    .woocommerce-checkout .wc-block-checkout__sidebar {
        position: static;
        top: auto;
    }

    .woocommerce-checkout .woocommerce-billing-fields,
    .woocommerce-checkout .woocommerce-shipping-fields,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review,
    .woocommerce-checkout #payment {
        border-radius: 14px;
        padding: 14px;
    }
    
    .woocommerce div.product {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce div.product .woocommerce-product-gallery {
        margin: 0 0 20px 0 !important;
        max-width: 100% !important;
        overflow: hidden !important;
        border-radius: 15px !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
        max-width: 100% !important;
        overflow: hidden !important;
        border-radius: 15px !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce div.product .woocommerce-product-gallery img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: 15px !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce div.product .woocommerce-product-gallery figure {
        max-width: 100% !important;
        margin: 0 !important;
        overflow: hidden !important;
        border-radius: 15px !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce div.product .summary {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce-tabs {
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs {
        gap: 8px !important;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        flex: 1 1 calc(50% - 8px);
        min-width: 140px;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
        text-align: center;
    }

    .woocommerce form .form-row,
    .woocommerce-page form .form-row,
    .woocommerce form input.input-text:not(.qty),
    .woocommerce-page form input.input-text:not(.qty),
    .woocommerce form select,
    .woocommerce-page form select,
    .woocommerce form textarea,
    .woocommerce-page form textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Single product mobile UX */
    .single-product form.cart,
    .single-product .woocommerce div.product form.cart {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .single-product form.cart .quantity,
    .single-product .woocommerce div.product form.cart .quantity {
        margin: 0 !important;
        flex: 0 0 auto;
    }

    .single-product form.cart .quantity input.qty,
    .single-product .woocommerce div.product form.cart .quantity input.qty {
        width: 72px !important;
        min-width: 72px !important;
        height: 46px !important;
        line-height: 1.2 !important;
        padding: 10px 8px !important;
        border-radius: 12px !important;
        font-size: 16px !important;
        text-align: center !important;
        -webkit-appearance: none !important;
    }

    .single-product form.cart .single_add_to_cart_button,
    .single-product .woocommerce div.product form.cart .single_add_to_cart_button {
        flex: 1 1 auto;
        height: 46px !important;
        min-height: 46px !important;
        margin: 0 !important;
        padding: 10px 16px !important;
        border-radius: 12px !important;
        white-space: nowrap;
    }

    .single-product form.cart .quantity .qty-btn,
    .single-product .woocommerce div.product form.cart .quantity .qty-btn {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 22px;
    }

    .woocommerce-account .woocommerce {
        display: block;
        padding: 14px;
        border-radius: 14px;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        margin-bottom: 14px;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
        padding: 10px 10px;
        font-size: 0.85rem;
        text-align: center;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 14px;
    }
    
    /* Fix any row/column negative margins */
    .woocommerce .row,
    .woocommerce-page .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .woocommerce [class*="col-"],
    .woocommerce-page [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
