/* WooCommerce Base Styles */
.woocommerce {
    font-family: 'Inter', sans-serif;
}

/* Mobile responsive styles for WooCommerce account */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        margin-top: 0;
        flex-direction: column;
    }
}

/* Light Theme - Main Content Background Fix */
body.light-theme .main-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%) !important;
    color: #1a1a1a !important;
}

body.light-theme .main-content--gradient {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #e8f5e8 50%, #f0f8ff 75%, #ffffff 100%) !important;
    min-height: 100vh !important;
}

/* Light Theme - Container Background */
body.light-theme .container {
    background: transparent !important;
}

body.light-theme .container--wide {
    background: transparent !important;
}

.woocommerce .woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

.woocommerce .woocommerce-notices-wrapper {
    margin-bottom: 20px;
}

.woocommerce .woocomm.step.active {
    background: rgba(12, 224, 107, 0.2) !important;
    border-color: var(--primary-green) !important;
    color: var(--primary-green) !important;
    box-shadow: 0 4px 15px rgba(12, 224, 107, 0.3) !important;
    transform: translateY(-2px) !important;
}

.woocommerce .woocommerce-info {
    background: rgba(12, 224, 107, 0.1);
    border: 1px solid var(--primary-green);
    color: #ffffff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.woocommerce .button {
    background: linear-gradient(135deg, var(--primary-green), #00d4ff);
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.woocommerce .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 224, 107, 0.4);
    color: #000000;
}

/* Cart specific styles */
.woocommerce-cart .wc-empty-cart-message {
    text-align: center;
    padding: 40px;
}

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

.woocommerce-cart .return-to-shop {
    text-align: center;
}

/* Light theme overrides */
body.light-theme .woocommerce .woocommerce-info {
    background: rgba(4, 122, 58, 0.1);
    border-color: var(--neon-green);
    color: #1a1a1a;
}

body.light-theme .woocommerce-cart .cart-empty {
    color: rgba(0, 0, 0, 0.7);
}

/* Optimized Desktop Cart Styles */
.modern-cart-wrapper {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(12, 224, 107, 0.2);
    border-radius: 20px;
    padding: 24px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 8px 25px rgba(12, 224, 107, 0.1);
}

.modern-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-cart-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-count {
    background: var(--primary-green);
    color: #000000;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.cart-empty-message {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255, 255, 255, 0.8);
}

.cart-empty-message h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 16px 0 8px 0;
}

.cart-empty-message p {
    margin-bottom: 24px;
    opacity: 0.7;
}

.modern-btn {
    background: linear-gradient(135deg, var(--primary-green), #00d4ff);
    color: #000000;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 224, 107, 0.4);
    color: #000000;
}

.cart-items-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.cart-item-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 16px;
    align-items: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

.cart-item-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(12, 224, 107, 0.4);
    box-shadow: 0 8px 25px rgba(12, 224, 107, 0.2);
    transform: translateY(-2px);
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.product-name a {
    color: #ffffff;
    text-decoration: none;
}

.product-name a:hover {
    color: var(--primary-green);
}

.product-price {
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-controls .qty {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 8px 12px;
    width: 70px;
    text-align: center;
    font-size: 1rem;
}

.quantity-controls .qty:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(12, 224, 107, 0.2);
}

.product-subtotal {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
}

.remove-item .remove-btn {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    padding: 8px 10px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item .remove-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
    transform: scale(1.1);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cart Totals */
.cart-collaterals {
    margin-top: 32px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals,
.woocommerce-cart .cart_totals {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(12, 224, 107, 0.2) !important;
    border-radius: 20px !important;
    padding: 24px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 20px auto !important;
    box-shadow: 0 8px 25px rgba(12, 224, 107, 0.1) !important;
    float: none !important;
}

.cart_totals h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    text-align: center;
}

.cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.cart_totals th, .cart_totals td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cart_totals th {
    text-align: left;
    font-weight: 600;
}

.cart_totals td {
    text-align: right;
    font-weight: 700;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
    font-size: 1.2rem;
    color: var(--primary-green);
    border-bottom: none;
    padding-top: 16px;
}

.wc-proceed-to-checkout {
    margin-top: 20px;
    text-align: center;
}

.checkout-button {
    background: linear-gradient(135deg, var(--primary-green), #00d4ff) !important;
    color: #000000 !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: block !important;
}

.checkout-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(12, 224, 107, 0.5) !important;
    color: #000000 !important;
}

.checkout-button:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(12, 224, 107, 0.4) !important;
}

.checkout-button:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(12, 224, 107, 0.2) !important;
}

