/**
 * Style dla frontendu WooCommerce Custom Account Tabs
 */

/* Dostosowanie stylów zakładek w "Moje konto" */
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background-color: #f8f9fa;
    color: #0073aa;
}

/* Styl dla niestandardowych zakładek */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--custom-tab a {
    position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--custom-tab a::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.7;
}

/* Zawartość niestandardowych zakładek */
.woocommerce-account .woocommerce-MyAccount-content .custom-tab-content {
    padding: 20px 0;
}

.woocommerce-account .woocommerce-MyAccount-content .custom-tab-content h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.5em;
}

.woocommerce-account .woocommerce-MyAccount-content .custom-tab-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsywność */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-content .custom-tab-content {
        padding: 15px 0;
    }
    
    .woocommerce-account .woocommerce-MyAccount-content .custom-tab-content h2 {
        font-size: 1.3em;
    }
}

/* Animacje dla zawartości */
.woocommerce-account .woocommerce-MyAccount-content .custom-tab-content {
    animation: fadeIn 0.3s ease-in-out;
}

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

/* Styl dla zewnętrznych przekierowań */
.woocommerce-account .woocommerce-MyAccount-navigation ul li a.external-tab {
    color: #0073aa !important;
    position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a.external-tab::after {
    content: '↗';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9em;
    opacity: 0.7;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a.external-tab:hover {
    color: #005ecb !important;
}

/* Dostosowanie dla różnych motywów */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--custom-tab a:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

/* Styl dla nieaktywnych zakładek */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--inactive-tab a {
    opacity: 0.5;
    pointer-events: none;
}

/* Dostosowanie dla ciemnych motywów */
@media (prefers-color-scheme: dark) {
    .woocommerce-account .woocommerce-MyAccount-content .custom-tab-content h2 {
        color: #e0e0e0;
    }
    
    .woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
        background-color: #2c2c2c;
        color: #4a9eff;
    }
} 