/**
 * Nuvea LIFT Main Styles
 * Conversion-focused single product landing page
 */

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo */
.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 2px;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    font-size: 0.875rem;
    font-weight: 500;
}

.header-link:hover {
    color: var(--color-primary);
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F5F2 100%);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 165, 116, 0.15);
    color: var(--color-primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    border: 1px solid var(--color-text);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    font-size: 1rem;
}

.hero-guarantee {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.product-showcase {
    position: relative;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase.no-image {
    background: linear-gradient(135deg, #F8F5F2 0%, #EDE5DC 100%);
    border-radius: var(--radius);
}

.product-showcase.no-image::after {
    content: 'LIFT ROLLER PRO';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--color-primary);
    letter-spacing: 4px;
}

.product-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.product-floaters {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floater-badge {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: floatBadge 4s ease-in-out infinite;
}

.floater-badge:first-child {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.floater-badge:last-child {
    bottom: 30%;
    right: -10px;
    animation-delay: 2s;
}

.badge-icon {
    font-size: 1.25rem;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.5;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.section-badge {
    display: inline-block;
    background: rgba(212, 165, 116, 0.15);
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    counter-reset: step;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-image {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #FBF8F5 0%, #F0E8E0 100%);
}

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

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.95rem;
    max-width: 300px;
    margin: 0 auto;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.review-stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-info strong {
    color: var(--color-text);
    font-weight: 600;
}

.reviewer-info span {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.review-result {
    padding-top: 1rem;
    border-top: 1px solid var(--color-bg-alt);
    font-size: 0.875rem;
}

.result-label {
    color: var(--color-primary);
    font-weight: 600;
}

.result-text {
    color: var(--color-text-light);
}

/* Reviews Stats */
.reviews-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   WHY CHOOSE NUVA SECTION
   ======================================== */
.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.why-content > p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-item .badge-text {
    display: flex;
    flex-direction: column;
}

.badge-item .badge-text strong {
    color: var(--color-text);
    font-weight: 600;
}

.badge-item .badge-text span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Guarantee Box */
.guarantee-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.guarantee-icon {
    margin-bottom: 1.5rem;
}

.guarantee-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.guarantee-box > p {
    margin-bottom: 1.5rem;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 5rem 0;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A5A 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* CTA Product */
.cta-product {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    text-align: left;
}

.cta-product-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.cta-product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-includes li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

/* CTA Pricing */
.cta-pricing {
    margin-bottom: 2rem;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.price-original {
    font-size: 1.5rem;
    color: var(--color-text-light);
    text-decoration: line-through;
}

.price-current {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-text);
}

.price-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 4rem;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* CTA Security */
.cta-security,
.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: var(--color-text);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    color: white;
    font-size: 1.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    margin: 0.25rem 0 0;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

.footer-nav a:hover {
    color: white;
}

.footer-contact .footer-link {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
    color: white;
}

.separator {
    color: rgba(255,255,255,0.3);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guarantee-box {
        order: -1;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .floater-badge {
        display: none;
    }
    
    /* Grids Mobile */
    .benefits-grid,
    .steps-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* CTA Mobile */
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-product {
        flex-direction: column;
        text-align: center;
    }
    
    /* Footer Mobile */
    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-btn {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .price-current {
        font-size: 2.5rem;
    }
}

/* ========================================
   WOOCOMMERCE PAGES - SHARED STYLES
   ======================================== */
.woocommerce-page .site-main {
    padding-top: 7rem;
    padding-bottom: 4rem;
    background: var(--color-bg-alt);
    min-height: 70vh;
}

.woocommerce-page .site-main > .container,
.woocommerce-page .site-main > .woocommerce {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.woocommerce-page .woocommerce > .woocommerce-notices-wrapper:first-child {
    margin-bottom: 1.5rem;
}

/* Page titles */
.woocommerce-page .entry-title,
.woocommerce-page .woocommerce-column__title,
.woocommerce-page h2,
.woocommerce-page h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--color-text);
}

/* Notices */
.woocommerce-message {
    background: #f0faf0;
    border-left: 4px solid #2d7a2d;
    color: #2d5f2d;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.925rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.woocommerce-message::before {
    content: '\2713';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #2d7a2d;
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.woocommerce-error {
    background: #fdf0f0;
    border-left: 4px solid #dc3545;
    color: #842029;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.925rem;
    list-style: none;
}

.woocommerce-info {
    background: #f0f4fa;
    border-left: 4px solid #4a90d9;
    color: #2d4a6f;
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.925rem;
}

.woocommerce-message a,
.woocommerce-info a {
    color: inherit;
    font-weight: 600;
}

.woocommerce-message .button,
.woocommerce-info .button {
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.woocommerce-message .button:hover,
.woocommerce-info .button:hover {
    background: var(--color-primary-dark);
    color: white;
}

/* ========================================
   CHECKOUT PROGRESS BAR
   ======================================== */
.nuvea-checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
}

.nuvea-checkout-progress .progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.nuvea-checkout-progress .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    background: #e0e0e0;
    color: #999;
    transition: var(--transition);
}

.nuvea-checkout-progress .progress-step.active .step-number {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.2);
}

.nuvea-checkout-progress .progress-step.completed .step-number {
    background: #2d7a2d;
    color: white;
}

.nuvea-checkout-progress .step-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
}

.nuvea-checkout-progress .progress-step.active .step-label,
.nuvea-checkout-progress .progress-step.completed .step-label {
    color: var(--color-text);
}

.nuvea-checkout-progress .progress-line {
    width: 80px;
    height: 3px;
    background: #e0e0e0;
    margin: 0 0.75rem;
    margin-bottom: 1.25rem;
    border-radius: 2px;
    transition: var(--transition);
}

.nuvea-checkout-progress .progress-line.active {
    background: linear-gradient(90deg, #2d7a2d, var(--color-primary));
}

.nuvea-checkout-progress .progress-line.completed {
    background: #2d7a2d;
}

/* ========================================
   SECURE CHECKOUT HEADER
   ======================================== */
.nuvea-secure-header {
    margin-bottom: 2rem;
}

.nuvea-secure-header .checkout-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.nuvea-secure-header .checkout-title svg {
    color: var(--color-primary);
}

/* ========================================
   TRUST STRIP
   ======================================== */
.nuvea-trust-strip {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--color-bg-alt);
}

.nuvea-trust-strip .trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.nuvea-trust-strip .trust-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ========================================
   REASSURANCE BELOW PLACE ORDER
   ======================================== */
.nuvea-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    font-size: 0.78rem;
    color: var(--color-text-light);
}

.nuvea-reassurance svg {
    color: #2d7a2d;
    flex-shrink: 0;
}

/* ========================================
   WOOCOMMERCE CART PAGE (fallback)
   ======================================== */
.woocommerce-cart .woocommerce-cart-form {
    margin-bottom: 2rem;
}

.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.woocommerce table.shop_table thead {
    background: var(--color-bg-alt);
}

.woocommerce table.shop_table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
    border: none;
}

.woocommerce table.shop_table td {
    padding: 1.25rem;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    font-size: 0.95rem;
}

.woocommerce table.shop_table tr:last-child td {
    border-bottom: none;
}

.woocommerce table.shop_table .product-remove a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fdf0f0;
    color: #842029;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
}

.woocommerce table.shop_table .product-remove a:hover {
    background: #842029;
    color: white;
}

.woocommerce table.shop_table .product-thumbnail img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.woocommerce table.shop_table .product-name a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 1rem;
}

.woocommerce table.shop_table .product-name a:hover {
    color: var(--color-primary);
}

.woocommerce table.shop_table .product-price,
.woocommerce table.shop_table .product-subtotal {
    font-weight: 600;
    color: var(--color-text);
}

.woocommerce table.shop_table .product-quantity .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.woocommerce table.shop_table .product-quantity .quantity input[type="number"] {
    width: 50px;
    text-align: center;
    border: none;
    padding: 0.5rem;
    font-size: 0.95rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

.woocommerce table.shop_table .product-quantity .quantity input::-webkit-inner-spin-button,
.woocommerce table.shop_table .product-quantity .quantity input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Cart actions row */
.woocommerce table.shop_table td.actions {
    padding: 1.25rem;
    text-align: right;
}

.woocommerce table.shop_table td.actions .coupon {
    display: none;
}

.woocommerce table.shop_table td.actions button[type="submit"] {
    background: var(--color-bg-alt);
    color: var(--color-text);
    border: 1px solid #ddd;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.woocommerce table.shop_table td.actions button[type="submit"]:hover {
    background: var(--color-text);
    color: white;
    border-color: var(--color-text);
}

/* Cart totals */
.woocommerce .cart-collaterals {
    margin-top: 2rem;
}

.woocommerce .cart_totals {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 2rem;
    max-width: 450px;
    margin-left: auto;
}

.woocommerce .cart_totals h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce .cart_totals table {
    width: 100%;
    border: none;
    box-shadow: none;
}

.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce .cart_totals table th {
    text-align: left;
    font-weight: 500;
    color: var(--color-text-light);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    background: none;
}

.woocommerce .cart_totals table td {
    text-align: right;
    font-weight: 600;
    color: var(--color-text);
}

.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td {
    font-size: 1.15rem;
    padding-top: 1rem;
    border-bottom: none;
}

.woocommerce .cart_totals .order-total td .amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--color-text);
}

.woocommerce .cart_totals .wc-proceed-to-checkout {
    margin-top: 1.5rem;
}

.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
}

.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

/* Empty cart */
.woocommerce .cart-empty {
    text-align: center;
    padding: 5rem 2rem;
    font-size: 1.15rem;
    color: var(--color-text-light);
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.woocommerce .return-to-shop {
    text-align: center;
    margin-top: 1.5rem;
}

.woocommerce .return-to-shop a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-decoration: none;
}

.woocommerce .return-to-shop a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

/* ========================================
   WOOCOMMERCE CHECKOUT PAGE
   ======================================== */
.woocommerce-checkout .woocommerce {
    max-width: 960px;
    margin: 0 auto;
}

.woocommerce form.checkout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.woocommerce form.checkout .woocommerce-checkout-review-order {
    order: 2;
}

.woocommerce form.checkout .col2-set {
    order: 1;
}

/* Billing fields card */
.woocommerce form.checkout .col2-set .col-1,
.woocommerce form.checkout .col2-set .col-2 {
    width: 100%;
    float: none;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.woocommerce form.checkout h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

/* Form fields */
.woocommerce form .form-row {
    margin-bottom: 1.1rem;
    padding: 0;
}

.woocommerce form .form-row label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.35rem;
    letter-spacing: 0.2px;
}

.woocommerce form .form-row .required {
    color: var(--color-primary);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--color-text);
    background: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.12);
}

