.hero-product {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(135deg, #fdf6e3 0%, #f5e8c8 50%, #fffaf0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

@media(max-width: 485px) {
    .hero-product {
        height: 150vh;
        min-height: 150vh;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    padding: 4rem;
    border-radius: 30px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-product h1 {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
}

.hero-product h1 .icon {
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.hero-product p {
    font-size: 1.4rem;
    color: #654321;
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features
.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: wheat;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 600;
    color: #8B4513;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 1.3rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 400;
    margin-left: 80px;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

@media(max-width: 765px) {
    .hero-btn {
        margin-left: 0px;
    }
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn.primary {
    background: linear-gradient(45deg, #D4A574, #B8860B, #D2691E);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.6);
}

.hero-btn.secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #D4A574;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.2);
}

.hero-btn.secondary:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: scale(1.2);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #8B4513;
    font-weight: 600;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid #8B4513;
    border-bottom: 3px solid #8B4513;
    transform: rotate(45deg);
    margin: 0.5rem auto 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-product h1 {
        font-size: 3rem;
    }
    
    .hero-content {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-product {
        padding: 1.5rem;
    }
    
    .hero-content {
        padding: 2.5rem;
    }
    
    .hero-product h1 {
        font-size: 2.5rem;
    }
    
    .hero-product p {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .scroll-indicator {
        left: 40%;
    }
}

@media (max-width: 480px) {
    .hero-product {
        padding: 1rem;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-product h1 {
        font-size: 2rem;
    }
    
    .hero-product p {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}