/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

:root {
    /* Colores andinos y orgánicos */
    --primary-green: #2d5016;
    --secondary-green: #4a7c59;
    --accent-green: #6b8e23;
    --light-green: #9acd32;
    --earth-brown: #8b4513;
    --warm-orange: #ff8c00;
    --sunset-orange: #ffa500;
    --cream-white: #f5f5dc;
    --natural-beige: #f0e68c;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
}

.logo-image {
    height: 36px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--light-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--light-green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.cart-icon {
    position: relative;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--light-green);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--warm-orange);
    color: var(--text-light);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.ai-assistant-icon {
    position: relative;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 1rem;
}

.ai-assistant-icon:hover {
    color: var(--light-green);
}

.ai-tooltip {
    position: absolute;
    background: var(--secondary-green);
    color: var(--text-light);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.ai-assistant-icon:hover .ai-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Estilos para el botón de compartir medios */
.share-media-icon {
    position: relative;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 1rem;
}

.share-media-icon:hover {
    color: var(--light-green);
}

.share-tooltip {
    position: absolute;
    background: var(--secondary-green);
    color: var(--text-light);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.share-media-icon:hover .share-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Estilos para el formulario de compartir medios */
.media-upload-group {
    margin-bottom: 2rem;
}

.media-preview-container {
    width: 100%;
    min-height: 200px;
    border: 2px dashed var(--secondary-green);
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    background: var(--cream-white);
    transition: var(--transition);
    cursor: pointer;
}

.media-preview-container:hover {
    border-color: var(--primary-green);
    background: var(--natural-beige);
}

.upload-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--secondary-green);
    width: 100%;
    padding: 1rem;
}

.upload-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.upload-placeholder p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.upload-formats {
    font-size: 0.8rem;
    color: #666;
}

.media-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.media-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.preview-item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #f0f0f0;
}

.preview-item img,
.preview-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}

.preview-remove:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Sección Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

/* Carrusel de fondo */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7), rgba(74, 124, 89, 0.7));
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: var(--warm-orange);
    color: var(--text-light);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.cta-button:hover {
    background: var(--sunset-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.element {
    position: absolute;
    font-size: 3rem;
    color: var(--light-green);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    left: 60%;
    animation-delay: 2s;
}

.element-3 {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Sección Productos */
.products-section {
    padding: 5rem 0;
    background: var(--cream-white);
}

@media (max-width: 768px) {
    .products-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 2rem 0;
    }
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 10px;
}

.filter-btn {
    background: var(--text-light);
    border: 2px solid var(--secondary-green);
    color: var(--secondary-green);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--secondary-green);
    color: var(--text-light);
}

/* Asegurar que los botones de filtro sean claramente interactivos y accesibles */
.filter-btn {
    cursor: pointer;
    user-select: none;
}

.filter-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74,124,89,0.18);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--warm-orange);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--secondary-green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    background: var(--secondary-green);
    color: var(--text-light);
    border: none;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.add-to-cart:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

