:root {
    --primary-color: #6B8E23;
    /* Verde Oliv Natural */
    --secondary-color: #7CB342;
    /* Verde Proaspăt */
    --accent-color: #D2691E;
    /* Maro Teracota Cald */
    --bg-dark: #F5F5DC;
    /* Bej Deschis - Fundal Principal */
    --bg-gradient: linear-gradient(135deg, #FAF8F3, #F5F5DC, #EDE8DB);
    /* Gradient Bej Cald */
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(107, 142, 35, 0.2);
    /* Border Verde Oliv */
    --text-light: #2C3E2A;
    /* Verde Închis pentru Text */
    --text-dim: #5A6B52;
    /* Verde Mediu pentru Text Secundar */
    --font-main: 'Outfit', sans-serif;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-break {
    display: none;
}

.btn-separator {
    display: inline;
    margin: 0 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}



/* Typography & Utilities */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    color: #4CAF50;
    /* Verde Aprins Luminos */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--secondary-color);
}

.brand-highlight {
    color: #4CAF50;
    /* Verde Aprins Luminos - Evidențiere Brand */
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(76, 175, 80, 0.4);
}

.glow-text {
    color: #4CAF50;
    /* Verde Aprins Luminos */
    text-shadow: 0 0 20px rgba(76, 175, 80, 0.4);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 142, 35, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #FF5722);
    /* Portocaliu Aprins Strălucitor - Identic cu badge-urile */
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5), 0 0 20px rgba(255, 87, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.7), 0 0 30px rgba(255, 87, 34, 0.5);
    background: linear-gradient(135deg, #FF7A45, #FF6332);
    /* Gradient mai luminos la hover */
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: #000;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 142, 35, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(107, 142, 35, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(107, 142, 35, 0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6), 0 0 20px rgba(255, 87, 34, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(57, 255, 20, 0.9), 0 0 30px rgba(57, 255, 20, 0.7);
    }
}

