/*
	Theme Name: Hello Elementor Child
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: A lightweight and minimalist WordPress theme for Elementor page builder.
	Author: Coma
	Template: hello-elementor
	Version: 2.8.1
	Stable tag: 2.8.1
	Requires at least: 5.9
	Tested up to: 6.2
	Requires PHP: 7.0
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Description: A lightweight, plain-vanilla, best suited for building your site using Elementor website builder. Visit https://elementor.com/hello-theme/ to learn more.
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

/* Custom Footer Styles */
.custom-footer {
    background: #1A232A;
    border-radius: 32px;
    padding: 36px;
    margin: 24px auto;
    width: 1392px;
    max-width: calc(100% - 48px);
    height: 301px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
}

/* Logo and Social Section */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Navigation Links */
.footer-nav {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: center;
    align-items: flex-start;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: #FFD700;
    text-decoration: none;
}

/* Company Info */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-end;
    text-align: right;
}

.company-info {
    color: #FFFFFF;
}

.company-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #FFFFFF;
}

.company-address {
    font-size: 14px;
    margin: 0 0 20px 0;
    color: #FFFFFF;
    opacity: 0.8;
}

.company-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #FFFFFF;
    flex-direction: row-reverse;
}

.contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
}

.payment-icon {
    height: 32px;
    width: auto;
    border-radius: 6px;
}