.woocommerce form .form-row input.input-text::placeholder {
    color: #bbb;
}

.woocommerce form .form-row select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    background-color: #fafafa;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.woocommerce form .form-row-first {
    float: left;
}

.woocommerce form .form-row-last {
    float: right;
}

.woocommerce form .form-row-wide {
    width: 100%;
    clear: both;
}

/* Validation */
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
    border-color: #dc3545;
    background: #fff8f8;
}

.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
    border-color: #28a745;
    background: #f8fff8;
}

/* Order review */
.woocommerce .woocommerce-checkout-review-order {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 1.75rem;
    position: sticky;
    top: 6rem;
}

.woocommerce .woocommerce-checkout-review-order h3 {
    border: none;
    margin-bottom: 1rem;
}

.woocommerce .woocommerce-checkout-review-order table.shop_table {
    box-shadow: none;
    border-radius: 0;
}

.woocommerce .woocommerce-checkout-review-order table.shop_table thead {
    background: none;
    border-bottom: 2px solid #f0f0f0;
}

.woocommerce .woocommerce-checkout-review-order table.shop_table th {
    padding: 0.75rem 0;
    font-size: 0.75rem;
}

.woocommerce .woocommerce-checkout-review-order table.shop_table td {
    padding: 0.75rem 0;
    font-size: 0.95rem;
}

