/*
Theme Name: Wugo WooCommerce
Theme URI: 
Author: Axonite Labs UG (i.G.)
Author URI: 
Description: Custom WooCommerce theme for Linux/Plesk environments.
Version: 1.0.0
Text Domain: novasec_woocommerce
*/

:root {
    --primary: #0EA5E9;
    --primary-dark: #0284C7;
    --navy: #0F172A;
    --navy-light: #1E293B;
    --slate: #334155;
    --slate-light: #94A3B8;
    --bg: #F8FAFC;
    --white: #ffffff;
    --success: #10B981;
    --border: #E2E8F0;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--navy-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px !important;
    max-height: 55px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain;
}

.logo-text {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
}

.logo-text span {
    color: var(--primary);
}

.brand-subtext {
    font-size: 10px;
    color: var(--slate);
    /* Darkened from slate-light */
    margin-top: -2px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
}

.cta-button {
    background-color: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: radial-gradient(circle at top right, #e0f2fe 0%, #f8fafc 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
}

.badge {
    display: inline-block;
    background: #e0f2fe;
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--success) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--slate);
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-btns {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Features */
.features {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px;
    background: var(--bg);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--navy);
}

.feature-card p {
    color: var(--slate);
}

/* Security Section */
.security-section {
    padding: 100px 0;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.section-title.left {
    text-align: left;
    color: var(--white);
    margin-bottom: 30px;
}

.security-content p {
    font-size: 1.1rem;
    color: var(--slate-light);
    margin-bottom: 30px;
}

.security-list {
    list-style: none;
}

.security-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.security-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 800;
}

.shield-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-icon {
    font-size: 100px;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* App Mockup Section */
.demo-section {
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--slate-light);
    margin-top: -50px;
    margin-bottom: 50px;
}

.demo-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
}

.demo-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
}

.demo-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.demo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    padding: 25px 40px;
}

.demo-status {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.demo-status .dot {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px var(--primary);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    50% {
        opacity: 0.4;
    }
}

.demo-progress-container {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.demo-progress-bar {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: demo-loading 2s infinite linear;
}

@keyframes demo-loading {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.pricing-card.highlighted {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.1), 0 10px 10px -5px rgba(14, 165, 233, 0.04);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-header h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 20px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 30px;
}

.price span {
    font-size: 16px;
    color: var(--slate-light);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: var(--slate);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}

/* Footer */
.site-footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--slate-light);
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--slate-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal a {
    color: var(--slate-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    border-radius: 16px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid var(--border);
}

.modal-content h3 {
    margin-bottom: 20px;
    color: var(--navy);
    font-size: 24px;
}

.modal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--slate);
}

.close {
    color: var(--slate-light);
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--navy);
}

/* Modal Body Content */
.modal-body h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 28px;
}

.modal-body h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 20px;
}

.modal-body p,
.modal-body ul {
    margin-bottom: 15px;
    color: var(--slate);
    line-height: 1.7;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2.left {
    text-align: left;
    margin-bottom: 25px;
    color: var(--navy);
}

.contact-details {
    margin-top: 30px;
}

.detail-item {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--slate);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: border-color 0.4s, box-shadow 0.4s;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--navy-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

@keyframes formHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
    }

    50% {
        box-shadow: 0 0 25px 5px rgba(14, 165, 233, 0.2);
        border-color: var(--primary);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(14, 165, 233, 0);
    }
}

.contact-form.highlight {
    animation: formHighlight 1.5s ease-out;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        display: none;
    }
}

/* ============================================================
   AUTH PAGES – Login & Dashboard  (Light design, matches main site)
   ============================================================ */

.auth-body {
    background: radial-gradient(circle at top right, #e0f2fe 0%, #f8fafc 55%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* WooCommerce Loop Flexbox Fix */
ul.products li.product,
.woocommerce ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

ul.products li.product .price,
.woocommerce ul.products li.product .price {
    margin-top: auto !important;
    padding-top: 15px;
}

ul.products li.product .button,
.woocommerce ul.products li.product .button {
    margin-top: 15px !important;
}


/* Subtle decorative blobs */
.auth-bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}
.auth-bg-glow--1 {
    width: 600px;
    height: 600px;
    background: rgba(14, 165, 233, 0.12);
    top: -200px;
    right: -150px;
}
.auth-bg-glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(16, 185, 129, 0.07);
    bottom: -100px;
    left: -80px;
}

/* ── Login Card ─────────────────────────────────────────── */
.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.auth-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 44px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.04);
    animation: fadeInUp 0.5s ease-out both;
}

.auth-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: center;
}

.auth-logo-img {
    height: 44px;
    width: auto;
}

.auth-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 8px;
}

.auth-subtitle {
    text-align: center;
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

/* Alert message */
.auth-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}
.auth-alert svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.auth-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

/* Form fields */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-field label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--slate);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.auth-input-wrap {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--slate-light);
    pointer-events: none;
}

.auth-field input {
    width: 100%;
    padding: 13px 14px 13px 44px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--navy);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.auth-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
    background: var(--white);
}

.auth-field input::placeholder {
    color: var(--slate-light);
}

.auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    padding: 15px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.auth-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    font-size: 0.85rem;
}

.auth-footer a {
    color: var(--slate);
    text-decoration: none;
    transition: color 0.3s;
}

.auth-footer a:hover {
    color: var(--primary);
}

/* ── Dashboard layout ─────────────────────────────────────── */
.dash-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    position: relative;
    z-index: 1;
}

.dash-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}

.dash-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-logo-img {
    height: 40px;
    width: auto;
}

.dash-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dash-user-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    padding: 6px 14px;
    border-radius: 20px;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