.btn-submit {
    background: linear-gradient(135deg, #32CD32, #228B22) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 1.3rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #39FF14, #32CD32) !important;
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 8px 25px rgba(57, 255, 20, 0.6) !important;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    /* Alb Semi-Transparent */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(107, 142, 35, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.phone-nav {
    color: #2E7D32;
    /* Verde Natural - Elegant, lizibil și plăcut vederii */
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.25s ease;
    text-shadow: none;
}

.phone-nav:hover {
    color: #1B5E20;
    transform: scale(1.03);
}

.phone-nav i {
    font-size: 1.1rem;
    color: #2E7D32;
}

/* Hero Section */
.hero {
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 30px;
}

.badge {
    background: rgba(210, 105, 30, 0.2);
    /* Teracota Transparent */
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid var(--accent-color);
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

.stock-warning {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #D2691E;
    /* Teracota pentru warning */
    font-weight: 600;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.laser-preview {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(107, 142, 35, 0.2);
    /* Verde Oliv Shadow */
}

/* Features */
.features {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #5A6B52;
    /* Verde Mediu - Mai Discret pentru ca brand-highlight să iasă în evidență */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* Showcase */
.showcase {
    padding: 50px 0;
    background: rgba(107, 142, 35, 0.05);
    /* Verde Foarte Deschis */
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showcase-image {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.rounded-img {
    width: 100%;
    max-width: 460px;
    height: auto !important;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.benefits-list {
    list-style: none;
    margin-top: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.benefits-list i {
    color: var(--secondary-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.benefits-list strong {
    display: inline;
}

.benefits-list br {
    display: none;
}

/* Pricing */
.pricing {
    padding: 100px 0;
}

.section-sub {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 50px;
    margin-top: -40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
    /* Align center to make middle card pop if needed */
}

.pricing-card {
    padding: 40px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-card.popular {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    background: rgba(57, 255, 20, 0.05);
    z-index: 10;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 10px 0;
}

.per-item {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-dim);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--secondary-color);
}

/* Form Section */
.order-form-section {
    padding: 50px 0;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(107, 142, 35, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: white;
    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='%232E7D32' 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");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
    height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.15);
}

.full-width {
    width: 100%;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #6B8E23, #5A7A1F);
    /* Gradient Verde Oliv */
    padding: 50px 0 20px;
    margin-top: 50px;
    border-top: 2px solid rgba(107, 142, 35, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info {
    color: rgba(255, 255, 255, 0.9);
    /* Alb pentru vizibilitate pe verde */
}

.footer-info h4 {
    color: #FFE4B5;
    /* Bej deschis pentru titlu */
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.footer-info strong {
    color: #FFE4B5;
    /* Bej deschis pentru "Suport Telefonic:" */
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    /* Alb aproape opac pentru vizibilitate pe verde */
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #FFE4B5;
    /* Bej deschis la hover */
    text-decoration: underline;
}

.footer-phone {
    color: #FFFFFF;
    /* Alb clar și odihnitor pentru ochi pe fundalul verde */
    text-decoration: none;
    font-weight: 800;
    transition: all 0.25s ease;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.footer-phone:hover {
    color: #E8F5E9;
    text-decoration: underline;
    transform: translateY(-1px);
}

.anpc-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 30px 0 20px;
    flex-wrap: wrap;
}

.anpc-logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.anpc-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Checkout Section */
.checkout-section {
    padding: 50px 0;
    background: rgba(107, 142, 35, 0.05);
    /* Verde Foarte Deschis */
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-header h3 {
    font-size: 1.5rem;
}

/* Package Selection */
.package-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.package-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(107, 142, 35, 0.2);
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.package-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.15);
}

.package-card.selected {
    border-color: var(--primary-color);
    background: rgba(107, 142, 35, 0.08);
    box-shadow: 0 4px 20px rgba(107, 142, 35, 0.2);
}

.package-card input[type="radio"] {
    display: none;
}

.pkg-content {
    flex: 1;
}

.pkg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.pkg-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.pkg-price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pkg-old-price {
    font-size: 1rem;
    color: #ff4d4d;
    text-decoration: line-through;
    font-weight: 600;
    opacity: 1;
}

.pkg-new-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
}

/* Shipping Tags in Package Cards */
.shipping-notice-box {
    background: linear-gradient(135deg, rgba(255, 235, 204, 0.9), rgba(255, 243, 224, 0.9));
    border: 1px dashed #FF8C42;
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #8C4000;
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.15);
}

.shipping-notice-box i {
    font-size: 1.2rem;
    color: #FF6B35;
    flex-shrink: 0;
}

.pkg-shipping-tag {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
    margin-top: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.pkg-shipping-tag.paid {
    background: #FFF3CD;
    color: #856404;
    border: 1px solid #FFEEBA;
}

.pkg-shipping-tag.free {
    background: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.pkg-shipping-note {
    font-weight: 700;
    font-size: 0.85rem;
}

.pkg-shipping-note.paid {
    color: #D2691E;
}

.shipping-green {
    color: #2E7D32;
}

.pkg-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.check-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.package-card.selected .check-icon {
    opacity: 1;
}

.package-card.popular .badge-popular {
    top: -10px;
    left: 20px;
    transform: none;
    font-size: 0.7rem;
    padding: 2px 10px;
}

/* Discount Badge */
.discount-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(135deg, #FF6B35, #FF5722);
    /* Portocaliu Aprins Strălucitor */
    color: white;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6), 0 0 20px rgba(255, 87, 34, 0.4);
    /* Shadow puternic + glow */
    z-index: 5;
    transform: rotate(5deg);
    animation: pulse-glow 2s infinite;
}

.discount-tag {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #FF5722);
    /* Portocaliu Aprins Strălucitor */
    color: white;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-size: 0.8rem;
    vertical-align: middle;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
}

/* Shipping Form */
.glass-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 142, 35, 0.2);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-summary {
    background: rgba(107, 142, 35, 0.08);
    /* Verde Foarte Deschis */
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid rgba(107, 142, 35, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dim);
}


.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid rgba(107, 142, 35, 0.3);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

#summary-total-price {
    white-space: nowrap;
    text-align: right;
}

.summary-actions-mobile {
    margin-top: 15px;
    text-align: center;
}

.btn-change-package-simple {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-change-package-simple:hover {
    color: var(--primary-color);
}

.pulse-btn {
    font-size: 1.2rem;
    padding: 18px;
    margin-top: 10px;
}

/* Image Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.2);
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 540px;
    background: #ffffff;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 16px;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    background: #ffffff;
    margin: auto;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 12px;
}

.slider-btn.next {
    right: 12px;
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
    background: #F7F5EE;
    border-top: 1px solid rgba(107, 142, 35, 0.15);
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(107, 142, 35, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(107, 142, 35, 0.4);
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 50px;
    min-height: 100vh;
}

.legal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--secondary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-dim);
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: var(--text-dim);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--primary-color);
}

.last-updated {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-dim);
}

.back-home {
    text-align: center;
    margin: 30px 0;
}

.return-form-section {
    margin: 40px 0;
}

.return-form-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.return-form-section select {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
}

.return-form-section select:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.return-form-section textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    resize: vertical;
}

.return-form-section textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-info-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.contact-info-box h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info-box p {
    line-height: 1.8;
    color: var(--text-dim);
}

.contact-info-box a {
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-info-box a:hover {
    color: var(--primary-color);
}

.captcha-group {
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    padding: 15px;
}

.captcha-group label {
    font-size: 1rem;
}

.captcha-group #captcha-question {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .hero {
        padding-bottom: 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .features {
        padding: 20px 0;
    }

    .logo {
        font-size: 1.25rem;
        white-space: nowrap;
    }

    .phone-nav {
        background: rgba(46, 125, 50, 0.08);
        color: #1B5E20 !important;
        border: 1.5px solid #2E7D32;
        padding: 6px 12px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 700;
        white-space: nowrap;
        flex-shrink: 0;
        gap: 6px;
        box-shadow: none;
    }

    .phone-nav i {
        font-size: 0.85rem;
        color: #2E7D32;
    }

    .slider-wrapper {
        height: 380px;
    }

    .slide {
        padding: 8px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .slider-btn.prev {
        left: 8px;
    }

    .slider-btn.next {
        right: 8px;
    }

    .slider-dots {
        padding: 8px 0;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 18px;
    }

    .showcase {
        padding: 15px 0;
        /* Redus pentru spațiere compactă pe mobil */
    }

    .showcase-content {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        order: -1;
    }

    .checkout-section {
        padding: 15px 0;
        /* Redus pentru spațiere compactă pe mobil */
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-grid {
        padding: 0 10px;
    }

    /* Checkout Mobile */
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        margin-left: 0;
    }

    .anpc-logos {
        gap: 15px;
    }

    .anpc-logo {
        height: 30px;
    }

    .legal-content {
        padding: 20px;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-page {
        padding-top: 100px;
    }

    .package-card {
        padding: 15px;
    }

    .pkg-header h4 {
        font-size: 1rem;
    }

    .pkg-price {
        font-size: 1.1rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        /* Slightly smaller for better fit */
    }

    .mobile-break {
        display: block;
    }

    .btn-separator {
        display: none;
    }

    /* Prevent auto-zoom on iOS and improve input readability */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px !important;
    }

    /* Better thumb spacing for packages */
    .package-card {
        padding: 20px 15px;
        margin-bottom: 5px;
    }
}

/* Sales Popup */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 142, 35, 0.3);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    padding: 12px;
    width: 320px;
    z-index: 9999;
    transform: translateX(-150%);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
    opacity: 0;
}

.sales-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.popup-img {
    margin-right: 15px;
    flex-shrink: 0;
}

.popup-img img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.popup-content {
    flex-grow: 1;
}

.popup-time {
    font-size: 0.75rem;
    color: #888;
    margin: 0 0 2px 0;
}

.popup-text {
    font-size: 0.85rem;
    color: #333;
    margin: 0 0 2px 0;
    line-height: 1.2;
}

.popup-text strong {
    color: var(--primary-color);
}

.popup-product {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px 0;
}

.popup-verify {
    font-size: 0.75rem;
    color: #4CAF50;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #333;
}

@media (max-width: 768px) {
    .sales-popup {
        left: 4%;
        width: 92%;
        bottom: 72px;
        padding: 10px;
        z-index: 99999;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
        transform: translateY(150%);
        transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
    }
    .sales-popup.show {
        transform: translateY(0);
    }
    .popup-img img {
        width: 50px;
        height: 50px;
    }
    .popup-text {
        font-size: 0.8rem;
    }
    .popup-product {
        font-size: 0.85rem;
    }
    .popup-verify {
        font-size: 0.7rem;
    }
}

/* ========================================================
   STILURI CONFIGURATOR INTERACTIV & COMBO (KINOKI + PELIN)
   ======================================================== */

/* Combo Presets Row */
.combo-presets-wrapper {
    margin-bottom: 25px;
}

.combo-presets-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.combo-presets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.combo-btn {
    background: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(107, 142, 35, 0.25);
    border-radius: 12px;
    padding: 12px 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    font-family: var(--font-main);
}

.combo-btn:hover {
    border-color: var(--primary-color);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(107, 142, 35, 0.15);
}

.combo-btn.active {
    border-color: #FF6B35;
    background: linear-gradient(135deg, rgba(255, 245, 238, 0.95), rgba(255, 255, 255, 0.95));
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.combo-btn-badge {
    position: absolute;
    top: -9px;
    right: 10px;
    background: linear-gradient(135deg, #FF6B35, #FF5722);
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.combo-btn-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 3px;
}

.combo-btn-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.4;
    margin-top: 2px;
}

.combo-btn-desc strong {
    color: #1B5E20;
    font-weight: 800;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    padding: 1px 7px;
    border-radius: 5px;
    display: inline-block;
    font-size: 0.82rem;
}

.stepper-unit-price strong {
    color: #1B5E20;
    font-weight: 800;
}

.combo-btn-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-top: 6px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.combo-btn-price .old {
    font-size: 0.82rem;
    color: #ff4d4d;
    text-decoration: line-through;
    font-weight: 600;
}

/* Product Stepper Cards */
.product-steppers-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
}

.product-stepper-card {
    background: white;
    border: 2px solid rgba(107, 142, 35, 0.22);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.product-stepper-card:hover {
    border-color: rgba(107, 142, 35, 0.45);
    box-shadow: 0 6px 22px rgba(107, 142, 35, 0.12);
}

.product-stepper-card.has-items {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, #ffffff, rgba(245, 250, 240, 0.6));
}

.stepper-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
}

.stepper-thumb {
    width: 75px;
    height: 75px;
    border-radius: 12px;
    object-fit: contain;
    background: #ffffff;
    border: 2px solid rgba(107, 142, 35, 0.2);
    flex-shrink: 0;
    padding: 3px;
}

.stepper-info {
    flex: 1;
}

.stepper-badge {
    display: inline-block;
    background: rgba(107, 142, 35, 0.12);
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.stepper-info h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 4px;
}

.stepper-info p {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.35;
}

/* Stepper Controls Bar */
.stepper-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(245, 248, 240, 0.8);
    border: 1px solid rgba(107, 142, 35, 0.15);
    border-radius: 12px;
    padding: 10px 14px;
    gap: 12px;
    flex-wrap: wrap;
}

.stepper-counter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stepper-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.stepper-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.stepper-btn:active {
    transform: scale(0.95);
}

.stepper-input {
    width: 55px;
    height: 38px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 800;
    border: 2px solid rgba(107, 142, 35, 0.25);
    border-radius: 10px;
    background: white;
    color: var(--text-light);
    font-family: var(--font-main);
}

.stepper-quick-add {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.quick-add-btn {
    background: white;
    border: 1px solid rgba(107, 142, 35, 0.3);
    border-radius: 8px;
    padding: 4px 9px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
    font-family: var(--font-main);
}

.quick-add-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.stepper-price-box {
    text-align: right;
    min-width: 90px;
}

.stepper-unit-price {
    font-size: 0.72rem;
    color: var(--text-dim);
}

.stepper-subtotal {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary-color);
}

/* Free Shipping Progress Bar */
.shipping-progress-container {
    background: white;
    border: 2px dashed #7CB342;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(124, 179, 66, 0.12);
}

.shipping-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.shipping-progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(107, 142, 35, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF9800, #4CAF50);
    border-radius: 10px;
    width: 0%;
    transition: width 0.4s ease;
}

.shipping-unlocked {
    color: #2E7D32;
    font-weight: 800;
    display: none;
    align-items: center;
    gap: 6px;
}

/* Synergy Section (Zi & Noapte) */
.synergy-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.4), rgba(245,248,240,0.8));
}

.synergy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 35px;
}

.synergy-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(107, 142, 35, 0.18);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.synergy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(107, 142, 35, 0.15);
}

.synergy-card.day {
    border-top: 6px solid #FF9800;
}

.synergy-card.night {
    border-top: 6px solid #3F51B5;
}

.synergy-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.synergy-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
}