.woocommerce .woocommerce-checkout-review-order table.shop_table tfoot th {
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    background: none;
}

.woocommerce .woocommerce-checkout-review-order .order-total th,
.woocommerce .woocommerce-checkout-review-order .order-total td {
    font-size: 1.1rem;
    font-weight: 700;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.woocommerce .woocommerce-checkout-review-order .order-total td .amount {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
}

/* Strikethrough regular price in review */
.woocommerce .woocommerce-checkout-review-order del {
    opacity: 0.5;
    font-size: 0.85em;
}

.woocommerce .woocommerce-checkout-review-order ins {
    text-decoration: none;
    font-weight: 700;
}

/* Payment methods */
.woocommerce #payment {
    background: transparent;
    border-radius: 0;
}

.woocommerce #payment ul.payment_methods {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    border: none;
}

.woocommerce #payment ul.payment_methods li {
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    transition: var(--transition);
    background: #fafafa;
}

.woocommerce #payment ul.payment_methods li:has(input:checked) {
    border-color: var(--color-primary);
    background: rgba(212, 165, 116, 0.04);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.08);
}

.woocommerce #payment ul.payment_methods li label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
}

.woocommerce #payment ul.payment_methods li img {
    max-height: 26px;
    width: auto;
}

.woocommerce #payment .payment_box {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 1rem 1.15rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.woocommerce #payment .payment_box::before {
    display: none;
}