/* Sección Quiénes Somos */
.about-section {
    padding: 5rem 0;
    background: var(--text-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

/* Historia */
.history-section {
    margin-bottom: 3rem;
}

.history-section h3 {
    font-size: 1.8rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

/* Misión y Visión */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission, .vision {
    background: var(--cream-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-green);
}

.mission h3, .vision h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mission h3 i, .vision h3 i {
    color: var(--secondary-green);
}

/* Valores */
.values-section {
    margin-bottom: 3rem;
}

.values-section h3 {
    font-size: 1.8rem;
    color: var(--secondary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.value {
    flex: 0 0 250px;
    text-align: center;
    padding: 2rem 1rem;
    background: var(--cream-white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.value:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
    border-color: var(--secondary-green);
}

.value i {
    font-size: 2.5rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.value h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.value p {
    font-size: 0.9rem;
    color: #666;
}

/* Estadísticas */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--text-light);
    padding: 2rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--light-green);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

/* Sección Equipo */
.team-section {
    padding: 5rem 0;
    background: var(--natural-beige);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.team-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-member {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.team-member.coming-soon {
    border: 2px dashed var(--secondary-green);
    background: linear-gradient(135deg, var(--cream-white), var(--natural-beige));
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-green);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coming-soon-placeholder {
    width: 100%;
    height: 100%;
    background: var(--secondary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
}

.member-info h3 {
    margin-bottom: 0.3rem;
    color: var(--primary-green);
    font-size: 1.1rem;
}

.member-position {
    color: var(--secondary-green);
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.member-description {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

.join-button {
    background: var(--secondary-green);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
    margin-top: 1rem;
}

.join-button:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

/* Cultura */
.culture-section {
    margin-top: 4rem;
}

.culture-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-green);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.culture-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-green);
}

.culture-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.culture-item i {
    font-size: 3rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.culture-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.culture-item p {
    color: #666;
    line-height: 1.5;
}

/* Sección Aliados */
.allies-section {
    padding: 5rem 0;
    background: var(--text-light);
}

.allies-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.allies-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.allies-category {
    margin-bottom: 4rem;
}

.allies-category h3 {
    font-size: 1.8rem;
    color: var(--secondary-green);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.allies-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary-green);
    border-radius: 2px;
}

.allies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ally {
    background: var(--cream-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.ally::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition);
}

.ally:hover::before {
    left: 100%;
}

.ally:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--secondary-green);
}

.ally-logo {
    font-size: 3rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.ally:hover .ally-logo {
    transform: scale(1.1);
    color: var(--primary-green);
}

.ally h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.ally p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Sección Testimonios */
.testimonials-section {
    padding: 5rem 0;
    background: var(--natural-beige);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

/* Logros */
.achievements-section {
    margin-bottom: 4rem;
}

.achievements-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-green);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--warm-orange);
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.achievement i {
    font-size: 3rem;
    color: var(--warm-orange);
    margin-bottom: 1rem;
}

.achievement h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.achievement p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Testimonios */
.testimonials-content {
    margin-top: 3rem;
}

.testimonials-content h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-green);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 15px;
    font-size: 3rem;
    color: var(--secondary-green);
    opacity: 0.3;
    font-family: serif;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

.stars {
    color: var(--warm-orange);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-green);
}

.testimonial-author h4 {
    color: var(--primary-green);
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.85rem;
}

/* Sección Contacto */
.contact-section {
    padding: 5rem 0;
    background: var(--text-light);
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-green);
    margin-top: 0.2rem;
}

.contact-item h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
}

.contact-form {
    background: var(--cream-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
}

.submit-btn {
    width: 100%;
    background: var(--secondary-green);
    color: var(--text-light);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-green);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--light-green);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--light-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary-green);
    color: var(--text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-green);
    color: #ccc;
}

/* Carrito de Compras */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--text-light);
    box-shadow: -5px 0 20px var(--shadow);
    z-index: 1001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--secondary-green);
    color: var(--text-light);
}

.cart-header h3 {
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.cart-item-price {
    color: var(--primary-green);
    font-weight: bold;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: var(--secondary-green);
    color: var(--text-light);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--primary-green);
}

.cart-item-quantity {
    margin: 0 0.5rem;
    font-weight: bold;
}

.remove-item {
    background: #e74c3c;
    color: var(--text-light);
    border: none;
    padding: 0.3rem 0.6rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 0.8rem;
}

.cart-summary {
    padding: 1.5rem;
    background: var(--cream-white);
    border-top: 1px solid #e0e0e0;
}

.delivery-option {
    margin-bottom: 1rem;
}

.delivery-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cart-total {
    margin-bottom: 1rem;
}

.cart-total > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-green);
    border-top: 2px solid var(--secondary-green);
    padding-top: 0.5rem;
}

.checkout-btn {
    width: 100%;
    background: var(--warm-orange);
    color: var(--text-light);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: var(--sunset-orange);
}