.synergy-icon.day-icon {
    background: linear-gradient(135deg, #FFB300, #FF6F00);
}

.synergy-icon.night-icon {
    background: linear-gradient(135deg, #3949AB, #1A237E);
}

.synergy-title-group h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-light);
}

.synergy-title-group span {
    font-size: 0.85rem;
    color: var(--text-dim);
    font-weight: 600;
}

.synergy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.synergy-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

.synergy-list li i {
    color: #4CAF50;
    font-size: 1.1rem;
    margin-top: 2px;
}

.synergy-img-wrap {
    text-align: center;
    margin-top: 15px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.synergy-img-wrap img {
    width: 100%;
    max-width: 480px;
    height: auto !important;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    object-fit: contain;
}

/* Dual Hero Visual Showcase */
.dual-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.dual-hero-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    border: 2px solid rgba(107, 142, 35, 0.2);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.dual-hero-item .hero-tag {
    background: rgba(46, 125, 50, 0.9);
    color: white;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 15px;
    margin-bottom: 10px;
    display: inline-block;
    align-self: flex-start;
}

.dual-hero-item img {
    width: 100%;
    max-width: 260px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fbfdf9;
}

.dual-hero-item h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 4px;
}

.dual-hero-item p {
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* Guarantee / Trust Badges Grid */
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0 20px;
}