.dash-logout-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 8px;
    color: var(--slate);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.dash-logout-btn:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.dash-main {
    flex: 1;
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.dash-welcome {
    margin-bottom: 48px;
}

.dash-welcome h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.dash-welcome h1 span {
    color: var(--primary);
}

.dash-welcome p {
    color: var(--slate);
    font-size: 1.05rem;
}

.dash-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.dash-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.dash-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.dash-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dash-card-icon svg {
    width: 26px;
    height: 26px;
}

.dash-card-icon--blue {
    background: #e0f2fe;
    color: var(--primary);
}

.dash-card-icon--green {
    background: #d1fae5;
    color: var(--success);
}

.dash-card-body {
    flex: 1;
}

.dash-card-body h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.dash-card-meta {
    font-size: 0.8rem;
    color: var(--slate-light);
    margin-bottom: 12px;
    font-family: 'Courier New', monospace;
}

.dash-card-desc {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.6;
}

.dash-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
}

.dash-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 18px 22px;
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.6;
}

.dash-info-box svg {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.dash-info-box a {
    color: var(--primary);
    text-decoration: none;
}

.dash-info-box a:hover {
    text-decoration: underline;
}

/* Responsive for auth/dash */
@media (max-width: 600px) {
    .auth-card {
        padding: 32px 24px;
    }
    .dash-header {
        padding: 16px 20px;
    }
    .dash-main {
        padding: 40px 20px;
    }
    .dash-card-grid {
        grid-template-columns: 1fr;
    }
    .auth-footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}


/* ── Multi-Step Auth Modal ───────────────────────────────── */
.modal-content-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}

.modal-choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.choice-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
}

.choice-card:hover {
    border-color: var(--primary);
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.1);
}

.choice-card svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.choice-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.choice-card p {
    font-size: 0.85rem;
    color: var(--slate);
    line-height: 1.5;
}

/* Registration Form Step */
.reg-form-step {
    display: none; /* Controlled by JS */
    animation: fadeIn 0.4s ease-out;
}

.reg-form-step.active {
    display: block;
}

.reg-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.reg-field-full {
    grid-column: span 2;
}

.reg-form .auth-field label {
    font-size: 0.75rem;
    font-weight: 700;
}

.reg-form input, .reg-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--navy);
}

.reg-form textarea {
    height: 80px;
    resize: none;
}

.reg-form input:focus, .reg-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.modal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--slate);
    cursor: pointer;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.modal-back-btn:hover {
    color: var(--primary);
}

@media (max-width: 600px) {
    .modal-choice-grid {
        grid-template-columns: 1fr;
    }
    .reg-form {
        grid-template-columns: 1fr;
    }
    .reg-field-full {
        grid-column: span 1;
    }
}

.reg-row {
    display: grid;
    gap: 16px;
    grid-column: span 2;
}

.reg-row-75-25 {
    grid-template-columns: 0.75fr 0.25fr;
}

.reg-row-40-60 {
    grid-template-columns: 0.40fr 0.60fr;
}

@media (max-width: 600px) {
    .reg-row, .reg-row-75-25, .reg-row-40-60 {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   WooCommerce Specific CSS Overrides (Matching Theme Design)
   ============================================================ */

/* Primary Buttons (Matching .btn-primary) */
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.checkout {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    transition: all 0.3s !important;
    border: none !important;
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.4) !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.checkout:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    color: var(--white) !important;
}

/* Secondary Buttons (Matching .btn-secondary) */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background-color: var(--white) !important;
    color: var(--navy) !important;
    border: 1px solid var(--border) !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: all 0.3s !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

/* Cart & Checkout Tables */
.woocommerce table.shop_table {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.woocommerce table.shop_table th {
    background-color: var(--bg);
    color: var(--navy);
    font-weight: 700;
    padding: 15px;
}

.woocommerce table.shop_table td {
    padding: 15px;
    border-top: 1px solid var(--border);
    color: var(--navy-light);
}

/* Input Fields */
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
    width: 100%;
    padding: 15px !important;
    background: var(--bg) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    color: var(--navy-light) !important;
    font-family: inherit !important;
    transition: border-color 0.3s !important;
}

/* ============================================================
   WooCommerce Variation Dropdown – Premium Design
   ============================================================ */

/* Label (e.g. "Ausführung") */
.woocommerce div.product .variations th.label label,
.woocommerce div.product form.variations_form table.variations td.label {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-right: 15px;
    padding-top: 10px;
}

/* The select itself */
.woocommerce div.product form.variations_form table.variations select,
.woocommerce div.product .variations select {
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--white) !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 10px !important;
    padding: 12px 45px 12px 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    cursor: pointer !important;
    min-width: 200px !important;
    transition: border-color 0.25s, box-shadow 0.25s !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230EA5E9' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 18px !important;
    box-shadow: 0 2px 6px rgba(14, 165, 233, 0.07) !important;
}

.woocommerce div.product form.variations_form table.variations select:hover,
.woocommerce div.product .variations select:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12) !important;
}

.woocommerce div.product form.variations_form table.variations select:focus,
.woocommerce div.product .variations select:focus {
    outline: none !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2) !important;
}

/* Wrapper row for the variation table */
.woocommerce div.product form.variations_form {
    margin-top: 35px !important;
}

.woocommerce div.product .variations_form .variations {
    margin-bottom: 20px;
    border: none !important;
}

.woocommerce div.product .variations_form .variations tr {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

/* Reset button */
.woocommerce div.product form.variations_form .reset_variations {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--slate-light);
    text-decoration: none;
    transition: color 0.2s;
}

.woocommerce div.product form.variations_form .reset_variations:hover {
    color: var(--primary);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    color: var(--slate);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}