.checkout-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--primary-green);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 0 10px;
    }

    .hero-content {
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    /* Products Section */
    .products-section {
        padding: 3rem 0;
    }

    .category-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-width: auto;
        flex: 0 0 auto;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-section {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-member {
        text-align: center;
    }

    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Allies Section */
    .allies-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    /* Testimonials Section */
    .achievements-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Cart */
    .cart-sidebar {
        width: 100%;
        right: -100%;
        left: 0;
    }

    .cart-sidebar.open {
        right: 0;
    }

    .cart-header {
        padding: 1rem;
    }

    .cart-items {
        padding: 0.5rem;
    }

    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
        align-self: center;
    }

    .cart-item-info {
        width: 100%;
        text-align: center;
    }

    .cart-item-controls {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    .cart-footer {
        padding: 1rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    /* Floating Buttons - DESHABILITADO */
    /*
    .floating-buttons {
        left: 10px;
        bottom: 20px;
    }

    .floating-button {
        width: 50px;
        height: 50px;
    */
        margin-bottom: 10px;
    }

    .button-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 0.8rem 0.8rem;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-image {
        height: 30px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Products Section */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-filters {
        gap: 0.3rem;
    }

    .filter-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    /* About Section */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Team Section */
    .team-member {
        padding: 1rem;
    }

    .member-photo img {
        width: 120px;
        height: 120px;
    }

    /* Achievements and Allies */
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .allies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .culture-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Contact Section */
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-item i {
        font-size: 1.5rem;
    }

    /* Modales responsivos */
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1rem;
    }

    /* Floating Buttons - DESHABILITADO */
    /*
    .floating-buttons {
        left: 5px;
        bottom: 15px;
    }

    .floating-button {
        width: 45px;
        height: 45px;
    */
        font-size: 1rem;
    }

    /* Cart */
    .cart-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .cart-item img {
        width: 60px;
        height: 60px;
    }

    .modal-content {
        margin: 1rem;
    }

    .modal-header {
        padding: 1rem;
    }

    .modal-header h3 {
        font-size: 1.3rem;
    }

    .modal form {
        padding: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}

/* Animaciones adicionales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Estilos para elementos ocultos */
.hidden {
    display: none !important;
}

/* Estilos para loading */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Estilos para mensajes de éxito/error */
.message {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    text-align: center;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Botones Flotantes - DESHABILITADO (Reemplazado por ToolsMenu) */
/*
.floating-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-button {
    background: var(--secondary-green);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.floating-button:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}

.button-label {
    position: absolute;
    left: 60px;
    background: var(--secondary-green);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.floating-button:hover .button-label {
    opacity: 1;
    visibility: visible;
}
*/

/* Sección Galería - carrusel horizontal compacto */
.gallery-section {
    padding: 3rem 0;
    background: var(--cream-white);
    position: relative;
    overflow: hidden;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Contenedor horizontal con snap y scroll oculto */
.gallery-grid {
    display: flex;
    gap: 1.5rem;
    padding: 1rem;
    margin: 0 3rem;
    width: calc(100% - 6rem);
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
    align-items: center;
}

/* Item de galería */
.gallery-item {
    flex: 0 0 300px;
    height: 200px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--text-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Info mínima superpuesta en la esquina inferior izquierda */
.gallery-item-info {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15));
    padding: 6px 8px;
    color: var(--text-light);
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0.98;
}

.gallery-item-title { font-size: 12px; font-weight: 700; margin: 0; }
.gallery-item-description { font-size: 11px; opacity: 0.9; margin: 0; }
.gallery-item-date { font-size: 10px; opacity: 0.8; }

/* Flechas de navegación (solo se muestran en pantallas grandes) */
.gallery-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 0.75rem;
}
.gallery-arrow {
    background: var(--secondary-green);
    color: var(--text-light);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}
.gallery-arrow:active { transform: scale(0.98); }

@media (min-width: 900px) {
    .gallery-arrow { display: inline-flex; }
}

@media (max-width: 480px) {
    .gallery-item { flex: 0 0 140px; height: 100px; }
}

/* Modal de imagen grande */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.image-modal .modal-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    background: var(--text-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.image-modal img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.image-modal .modal-info {
    padding: 1.5rem;
    background: var(--text-light);
}

.image-modal h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.image-modal p {
    color: #666;
    line-height: 1.6;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* Navegación de la galería */
.gallery-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
}

.gallery-arrow {
    width: 45px;
    height: 45px;
    background: var(--secondary-green);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.gallery-arrow:hover {
    background: var(--primary-green);
    opacity: 1;
    transform: scale(1.1);
}

.gallery-arrow:active {
    transform: scale(0.95);
}

#gallery-prev {
    margin-left: 1rem;
}

#gallery-next {
    margin-right: 1rem;
}

/* Contenedor de galería */
.gallery-container {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1200px;
}

.gallery-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 1.5rem;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive para dispositivos móviles */
@media (max-width: 768px) {
    /* Floating Buttons - DESHABILITADO */
    /*
    .floating-buttons {
        left: 10px;
    }

    .floating-button {
        width: 40px;
        height: 40px;
    */
        font-size: 1.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-filter {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Estilos para testimonios */
.testimonials-actions {
    text-align: center;
    margin-top: 3rem;
}

.share-experience-btn {
    background: var(--secondary-green);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.share-experience-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

/* Modales */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--text-light);
    margin: auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--secondary-green);
    color: var(--text-light);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal form {
    padding: 2rem;
}

.modal .form-group {
    margin-bottom: 1.5rem;
}

.modal label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.modal input,
.modal select,
.modal textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
    outline: none;
    border-color: var(--secondary-green);
}

/* Estrellas de calificación */
.rating-stars {
    display: flex;
    gap: 0.3rem;
    margin-top: 0.5rem;
}

.rating-stars input[type="radio"] {
    display: none;
}

.rating-stars label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
    margin: 0;
}