/* Stripe payment element container */
.woocommerce #payment .payment_box .wc-stripe-upe-element,
.woocommerce #payment .payment_box .stripe-card-group {
    padding: 0.5rem 0;
}

/* Hide Stripe Link authentication popup */
.StripeElement--link-authentication,
div[data-testid="link-authentication"],
.p-LinkAutofill,
.p-LinkPopup,
.LinkAuthentication {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Place order button */
.woocommerce #payment #place_order,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.35);
}

.woocommerce #payment #place_order:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.45);
    color: white;
}

/* Terms & conditions */
.woocommerce .woocommerce-terms-and-conditions-wrapper {
    margin: 1rem 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.woocommerce .woocommerce-privacy-policy-text {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

/* ========================================
   WOOCOMMERCE MY ACCOUNT PAGE
   ======================================== */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 230px;
    flex-shrink: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid #f0f0f0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 0.9rem 1.25rem;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary-dark);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--color-primary);
    color: white;
    font-weight: 600;
}

.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    min-width: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 2rem;
}

.woocommerce-account .woocommerce-MyAccount-content > p {
    font-size: 1rem;
    line-height: 1.7;
}

.woocommerce-account .woocommerce-MyAccount-content a {
    color: var(--color-primary-dark);
    font-weight: 500;
}

/* Account tables */
.woocommerce-account table.shop_table {
    margin-bottom: 2rem;
}

/* Order status badges */
.woocommerce-account table.shop_table .order-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: capitalize;
}

/* Login / Register forms */
.woocommerce form.login,
.woocommerce form.register {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    max-width: 440px;
    margin: 0 auto;
}

.woocommerce form.login h2,
.woocommerce form.register h2 {
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
}

.woocommerce form.login .form-row,
.woocommerce form.register .form-row {
    margin-bottom: 1.1rem;
}

.woocommerce form.login button.button,
.woocommerce form.register button.button {
    width: 100%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.35);
}

.woocommerce form.login button.button:hover,
.woocommerce form.register button.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.45);
}

/* Remember me checkbox */
.woocommerce form.login .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    cursor: pointer;
}

/* Lost password */
.woocommerce .woocommerce-LostPassword {
    text-align: center;
    margin-top: 1rem;
}

.woocommerce .woocommerce-LostPassword a {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.woocommerce .woocommerce-LostPassword a:hover {
    color: var(--color-primary);
}

/* ========================================
   WOOCOMMERCE ORDER RECEIVED (THANK YOU)
   ======================================== */
.woocommerce-order-received .woocommerce {
    max-width: 700px;
    margin: 0 auto;
}

.woocommerce-order-received .woocommerce-thankyou-order-received {
    display: none;
}

/* Custom thank you hero */
.nuvea-thankyou-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
}

.nuvea-thankyou-hero .success-checkmark {
    margin-bottom: 1rem;
}