.trust-badge-card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(107, 142, 35, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.trust-badge-icon {
    font-size: 2.2rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

.trust-badge-card h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 6px;
}

.trust-badge-card p {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.35;
}

@media (max-width: 900px) {
    .synergy-grid {
        grid-template-columns: 1fr;
    }
    .dual-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .dual-hero-item img {
        height: auto;
        max-height: 180px;
        object-fit: contain;
    }
}

@media (max-width: 600px) {
    .dual-hero-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .dual-hero-item img {
        height: auto;
        max-height: 220px;
        object-fit: contain;
    }
    .stepper-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .stepper-price-box {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(107, 142, 35, 0.15);
        padding-top: 8px;
        margin-top: 4px;
    }
    .combo-presets-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================
   OPTIMIZĂRI PENTRU SENIORI / PENSIONARI (SIMPLU ȘI MARE)
   ======================================================== */

.senior-order-banner {
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: white;
    text-align: center;
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 22px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.senior-order-banner a {
    color: #FFE082;
    text-decoration: underline;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.senior-order-banner i {
    font-size: 1.3rem;
    color: #FFE082;
    animation: pulse 1.5s infinite;
}

.senior-price-callout {
    background: #FFF8E1;
    border: 2px solid #FFA000;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.senior-price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #D32F2F, #C62828);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 3px 10px rgba(211, 47, 47, 0.3);
}

.senior-price-callout p {
    font-size: 0.95rem;
    color: #5D4037;
    margin: 0;
    font-weight: 600;
}

/* Butoane de Stepper Mărite pentru Degete și Telefoane */
.stepper-btn {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    font-weight: 900;
    border-radius: 12px;
    border: 3px solid var(--primary-color);
}

.stepper-input {
    width: 65px;
    height: 48px;
    font-size: 1.4rem;
    font-weight: 800;
}

.stepper-hint {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 4px;
    font-style: italic;
}

.trust-check-list {
    margin-top: 15px;
    padding: 12px;
    background: rgba(46, 125, 50, 0.08);
    border-radius: 8px;
    border-left: 4px solid #2E7D32;
    font-size: 0.88rem;
    color: #1B5E20;
    font-weight: 600;
}

/* ========================================================
   FAQ SECTION (ÎNTREBĂRI FRECVENTE) & STICKY CTA
   ======================================================== */

.faq-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(245, 248, 240, 0.5), rgba(255, 255, 255, 0.8));
}

.faq-subtitle {
    text-align: center;
    max-width: 720px;
    margin: -30px auto 40px;
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 14px;
    border: 2px solid rgba(107, 142, 35, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(107, 142, 35, 0.4);
    box-shadow: 0 6px 20px rgba(107, 142, 35, 0.1);
}

.faq-item[open] {
    border-color: var(--primary-color);
    box-shadow: 0 6px 22px rgba(107, 142, 35, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.2s;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: rgba(107, 142, 35, 0.05);
}

.faq-question span {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.faq-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-arrow {
    font-size: 0.95rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 16px 22px 20px 22px;
    color: var(--text-dim);
    font-size: 0.96rem;
    line-height: 1.6;
    border-top: 1px solid rgba(107, 142, 35, 0.12);
    background: #fafcf7;
}

.faq-cta-box {
    text-align: center;
    max-width: 650px;
    margin: 45px auto 0;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    border: 2px dashed #7CB342;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.faq-cta-box h3 {
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 800;
}

.faq-cta-box p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 20px;
}

/* ========================================================
   BOTTOM STICKY FLOATING ORDER BAR (CA PE PLASTURIDETOX.RO)
   ======================================================== */
.mobile-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
    border-top: 2px solid var(--primary-color, #2E7D32);
    padding: 10px 16px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-floating-bar.active {
    transform: translateY(0);
}

.mfb-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.mfb-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.mfb-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #1E293B;
}

.mfb-price {
    font-size: 0.82rem;
    color: #64748B;
}

.mfb-price strong {
    color: #D32F2F;
    font-weight: 800;
    font-size: 1.05rem;
}

.mfb-btn {
    padding: 10px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    white-space: nowrap;
    border-radius: 30px !important;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B35, #FF5722);
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mfb-btn:active {
    transform: scale(0.96);
}

@media (max-width: 480px) {
    .mobile-floating-bar {
        padding: 8px 12px;
    }
    .mfb-title {
        font-size: 0.84rem;
    }
    .mfb-price {
        font-size: 0.76rem;
    }
    .mfb-price strong {
        font-size: 0.95rem;
    }
    .mfb-btn {
        padding: 9px 15px !important;
        font-size: 0.86rem !important;
        gap: 6px;
    }
}

@media (max-width: 768px) {
    /* Mobile Text & Scroll Distance Optimizations */
    .hero {
        padding-top: 75px;
        padding-bottom: 15px;
    }

    .hero-text h1 {
        font-size: 1.85rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .hero-sub {
        font-size: 0.92rem;
        margin-bottom: 15px;
        line-height: 1.45;
    }

    .hero-stats {
        gap: 8px;
        flex-direction: column;
        margin-bottom: 18px;
        font-size: 0.85rem;
    }

    .synergy-section {
        padding: 25px 0;
    }

    .synergy-card {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .synergy-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    .synergy-icon {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        border-radius: 10px;
    }

    .synergy-title-group h3 {
        font-size: 1.1rem;
    }

    .synergy-list {
        margin: 12px 0;
    }

    .synergy-list li {
        margin-bottom: 8px;
        font-size: 0.88rem;
        line-height: 1.35;
    }

    .synergy-img-wrap img {
        max-height: 200px;
        object-fit: contain;
    }

    .showcase {
        padding: 20px 0;
    }

    .showcase-text h2 {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .showcase-text p {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .benefits-list {
        margin-top: 14px;
    }

    .benefits-list li {
        margin-bottom: 8px;
        font-size: 0.86rem;
    }

    .rounded-img {
        width: 100%;
        max-width: 340px;
        height: auto !important;
        max-height: none;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 18px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        margin: 0 auto 16px;
        display: block;
    }

    .showcase-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .testimonials-section {
        padding: 25px 0 !important;
    }

    .features {
        padding: 30px 0;
    }

    .feature-card {
        padding: 18px 14px;
    }

    .section-title {
        font-size: 1.65rem;
        margin-bottom: 20px;
    }

    .faq-section {
        padding: 30px 0;
    }

    .faq-subtitle {
        margin-top: -10px;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 12px 16px 16px 16px;
        font-size: 0.88rem;
    }
}

/* ========================================================
   STATUS BANNER COMANDĂ MINIMĂ 5 CUTII (FLEXIBIL)
   ======================================================== */
.min-order-status-banner {
    padding: 14px 18px;
    border-radius: 12px;
    margin-top: 18px;
    margin-bottom: 5px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.min-order-status-banner i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.min-order-status-banner.warning {
    background: #FFF9C4;
    border: 2px solid #FBC02D;
    color: #5D4037;
}

.min-order-status-banner.warning i {
    color: #F57F17;
}

.min-order-status-banner.need-more {
    background: #FFF3E0;
    border: 2px solid #FF9800;
    color: #E65100;
    animation: pulse-slow 1.8s infinite;
}

.min-order-status-banner.need-more i {
    color: #E65100;
}

.min-order-status-banner.valid {
    background: #E8F5E9;
    border: 2px solid #2E7D32;
    color: #1B5E20;
}

.min-order-status-banner.valid i {
    color: #2E7D32;
}

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

/* ========================================================
   MINI-GARANȚIE VIZUALĂ (SIGILIU DE CALITATE & RISC ZERO)
   ======================================================== */
.seal-guarantee-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F2 60%, #F5F1E6 100%);
    border: 2px solid #E0B84C;
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 22px;
    box-shadow: 0 6px 20px rgba(224, 184, 76, 0.18), 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.seal-guarantee-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.seal-badge {
    flex-shrink: 0;
    width: 78px;
    height: 78px;
    background: linear-gradient(145deg, #FFD54F, #FFA000);
    border-radius: 50%;
    padding: 3px;
    box-shadow: 0 4px 14px rgba(255, 160, 0, 0.38), inset 0 2px 4px rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: seal-shimmer 4s infinite ease-in-out;
}

@keyframes seal-shimmer {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.04) rotate(1deg); box-shadow: 0 6px 18px rgba(255, 160, 0, 0.5); }
}

.seal-badge-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1B5E20, #2E7D32);
    border-radius: 50%;
    border: 2px dashed rgba(255, 215, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFE082;
    text-align: center;
    padding: 4px;
}

.seal-icon {
    font-size: 1.1rem;
    color: #FFE082;
    margin-bottom: 2px;
}

.seal-pct {
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.5px;
    color: #FFFFFF;
}

.seal-lbl {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #FFE082;
}

.seal-details {
    flex: 1;
}

.seal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    font-weight: 800;
    color: #1B5E20;
    margin-bottom: 6px;
    letter-spacing: 0.2px;
}

.seal-cert-icon {
    color: #FFA000;
    font-size: 1.15rem;
}

.seal-desc {
    font-size: 0.84rem;
    color: #4E342E;
    line-height: 1.45;
    margin-bottom: 10px;
}

.seal-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.seal-bullets span {
    font-size: 0.78rem;
    font-weight: 700;
    color: #2E7D32;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(46, 125, 50, 0.08);
    padding: 3px 8px;
    border-radius: 6px;
}

.seal-bullets span i {
    color: #2E7D32;
    font-size: 0.82rem;
}

@media (max-width: 600px) {
    .seal-guarantee-card {
        flex-direction: column;
        text-align: center;
        padding: 16px 14px;
        gap: 12px;
    }
    
    .seal-title {
        justify-content: center;
        font-size: 0.92rem;
    }

    .seal-bullets {
        justify-content: center;
    }
}

/* ========================================================
   INDICATOR VIZUAL VALIDARE TELEFON (FEEDBACK INSTANT)
   ======================================================== */
.phone-group-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.phone-input-wrapper input {
    padding-right: 46px !important;
    transition: all 0.25s ease;
    font-size: 1.1rem !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.phone-validation-icon {
    position: absolute;
    right: 14px;
    font-size: 1.35rem;
    pointer-events: none;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: pop-icon 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes pop-icon {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.phone-input-wrapper input.is-valid {
    border-color: #2E7D32 !important;
    background-color: #F1F8E9 !important;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.22) !important;
    color: #1B5E20 !important;
}

.phone-input-wrapper input.is-invalid {
    border-color: #D32F2F !important;
    background-color: #FFEBEE !important;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.18) !important;
    color: #B71C1C !important;
}

.phone-feedback-msg {
    margin-top: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    display: none;
    line-height: 1.35;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.phone-feedback-msg.valid {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1B5E20;
    background: #E8F5E9;
    border: 1px solid #A5D6A7;
    animation: fadeInDown 0.25s ease;
}

.phone-feedback-msg.invalid {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #B71C1C;
    background: #FFEBEE;
    border: 1px solid #FFCDD2;
    animation: fadeInDown 0.25s ease;
}

.phone-feedback-msg.typing {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5D4037;
    background: #FFF8E1;
    border: 1px solid #FFE082;
    animation: fadeInDown 0.25s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