.rating-stars label:hover,
.rating-stars input[type="radio"]:checked ~ label {
    color: var(--warm-orange);
}

.rating-stars input[type="radio"]:checked ~ label,
.rating-stars label:hover ~ label {
    color: #ddd;
}

.rating-stars input[type="radio"]:checked ~ label {
    color: var(--warm-orange);
}

/* Botones del modal */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.btn-cancel {
    background: #6c757d;
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-cancel:hover {
    background: #5a6268;
}

.btn-submit {
    background: var(--secondary-green);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-green);
}

/* Mejoras específicas para móviles */
@media (max-width: 768px) {
    /* Mejorar el toque en botones */
    .filter-btn,
    .cta-button,
    .submit-btn {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }

    /* Mejorar espaciado en secciones */
    section {
        padding: 2rem 0;
    }

    /* Títulos más pequeños en móvil */
    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem;
    }

    h3 {
        font-size: 1.4rem !important;
    }

    /* Mejorar legibilidad del texto */
    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Carrito más accesible */
    .cart-icon {
        padding: 8px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Productos más grandes en móvil */
    .product-card {
        min-height: 400px;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .product-price {
        font-size: 1.2rem;
        font-weight: bold;
        color: var(--secondary-green);
    }

    /* Mejorar formularios en móvil */
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Evita zoom en iOS */
        padding: 12px;
        border-radius: 8px;
    }

    /* Mejorar navegación */
    .nav-link {
        padding: 12px 16px;
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Espaciado más compacto en pantallas muy pequeñas */
    section {
        padding: 1.5rem 0;
    }

    .container {
        padding: 0 10px;
    }

    /* Títulos aún más pequeños */
    h1 {
        font-size: 1.6rem !important;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.4rem !important;
        margin-bottom: 1rem;
    }

    /* Productos en una sola columna */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Filtros más compactos */
    .filter-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    /* Mejorar el hero en móviles pequeños */
    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 1rem;
    }

    /* Estadísticas en una columna */
    .stats-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Testimonios más compactos */
    .testimonial {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    /* Footer más compacto */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }
}