/* Footer Responsive Design */
@media (max-width: 1440px) {
    .custom-footer {
        width: calc(100% - 48px);
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .custom-footer {
        margin: 16px auto;
        width: calc(100% - 32px);
        padding: 24px;
        height: auto;
        min-height: 200px;
    }
    
    .footer-container {
        gap: 30px;
        align-items: flex-start;
    }
    
    .footer-nav {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .custom-footer {
        border-radius: 16px;
        padding: 20px;
        height: auto;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
    
    .footer-nav {
        flex-direction: row;
        gap: 40px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .footer-nav-column {
        gap: 12px;
    }
    
    .footer-company {
        width: 100%;
        align-items: flex-start;
        text-align: left;
    }
    
    .company-contacts {
        align-items: flex-start;
    }
    
    .contact-item {
        flex-direction: row;
    }
    
    .payment-methods {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .custom-footer {
        margin: 12px auto;
        width: calc(100% - 24px);
        padding: 16px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .payment-methods {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .payment-icon {
        height: 24px;
    }
}

/* ===== CUSTOM MY ACCOUNT STYLES ===== */

/* Main Account Wrapper */
.custom-my-account-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sidebar Navigation */
.custom-account-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.custom-account-navigation {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
}

/* Balance Section */
.account-balance-section {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 16px;
    margin-bottom: 32px;
    border: 1px solid #E5E7EB;
}

.balance-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.balance-info {
    flex: 1;
    margin-left: 8px;
}

.balance-label {
    display: block;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 4px;
    font-weight: 400;
}

.balance-amount {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0E1416;
}

.topup-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #FBBC04;
    border-radius: 12px;
    text-decoration: none;
    color: #0E1416;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.topup-button:hover {
    background: #E6A800;
    color: #0E1416;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(251, 188, 4, 0.3);
}

.topup-button svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.topup-button svg path {
    stroke: #0E1416;
}

/* Navigation Menu */
.account-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-bottom: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #6B7280;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    background: #F9FAFB;
    color: #374151;
    text-decoration: none;
}

.nav-item.is-active .nav-link {
    background: #FEF3C7;
    color: #92400E;
    font-weight: 600;
}

.nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.nav-icon svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.nav-icon svg path {
    stroke: #6B7280;
    transition: stroke 0.2s ease;
}

.nav-link:hover .nav-icon svg path {
    stroke: #374151;
}

.nav-item.is-active .nav-icon svg path {
    stroke: #D97706 !important;
}

/* Logout specific styles */
.logout-item {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.logout-item .nav-link {
    border-top: none;
    padding-top: 16px;
    color: #6B7280;
}

.logout-item .nav-link:hover {
    background: #FEF2F2;
    color: #DC2626;
}

.logout-item .nav-link:hover .nav-icon svg path {
    stroke: #DC2626;
}

/* Content Area */
.custom-account-content {
    flex: 1;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.woocommerce-MyAccount-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* Profile Form Styles */
.profile-form-container,
.password-change-container {
    max-width: 600px;
    margin-bottom: 40px;
}

.profile-form-container h3,
.password-change-container h3 {
    font-size: 24px;
    font-weight: 600;
    color: #0E1416;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.profile-form-container .form-row,
.password-change-container .form-row {
    margin-bottom: 20px;
}

.profile-form-container .form-row label,
.password-change-container .form-row label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #898F9A;
    margin-bottom: 8px;
}

.profile-form-container .form-row input,
.password-change-container .form-row input,
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Input {
    width: 100% !important;
    padding: 16px !important;
    border: 1px solid #E1E5E9 !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    color: #0E1416 !important;
    background: #FFFFFF !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.profile-form-container .form-row input:focus,
.password-change-container .form-row input:focus,
.woocommerce-MyAccount-content .woocommerce-EditAccountForm .woocommerce-Input:focus {
    outline: none !important;
    border-color: #FBBC04 !important;
    box-shadow: 0 0 0 3px rgba(251, 188, 4, 0.1) !important;
    transform: translateY(-1px);
}

.profile-form-container .form-row input::placeholder,
.password-change-container .form-row input::placeholder {
    color: #C4C9D0;
}

/* Save Button Styles */
.save-button,
.woocommerce-MyAccount-content .woocommerce-Button.button {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: white !important;
    transition: all 0.2s ease !important;
}

.save-button.active,
.woocommerce-MyAccount-content .woocommerce-Button.button.active {
    background: #FBBC04 !important;
    color: #0E1416 !important;
    cursor: pointer !important;
    opacity: 1 !important;
}

.save-button.active:hover,
.woocommerce-MyAccount-content .woocommerce-Button.button.active:hover {
    background: #E6A800 !important;
}

/* Orders Table Styles */
.woocommerce-MyAccount-content .woocommerce-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.woocommerce-MyAccount-content .woocommerce-orders-table th {
    background: #F8F9FA;
    color: #898F9A;
    font-weight: 500;
    padding: 16px;
    border: none;
    font-size: 14px;
}

.woocommerce-MyAccount-content .woocommerce-orders-table td {
    padding: 16px;
    border-bottom: 1px solid #F1F3F4;
    font-size: 14px;
    color: #6B7280;
}

.woocommerce-MyAccount-content .woocommerce-orders-table tr:last-child td {
    border-bottom: none;
}

.woocommerce-orders-table tbody tr:hover {
    background-color: #F8F9FA;
}

/* Top Up Section in Dashboard */
.dashboard-topup-section .product-block {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.my_rewards_title {
    font-size: 24px;
    font-weight: 600;
    color: #0E1416;
    margin-bottom: 16px;
}

.amount-info {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6B7280;
}

.grid-product-buy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.row-product-buy {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-product-buy {
    background: #4F9CF9;
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.button-qty {
    display: flex;
    gap: 8px;
}

.button-qty button {
    padding: 8px 16px;
    border: 1px solid #D1D5DB;
    background: #FFFFFF;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.button-qty button:hover {
    background: #F8F9FA;
    border-color: #FBBC04;
}

.count-box-pr {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price {
    font-size: 16px;
    font-weight: 600;
    color: #0E1416;
}

.quantity span {
    /*display: block;*/
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 8px;
}

.qty {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    width: 120px;
}

.single_add_to_cart_button {
    background: #4F9CF9;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.single_add_to_cart_button:hover {
    background: #3B82F6;
}

/* Top up page styles */
.topup-page-content {
    max-width: 600px;
}

.topup-page-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0E1416;
    margin-bottom: 16px;
}

.topup-info {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.topup-info p {
    font-size: 14px;
    color: #898F9A;
    margin: 0;
}

.topup-form-container {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.euro-card {
    background: linear-gradient(135deg, #4ECDC4 0%, #6366F1 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.euro-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.euro-symbol {
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.amount-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.amount-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #E1E5E9;
    border-radius: 8px;
    background: white;
    font-size: 16px;
    font-weight: 500;
    color: #0E1416;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: #FBBC04;
    background: #FFF4E6;
    color: #FBBC04;
}

.exchange-info {
    text-align: center;
    margin-bottom: 20px;
}

.exchange-rate {
    font-size: 14px;
    color: #4ECDC4;
    font-weight: 500;
}

.custom-amount {
    margin-bottom: 20px;
}

.custom-amount label {
    display: block;
    font-size: 12px;
    color: #898F9A;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-amount input {
    width: 100%;
    padding: 16px;
    border: 1px solid #E1E5E9;
    border-radius: 8px;
    font-size: 24px;
    font-weight: 600;
    text-align: right;
    background: white;
}

.buy-button {
    width: 100%;
    padding: 16px;
    background: #4ECDC4;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.buy-button:hover {
    background: #45B7B8;
}

.current-balance {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #F1F3F4;
}

.current-balance h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0E1416;
    margin-bottom: 8px;
}

.current-balance p {
    font-size: 14px;
    color: #898F9A;
    margin: 0;
}

/* Messages */
.woocommerce-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    color: #DC2626;
    font-size: 14px;
}

.woocommerce-message {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    color: #16A34A;
    font-size: 14px;
}

/* Hide Elements */

.custom-account-navigation {
    display: block !important;
}

.account-nav-menu .nav-item a[href*="topup"] {
    display: none !important;
}

.woocommerce-MyAccount-navigation-link--topup {
    display: none !important;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.woocommerce-MyAccount-content .woocommerce-EditAccountForm legend {
    display: none;
}

.clear {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-my-account-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
    }
    
    .custom-account-sidebar {
        width: 100%;
    }
    
    .account-balance-section {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .topup-button {
        justify-content: center;
    }
    
    .custom-account-content {
        padding: 20px;
    }
    
    .row-product-buy {
        flex-direction: column;
        align-items: stretch;
    }
    
    .button-qty {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .profile-form-container h3,
    .password-change-container h3 {
        font-size: 20px;
    }
    
    .profile-form-container,
    .password-change-container {
        max-width: 100%;
    }
    
    .amount-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .custom-my-account-wrapper {
        padding: 12px;
    }
    
    .custom-account-navigation {
        padding: 16px;
    }
    
    .custom-account-content {
        padding: 16px;
    }
    
    .topup-form-container {
        padding: 16px;
    }
    
    .euro-card {
        padding: 16px;
    }
    
    .euro-symbol {
        font-size: 20px;
    }
    
    .custom-amount input {
        font-size: 20px;
    }
    
    .profile-form-container h3,
    .password-change-container h3 {
        font-size: 18px;
    }
    
    .account-balance-section {
        padding: 12px;
    }
    
    .balance-amount {
        font-size: 14px;
    }
}/* 
===== ОРИГИНАЛЬНЫЕ СТИЛИ TOP UP ===== */

/* Top Up Product Block */
.product-block {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.my_rewards_title {
    font-size: 28px;
    font-weight: 700;
    color: #0E1416;
    margin-bottom: 20px;
    text-align: left;
}

.amount-info {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    font-size: 14px;
    color: #6B7280;
}

.amount-info span {
    font-weight: 500;
}

.grid-product-buy {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.row-product-buy {
    display: flex;
    align-items: center;
    gap: 24px;
}

.info-product-buy {
    background: linear-gradient(135deg, #4ECDC4 0%, #6366F1 100%);
    color: white;
    padding: 32px;
    border-radius: 16px;
    font-size: 24px;
    font-weight: 700;
    min-width: 160px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.info-product-buy::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.button-qty {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.button-qty button {
    padding: 12px 24px;
    border: 2px solid #E1E5E9;
    background: #FFFFFF;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    min-width: 60px;
}

.button-qty button:hover {
    background: #F8F9FA;
    border-color: #FBBC04;
    color: #FBBC04;
}

.button-qty button:active,
.button-qty button.active {
    background: #FEF3C7;
    border-color: #FBBC04;
    color: #92400E;
}

.count-box-pr {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.price {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.quantity {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quantity span {
    /*display: block;*/
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.qty {
    padding: 16px 20px;
    border: 2px solid #E1E5E9;
    border-radius: 12px;
    font-size: 32px;
    font-weight: 700;
    width: 120px;
    text-align: center;
    background: #FFFFFF;
    color: #0E1416;
}

.qty:focus {
    outline: none;
    border-color: #FBBC04;
    box-shadow: 0 0 0 3px rgba(251, 188, 4, 0.1);
}

.single_add_to_cart_button {
    background: #4ECDC4;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /*width: 100%;*/
    margin-top: 20px;
    margin-left: auto !important;
}

.single_add_to_cart_button:hover {
    background: #45B7B8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(78, 205, 196, 0.3);
}

.single_add_to_cart_button:active {
    transform: translateY(0);
}

/* Hide add to cart when conditions not met */
.product-block.hide-add-to-cart .single_add_to_cart_button {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Euro Balance Display */
.current-balance {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E5E7EB;
    margin-top: 32px;
}

.current-balance h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0E1416;
    margin-bottom: 8px;
}

.current-balance p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

/* Responsive Design for Top Up */
@media (max-width: 768px) {
    .row-product-buy {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .info-product-buy {
        min-width: auto;
        padding: 24px;
        font-size: 20px;
    }
    
    .button-qty {
        justify-content: center;
    }
    
    .count-box-pr {
        align-items: center;
        text-align: center;
    }
    
    .qty {
        width: 100%;
        max-width: 200px;
    }
    
    .my_rewards_title {
        font-size: 24px;
        text-align: center;
    }
    
    .amount-info {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .product-block {
        padding: 20px;
    }
    
    .button-qty {
        flex-direction: column;
    }
    
    .button-qty button {
        width: 100%;
    }
    
    .grid-product-buy {
        gap: 20px;
    }
    
    .my_rewards_title {
        font-size: 20px;
    }
    
    .qty {
        font-size: 24px;
    }
}/* С
крываем dashboard из навигационного меню */
.account-nav-menu .nav-item a[href*="dashboard"] {
    display: none !important;
}

/* ================================================
   Payment Methods - Clean Uniform UI
   ================================================ */

/* Wrapper lista */
#payment ul.wc_payment_methods.payment_methods.methods {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Svaki payment method - FLEX CONTAINER */
#payment ul.wc_payment_methods li.wc_payment_method {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    padding: 24px !important;
    margin: 0 0 12px 0 !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    list-style: none !important;
    transition: border-color 0.2s ease !important;
}

#payment ul.wc_payment_methods li.wc_payment_method:hover {
    border-color: #4ECDC4 !important;
}

/* Radio button - direktno u LI */
#payment ul.wc_payment_methods li.wc_payment_method > input[type="radio"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border: 2px solid #CBD5E0 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    cursor: pointer !important;
    position: relative !important;
    margin: 0 16px 0 0 !important;
    flex-shrink: 0 !important;
    float: none !important;
    order: 1 !important;
}

#payment ul.wc_payment_methods li.wc_payment_method > input[type="radio"]:checked {
    border-color: #4ECDC4 !important;
    background: #4ECDC4 !important;
    box-shadow: inset 0 0 0 4px #ffffff !important;
}

/* Label - sadrzi tekst i logo */
#payment ul.wc_payment_methods li.wc_payment_method > label {
    display: flex !important;
    align-items: center !important;
    flex: 1 !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #2D3748 !important;
    order: 2 !important;
}

/* Logo unutar labele - desno */
#payment ul.wc_payment_methods li.wc_payment_method > label img {
    height: 30px !important;
    width: auto !important;
    max-width: 85px !important;
    border-radius: 6px !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
}

/* Payment box - ispod svega (full width) */
#payment ul.wc_payment_methods li.wc_payment_method .payment_box {
    width: 100% !important;
    flex-basis: 100% !important;
    padding: 20px !important;
    margin: 16px -24px -24px -24px !important;
    background: #F7FAFC !important;
    border-top: 1px solid #E2E8F0 !important;
    font-size: 14px !important;
    color: #4A5568 !important;
    order: 3 !important;
}

/* Prvi payment method - transparentna pozadina */
ul.wc_payment_methods li.wc_payment_method:first-child > div[role="button"] {
    background: transparent !important;
}

/* Ostali payment methods - bela pozadina */
ul.wc_payment_methods li.wc_payment_method:not(:first-child) > div[role="button"] {
    background: #ffffff !important;
}

/* Remove FAQ section margin-bottom to tighten spacing before Business API section */
.elementor-54385 .elementor-element.elementor-element-583375b { margin-bottom: 0 !important; }

/* Business API Integration section */
.fastbee-business-api { background: #ffffff; border-radius: 24px; padding: 56px 36px; margin: 24px auto; width: 1392px; max-width: calc(100% - 48px); box-sizing: border-box; font-family: "Kodchasan", Sans-serif; }
.fastbee-business-api__inner { max-width: 760px; margin: 0 auto; text-align: center; font-family: "Kodchasan", Sans-serif; }
.fastbee-business-api__title, .fastbee-business-api__lead, .fastbee-business-api__contact { font-family: "Kodchasan", Sans-serif; }
.fastbee-business-api__title { font-size: 32px; font-weight: 600; line-height: 1.2; margin: 0 0 16px; color: #1A232A; }
.fastbee-business-api__lead { font-size: 16px; font-weight: 500; line-height: 1.6; margin: 0 0 12px; color: #1A232A; }
.fastbee-business-api__contact { font-size: 16px; font-weight: 500; line-height: 1.6; margin: 0; color: #4A5560; }
.fastbee-business-api__contact a { color: #1A232A; font-weight: 600; text-decoration: underline; }
.fastbee-business-api__contact a:hover { text-decoration: none; }
@media (max-width: 768px) {
    .fastbee-business-api { padding: 32px 20px; margin: 16px auto; border-radius: 16px; }
    .fastbee-business-api__title { font-size: 24px; }
}
