/* Main CSS utilities and overrides */

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 15px;
}

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

/* Sections */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Cards */
.card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: var(--card-bg-hover);
}

/* Feature Icon Box */
.feature-box {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--cyan-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.card:hover .feature-icon {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

/* Pricing Tables */
.pricing-card {
    position: relative;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card.featured {
    border-color: var(--purple-accent);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
    z-index: 10;
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.05) 0%, var(--card-bg) 100%);
}

/* 
.pricing-card.featured::before {
    content: 'Best Value';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-accent);
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}
*/

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0;
    font-family: var(--font-heading);
}

.price-period {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
}

.pricing-features li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--cyan-accent);
}

/* WooCommerce Overrides */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--cyan-accent);
    font-size: 24px;
}

.woocommerce a.button {
    background-color: var(--primary-blue) !important;
    color: white !important;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 15px;
    background: var(--card-bg);
    margin-bottom: 10px;
    border-radius: 8px;
    color: var(--text-white);
}

.woocommerce-MyAccount-navigation li.is-active a {
    background: var(--primary-blue);
    color: white;
}

/* Footer */
.site-footer {
    background: #05080f;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer a {
    color: var(--text-muted);
}

.site-footer a:hover {
    color: #ffffff;
}

.site-footer .social-links a {
    color: var(--text-muted);
    transition: all 0.3s;
}

.site-footer .social-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}