/* Mejoras para accesibilidad táctil */
@media (hover: none) and (pointer: coarse) {
    .filter-btn:hover,
    .cta-button:hover,
    .nav-link:hover {
        transform: none;
    }

    .filter-btn:active,
    .cta-button:active {
        transform: scale(0.98);
    }
}

/* Orientación horizontal en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
    }

    .nav-menu {
        height: calc(100vh - 60px);
        top: 60px;
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }
}/* Overl
ay para menú móvil */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .nav-overlay {
        display: block;
    }
}

/* Mejoras adicionales para touch devices */
@media (pointer: coarse) {
    .nav-link,
    .filter-btn,
    .cta-button {
        padding: 12px 16px;
    }
    
    .hamburger {
        padding: 12px;
    }
    
    .cart-icon {
        padding: 12px;
    }
}/* E
stilos para botones de favoritos y lista de deseos en productos */

/* Overlay de acciones en productos */
.product-actions-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions-overlay {
    opacity: 1;
}

.favorite-btn,
.wishlist-btn {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
    backdrop-filter: blur(5px);
}

.favorite-btn:hover,
.wishlist-btn:hover {
    background: var(--text-light);
    transform: scale(1.1);
}

.favorite-btn.active {
    background: #e74c3c;
    color: var(--text-light);
}

.wishlist-btn.active {
    background: var(--warm-orange);
    color: var(--text-light);
}

