/* Reset & Base Styles with Animations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange: #FF9800;
    --orange-dark: #F57C00;
    --orange-light: #FFB74D;
    --orange-very-light: #FFE0B2;
    --orange-glow: rgba(255, 152, 0, 0.3);
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #E0E0E0;
    --dark-gray: #757575;
    --text: #333333;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px); 
    }
    to { 
        opacity: 1;
        transform: translateY(0); 
    }
}

@keyframes slideLeft {
    from { 
        opacity: 0;
        transform: translateX(-30px); 
    }
    to { 
        opacity: 1;
        transform: translateX(0); 
    }
}

@keyframes slideRight {
    from { 
        opacity: 0;
        transform: translateX(30px); 
    }
    to { 
        opacity: 1;
        transform: translateX(0); 
    }
}

@keyframes scaleIn {
    from { 
        opacity: 0;
        transform: scale(0.9); 
    }
    to { 
        opacity: 1;
        transform: scale(1); 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--orange-glow);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 152, 0, 0);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

@keyframes bounce {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 10px var(--orange-glow); 
    }
    50% { 
        box-shadow: 0 0 20px var(--orange-glow); 
    }
}

@keyframes ripple {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes loadingDots {
    0%, 80%, 100% { 
        transform: scale(0);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes orangeRoll {
    0% { 
        transform: translateX(-100px) rotate(0deg);
        opacity: 0;
    }
    100% { 
        transform: translateX(100vw) rotate(360deg);
        opacity: 1;
    }
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    animation: fadeIn 0.5s ease-out;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-spinner {
    text-align: center;
}

.orange-pulse {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: pulse 1.5s infinite;
    position: relative;
}

.orange-pulse::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: var(--orange-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: pulse 1.5s infinite 0.5s;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Animation Classes */
.fade-in-up {
    animation: slideUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideRight 0.6s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.bounce-animation {
    animation: bounce 1s infinite;
}

.glow-animation {
    animation: glow 2s infinite;
}

.scale-on-hover {
    transition: var(--transition);
}

.scale-on-hover:hover {
    transform: scale(1.05);
}

.scale-hover:hover {
    transform: scale(1.05);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideUp 0.5s ease-out;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    animation: scaleIn 0.5s ease-out;
}

.company-name {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange-dark);
    background: linear-gradient(45deg, var(--orange-dark), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quality-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(45deg, var(--orange-light), var(--orange));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: glow 2s infinite;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-weight: 600;
    padding: 10px 20px;
    background: var(--orange-very-light);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

.contact-link:hover {
    background: var(--orange-light);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-link i {
    font-size: 1.2rem;
}

/* Hide phone number text on mobile for header contact link */
.contact-link span {
    display: none;
}

/* Show phone number text on desktop */
@media (min-width: 768px) {
    .contact-link span {
        display: inline;
    }
}

/* For footer social links, we need to be more specific */
.social-link.whatsapp .social-text span,
.social-link.phone .social-text span {
    display: none;
}

@media (min-width: 768px) {
    .social-link.whatsapp .social-text span,
    .social-link.phone .social-text span {
        display: block;
    }
}

/* For mobile, ensure the WhatsApp icon is properly sized */
@media (max-width: 767px) {
    .contact-link {
        padding: 10px 15px;
        min-width: 44px; /* Minimum touch target size */
        min-height: 44px;
        justify-content: center;
    }
    
    .contact-link i {
        font-size: 1.4rem; /* Slightly larger for mobile */
    }
    
    /* Hide the WhatsApp text in footer on mobile */
    .social-text span {
        display: none !important;
    }
}

/* For very small screens, reduce padding */
@media (max-width: 480px) {
    .contact-link {
        padding: 8px 12px;
    }
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--orange);
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
    animation: slideUp 0.3s ease-out;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--text);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--orange-very-light);
    color: var(--orange);
    transform: translateX(5px);
}

.nav-link i {
    color: var(--orange);
    width: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 var(--radius) var(--radius);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: scaleIn 1s ease-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(245, 124, 0, 0.4) 100%);
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--orange-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.floating-orange {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    width: 30px;
    height: 30px;
}