/* Enhanced Mobile Design */
@media (max-width: 768px) {
    .modern-cart-wrapper {
        margin: 8px;
        padding: 12px;
        border-radius: 10px;
        max-width: none;
    }
    
    .modern-cart-header {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        text-align: left;
        margin-bottom: 16px;
        padding-bottom: 8px;
    }
    
    .modern-cart-header h2 {
        font-size: 1.2rem;
        gap: 8px;
    }
    
    .cart-item-count {
        padding: 4px 8px;
        font-size: 0.8rem;
        border-radius: 12px;
    }
    
    .cart-item-card {
        background: rgba(0, 0, 0, 0.85);
        border: 1px solid rgba(12, 224, 107, 0.3);
        border-radius: 15px;
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        position: relative;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(12, 224, 107, 0.1);
    }
    
    .cart-item-card:hover {
        background: rgba(0, 0, 0, 0.9);
        border-color: rgba(12, 224, 107, 0.5);
        box-shadow: 0 6px 20px rgba(12, 224, 107, 0.2);
        transform: translateY(-2px);
    }
    
    /* Mobile cart item layout */
    .mobile-cart-row {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .product-image {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.05);
    }
    
    .product-details {
        flex: 1;
        min-width: 0;
    }
    
    .product-name {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
        max-width: 100%;
        display: block;
        color: #ffffff;
    }
    
    .product-price {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary-green);
        opacity: 0.9;
    }
    
    .remove-item {
        position: absolute;
        top: 8px;
        right: 8px;
    }
    
    .remove-item .remove-btn {
        padding: 4px 6px;
        font-size: 0.8rem;
        border-radius: 4px;
        background: rgba(239, 68, 68, 0.15);
        border: 1px solid rgba(239, 68, 68, 0.4);
    }
    
    /* Mobile quantity and subtotal row */
    .mobile-controls-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .quantity-controls {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .quantity-controls::before {
        content: "Qty:";
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 500;
    }
    
    .quantity-controls .qty {
        width: 45px;
        padding: 4px 6px;
        font-size: 0.85rem;
        border-radius: 4px;
    }
    
    .product-subtotal {
        font-size: 1rem;
        font-weight: 700;
        color: var(--primary-green);
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
        padding-top: 16px;
    }
    
    /* Mobile Cart Totals */
    .cart_totals {
        max-width: none;
        margin: 16px 8px;
        padding: 16px;
        border-radius: 15px;
    }
    
    .cart_totals h2 {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    
    .checkout-button {
        padding: 12px 24px !important;
        font-size: 1rem !important;
    }
}

/* Modern Checkout Styles - Cart Sayfası Kalitesinde */
.modern-checkout-wrapper {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(12, 224, 107, 0.2) !important;
    border-radius: 20px !important;
    padding: 50px !important;
    margin: 20px auto !important;
    max-width: 1800px !important;
    box-shadow: 0 8px 25px rgba(12, 224, 107, 0.1) !important;
    min-height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* WooCommerce Checkout Shortcode Full Width */
.woocommerce-checkout {
    width: 100% !important;
    max-width: none !important;
}

/* Light Theme Support - CSS Variables */
:root {
    --checkout-bg-light: rgba(255, 255, 255, 0.95);
    --checkout-text-light: #333333;
    --checkout-border-light: rgba(0, 0, 0, 0.1);
    --checkout-input-bg-light: #ffffff;
    --checkout-button-bg-light: #0CE06B;
    --checkout-button-text-light: #000000;
    --checkout-shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Light Theme Styles - Complete Checkout Support */
body.light-theme .modern-checkout-wrapper {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #1a1a1a !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(20px) !important;
}

/* Light Theme - Checkout Header */
body.light-theme .modern-checkout-header {
    border-bottom-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .modern-checkout-header h1 {
    color: #1a1a1a !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Light Theme - Steps */
body.light-theme .step {
    background: rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #1a1a1a !important;
}

body.light-theme .step.active {
    background: rgba(4, 122, 58, 0.1) !important;
    border-color: var(--neon-green) !important;
    color: var(--neon-green) !important;
    box-shadow: 0 4px 15px rgba(4, 122, 58, 0.2) !important;
}

body.light-theme .step.completed {
    background: rgba(4, 122, 58, 0.05) !important;
    border-color: rgba(4, 122, 58, 0.3) !important;
    color: var(--neon-green) !important;
}

body.light-theme .step-number {
    background: rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(0, 0, 0, 0.2) !important;
    color: #1a1a1a !important;
}

body.light-theme .step.active .step-number {
    background: var(--neon-green) !important;
    border-color: var(--neon-green) !important;
    color: #000000 !important;
}

body.light-theme .step.completed .step-number {
    background: rgba(4, 122, 58, 0.8) !important;
    border-color: var(--neon-green) !important;
    color: #000000 !important;
}

body.light-theme .step-label {
    color: #1a1a1a !important;
}

body.light-theme .step.active .step-label {
    color: var(--neon-green) !important;
}

body.light-theme .step-arrow {
    color: rgba(0, 0, 0, 0.4) !important;
}

/* Light Theme - Checkout Sections */
body.light-theme .checkout-section {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

body.light-theme .checkout-section:hover {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(4, 122, 58, 0.3) !important;
    box-shadow: 0 4px 15px rgba(4, 122, 58, 0.1) !important;
}

body.light-theme .checkout-section h3 {
    color: #1a1a1a !important;
}

body.light-theme .checkout-section h3 i {
    color: var(--neon-green) !important;
}

/* Light Theme - Form Fields */
body.light-theme .woocommerce-checkout .form-row label {
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-checkout .form-row .required {
    color: var(--neon-green) !important;
}

body.light-theme .woocommerce-checkout .form-row input[type="text"],
body.light-theme .woocommerce-checkout .form-row input[type="email"],
body.light-theme .woocommerce-checkout .form-row input[type="tel"],
body.light-theme .woocommerce-checkout .form-row input[type="password"],
body.light-theme .woocommerce-checkout .form-row select,
body.light-theme .woocommerce-checkout .form-row textarea {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-checkout .form-row input:focus,
body.light-theme .woocommerce-checkout .form-row select:focus,
body.light-theme .woocommerce-checkout .form-row textarea:focus {
    border-color: var(--neon-green) !important;
    box-shadow: 0 0 0 3px rgba(4, 122, 58, 0.2) !important;
    background: rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .woocommerce-checkout .form-row input::placeholder,
body.light-theme .woocommerce-checkout .form-row textarea::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
}

body.light-theme .woocommerce-checkout .form-row select {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%231a1a1a" d="M6 9L1.5 4.5h9z"/></svg>') !important;
}

body.light-theme .woocommerce-checkout .form-row select:hover {
    border-color: rgba(4, 122, 58, 0.4) !important;
    background: rgba(0, 0, 0, 0.08) !important;
}

/* LIGHT THEME COUPON STYLES REMOVED */

/* Light Theme - Login Section */
body.light-theme .woocommerce-form-login-toggle {
    background: rgba(4, 122, 58, 0.05) !important;
    border: 1px solid rgba(4, 122, 58, 0.2) !important;
}

body.light-theme .woocommerce-form-login-toggle:hover {
    background: rgba(4, 122, 58, 0.1) !important;
    border-color: rgba(4, 122, 58, 0.4) !important;
}

body.light-theme .woocommerce-form-login-toggle .woocommerce-info {
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-form-login-toggle .showlogin {
    color: var(--neon-green) !important;
    background: rgba(4, 122, 58, 0.1) !important;
}

body.light-theme .woocommerce-form-login-toggle .showlogin:hover {
    background: var(--neon-green) !important;
    color: #000000 !important;
}

/* Registration Link Styling */
.register-link {
    color: var(--primary-green) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    margin-left: 10px !important;
    padding: 8px 16px !important;
    border: 1px solid var(--primary-green) !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.register-link:hover {
    background: var(--primary-green) !important;
    color: #000000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(12, 224, 107, 0.3) !important;
}

/* Light Theme Registration Link */
body.light-theme .register-link {
    color: var(--neon-green) !important;
    border-color: var(--neon-green) !important;
}

body.light-theme .register-link:hover {
    background: var(--neon-green) !important;
    color: #000000 !important;
}

body.light-theme .woocommerce-form-login {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-form-login p {
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-form-login .form-row label {
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-form-login .form-row .input-text {
    background: rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-form-login .form-row .input-text:focus {
    border-color: var(--neon-green) !important;
    box-shadow: 0 0 0 3px rgba(4, 122, 58, 0.2) !important;
}

body.light-theme .woocommerce-form-login .form-row .input-text::placeholder {
    color: rgba(0, 0, 0, 0.6) !important;
}

/* Light Theme - Payment Methods */
body.light-theme .wc_payment_methods {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .wc_payment_method {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .wc_payment_method:hover {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(4, 122, 58, 0.3) !important;
    box-shadow: 0 4px 12px rgba(4, 122, 58, 0.1) !important;
}

body.light-theme .wc_payment_method input[type="radio"]:checked + label {
    background: rgba(4, 122, 58, 0.1) !important;
    border-color: var(--neon-green) !important;
    color: var(--neon-green) !important;
}

body.light-theme .wc_payment_method label {
    color: #1a1a1a !important;
}

body.light-theme .payment_method_paypal .about_paypal {
    color: #1a1a1a !important;
}

/* Light Theme - SumUp Payment Box */
body.light-theme .payment_box.payment_method_sumup {
    background: rgba(255, 255, 255, 0.95) !important; /* Light background */
    border: 1px solid rgba(0, 212, 170, 0.2) !important;
    color: #1a1a1a !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .payment_box.payment_method_sumup .sumup-info {
    background: rgba(248, 249, 250, 0.9) !important;
    color: #1a1a1a !important;
    border-left: 4px solid #00D4AA !important;
}

body.light-theme .payment_box.payment_method_sumup p {
    color: #333 !important;
}

body.light-theme .payment_box.payment_method_sumup ul li {
    color: #555 !important;
}

/* Light Theme - Order Review - Sipariş Özeti */
body.light-theme #order_review {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

body.light-theme #order_review_heading {
    color: #1a1a1a !important;
    background: transparent !important;
    border-bottom: 2px solid rgba(4, 122, 58, 0.3) !important;
    padding: 0 0 15px 0 !important;
    margin: 0 0 25px 0 !important;
    border-radius: 0 !important;
    font-weight: 600 !important;
    font-size: 1.2rem !important;
}

body.light-theme .woocommerce-checkout-review-order-table {
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-checkout-review-order-table th {
    background: rgba(248, 249, 250, 0.8) !important;
    color: #495057 !important;
    font-weight: 600 !important;
    padding: 15px !important;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1) !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.5px !important;
}

body.light-theme .woocommerce-checkout-review-order-table td {
    color: #1a1a1a !important;
    padding: 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    vertical-align: middle !important;
}

body.light-theme .woocommerce-checkout-review-order-table .cart_item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: background-color 0.2s ease !important;
}

body.light-theme .woocommerce-checkout-review-order-table .cart_item:hover {
    background: rgba(4, 122, 58, 0.02) !important;
}

body.light-theme .woocommerce-checkout-review-order-table .cart_item td {
    padding: 18px 15px !important;
}

body.light-theme .woocommerce-checkout-review-order-table .order-total {
    background: linear-gradient(135deg, rgba(4, 122, 58, 0.1) 0%, rgba(4, 122, 58, 0.05) 100%) !important;
    border-top: 3px solid var(--neon-green) !important;
    font-size: 1.1rem !important;
}

body.light-theme .woocommerce-checkout-review-order-table .order-total th,
body.light-theme .woocommerce-checkout-review-order-table .order-total td {
    color: var(--neon-green) !important;
    font-weight: 700 !important;
    padding: 20px 15px !important;
    font-size: 1.2rem !important;
}

body.light-theme .woocommerce-checkout-review-order-table .order-total th {
    background: transparent !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Light Theme - Product Names and Quantities */
body.light-theme .woocommerce-checkout-review-order-table .product-name {
    color: #1a1a1a !important;
    font-weight: 500 !important;
}

body.light-theme .woocommerce-checkout-review-order-table .product-total {
    color: #495057 !important;
    font-weight: 600 !important;
}

/* Light Theme - Subtotal, Shipping, Tax rows */
body.light-theme .woocommerce-checkout-review-order-table .cart-subtotal th,
body.light-theme .woocommerce-checkout-review-order-table .cart-subtotal td,
body.light-theme .woocommerce-checkout-review-order-table .shipping th,
body.light-theme .woocommerce-checkout-review-order-table .shipping td,
body.light-theme .woocommerce-checkout-review-order-table .tax-rate th,
body.light-theme .woocommerce-checkout-review-order-table .tax-rate td {
    background: rgba(248, 249, 250, 0.5) !important;
    color: #6c757d !important;
    font-weight: 500 !important;
    padding: 12px 15px !important;
}

body.light-theme .woocommerce-checkout-review-order-table .cart-subtotal td,
body.light-theme .woocommerce-checkout-review-order-table .shipping td,
body.light-theme .woocommerce-checkout-review-order-table .tax-rate td {
    color: #495057 !important;
    font-weight: 600 !important;
}

/* Light Theme - Terms and Conditions */
body.light-theme .woocommerce-terms-and-conditions-wrapper {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-terms-and-conditions {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #1a1a1a !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-terms-and-conditions-checkbox-text {
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-terms-and-conditions-link {
    color: var(--neon-green) !important;
}

body.light-theme .woocommerce-terms-and-conditions-link:hover {
    color: #047a3a !important;
}

/* Light Theme - Place Order Button */
body.light-theme #place_order {
    background: linear-gradient(135deg, var(--neon-green) 0%, #047a3a 100%) !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(4, 122, 58, 0.3) !important;
}

body.light-theme #place_order:hover {
    background: linear-gradient(135deg, #047a3a 0%, var(--neon-green) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(4, 122, 58, 0.4) !important;
}

/* Light Theme - Validation Messages */
body.light-theme .woocommerce-error,
body.light-theme .woocommerce-message,
body.light-theme .woocommerce-info {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1a1a1a !important;
    border-left: 4px solid var(--neon-green) !important;
}

body.light-theme .woocommerce-error {
    border-left-color: #dc3545 !important;
    background: rgba(220, 53, 69, 0.1) !important;
}

body.light-theme .woocommerce-message {
    border-left-color: #28a745 !important;
    background: rgba(40, 167, 69, 0.1) !important;
}

/* WooCommerce Notices - Fixed Positioning */
.woocommerce-notices-wrapper {
    position: fixed !important;
    top: 80px !important; /* Below header */
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9999 !important;
    width: 90% !important;
    max-width: 600px !important;
    pointer-events: none !important;
}

.woocommerce-notices-wrapper > * {
    pointer-events: auto !important;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    background: rgba(220, 53, 69, 0.95) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(10px) !important;
    animation: slideInFromTop 0.3s ease-out !important;
}

.woocommerce-message {
    background: rgba(40, 167, 69, 0.95) !important;
}

.woocommerce-info {
    background: rgba(23, 162, 184, 0.95) !important;
}

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

/* Light Theme - WooCommerce Notices */
body.light-theme .woocommerce-error {
    background: rgba(220, 53, 69, 0.95) !important;
    color: #ffffff !important;
}

body.light-theme .woocommerce-message {
    background: rgba(40, 167, 69, 0.95) !important;
    color: #ffffff !important;
}

body.light-theme .woocommerce-info {
    background: rgba(23, 162, 184, 0.95) !important;
    color: #ffffff !important;
}

/* Light Theme - Checkout Form Container */
body.light-theme .woocommerce-checkout {
    background: transparent !important;
}

body.light-theme .woocommerce form.checkout {
    background: transparent !important;
}

body.light-theme .col2-set {
    background: transparent !important;
}

body.light-theme .col-1,
body.light-theme .col-2 {
    background: transparent !important;
}

/* Light Theme - WooCommerce Shortcode Specific Fixes */
body.light-theme .woocommerce {
    background: transparent !important;
    color: #1a1a1a !important;
}

body.light-theme .woocommerce * {
    color: inherit !important;
}

body.light-theme .woocommerce h1,
body.light-theme .woocommerce h2,
body.light-theme .woocommerce h3,
body.light-theme .woocommerce h4,
body.light-theme .woocommerce h5,
body.light-theme .woocommerce h6 {
    color: #1a1a1a !important;
}

body.light-theme .woocommerce p,
body.light-theme .woocommerce span,
body.light-theme .woocommerce div {
    color: #1a1a1a !important;
}

/* Light Theme - Checkout Billing/Shipping Fields */
body.light-theme .woocommerce-billing-fields,
body.light-theme .woocommerce-shipping-fields,
body.light-theme .woocommerce-additional-fields {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    backdrop-filter: blur(10px) !important;
}

body.light-theme .woocommerce-billing-fields h3,
body.light-theme .woocommerce-shipping-fields h3,
body.light-theme .woocommerce-additional-fields h3 {
    color: #1a1a1a !important;
    border-bottom: 2px solid rgba(4, 122, 58, 0.3) !important;
    padding-bottom: 15px !important;
    margin-bottom: 25px !important;
}

/* Light Theme - Payment Section */
body.light-theme .woocommerce-checkout-payment {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    backdrop-filter: blur(10px) !important;
}

body.light-theme .woocommerce-checkout-payment h3 {
    color: #1a1a1a !important;
    border-bottom: 2px solid rgba(4, 122, 58, 0.3) !important;
    padding-bottom: 15px !important;
    margin-bottom: 25px !important;
}

body.light-theme .wc_payment_method label {
    color: #1a1a1a !important;
}

/* Light Theme - Order Review */
body.light-theme .woocommerce-checkout-review-order-table th,
body.light-theme .woocommerce-checkout-review-order-table td {
    color: #1a1a1a !important;
    border-bottom-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-checkout-review-order-table th {
    color: rgba(0, 0, 0, 0.8) !important;
}

body.light-theme .woocommerce-checkout-review-order-table .order-total th,
body.light-theme .woocommerce-checkout-review-order-table .order-total td {
    color: var(--neon-green) !important;
}

/* Light Theme - Terms */
body.light-theme .woocommerce-terms-and-conditions-wrapper {
    background: rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-terms-and-conditions-wrapper label {
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-terms-and-conditions-checkbox-text {
    color: rgba(0, 0, 0, 0.9) !important;
}

/* Light Theme - Validation Messages */
body.light-theme .woocommerce-error {
    background: rgba(220, 53, 69, 0.1) !important;
    border: 1px solid rgba(220, 53, 69, 0.3) !important;
    color: #dc3545 !important;
}

body.light-theme .woocommerce-message {
    background: rgba(40, 167, 69, 0.1) !important;
    border-color: rgba(40, 167, 69, 0.3) !important;
    color: #28a745 !important;
}

body.light-theme .woocommerce-info {
    background: rgba(23, 162, 184, 0.1) !important;
    border-color: rgba(23, 162, 184, 0.3) !important;
    color: #17a2b8 !important;
}

.woocommerce {
    width: 100% !important;
}

/* Mobile Responsive - Login Only */
.woocommerce-form-login-toggle {
    padding: 15px !important;
    margin-bottom: 20px !important;
}

.woocommerce-form-login {
    padding: 20px !important;
    margin-bottom: 20px !important;
}

.woocommerce-form-login .button {
    padding: 12px 24px !important;
    font-size: 0.95rem !important;
}

/* Enhanced Login Section */
.woocommerce-form-login-toggle {
    background: rgba(12, 224, 107, 0.1) !important;
    border: 1px solid rgba(12, 224, 107, 0.3) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.woocommerce-form-login-toggle:hover {
    background: rgba(12, 224, 107, 0.15) !important;
    border-color: rgba(12, 224, 107, 0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(12, 224, 107, 0.2) !important;
}

.woocommerce-form-login-toggle .woocommerce-info {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.woocommerce-form-login-toggle .woocommerce-info::before {
    content: "👤";
    font-size: 1.3rem;
}

.woocommerce-form-login-toggle .showlogin {
    color: var(--primary-green) !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    padding: 8px 16px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    background: rgba(12, 224, 107, 0.2) !important;
}

.woocommerce-form-login-toggle .showlogin:hover {
    background: var(--primary-green) !important;
    color: #000000 !important;
    transform: scale(1.05) !important;
}

/* Login Form Styling - DEFAULT CLOSED */
.woocommerce-form-login {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 30px !important;
    margin-bottom: 30px !important;
    display: none !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

/* Checkout Login Form - FORCE CLOSED */
.woocommerce-checkout .woocommerce-form-login,
.woocommerce-checkout form.login,
.woocommerce-checkout form.woocommerce-form-login,
body.woocommerce-checkout .woocommerce-form-login {
    display: none !important;
    opacity: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce-checkout .woocommerce-form-login.login,
.woocommerce-checkout form.login.login,
.woocommerce-checkout form.woocommerce-form-login.login,
body.woocommerce-checkout .woocommerce-form-login.login {
    display: block !important;
    opacity: 1 !important;
    max-height: 500px !important;
    visibility: visible !important;
    height: auto !important;
    margin: 30px 0 !important;
    padding: 30px !important;
}

.woocommerce-form-login.login {
    display: block !important;
    opacity: 1 !important;
    max-height: 800px !important;
}

.woocommerce-form-login p {
    color: #ffffff !important;
    font-size: 1rem !important;
    margin-bottom: 20px !important;
}

.woocommerce-form-login .form-row {
    margin-bottom: 20px !important;
}

.woocommerce-form-login .form-row label {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.woocommerce-form-login .form-row .input-text {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.woocommerce-form-login .form-row .input-text:focus {
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 3px rgba(12, 224, 107, 0.2) !important;
    outline: none !important;
}

.woocommerce-form-login .form-row .input-text::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.woocommerce-form-login .button {
    width: 100% !important;
    padding: 15px 30px !important;
    background: linear-gradient(135deg, var(--primary-green), #0aa054) !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
}

.woocommerce-form-login .button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(12, 224, 107, 0.3) !important;
    background: linear-gradient(135deg, #0aa054, var(--primary-green)) !important;
}

.woocommerce-form-login .woocommerce-form-login__rememberme {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 15px 0 !important;
}

.woocommerce-form-login .woocommerce-form-login__rememberme input[type="checkbox"] {
    accent-color: var(--primary-green) !important;
}

.woocommerce-form-login .lost_password {
    text-align: center !important;
    margin-top: 15px !important;
}

.woocommerce-form-login .lost_password a {
    color: var(--primary-green) !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: all 0.2s ease !important;
}

.woocommerce-form-login .lost_password a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

.checkout-content .woocommerce-checkout {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.modern-checkout-header {
    text-align: center !important;
    margin-bottom: 32px !important;
    padding-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modern-checkout-header h1 {
    color: #ffffff !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin: 0 0 24px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    font-family: 'Inter', sans-serif !important;
}

.checkout-steps {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-bottom: 16px !important;
}

.step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 16px 20px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    min-width: 120px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
    opacity: 0.6 !important;
}

.step.active {
    background: rgba(12, 224, 107, 0.2) !important;
    border-color: var(--primary-green) !important;
    color: var(--primary-green) !important;
    box-shadow: 0 4px 15px rgba(12, 224, 107, 0.3) !important;
    transform: translateY(-2px) !important;
    opacity: 1 !important;
}

.step.completed {
    background: rgba(12, 224, 107, 0.15) !important;
    border-color: rgba(12, 224, 107, 0.6) !important;
    color: var(--primary-green) !important;
    opacity: 0.8 !important;
}

.step-number {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.step.active .step-number {
    background: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    color: #000000 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 0 3px rgba(12, 224, 107, 0.3) !important;
}

.step.completed .step-number {
    background: rgba(12, 224, 107, 0.8) !important;
    border-color: var(--primary-green) !important;
    color: #000000 !important;
}

.step-arrow {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    margin: 0 8px !important;
}

.step-label {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center !important;
}

.step.active .step-label {
    color: var(--primary-green) !important;
    font-weight: 700 !important;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    width: 100% !important;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .checkout-content {
        grid-template-columns: 2fr 1fr;
    }
}

/* Shortcode içeriği için tam genişlik */
.checkout-content .woocommerce {
    width: 100% !important;
    max-width: none !important;
}

.checkout-content .woocommerce-checkout {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    align-items: start !important;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .checkout-content .woocommerce-checkout {
        grid-template-columns: 2fr 1fr !important;
    }
}

.checkout-section {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 24px !important;
    margin-bottom: 24px !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.checkout-section:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(12, 224, 107, 0.3) !important;
    box-shadow: 0 4px 15px rgba(12, 224, 107, 0.1) !important;
}

.checkout-section h3 {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin: 0 0 20px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-family: 'Inter', sans-serif !important;
}

.checkout-section h3 i {
    color: var(--primary-green) !important;
    font-size: 1.2rem !important;
}

.checkout-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-right {
    position: sticky;
    top: 20px;
}

/* Checkout Form Fields - Cart Kalitesinde */
.woocommerce-checkout .form-row {
    margin-bottom: 20px !important;
}

.woocommerce-checkout .form-row label {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    display: block !important;
    font-size: 0.95rem !important;
}

.woocommerce-checkout .form-row .required {
    color: var(--primary-green) !important;
}

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    font-family: 'Inter', sans-serif !important;
    backdrop-filter: blur(5px) !important;
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
    outline: none !important;
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 3px rgba(12, 224, 107, 0.3) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px) !important;
}

.woocommerce-checkout .form-row input::placeholder,
.woocommerce-checkout .form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic !important;
}

.woocommerce-checkout .form-row select {
    cursor: pointer !important;
    appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23ffffff" d="M6 9L1.5 4.5h9z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 40px !important;
}

.woocommerce-checkout .form-row select:hover {
    border-color: rgba(12, 224, 107, 0.4) !important;
    background: rgba(255, 255, 255, 0.12) !important;
}

/* Dark Theme - Select Dropdown Options */
body:not(.light-theme) .woocommerce-checkout .form-row select option {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border: none !important;
    padding: 8px 12px !important;
}

body:not(.light-theme) .woocommerce-checkout .form-row select option:hover,
body:not(.light-theme) .woocommerce-checkout .form-row select option:focus,
body:not(.light-theme) .woocommerce-checkout .form-row select option:checked {
    background: #2d2d2d !important;
    color: var(--primary-green) !important;
}

/* Dark Theme - Select Dropdown Container */
body:not(.light-theme) .woocommerce-checkout .form-row select {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* Light Theme - Select Dropdown Options (keep default) */
body.light-theme .woocommerce-checkout .form-row select option {
    background: #ffffff !important;
    color: #333333 !important;
}

body.light-theme .woocommerce-checkout .form-row select option:hover,
body.light-theme .woocommerce-checkout .form-row select option:focus,
body.light-theme .woocommerce-checkout .form-row select option:checked {
    background: #f0f8ff !important;
    color: #0CE06B !important;
}

.woocommerce-checkout .form-row .woocommerce-input-wrapper {
    position: relative;
}

/* Checkout Payment Methods */
.wc_payment_methods {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 15px !important;
    padding: 24px !important;
    margin-bottom: 24px !important;
    list-style: none !important;
    backdrop-filter: blur(10px) !important;
}

.wc_payment_method {
    margin-bottom: 16px !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
}

/* SumUp specific - don't increase padding for SumUp method */
.wc_payment_method.payment_method_sumup {
    padding: 20px !important; /* Keep normal padding for SumUp */
    min-height: auto !important; /* Don't force height for SumUp */
}

/* Dark Theme - SumUp Payment Method Container */
body:not(.light-theme) .wc_payment_method.payment_method_sumup {
    background: linear-gradient(135deg, rgba(12, 224, 107, 0.15) 0%, rgba(0, 212, 170, 0.15) 100%) !important;
    border-color: rgba(12, 224, 107, 0.4) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

/* SumUp Payment Box - Dark Theme */
.payment_box.payment_method_sumup {
    position: relative !important;
    box-sizing: border-box !important;
    width: 100% !important;
    padding: 20px !important;
    margin: 16px 0 !important;
    font-size: 0.92em !important;
    border-radius: 12px !important;
    line-height: 1.5 !important;
    background: rgba(30, 30, 30, 0.95) !important; /* Dark background */
    border: 1px solid rgba(0, 212, 170, 0.3) !important;
    color: #ffffff !important; /* White text for dark theme */
    min-height: 100px !important;
    display: none !important; /* Hidden by default */
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
}

/* Show SumUp payment box when method is selected */
.wc_payment_method.payment_method_sumup input[type="radio"]:checked ~ .payment_box.payment_method_sumup {
    display: block !important;
    animation: slideDown 0.3s ease-out !important;
}

/* SumUp payment box content - Dark Theme */
.payment_box.payment_method_sumup p {
    margin: 0 0 12px 0 !important;
    font-size: 14px !important;
    color: #ffffff !important; /* White text for dark theme */
}

.payment_box.payment_method_sumup .sumup-info {
    background: rgba(40, 40, 40, 0.9) !important; /* Dark info box */
    padding: 15px !important;
    border-radius: 8px !important;
    border-left: 4px solid #00D4AA !important;
    color: #ffffff !important; /* White text */
}

/* Animation for payment box */
@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* Mobile Responsive - SumUp Payment Box Full Width */
@media (max-width: 768px) {
    .payment_box.payment_method_sumup {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 8px !important;
        padding: 16px !important;
    }
    
    .wc_payment_method.payment_method_sumup {
        width: 100% !important;
        margin: 0 0 16px 0 !important;
        padding: 16px !important;
    }
    
    .payment_box.payment_method_sumup .sumup-info {
        padding: 12px !important;
        border-radius: 6px !important;
    }
    
    .payment_box.payment_method_sumup p {
        font-size: 13px !important;
        margin-bottom: 10px !important;
    }
}

.wc_payment_method:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(12, 224, 107, 0.3) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(12, 224, 107, 0.1) !important;
}

.wc_payment_method input[type="radio"] {
    accent-color: var(--primary-green);
}

/* Place Order Button */
#place_order {
    background: linear-gradient(135deg, var(--primary-green), #00d4ff) !important;
    color: #000000 !important;
    border: none !important;
    padding: 18px 32px !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: 24px !important;
    box-shadow: 0 6px 20px rgba(12, 224, 107, 0.4) !important;
    font-family: 'Inter', sans-serif !important;
    position: relative !important;
    overflow: hidden !important;
}

#place_order:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(12, 224, 107, 0.6) !important;
}

#place_order:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(12, 224, 107, 0.4) !important;
}

#place_order:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(12, 224, 107, 0.2) !important;
}

/* Order Review */
.woocommerce-checkout-review-order-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 20px !important;
    background: transparent !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    text-align: left !important;
    background: transparent !important;
}

.woocommerce-checkout-review-order-table th {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem !important;
}

.woocommerce-checkout-review-order-table .cart_item td {
    font-size: 0.95rem !important;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 1.2rem !important;
    color: var(--primary-green) !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    padding-top: 16px !important;
}

.woocommerce-checkout-review-order-table .product-name {
    font-weight: 600 !important;
}

.woocommerce-checkout-review-order-table .product-total {
    text-align: right !important;
    font-weight: 600 !important;
}

/* Checkout Validation Errors */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    background: rgba(220, 53, 69, 0.1) !important;
    border: 1px solid rgba(220, 53, 69, 0.3) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    margin-bottom: 20px !important;
}

.woocommerce-message {
    background: rgba(40, 167, 69, 0.1) !important;
    border-color: rgba(40, 167, 69, 0.3) !important;
}

.woocommerce-info {
    background: rgba(23, 162, 184, 0.1) !important;
    border-color: rgba(23, 162, 184, 0.3) !important;
}

/* Checkout Terms */
.woocommerce-terms-and-conditions-wrapper {
    margin: 24px 0 !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.woocommerce-terms-and-conditions-wrapper label {
    color: #ffffff !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    cursor: pointer !important;
}

.woocommerce-terms-and-conditions-wrapper input[type="checkbox"] {
    accent-color: var(--primary-green) !important;
    margin: 0 !important;
}

.woocommerce-terms-and-conditions-checkbox-text {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    font-family: 'Inter', sans-serif !important;
}

/* Checkout Mobile Styles - Cart Kalitesinde */
@media (max-width: 768px) {
    .modern-checkout-wrapper {
        margin: 8px !important;
        padding: 20px !important;
        border-radius: 15px !important;
        max-width: calc(100% - 16px) !important;
    }
    
    .checkout-content .woocommerce-checkout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .modern-checkout-header {
        margin-bottom: 24px !important;
        padding-bottom: 16px !important;
    }
    
    .modern-checkout-header h1 {
        font-size: 1.4rem !important;
        margin-bottom: 16px !important;
    }
    
    .checkout-steps {
        flex-wrap: wrap !important;
        gap: 12px !important;
        justify-content: center !important;
    }
    
    .step {
        min-width: 100px !important;
        padding: 12px 16px !important;
    }
    
    .step-number {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.9rem !important;
    }
    
    .step-label {
        font-size: 0.8rem !important;
    }
    
    .step-arrow {
        display: none !important;
    }
    
    .checkout-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .checkout-right {
        position: static !important;
        order: -1 !important;
    }
    
    .checkout-section {
        padding: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .checkout-section h3 {
        font-size: 1.2rem !important;
        margin-bottom: 16px !important;
    }
    
    .woocommerce-checkout .form-row input,
    .woocommerce-checkout .form-row select,
    .woocommerce-checkout .form-row textarea {
        font-size: 16px !important;
        padding: 14px 16px !important;
    }
    
    #place_order {
        padding: 16px 24px !important;
        font-size: 1rem !important;
        margin-top: 20px !important;
    }
    
    .wc_payment_method {
        padding: 16px !important;
    }
    
    .wc_payment_methods {
        padding: 0px !important;
    }
    
    
    #place_order {
        padding: 14px 24px !important;
        font-size: 1rem !important;
    }
}

.woocommerce-checkout .form-row input::placeholder,
.woocommerce-checkout .form-row textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Order Review */
.order-review-section {
    position: sticky;
    top: 20px;
}

.woocommerce-checkout-review-order {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
}

.woocommerce-checkout-review-order table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-checkout-review-order th,
.woocommerce-checkout-review-order td {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.woocommerce-checkout-review-order .order-total th,
.woocommerce-checkout-review-order .order-total td {
    font-size: 1.2rem;
    color: var(--primary-green);
    font-weight: 700;
    border-bottom: none;
    padding-top: 16px;
}

/* Payment Methods */
.wc_payment_methods {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.wc_payment_method {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.wc_payment_method:hover {
    border-color: rgba(12, 224, 107, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.wc_payment_method label {
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wc_payment_method input[type="radio"] {
    accent-color: var(--primary-green);
}

/* Place Order Button */
#place_order {
    background: linear-gradient(135deg, var(--primary-green), #00d4ff) !important;
    color: #000000 !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin-top: 20px !important;
}

#place_order:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(12, 224, 107, 0.5) !important;
}

/* Mobile Checkout */
@media (max-width: 768px) {
    .modern-checkout-wrapper {
        margin: 8px;
        padding: 16px;
        border-radius: 15px;
    }
    
    .modern-checkout-header h1 {
        font-size: 1.5rem;
    }
    
    .checkout-steps {
        gap: 8px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkout-section {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .checkout-section h3 {
        font-size: 1.1rem;
    }
    
    .order-review-section {
        position: static;
        order: -1;
    }
    
    /* COUPON SECTION REMOVED FROM MOBILE */
}

/* WooCommerce Block-based Checkout Styles */
.wp-block-woocommerce-checkout {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(12, 224, 107, 0.2);
    border-radius: 20px;
    padding: 24px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 8px 25px rgba(12, 224, 107, 0.1);
}

.wp-block-woocommerce-checkout-fields-block {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
}

/* Block Checkout Sections */
.wp-block-woocommerce-checkout-contact-information-block,
.wp-block-woocommerce-checkout-billing-address-block,
.wp-block-woocommerce-checkout-shipping-address-block,
.wp-block-woocommerce-checkout-shipping-methods-block,
.wp-block-woocommerce-checkout-payment-block,
.wp-block-woocommerce-checkout-additional-information-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 24px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

/* Block Checkout Totals */
.wp-block-woocommerce-checkout-totals-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 24px;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 20px;
}

.wp-block-woocommerce-checkout-order-summary-block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
}

/* Block Form Fields */
.wc-block-components-text-input,
.wc-block-components-select-input,
.wc-block-components-textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-text-input:focus,
.wc-block-components-select-input:focus,
.wc-block-components-textarea:focus {
    outline: none !important;
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 2px rgba(12, 224, 107, 0.2) !important;
}

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

/* Block Labels */
.wc-block-components-text-input label,
.wc-block-components-select-input label,
.wc-block-components-textarea label,
.wc-block-checkout__form label {
    color: #ffffff !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Block Payment Methods */
.wc-block-components-radio-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    margin-bottom: 12px !important;
    padding: 16px !important;
    transition: all 0.3s ease !important;
}

.wc-block-components-radio-control:hover {
    border-color: rgba(12, 224, 107, 0.3) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.wc-block-components-radio-control label {
    color: #ffffff !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

.wc-block-components-radio-control input[type="radio"] {
    accent-color: var(--primary-green) !important;
}

/* Block Place Order Button */
.wc-block-components-checkout-place-order-button {
    background: linear-gradient(135deg, var(--primary-green), #00d4ff) !important;
    color: #000000 !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin-top: 20px !important;
}

.wc-block-components-checkout-place-order-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(12, 224, 107, 0.5) !important;
}

/* Block Express Payment */
.wp-block-woocommerce-checkout-express-payment-block {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}

/* Block Order Summary Items */
.wc-block-components-order-summary-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 12px 0 !important;
    color: #ffffff !important;
}

.wc-block-components-order-summary-item:last-child {
    border-bottom: none !important;
}

.wc-block-components-totals-item {
    color: #ffffff !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.wc-block-components-totals-item--total {
    font-size: 1.2rem !important;
    color: var(--primary-green) !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    padding-top: 16px !important;
}

/* Mobile Block Checkout */
@media (max-width: 768px) {
    .wp-block-woocommerce-checkout {
        margin: 8px;
        padding: 16px;
        border-radius: 15px;
    }
    
    .wp-block-woocommerce-checkout-fields-block {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wp-block-woocommerce-checkout-totals-block {
        position: static;
        order: -1;
    }
    
    .wp-block-woocommerce-checkout-contact-information-block,
    .wp-block-woocommerce-checkout-billing-address-block,
    .wp-block-woocommerce-checkout-shipping-address-block,
    .wp-block-woocommerce-checkout-shipping-methods-block,
    .wp-block-woocommerce-checkout-payment-block,
    .wp-block-woocommerce-checkout-additional-information-block {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .wc-block-components-totals-coupon {
        flex-direction: column;
        gap: 8px;
    }
    
    .wc-block-components-totals-coupon input,
    .wc-block-components-totals-coupon button {
        width: 100% !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .modern-cart-wrapper {
        margin: 5px;
        padding: 12px;
    }
    
    .cart-item-card {
        padding: 12px;
        gap: 10px;
    }
    
    .product-image {
        width: 60px;
        height: 60px;
    }
    
    .product-name {
        font-size: 0.95rem;
    }
    
    .quantity-controls .qty {
        width: 45px;
        padding: 5px 6px;
    }
    
    .coupon-input-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .coupon-input,
    .coupon-btn {
        width: 100%;
    }
}

/* Light Theme Overrides */
body.light-theme .modern-cart-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .modern-cart-header {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .modern-cart-header h2 {
    color: #1a1a1a;
}

body.light-theme .cart-empty-message {
    color: rgba(0, 0, 0, 0.7);
}

body.light-theme .cart-empty-message h3 {
    color: #1a1a1a;
}

body.light-theme .cart-item-card {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .cart-item-card:hover {
    background: rgba(0, 0, 0, 0.05);
}

body.light-theme .product-name,
body.light-theme .product-subtotal {
    color: #1a1a1a;
}

body.light-theme .quantity-controls .qty {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

body.light-theme .coupon-input {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
}

body.light-theme .coupon-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

body.light-theme .cart-actions {
    border-top-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .cart_totals {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-theme .cart_totals h2,
body.light-theme .cart_totals th,
body.light-theme .cart_totals td {
    color: #1a1a1a;
}

body.light-theme .cart_totals th,
body.light-theme .cart_totals td {
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

  /* --- Checkout Mobile/Tablet Responsive Fix Overrides (High Specificity) --- */
  /* Root grid adjustments for Woo Shortcode-based checkout */
  @media (max-width: 992px) {
    .modern-checkout-wrapper .woocommerce-checkout .checkout-content {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 20px !important;
      width: 100% !important;
    }
    .modern-checkout-wrapper {
      padding: 20px !important;
    }
    .modern-checkout-wrapper .checkout-right,
    .modern-checkout-wrapper .order-review-section {
      position: static !important;
      top: auto !important;
      order: -1 !important;
    }
}

/* Extra safeguards for small devices */
@media (max-width: 768px) {
    .modern-checkout-wrapper .checkout-section {
      padding: 16px !important;
      margin-bottom: 16px !important;
    }
    .modern-checkout-wrapper .modern-checkout-header h1 {
      font-size: 1.3rem !important;
    }
}

/* Prevent order review/table overflows and long texts breaking layout */
.modern-checkout-wrapper #order_review,
.modern-checkout-wrapper .woocommerce-checkout-review-order,
.modern-checkout-wrapper .woocommerce-checkout-review-order table {
    width: 100% !important;
}
.modern-checkout-wrapper .woocommerce-checkout-review-order table {
    table-layout: fixed !important;
}
.modern-checkout-wrapper .woocommerce-checkout-review-order th,
.modern-checkout-wrapper .woocommerce-checkout-review-order td,
.modern-checkout-wrapper .woocommerce-checkout-review-order-table th,
.modern-checkout-wrapper .woocommerce-checkout-review-order-table td {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
}

/* Woo default two-column forms should stack full width on mobile */
.modern-checkout-wrapper .col2-set .col-1,
.modern-checkout-wrapper .col2-set .col-2 {
    width: 100% !important;
    float: none !important;
}
.modern-checkout-wrapper .woocommerce-checkout .form-row,
.modern-checkout-wrapper .woocommerce form .form-row {
    width: 100% !important;
    clear: both !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Payment box full width and safe in small screens */
.modern-checkout-wrapper .woocommerce-checkout #payment,
.modern-checkout-wrapper .woocommerce-checkout .wc_payment_methods {
    width: 100% !important;
}

/* Block-based checkout (Gutenberg) parity */
@media (max-width: 992px) {
    .modern-checkout-wrapper .wp-block-woocommerce-checkout-fields-block {
      grid-template-columns: 1fr !important;
      gap: 20px !important;
    }
    .modern-checkout-wrapper .wp-block-woocommerce-checkout-totals-block {
      position: static !important;
      order: -1 !important;
    }
}

/* =============================================================================
   SUMUP PAYMENT FORM LAYOUT OPTIMIZATION
   ============================================================================= */

/* SumUp Payment Form Layout Optimization */
.wc-sumup-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.8) !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 9999 !important;
    padding: 20px !important;
}

.wc-sumup-modal.disabled {
    display: none !important;
}

.wc-sumup-modal.no-modal {
    position: relative !important;
    background: transparent !important;
    padding: 0 !important;
    display: block !important;
}

.wc-sumup-modal #sumup-card {
    width: 100% !important;
    max-width: 600px !important;
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
}

/* SumUp Widget Container Optimization */
.sumup-payment-widget-theme {
    width: 100% !important;
    max-width: none !important;
}

.sumup-payment-widget-theme .sumup-payment-1cj556 {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Form Container */
.sumup-payment-widget-theme form[data-testid="card-form"] {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Header Section */
.sumup-payment-8hqq0d {
    margin-bottom: 20px !important;
    text-align: center !important;
}

.sumup-payment-obe8t0 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
    margin: 10px 0 !important;
}

/* Form Fields Container */
.sumup-payment-1fioapt {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sumup-payment-1261kvk {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
}

/* Individual Field Containers */
.sumup-payment-142vw6r {
    width: 100% !important;
    margin: 0 !important;
}

.sumup-payment-1ago99h {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin-bottom: 15px !important;
}

.sumup-payment-1u0fkm7 {
    display: block !important;
    font-weight: 500 !important;
    color: #333 !important;
    margin-bottom: 8px !important;
    font-size: 0.9rem !important;
    order: -1 !important; /* Label always on top */
}

/* Dark theme label colors */
body:not(.light-theme) .sumup-payment-1u0fkm7 {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Light theme label colors */
body.light-theme .sumup-payment-1u0fkm7 {
    color: #333 !important;
}

/* Input Fields - Modern Glass Design */
.sumup-payment-13hxhwb {
    width: 100% !important;
    height: 45px !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 16px !important;
    padding: 0 20px !important;
    font-size: 16px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.sumup-payment-13hxhwb:focus {
    border-color: var(--primary-green) !important;
    outline: none !important;
    box-shadow: 0 0 0 4px rgba(12, 224, 107, 0.2), 0 12px 40px rgba(12, 224, 107, 0.15) !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    transform: translateY(-2px) !important;
}

/* Expiration and CVV Row */
.sumup-payment-de2kua {
    display: flex !important;
    gap: 15px !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sumup-payment-de2kua .sumup-payment-142vw6r {
    flex: 1 !important;
}

/* Card Number Field */
.sumup-payment-cssveg {
    width: 100% !important;
}

/* Submit Button - Modern Glass Design without Icons */
.sumup-payment-18g68xa {
    width: 100% !important;
    background: linear-gradient(135deg, rgba(12, 224, 107, 0.9) 0%, rgba(0, 212, 170, 0.9) 100%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    color: #000000 !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    padding: 15px 20px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    margin-top: 20px !important;
    box-shadow: 0 8px 30px rgba(12, 224, 107, 0.4), 
                0 4px 15px rgba(0, 212, 170, 0.3) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-align: center !important;
}

.sumup-payment-18g68xa:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(12, 224, 107, 0.5) !important;
}

/* Close Button */
#wc-sumup-payment-modal-close {
    position: absolute !important;
    top: -15px !important;
    right: -15px !important;
    width: 35px !important;
    height: 35px !important;
    background: #ffffff !important;
    border: 2px solid #e1e5e9 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-weight: bold !important;
    color: #666 !important;
    transition: all 0.3s ease !important;
    z-index: 10 !important;
}

#wc-sumup-payment-modal-close:hover {
    background: #f5f5f5 !important;
    border-color: #ccc !important;
    color: #333 !important;
}

/* Apple Pay Button (if present) */
.sumup-payment-atlav7 {
    width: 100% !important;
    margin-bottom: 15px !important;
    border-radius: 8px !important;
}

/* Error Messages */
.sumup-payment-e8e2dx {
    background: #fff3cd !important;
    border: 1px solid #ffeaa7 !important;
    color: #856404 !important;
    padding: 10px !important;
    border-radius: 8px !important;
    margin: 10px 0 !important;
    font-size: 0.9rem !important;
}

/* Override existing inline styles */
.wc-sumup-modal {
    position: relative !important;
    background: transparent !important;
    height: auto !important;
    overflow: visible !important;
}

.wc-sumup-modal #sumup-card {
    width: 100% !important;
    max-width: none !important;
    position: static !important;
    max-height: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    min-height: auto !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Remove nested container constraints */
.payment_box.payment_method_sumup {
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

/* Light theme payment box */
body.light-theme .payment_box.payment_method_sumup {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Hide close button in no-modal mode */
.wc-sumup-modal.no-modal #wc-sumup-payment-modal-close {
    display: none !important;
}

/* Ensure the widget takes full width of payment box */
.payment_box.payment_method_sumup .sumup-payment-widget-theme {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Alternative payment provider container */
div[data-testid="alternative-payment-provider"] {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Main widget container */
.sumup-payment-1cyeh1h {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment_box.payment_method_sumup {
        padding: 10px !important;
        margin: 0 !important;
    }
    
    /* Fix SumUp form container overflow */
    .wc-sumup-modal,
    .wc-sumup-modal #sumup-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
    
    /* All SumUp widget containers */
    .sumup-payment-widget-theme,
    .sumup-payment-1cj556,
    .sumup-payment-1cyeh1h,
    div[data-testid="alternative-payment-provider"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Form container */
    form[data-testid="card-form"] {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
    
    /* Field containers */
    .sumup-payment-1261kvk {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 10px !important;
        overflow: hidden !important;
    }
    
    .sumup-payment-142vw6r {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    
    .sumup-payment-1ago99h {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        margin-bottom: 15px !important;
    }
    
    /* Mobile label styling */
    .sumup-payment-1u0fkm7 {
        order: -1 !important;
        margin-bottom: 8px !important;
        font-size: 0.85rem !important;
        font-weight: 600 !important;
    }
    
    /* Expiration and CVV row */
    .sumup-payment-de2kua {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Input fields */
    .sumup-payment-13hxhwb {
        width: 100% !important;
        max-width: 100% !important;
        height: 45px !important;
        font-size: 16px !important; /* Prevent zoom on iOS */
        box-sizing: border-box !important;
        padding: 0 12px !important;
    }
    
    /* Submit button */
    .sumup-payment-18g68xa {
        width: 100% !important;
        max-width: 100% !important;
        padding: 15px 20px !important;
        font-size: 1.1rem !important;
        margin-top: 15px !important;
        box-sizing: border-box !important;
    }
    
    /* Header section */
    .sumup-payment-8hqq0d {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
    }
    
    /* Card number field */
    .sumup-payment-cssveg {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* =============================================================================
   ORDER PAY PAGE MODERN STYLING
   ============================================================================= */

/* Order Pay Page Container */
body.woocommerce-order-pay {
    background: var(--dark-bg) !important;
    color: var(--light-text) !important;
}

.woocommerce-order-pay .site-main {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
}

/* Order Pay Header */
.woocommerce-order-pay .entry-header {
    text-align: center !important;
    margin-bottom: 2rem !important;
    padding: 2rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
}

.woocommerce-order-pay .entry-title {
    color: var(--light-text) !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.woocommerce-order-pay .entry-title::before {
    content: "💳" !important;
    font-size: 1.5rem !important;
}

/* Order Details Card */
.woocommerce-order-pay .woocommerce-table {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    overflow: hidden !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.woocommerce-order-pay .woocommerce-table thead th {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--light-text) !important;
    font-weight: 600 !important;
    padding: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 1rem !important;
}

.woocommerce-order-pay .woocommerce-table tbody td {
    padding: 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: var(--light-text) !important;
    vertical-align: middle !important;
}

.woocommerce-order-pay .woocommerce-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.woocommerce-order-pay .woocommerce-table .product-name {
    font-weight: 600 !important;
    color: var(--primary-green) !important;
}

.woocommerce-order-pay .woocommerce-table .product-total {
    font-weight: 700 !important;
    color: var(--primary-green) !important;
    text-align: right !important;
}

/* Order Total Section */
.woocommerce-order-pay .woocommerce-table tfoot {
    background: rgba(255, 255, 255, 0.08) !important;
}

.woocommerce-order-pay .woocommerce-table tfoot th,
.woocommerce-order-pay .woocommerce-table tfoot td {
    padding: 1.5rem !important;
    font-weight: 600 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.woocommerce-order-pay .woocommerce-table tfoot .order-total th,
.woocommerce-order-pay .woocommerce-table tfoot .order-total td {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--primary-green) !important;
}

/* Payment Section */
.woocommerce-order-pay #order_review {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    padding: 2rem !important;
    margin-bottom: 2rem !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.woocommerce-order-pay #order_review h3 {
    color: var(--light-text) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin: 0 0 1.5rem 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.woocommerce-order-pay #order_review h3::before {
    content: "🔐" !important;
    font-size: 1.2rem !important;
}

/* Payment Methods */
.woocommerce-order-pay .wc_payment_methods {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 2rem !important;
}

.woocommerce-order-pay .wc_payment_method {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin-bottom: 1rem !important;
    transition: all 0.3s ease !important;
}

.woocommerce-order-pay .wc_payment_method:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(12, 224, 107, 0.3) !important;
    transform: translateY(-2px) !important;
}

.woocommerce-order-pay .wc_payment_method input[type="radio"] {
    accent-color: var(--primary-green) !important;
    transform: scale(1.2) !important;
    margin-right: 12px !important;
}

.woocommerce-order-pay .wc_payment_method label {
    color: var(--light-text) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

/* Payment Description */
.woocommerce-order-pay .payment_box {
    background: rgba(12, 224, 107, 0.1) !important;
    border: 1px solid rgba(12, 224, 107, 0.3) !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    margin-top: 1rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Place Order Button */
.woocommerce-order-pay #place_order {
    width: 100% !important;
    background: linear-gradient(135deg, var(--primary-green) 0%, #00ff88 100%) !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 18px 24px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(12, 224, 107, 0.3) !important;
    margin-top: 1rem !important;
}

.woocommerce-order-pay #place_order:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(12, 224, 107, 0.5) !important;
}

/* Order Info Notice */
.woocommerce-order-pay .woocommerce-info {
    background: rgba(0, 122, 255, 0.1) !important;
    border: 1px solid rgba(0, 122, 255, 0.3) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    margin-bottom: 2rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-left: 4px solid #007aff !important;
}

.woocommerce-order-pay .woocommerce-info::before {
    content: "ℹ️" !important;
    margin-right: 8px !important;
}

/* Light Theme Overrides */
body.light-theme.woocommerce-order-pay {
    background: #ffffff !important;
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-order-pay .entry-header {
    background: rgba(0, 0, 0, 0.03) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-order-pay .entry-title {
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-order-pay .woocommerce-table {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-order-pay .woocommerce-table thead th {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #1a1a1a !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-order-pay .woocommerce-table tbody td {
    color: #1a1a1a !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

body.light-theme .woocommerce-order-pay .woocommerce-table tbody tr:hover {
    background: rgba(0, 0, 0, 0.02) !important;
}

body.light-theme .woocommerce-order-pay .woocommerce-table .product-name,
body.light-theme .woocommerce-order-pay .woocommerce-table .product-total {
    color: var(--neon-green) !important;
}

body.light-theme .woocommerce-order-pay .woocommerce-table tfoot {
    background: rgba(0, 0, 0, 0.04) !important;
}

body.light-theme .woocommerce-order-pay .woocommerce-table tfoot .order-total th,
body.light-theme .woocommerce-order-pay .woocommerce-table tfoot .order-total td {
    color: var(--neon-green) !important;
}

body.light-theme .woocommerce-order-pay #order_review {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-order-pay #order_review h3 {
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-order-pay .wc_payment_method {
    background: rgba(0, 0, 0, 0.02) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .woocommerce-order-pay .wc_payment_method:hover {
    background: rgba(0, 0, 0, 0.04) !important;
    border-color: rgba(4, 122, 58, 0.3) !important;
}

body.light-theme .woocommerce-order-pay .wc_payment_method label {
    color: #1a1a1a !important;
}

body.light-theme .woocommerce-order-pay .payment_box {
    background: rgba(4, 122, 58, 0.1) !important;
    border-color: rgba(4, 122, 58, 0.3) !important;
    color: rgba(0, 0, 0, 0.8) !important;
}

body.light-theme .woocommerce-order-pay #place_order {
    background: linear-gradient(135deg, var(--neon-green) 0%, #00b366 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(4, 122, 58, 0.3) !important;
}

body.light-theme .woocommerce-order-pay #place_order:hover {
    box-shadow: 0 8px 25px rgba(4, 122, 58, 0.5) !important;
}

body.light-theme .woocommerce-order-pay .woocommerce-info {
    background: rgba(0, 122, 255, 0.05) !important;
    border-color: rgba(0, 122, 255, 0.2) !important;
    color: rgba(0, 0, 0, 0.8) !important;
}

/* Mobile Responsive for Order Pay */
@media (max-width: 768px) {
    .woocommerce-order-pay .site-main {
        padding: 1rem !important;
    }
    
    .woocommerce-order-pay .entry-header {
        padding: 1.5rem !important;
    }
    
    .woocommerce-order-pay .entry-title {
        font-size: 1.5rem !important;
    }
    
    .woocommerce-order-pay .woocommerce-table thead th,
    .woocommerce-order-pay .woocommerce-table tbody td,
    .woocommerce-order-pay .woocommerce-table tfoot th,
    .woocommerce-order-pay .woocommerce-table tfoot td {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .woocommerce-order-pay #order_review {
        padding: 0px !important;
    }
    
    /* SumUp form mobile adjustments */
    .woocommerce-order-pay .payment_box.payment_method_sumup {
        padding: 10px !important;
        margin: 0 !important;
    }
    
    .woocommerce-order-pay .wc-sumup-modal #sumup-card {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .woocommerce-order-pay .sumup-payment-widget-theme {
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .woocommerce-order-pay .sumup-payment-13hxhwb {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce-order-pay .sumup-payment-142vw6r {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .woocommerce-order-pay .sumup-payment-1261kvk {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        gap: 10px !important;
    }
    
    .woocommerce-order-pay .sumup-payment-de2kua {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    
    .woocommerce-order-pay .sumup-payment-1ago99h {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Ensure all SumUp containers respect mobile boundaries */
    .woocommerce-order-pay .sumup-payment-widget-theme,
    .woocommerce-order-pay .sumup-payment-1cj556,
    .woocommerce-order-pay .sumup-payment-1cyeh1h,
    .woocommerce-order-pay div[data-testid="alternative-payment-provider"] {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .woocommerce-order-pay .wc_payment_method {
        padding: 0px !important;
    }
    
    .woocommerce-order-pay #place_order {
        padding: 16px 20px !important;
        font-size: 1.1rem !important;
    }
}
