:root {
    --bg-cream: #FFF8EE; 
    --text-dark: #2A1A10; 
    --accent-mango: #FF8C00; 
    --accent-mango-hover: #FF7300; 
    --mango-gradient: linear-gradient(135deg, #FFB703, #FB8500); 
    --gold: #FFB703;
    --white: #FFFFFF;
    --shadow: 0 15px 35px rgba(251, 133, 0, 0.15); 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(circle at top right, #FFF8EE, #FFF0DF);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-dark);
}

/* Typography & Badges */
.badge {
    background: var(--mango-gradient);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(251, 133, 0, 0.3);
}

/* Buttons */
.btn-primary, .btn-submit {
    display: inline-block;
    background: var(--mango-gradient);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 8px 25px rgba(251, 133, 0, 0.4);
    letter-spacing: 0.5px;
}

.btn-primary:hover, .btn-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 30px rgba(251, 133, 0, 0.5);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 90vh;
    padding: 5% 8%;
    align-items: center;
    gap: 60px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 25px;
    background: -webkit-linear-gradient(45deg, var(--text-dark), #6E452B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: #5C4A3D;
    max-width: 90%;
    font-weight: 400;
}

.price-tag {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 500;
}

.price-tag span {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-mango);
    text-shadow: 0 2px 10px rgba(255, 140, 0, 0.2);
}

.delivery-note {
    margin-top: 15px;
    font-size: 1rem !important;
    color: #4CAF50; 
    font-weight: 600;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #FFE8D6 0%, #FFD6BA 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A373;
    box-shadow: 0 20px 40px rgba(200, 150, 100, 0.2);
    border: 4px solid var(--white);
    position: relative;
    overflow: hidden;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Anatomy Section */
.anatomy {
    padding: 100px 5%;
    text-align: center;
    background: var(--white);
    position: relative;
}

.anatomy h2 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: var(--accent-mango);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 50px 30px;
    background: radial-gradient(circle at top, #FFFFFF, #FFF9F2);
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 183, 3, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(251, 133, 0, 0.12);
    border-color: rgba(251, 133, 0, 0.3);
}

.feature-card .icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.feature-card p {
    color: #6D5E55;
    font-size: 1.05rem;
}

/* Order Section */
.order-section {
    padding: 120px 5%;
    background: var(--bg-cream);
    background-image: radial-gradient(#FFB703 0.5px, transparent 0.5px), radial-gradient(#FFB703 0.5px, #FFF8EE 0.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    background-attachment: fixed;
}

.order-container {
    max-width: 750px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.08);
    border: 1px solid rgba(251, 133, 0, 0.1);
}

.order-info {
    text-align: center;
    margin-bottom: 45px;
}

.order-info h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.order-info p {
    color: #6D5E55;
    font-size: 1.1rem;
}

.premium-form .form-group {
    margin-bottom: 30px;
}

.premium-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.premium-form input, 
.premium-form select, 
.premium-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #F0E6D2;
    border-radius: 15px;
    font-family: inherit;
    font-size: 1.1rem;
    background-color: #FFFCF9;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.premium-form input:focus, 
.premium-form select:focus, 
.premium-form textarea:focus {
    outline: none;
    border-color: var(--accent-mango);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(251, 133, 0, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 15px;
    padding: 20px;
    font-size: 1.2rem;
}

.hidden {
    display: none;
}

.success-message {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 20px;
    color: #1B5E20;
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.15);
}

/* Responsive Optimization */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 90px 5% 40px; 
        gap: 30px; 
    }

    .hero-content h1 { 
        font-size: 2.2rem; /* Намалено от 3rem */
        margin-bottom: 15px;
    }

    .hero-content p { 
        font-size: 1rem; 
        margin: 0 auto 20px; 
    }

    /* Цена и отстояния */
    .price-tag {
        font-size: 1.1rem;
        margin-bottom: 20px; /* Приближено към бутона */
    }

    .price-tag span {
        font-size: 1.8rem; /* Намален размер на цената */
    }

    /* Бутони - оптимизирани за палец */
    .btn-primary {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    /* Надпис за доставка */
    .delivery-note {
        margin-top: 10px; /* Приближено към бутона */
        font-size: 0.9rem !important; 
    }

    /* Anatomy Section */
    .anatomy {
        padding: 60px 5%;
    }

    .anatomy h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .features-grid { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card .icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    /* Order Section */
    .order-section {
        padding: 60px 5%;
    }

    .order-container { 
        padding: 30px 20px; 
        border-radius: 20px;
    }

    .order-info h2 {
        font-size: 2rem;
    }

    .order-info p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .premium-form input, 
    .premium-form select, 
    .premium-form textarea {
        padding: 14px 15px;
        font-size: 1rem;
    }
}

.hero-video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover; /* Гарантира, че видеото запълва формата без да се разтяга */
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(251, 133, 0, 0.2);
    border: 4px solid var(--white);
    display: block;
}