.floating-3 {
    top: 40%;
    right: 30%;
    animation-delay: 4s;
    width: 25px;
    height: 25px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
    border-color: var(--orange-light);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-animated {
    overflow: hidden;
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

.btn-glow {
    animation: glow 2s infinite;
}

.btn-glow:hover {
    animation: none;
    box-shadow: 0 0 20px var(--orange-glow);
}

.btn-secondary {
    background: var(--light-gray);
    color: var(--text);
    border: 2px solid var(--gray);
}

.btn-secondary:hover {
    background: var(--gray);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.btn-email {
    background: linear-gradient(45deg, #EA4335, #D14836);
    color: white;
}

.btn-phone {
    background: linear-gradient(45deg, #34A853, #0F9D58);
    color: white;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--orange-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--orange), var(--orange-dark));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Card */
.product-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.product-details {
    order: 2;
}

.product-image-container {
    order: 1;
    position: relative;
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--orange);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: bounce 1s infinite;
}

.badge-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.premium-badge {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
}

.export-badge {
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
    color: white;
}

.product-name {
    font-family: var(--font-secondary);
    font-size: 2rem;
    color: var(--orange-dark);
    margin-bottom: 15px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--orange-light), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-text h4 {
    color: var(--orange-dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature-text p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin: 0;
}

.highlight-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 30px 0;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--orange-very-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--orange);
}

.highlight i {
    color: var(--orange);
    font-size: 1.2rem;
}

.highlight h4 {
    color: var(--orange-dark);
    margin-bottom: 5px;
}

.highlight p {
    margin: 0;
    font-size: 0.9rem;
}

.cta-container {
    margin-top: 30px;
}

.trust-signals {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-signal i {
    color: var(--orange);
}

/* Gallery */
.gallery {
    margin: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    aspect-ratio: 1;
    background: var(--light-gray);
    animation: fadeIn 0.6s ease-out;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-loading {
    text-align: center;
    padding: 40px;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    animation: loadingDots 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }

/* Blog */
.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.language-toggle {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border: 2px solid var(--orange);
    background: none;
    color: var(--orange);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-family: var(--font-primary);
}

.lang-btn.active {
    background: linear-gradient(45deg, var(--orange), var(--orange-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.lang-btn:hover:not(.active) {
    background: var(--orange-very-light);
    transform: translateY(-2px);
}

.blog-content {
    margin-bottom: 60px;
}

.language-content {
    display: none;
}

.language-content.active {
    display: block;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.blog-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--orange-light), var(--orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.blog-card h3 {
    color: var(--orange-dark);
    margin: 0;
    font-size: 1.3rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
    min-width: 120px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.step-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
}

.nutrition-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.nutrition-item {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius);
}

.nutrition-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 5px;
}

.nutrition-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.nutrition-bar {
    height: 6px;
    background: var(--orange);
    border-radius: 3px;
    margin: 0 auto;
    max-width: 100px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius);
    transition: var(--transition);
}

.benefit:hover {
    background: var(--orange-very-light);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.benefit-content h4 {
    color: var(--orange-dark);
    margin-bottom: 5px;
}

.benefit-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tip {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--radius);
}

.tip i {
    color: var(--orange);
    font-size: 1.2rem;
    margin-top: 5px;
}

.tip h4 {
    color: var(--orange-dark);
    margin-bottom: 5px;
    font-size: 1rem;
}

.tip p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Order Banner */
.order-banner {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: var(--radius);
    padding: 50px 40px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
    animation: glow 3s infinite;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.banner-text {
    max-width: 600px;
}

.banner-title {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.banner-oranges {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    opacity: 0.3;
    overflow: hidden;
}

.orange-animation {
    position: absolute;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    animation: orangeRoll 10s linear infinite;
}

.orange-animation.delay-1 { animation-delay: 3s; top: 20%; }
.orange-animation.delay-2 { animation-delay: 6s; top: 60%; }

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.footer-company {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--orange-light);
    margin-bottom: 10px;
    background: linear-gradient(45deg, var(--orange-light), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-certifications {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.cert-badge i {
    color: var(--orange-light);
}

.footer-contact h4,
.footer-delivery h4 {
    color: var(--orange-light);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    transition: var(--transition);
    color: var(--white);
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--orange-light);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.social-link.whatsapp .social-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.social-link.email .social-icon {
    background: rgba(234, 67, 53, 0.2);
    color: #EA4335;
}

.social-link.facebook .social-icon {
    background: rgba(24, 119, 242, 0.2);
    color: #1877F2;
}

.social-link.phone .social-icon {
    background: rgba(52, 168, 83, 0.2);
    color: #34A853;
}

.social-text {
    flex: 1;
}

.social-text strong {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2px;
}

.social-text span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-badge {
    width: 30px;
    height: 30px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.footer-delivery {
    text-align: center;
}

.delivery-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.delivery-item i {
    color: var(--orange-light);
    font-size: 1.2rem;
    margin-top: 5px;
}

.delivery-item h5 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    font-size: 1rem;
}

.delivery-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    margin-bottom: 20px;
}

.footer-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 5px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--orange-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--gray);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: var(--radius) var(--radius) 0 0;
}

.modal-title {
    color: var(--orange-dark);
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-gray);
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--light-gray);
    color: var(--orange);
}

.modal-body {
    padding: 25px;
}

/* Order Summary */
.order-summary {
    background: var(--orange-very-light);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-item i {
    font-size: 2rem;
    color: var(--orange);
}

.summary-item h4 {
    color: var(--orange-dark);
    margin-bottom: 5px;
}

.summary-item p {
    color: var(--dark-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Form Styles */
.form-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gray);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h4 {
    color: var(--orange-dark);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px var(--orange-very-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: var(--orange);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--orange-dark);
}

.quantity-btn:active {
    transform: scale(0.95);
}

#quantity {
    text-align: center;
    flex: 1;
    max-width: 100px;
}

.error-message {
    color: #D32F2F;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
    animation: slideUp 0.3s ease-out;
}

.error-message.show {
    display: block;
}

.form-notice {
    background: var(--orange-very-light);
    padding: 20px;
    border-radius: var(--radius);
    margin: 25px 0;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-item i {
    color: var(--orange-dark);
    font-size: 1.1rem;
    margin-top: 3px;
}

.notice-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
    flex: 1;
}

.form-actions {
    margin-top: 30px;
}

.form-help {
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: scaleIn 0.3s ease-out;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
    padding: 25px;
    text-align: center;
    font-size: 1.1rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3001;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 3001;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Fallback Modal */
.success-animation {
    text-align: center;
    margin-bottom: 25px;
}

.success-animation i {
    font-size: 4rem;
    color: #4CAF50;
    margin-bottom: 15px;
    animation: scaleIn 0.5s ease-out;
}

.success-animation p {
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 600;
}

.message-container {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.message-box {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    margin: 15px 0;
    font-family: monospace;
    font-size: 0.9rem;
    white-space: pre-wrap;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid var(--gray);
}

.copy-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.copy-success {
    display: none;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    font-weight: 600;
    padding: 10px 15px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: var(--radius);
}

.copy-success.show {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

.contact-section {
    margin-bottom: 25px;
}

.contact-section h4 {
    color: var(--orange-dark);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.contact-display {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--radius);
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--orange);
    font-size: 1.2rem;
    width: 24px;
}

.contact-item strong {
    display: block;
    color: var(--text);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-item p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(45deg, #4CAF50, #2E7D32);
    color: white;
    padding: 15px 25px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 4000;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .product-card {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .product-details {
        order: 1;
    }
    
    .product-image-container {
        order: 2;
    }
    
    .product-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .highlight-box {
        grid-template-columns: 1fr 1fr;
    }
    
    .blog-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    
    .language-toggle {
        margin-top: 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-brand {
        text-align: left;
    }
    
    .footer-location {
        justify-content: flex-start;
    }
    
    .footer-certifications {
        justify-content: flex-start;
    }
    
    .footer-contact h4,
    .footer-delivery h4 {
        text-align: left;
        justify-content: flex-start;
    }
    
    .footer-delivery {
        text-align: left;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .menu-toggle {
        display: block;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .hero-image-container {
        height: 600px;
    }
    
    .banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .banner-text {
        max-width: 400px;
    }
    
    .process-steps {
        flex-wrap: nowrap;
    }
}

/* Print Styles */
@media print {
    .header, .footer, .btn, .modal, .lightbox, .notification, .floating-orange, .menu-toggle, .loading-overlay {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .hero-image-container {
        height: 200px;
    }
    
    .hero-overlay {
        position: relative;
        background: none;
        color: black;
        padding: 20px 0;
    }
    
    .hero-title {
        color: black;
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        color: black;
        font-size: 1rem;
    }
    
    .product-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .blog-card {
        break-inside: avoid;
    }
    
    a {
        text-decoration: underline;
        color: black;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8rem;
    }
}

/* Accessibility */
input.error,
textarea.error {
    border-color: #D32F2F !important;
}

input.error:focus,
textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1) !important;
}

/* Focus styles for keyboard navigation */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Lazy loading */
.gallery-img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.gallery-img.loaded {
    opacity: 1;
}