/* Botones de productos mejorados */
.product-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.add-to-cart {
    flex: 1;
    padding: 0.8rem 1rem;
    background: var(--secondary-green);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.add-to-cart:hover {
    background: var(--primary-green);
    transform: translateY(-1px);
}

.quick-view-btn {
    width: 40px;
    height: 40px;
    background: var(--warm-orange);
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quick-view-btn:hover {
    background: var(--sunset-orange);
    transform: translateY(-1px);
}

/* Modal de detalle de producto */
.product-detail-modal {
    z-index: 1800;
}

.product-detail-content {
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    position: relative;
}

.close-product-detail {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.close-product-detail:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.product-detail-image {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-detail-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.product-detail-info {
    padding: 2rem;
    background: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-detail-category {
    background: var(--light-green);
    color: var(--text-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    align-self: flex-start;
}

.product-detail-info h2 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.8rem;
    line-height: 1.3;
}

.product-detail-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-green);
    margin: 0;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.btn-add-cart-detail,
.btn-favorite-detail,
.btn-wishlist-detail {
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-cart-detail {
    background: var(--secondary-green);
    color: var(--text-light);
    font-size: 1.1rem;
}

.btn-add-cart-detail:hover {
    background: var(--primary-green);
    transform: translateY(-1px);
}

.btn-favorite-detail {
    background: #f8f9fa;
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.btn-favorite-detail.active {
    background: #e74c3c;
    color: var(--text-light);
}

.btn-favorite-detail:hover {
    background: #e74c3c;
    color: var(--text-light);
}

.btn-wishlist-detail {
    background: #f8f9fa;
    color: var(--warm-orange);
    border: 2px solid var(--warm-orange);
}

.btn-wishlist-detail.active {
    background: var(--warm-orange);
    color: var(--text-light);
}

.btn-wishlist-detail:hover {
    background: var(--warm-orange);
    color: var(--text-light);
}

.product-detail-features {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.product-detail-features h4 {
    margin: 0 0 0.8rem 0;
    color: var(--text-dark);
}

.product-detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: #666;
}

.product-detail-features li i {
    color: var(--secondary-green);
    width: 16px;
}

/* Responsive para productos */
@media (max-width: 768px) {
    .product-actions-overlay {
        opacity: 1;
        top: 5px;
        right: 5px;
    }

    .favorite-btn,
    .wishlist-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .product-buttons {
        flex-direction: column;
    }

    .quick-view-btn {
        width: 100%;
        height: 35px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-image {
        padding: 1rem;
        min-height: 250px;
    }

    .product-detail-info {
        padding: 1.5rem;
    }

    .product-detail-info h2 {
        font-size: 1.5rem;
    }

    .product-detail-price {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .product-detail-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .product-detail-image {
        min-height: 200px;
    }

    .product-detail-info {
        padding: 1rem;
    }

    .product-detail-actions {
        gap: 0.5rem;
    }

    .btn-add-cart-detail,
    .btn-favorite-detail,
    .btn-wishlist-detail {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}/
* Estilos para el botón de videos */
.video-button {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24) !important;
}

.video-button:hover {
    background: linear-gradient(135deg, #ee5a24, #d63031) !important;
    transform: scale(1.1);
}

/* Ajustes para botones flotantes con videos - DESHABILITADO */
/*
@media (max-width: 768px) {
    .floating-buttons {
        left: 5px;
        bottom: 15px;
    }
    
    .floating-button {
        width: 45px;
        height: 45px;
*/
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
    
    .button-label {
        display: none;
    }
}

@media (max-width: 480px) {
    /*
    .floating-buttons {
        left: 3px;
        bottom: 10px;
    }
    
    .floating-button {
        width: 40px;
        height: 40px;
    */
        margin-bottom: 6px;
        font-size: 0.8rem;
    }
}
/*
 ===== CARRUSEL MEJORADO ===== */

/* Estructura base del carrusel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
}

/* Overlay para mejorar legibilidad del texto */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

/* Contenido de cada slide */
.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    animation: slideInUp 0.8s ease-out;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    opacity: 0.95;
}

/* Botones de acción en slides */
.slide-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, #45a049, #4CAF50);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button.secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Controles del carrusel */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Indicadores del carrusel */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.indicator.active {
    background: white;
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.indicator:hover {
    border-color: white;
    transform: scale(1.2);
}

/* Animaciones */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Efectos de transición para slides */
.carousel-slide.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.carousel-slide.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 768px) {
    .slide-content {
        padding: 1.5rem;
        max-width: 90%;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .carousel-controls {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .carousel-indicators {
        bottom: 1.5rem;
    }
}

/* Móviles */
@media (max-width: 480px) {
    .slide-content {
        padding: 1rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .carousel-indicators {
        gap: 0.8rem;
        bottom: 1rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 320px) {
    .slide-content h1 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .carousel-controls {
        padding: 0 0.5rem;
    }
}

/* Orientación horizontal en móviles */
@media (max-width: 768px) and (orientation: landscape) {
    .slide-content {
        max-width: 70%;
    }
    
    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .slide-actions {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .cta-button.primary,
    .cta-button.secondary {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        max-width: 180px;
    }
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .carousel-slide,
    .slide-content,
    .carousel-btn,
    .indicator {
        transition: none;
        animation: none;
    }
}

/* Modo oscuro */
@media (prefers-color-scheme: dark) {
    .slide-overlay {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }
}/*
 ===== ESTILOS DEL CARRITO DE COMPRAS ===== */

/* Overlay del carrito */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar del carrito */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.cart-sidebar.open {
    right: 0;
}

/* Header del carrito */
.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-green);
    color: white;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Cuerpo del carrito */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Carrito vacío */
.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.empty-cart i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-cart p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.empty-cart small {
    font-size: 0.9rem;
}

/* Items del carrito */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fafafa;
    position: relative;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.9rem;
    margin: 0;
}

.cart-item-price {
    font-weight: 700;
    color: var(--secondary-green);
    font-size: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--secondary-green);
    transform: scale(1.1);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.25rem;
    font-size: 0.9rem;
}

.cart-item-total {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.remove-item {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #dc3545;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.remove-item:hover {
    background: #c82333;
    transform: scale(1.1);
}

/* Footer del carrito */
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

/* Opción de delivery */
.delivery-option {
    margin-bottom: 1rem;
}

.delivery-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.delivery-checkbox input[type="checkbox"] {
    display: none;
}

.delivery-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-green);
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.delivery-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-green);
}

.delivery-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.delivery-cost {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: #e8f5e8;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--primary-green);
}

/* Totales del carrito */
.cart-totals {
    margin-bottom: 1rem;
}

.cart-subtotal-row,
.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.cart-total-row {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-green);
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
}

/* Acciones del carrito */
.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.clear-cart-btn,
.checkout-btn {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.clear-cart-btn {
    background: #6c757d;
    color: white;
}

.clear-cart-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.checkout-btn {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    font-size: 1rem;
    padding: 1rem;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

/* Animación del botón agregar al carrito */
.add-to-cart-btn.added {
    background: #28a745 !important;
    transform: scale(0.95);
}

/* Notificaciones del carrito */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 300px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.notification.success {
    background: #28a745;
}

.notification.error {
    background: #dc3545;
}

.notification.warning {
    background: #ffc107;
    color: #212529;
}

.notification.info {
    background: #17a2b8;
}

/* ===== CHATBOT IA REPOSICIONADO ===== */

/* Contenedor principal del chat */
.ai-chat-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 998;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Botón toggle del chat */
.ai-chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse-ai 2s infinite;
}

.ai-chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.ai-avatar {
    color: white;
    font-size: 1.5rem;
}

.ai-status-indicator {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #28a745;
    border-radius: 50%;
    border: 2px solid white;
    animation: blink-ai 2s infinite;
}

/* Ventana del chat */
.ai-chat-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.ai-chat-window.active {
    display: flex;
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Header del chat */
.ai-chat-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ai-avatar-small {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.ai-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.ai-status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.ai-header-actions {
    display: flex;
    gap: 0.5rem;
}

.ai-minimize,
.ai-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.ai-minimize:hover,
.ai-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mensajes del chat */
.ai-chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
}

.ai-message-bot {
    align-self: flex-start;
}

.ai-message-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.ai-message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.ai-message-bot .ai-message-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.ai-message-user .ai-message-avatar {
    background: #e9ecef;
    color: #495057;
}

.ai-message-content {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    position: relative;
}

.ai-message-bot .ai-message-content {
    background: #e3f2fd;
    border-bottom-left-radius: 5px;
}

.ai-message-user .ai-message-content {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-bottom-right-radius: 5px;
}

.ai-message-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Acciones rápidas */
.ai-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.ai-quick-btn {
    background: white;
    border: 1px solid #667eea;
    color: #667eea;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.ai-quick-btn:hover {
    background: #667eea;
    color: white;
}

/* Input del chat */
.ai-chat-input {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
}

.ai-input-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#ai-message-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
}

#ai-message-input:focus {
    border-color: #667eea;
}

#ai-send-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#ai-send-btn:hover {
    transform: scale(1.1);
}

/* Indicador de escritura */
.ai-typing-indicator {
    display: flex;
    gap: 0.25rem;
    padding: 0.5rem 0;
    align-items: center;
}

.ai-typing-indicator span {
    width: 6px;
    height: 6px;
    background: #667eea;
    border-radius: 50%;
    animation: typing-ai 1.4s infinite ease-in-out;
}

.ai-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.ai-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animaciones */
@keyframes pulse-ai {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes blink-ai {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes typing-ai {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Responsive para carrito y chat */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .ai-chat-container {
        bottom: 1rem;
        left: 1rem;
    }
    
    .ai-chat-window {
        width: 300px;
        height: 400px;
    }
    
    .notification {
        top: 1rem;
        right: 1rem;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .ai-chat-window {
        width: 280px;
        height: 350px;
    }
    
    .cart-item {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cart-item-image {
        width: 100%;
        height: 120px;
    }
}/
* ===== CARRUSEL AVANZADO ===== */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(100%);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7), rgba(76, 175, 80, 0.5));
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out 0.2s both;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: linear-gradient(135deg, #4caf50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* Controles del carrusel */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-btn i {
    font-size: 1.2rem;
}

/* Indicadores del carrusel */
.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
    align-items: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Barra de progreso */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #45a049);
    transition: width 0.3s ease;
    width: 25%;
}

/* Contador de slides */
.slide-counter {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

/* Animaciones */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ASISTENTE E-COMMERCE ===== */

.ecommerce-assistant {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 998;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.assistant-toggle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.assistant-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.5);
}

.assistant-avatar {
    color: white;
    font-size: 1.8rem;
}

.assistant-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 12px;
    padding: 0.25rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    animation: bounce 2s infinite;
}

.assistant-window {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.assistant-window.active {
    display: flex;
    transform: scale(1) translateY(0);
    opacity: 1;
}

.assistant-header {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.assistant-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.assistant-avatar-small {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.assistant-details h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.assistant-status {
    font-size: 0.85rem;
    opacity: 0.9;
}

.assistant-actions {
    display: flex;
    gap: 0.5rem;
}

.assistant-minimize,
.assistant-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.assistant-minimize:hover,
.assistant-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.assistant-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.assistant-message {
    display: flex;
    gap: 1rem;
    max-width: 85%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.user-message .message-avatar {
    background: #e9ecef;
    color: #495057;
}

.message-content {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    position: relative;
    line-height: 1.5;
}

.bot-message .message-content {
    background: #e3f2fd;
    border-bottom-left-radius: 6px;
}

.user-message .message-content {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-bottom-right-radius: 6px;
}

.message-content p {
    margin: 0;
    font-size: 0.95rem;
}

.quick-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.service-item {
    background: white;
    border: 1px solid #667eea;
    color: #667eea;
    padding: 0.75rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.85rem;
}

.service-item:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.service-item i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.action-btn {
    background: white;
    border: 1px solid #667eea;
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #667eea;
    color: white;
}

.assistant-input {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.input-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

#assistant-message-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

#assistant-message-input:focus {
    border-color: #667eea;
}

#assistant-send-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#assistant-send-btn:hover {
    transform: scale(1.1);
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
    padding: 0.75rem 0;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===== MODAL DE EXPERIENCIAS ===== */

.ecommerce-modal .modal-content {
    max-width: 800px;
    width: 95%;
}

.experience-tabs {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.tab-btn:hover {
    color: var(--primary-green);
    background: rgba(45, 80, 22, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.rating-stars.interactive {
    display: flex;
    gap: 0.25rem;
    cursor: pointer;
}

.rating-stars.interactive .fa-star {
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.3s ease;
    cursor: pointer;
}

.rating-stars.interactive .fa-star:hover,
.rating-stars.interactive .fa-star.active {
    color: #ffc107;
}

.media-upload {
    margin: 1.5rem 0;
}

.upload-area {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--primary-green);
    background: rgba(45, 80, 22, 0.05);
}

.upload-area i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.upload-area p {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.upload-area span {
    color: #6c757d;
    font-size: 0.9rem;
}

.upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.file-preview {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.file-preview img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.remove-file {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.file-name {
    display: block;
    padding: 0.5rem;
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
    word-break: break-word;
}

.add-more-files {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.add-more-files:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* ===== SECCIÓN DE EXPERIENCIAS ===== */

.experiences-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.experience-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review-card,
.recipe-card,
.story-card {
    padding: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.product-badge {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.verified-badge {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

.review-rating .stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-title,
.recipe-name,
.story-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.review-comment,
.story-content {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-images,
.recipe-images,
.story-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.review-images img,
.recipe-images img,
.story-images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.review-footer,
.recipe-footer,
.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-size: 0.9rem;
    color: #6c757d;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.recipe-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.recipe-ingredients,
.recipe-instructions {
    margin-bottom: 1rem;
}

.recipe-ingredients h5,
.recipe-instructions h5 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.story-location {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Animaciones */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
    }
    30% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-controls {
        padding: 0 1rem;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
    }
    
    .assistant-window {
        width: 320px;
        height: 480px;
        right: -10px;
    }
    
    .ecommerce-modal .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-services {
        grid-template-columns: 1fr;
    }
    
    .experiences-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 1rem;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .assistant-toggle {
        width: 60px;
        height: 60px;
    }
    
    .assistant-window {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
}