.nuvea-thankyou-hero .success-checkmark svg {
    animation: checkmarkPop 0.5s ease-out;
}

@keyframes checkmarkPop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.nuvea-thankyou-hero .thankyou-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.nuvea-thankyou-hero .thankyou-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    margin: 0;
}

/* What's Next section */
.nuvea-whats-next {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 2rem;
    margin-bottom: 2rem;
}

.nuvea-whats-next h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.nuvea-whats-next .next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.nuvea-whats-next .next-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.nuvea-whats-next .next-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    flex-shrink: 0;
}

.nuvea-whats-next .next-step strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.nuvea-whats-next .next-step p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.4;
}

/* Thank you CTA */
.nuvea-thankyou-cta {
    text-align: center;
    margin-bottom: 2rem;
}

/* Order overview */
.woocommerce-order-received .woocommerce-order-overview {
    list-style: none;
    padding: 1.75rem;
    margin: 0 0 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1.25rem;
    text-align: center;
}

.woocommerce-order-received .woocommerce-order-overview li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.woocommerce-order-received .woocommerce-order-overview li strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text);
    margin-top: 0.25rem;
}

.woocommerce-order-received .woocommerce-order-details,
.woocommerce-order-received .woocommerce-customer-details {
    text-align: left;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 2rem;
    margin-bottom: 2rem;
}

.woocommerce-order-received .woocommerce-order-details h2,
.woocommerce-order-received .woocommerce-customer-details h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

/* ========================================
   POLICY PAGES (Privacy, Refund)
   ======================================== */
.page-template-default .site-main .entry-content,
.privacy-policy .site-main .entry-content {
    max-width: 760px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    padding: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text);
}

.page-template-default .site-main .entry-content h1,
.page-template-default .site-main .entry-content h2,
.page-template-default .site-main .entry-content h3,
.privacy-policy .site-main .entry-content h1,
.privacy-policy .site-main .entry-content h2,
.privacy-policy .site-main .entry-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--color-text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-template-default .site-main .entry-content h1,
.privacy-policy .site-main .entry-content h1 {
    font-size: 1.75rem;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.75rem;
}

.page-template-default .site-main .entry-content h2,
.privacy-policy .site-main .entry-content h2 {
    font-size: 1.35rem;
}

.page-template-default .site-main .entry-content p,
.privacy-policy .site-main .entry-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.page-template-default .site-main .entry-content ul,
.page-template-default .site-main .entry-content ol,
.privacy-policy .site-main .entry-content ul,
.privacy-policy .site-main .entry-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-template-default .site-main .entry-content li,
.privacy-policy .site-main .entry-content li {
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

/* ========================================
   WOOCOMMERCE RESPONSIVE (PAGES)
   ======================================== */
@media (max-width: 768px) {
    .woocommerce form.checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce form.checkout .woocommerce-checkout-review-order {
        order: -1;
    }

    .woocommerce form.checkout .col2-set .col-1,
    .woocommerce form.checkout .col2-set .col-2 {
        padding: 1.25rem;
    }

    .woocommerce form .form-row-first,
    .woocommerce form .form-row-last {
        width: 100%;
        float: none;
        display: block;
    }

    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation ul li {
        flex: 1;
        min-width: 50%;
        border-bottom: 1px solid #f0f0f0;
    }

    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 1.25rem;
    }

    .woocommerce table.shop_table {
        font-size: 0.85rem;
    }

    .woocommerce table.shop_table th,
    .woocommerce table.shop_table td {
        padding: 0.75rem;
    }

    .woocommerce .cart_totals {
        max-width: 100%;
    }

    .woocommerce-order-received .woocommerce-order-overview {
        grid-template-columns: repeat(2, 1fr);
    }

    .woocommerce form.login,
    .woocommerce form.register {
        padding: 1.5rem;
    }

    .nuvea-checkout-progress .progress-line {
        width: 40px;
    }

    .nuvea-checkout-progress .step-label {
        font-size: 0.65rem;
    }

    .nuvea-trust-strip {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .nuvea-secure-header .checkout-title {
        font-size: 1.4rem;
    }

    .nuvea-whats-next .next-step {
        gap: 0.75rem;
    }
}
