/* Reset y configuración básica */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e6e1 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header y Navegación */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 62, 80, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    color: #ffffff;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav-logo i {
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-menu a:hover {
    color: #bdc3c7;
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cart-mobile { display: none; }
.admin-link a { display:inline-flex; gap:6px; align-items:center }

.cart-icon a {
    position: relative;
    font-size: 1.2rem;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 0.8;
    text-align: center;
    padding: 5px 0 0 4px;
    margin: 0;
    box-sizing: border-box;
}

/* Overlay para menú móvil */
.menu-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1400;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            margin: 3px 0;
            transition: 0.3s;
        }

/* Hero Section con Video */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-video.loaded {
    opacity: 1;
}

/* Mostrar video también en móviles (habilitado) */
@media (max-width: 768px) {
    /* Mover el link Admin al final del menú y visible abajo, no flotante */
    .nav-menu { justify-content: flex-start; }
    .nav-menu .admin-link { margin-top: auto; }
    .nav-menu .admin-link a { width: 100%; display: block; text-align: center; background: rgba(255,255,255,0.18); border-radius: 10px; }
    .nav-container { position: relative; }
    .nav-logo { margin: 0 auto; text-align: center; }
    .hamburger {
        position: absolute;
        left: 16px;
        top: 20px;
        z-index: 1601;
    }
    .hero-video {
        display: block !important;
    }
    
    .hero-image {
        display: none !important;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(44, 62, 80, 0.6) 0%, 
        rgba(52, 73, 94, 0.6) 50%,
        rgba(149, 165, 166, 0.6) 100%);
    z-index: -1;
}

/* Imagen de fondo como alternativa al video */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -2;
    display: none; /* Se activa con JavaScript si no hay video */
}

/* Si no hay imagen de fondo disponible */
.hero-image.no-image {
    background: linear-gradient(135deg, 
        rgba(44, 62, 80, 0.9) 0%, 
        rgba(52, 73, 94, 0.9) 30%,
        rgba(149, 165, 166, 0.9) 70%,
        rgba(44, 62, 80, 0.9) 100%),
        /* Patrón decorativo */
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.2"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.3"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    font-weight: bold;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.cta-button {
    background: linear-gradient(45deg, #34495e, #2c3e50);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.4);
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    transform: translate3d(0, 0, 0);
}

.cta-button:hover {
    background: linear-gradient(45deg, #2c3e50, #1a252f);
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.6);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #bdc3c7 0%, #95a5a6 100%);
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #ffffff;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    color: white;
    border-color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.artwork-card {
    background: linear-gradient(145deg, #ffffff, #faf8f5);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    transform: translate3d(0, 0, 0);
}

.artwork-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.6s ease;
    will-change: transform;
}

.artwork-card:hover {
    transform: translate3d(0, -8px, 0);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.artwork-card:hover::before {
    transform: translate3d(100%, 0, 0);
}

.artwork-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
}

.artwork-info {
    padding: 1.5rem;
}

.artwork-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.artwork-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.artwork-price {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #e17055, #fdcb6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.artwork-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artwork-specs {
    font-size: 0.85rem;
    color: #777;
}

.add-to-cart {
    background: linear-gradient(45deg, #34495e, #2c3e50);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(52, 73, 94, 0.4);
}

.add-to-cart:hover {
    background: linear-gradient(45deg, #2c3e50, #1a252f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.6);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 50%, #bdc3c7 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="about-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.15"/><circle cx="60" cy="60" r="1.5" fill="%23ffffff" opacity="0.1"/><path d="M10 40 Q40 10 70 40 Q40 70 10 40" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.08"/></pattern></defs><rect width="80" height="80" fill="url(%23about-pattern)"/></svg>');
    pointer-events: none;
    animation: aboutFloat 8s ease-in-out infinite;
}

@keyframes aboutFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(1deg);
    }
    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #34495e);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.5);
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: #2c3e50;
    text-shadow: none;
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.8);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(44, 62, 80, 0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-text p:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.9);
}

.about-text p:first-of-type {
    position: relative;
    overflow: hidden;
}

.about-text p:first-of-type::before {
    content: '🎨';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 2rem;
    opacity: 0.3;
    animation: artFloat 4s ease-in-out infinite;
}

@keyframes artFloat {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.1);
    }
}

/* Botón Saber más en About Section */
.about-button {
    margin-top: 2rem;
    text-align: left;
}

.about-button .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.about-button .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.about-button .btn-secondary:hover::before {
    left: 100%;
}

.about-button .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 73, 94, 0.5);
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    border-color: rgba(255,255,255,0.2);
}

.about-button .btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(52, 73, 94, 0.4);
}

.about-button .btn-secondary i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.about-button .btn-secondary:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Estilos para la página completa Sobre la Artista */
.about-detail-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e6e1 100%);
    min-height: 100vh;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero .subtitle {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-style: italic;
}

.about-content-detailed {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 4rem;
}

.artist-image-large {
    position: sticky;
    top: 120px;
}

.artist-image-large img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.artist-image-large img:hover {
    transform: scale(1.05);
}

.artist-story {
    background: rgba(255,255,255,0.9);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.artist-story h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.artist-story h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2c3e50, #34495e);
    border-radius: 2px;
}

.artist-story h3 {
    font-size: 1.8rem;
    color: #34495e;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecf0f1;
}

.artist-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.artist-story ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.artist-story li {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.artist-story li strong {
    color: #34495e;
}

.contact-info {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.contact-info h3 {
    color: white;
    margin-bottom: 1rem;
    border-bottom: none;
}

.contact-info p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.back-to-gallery {
    text-align: center;
    margin-top: 3rem;
}

.back-to-gallery .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.back-to-gallery .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.5);
    background: linear-gradient(135deg, #2980b9 0%, #1c6ea4 100%);
}

/* Responsive para página sobre la artista */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .artist-image-large {
        position: static;
        order: -1;
    }
    
    .artist-story {
        padding: 2rem;
    }
    
    .artist-story h2 {
        font-size: 2rem;
    }
    
    .artist-story h3 {
        font-size: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        margin: 2rem 0;
    }
}

.about-image {
    position: relative;
    z-index: 2;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.3);
    transition: all 0.4s ease;
    position: relative;
}

.about-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-image:hover::before {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    position: relative;
}

.contact-section::before {
    display: none !important;
    content: none !important;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.custom-order-text {
    font-size: 1.2rem;
    color: #ffffff;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 500;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    transform: translateY(1.5rem);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #ffffff;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

.contact-item i {
    color: #ffffff;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(253, 121, 168, 0.3);
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    color: #2c3e50;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fd79a8;
    background: rgba(255,255,255,1);
    box-shadow: 0 0 20px rgba(253, 121, 168, 0.3);
    transform: translateY(-2px);
}

.contact-form button {
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 121, 168, 0.4);
    font-weight: 600;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #e84393, #f39c12);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.6);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><defs><pattern id="dots" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="50" height="50" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #74b9ff, #0984e3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8B4513;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #fd79a8, #fdcb6e);
    color: white;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(253, 121, 168, 0.3);
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    background: linear-gradient(45deg, #e84393, #f39c12);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(253, 121, 168, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Modales */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.7) 0%, 
        rgba(118, 75, 162, 0.7) 50%,
        rgba(45, 52, 54, 0.8) 100%);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.modal-body {
    padding: 1.5rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #333;
}

/* Modal de Artwork Container - EN GALERÍA */
#artwork-modal {
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(45, 52, 54, 0.9) 100%);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

/* Modal de Artwork Mejorado - CENTRADO EN GALERÍA */
.artwork-modal-content {
    max-width: 1200px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    border-radius: 15px;
    
    /* CENTRADO EN GALERÍA */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    
    /* Animación suave */
    animation: modalFadeIn 0.3s ease;
}

/* Animación para el modal */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.artwork-close {
    font-size: 2rem;
    color: #667eea;
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.artwork-close:hover {
    color: #fd79a8;
    transform: rotate(90deg) scale(1.1);
}

.artwork-modal-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 1.5rem;
    align-items: start;
    min-height: 70vh;
}

/* Contenedor de imagen - PROTAGONISTA */
.modal-image-container {
    position: relative;
    background: #000000;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-artwork-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.4s ease;
    cursor: zoom-in;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.modal-artwork-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* Zoom de la imagen para apreciación */
.modal-artwork-image.zoomed {
    transform: scale(2);
    cursor: zoom-out;
    z-index: 1000;
    position: relative;
    transition: transform 0.5s ease;
    max-height: none;
    object-fit: contain;
}

.modal-image-container:has(.zoomed) {
    overflow: auto;
    background: #000;
    padding: 20px;
}

/* Contenedor de detalles - SIMPLIFICADO */
.modal-details-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    background: rgba(255,255,255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Header de la obra - MÁS SIMPLE */
.artwork-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.artwork-modal-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    text-align: center;
}

.artwork-price-badge {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.artwork-modal-price {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Descripción - MÁS PROMINENTE */
.artwork-description {
    background: rgba(102, 126, 234, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.artwork-description h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.artwork-modal-description {
    color: #2c3e50;
    line-height: 1.8;
    font-size: 1.1rem;
    margin: 0;
    font-style: italic;
    text-align: justify;
}

/* Especificaciones - MÁS COMPACTAS */
.artwork-specs-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px;
    border-left: 3px solid #667eea;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.spec-item i {
    font-size: 1.1rem;
    color: #667eea;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.spec-content {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.spec-content strong {
    color: #2c3e50;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 80px;
}

.spec-content span {
    color: #6c757d;
    font-size: 0.9rem;
    flex: 1;
}

/* Acciones de la obra - MINIMALISTA */
.artwork-actions {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.add-to-cart-btn-enhanced {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.add-to-cart-btn-enhanced:hover::before {
    left: 100%;
}

.add-to-cart-btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 184, 148, 0.6);
    background: linear-gradient(135deg, #128c7e, #00b894);
}

.add-to-cart-btn-enhanced i {
    font-size: 1.5rem;
}

.button-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.button-title {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
}

.button-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 2px;
    line-height: 1.2;
}

/* Garantías */
.artwork-guarantees {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 184, 148, 0.1);
    border-radius: 8px;
    color: #2c3e50;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
}

.guarantee-item i {
    color: #00b894;
    font-size: 1rem;
}

/* Responsive del modal - APRECIACIÓN MÓVIL */
@media (max-width: 768px) {
    #artwork-modal {
        position: fixed;
        z-index: 999;
    }
    
    .artwork-modal-content {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
        /* Pantalla completa en móvil */
        top: 0;
        left: 0;
        transform: none;
        position: fixed;
    }
    
    .artwork-modal-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
        min-height: auto;
    }
    
    .modal-image-container {
        min-height: 50vh;
        max-height: 60vh;
    }
    
    .modal-artwork-image {
        max-height: 50vh;
    }
    
    .modal-details-container {
        padding: 1rem;
    }
    
    .artwork-header {
        text-align: center;
    }
    
    .artwork-modal-title {
        font-size: 1.5rem;
    }
    
    .artwork-modal-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .artwork-guarantees {
        flex-direction: column;
        gap: 0.6rem;
    }
    
    .add-to-cart-btn-enhanced {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .button-text {
        text-align: center;
    }
}

/* Modal del carrito */
.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: #8B4513;
    font-weight: bold;
}

.remove-item {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.cart-total {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.5rem;
    color: #8B4513;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.clear-cart-btn,
.checkout-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.clear-cart-btn {
    background: #e74c3c;
    color: white;
}

.checkout-btn {
    background: #27ae60;
    color: white;
}

.clear-cart-btn:hover {
    background: #c0392b;
}

.checkout-btn:hover {
    background: #229954;
}

/* Animaciones Optimizadas */
@keyframes fadeIn {
    from { 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideIn {
    from {
        transform: translate3d(0, -50px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Configuración global para animaciones suaves */
*,
*::before,
*::after {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Clase para animación de entrada */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Prevenir parpadeo inicial */
.artwork-card {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
}

.artwork-card.fade-in-up {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mostrar botón de carrito flotante en móvil */
    .cart-mobile {
        position: fixed;
        bottom: 18px;
        right: 18px;
        background: rgba(0,0,0,0.35);
        color: #fff;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        z-index: 1200; /* por debajo del menú móvil (.nav-menu.active z-index: 1500) */
        box-shadow: 0 6px 16px rgba(0,0,0,0.25);
        backdrop-filter: blur(6px);
    }
    /* Evitar superposición con el carrito: si el menú está abierto, mueve el carrito a la derecha del panel */
    .nav-menu.active ~ .cart-mobile {
        right: 18px;
    }
    /* Ocultar carrito móvil cuando el menú está abierto para evitar superposición */
    .nav-menu.active + .cart-mobile { display: none; }
    .cart-mobile .cart-count {
        position: absolute;
        top: -4px;
        right: -4px;
        width: 18px;
        height: 18px;
        background: #e74c3c;
        color: #fff;
        border-radius: 50%;
        font-size: 0.65rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
    .cart-mobile i { font-size: 1.1rem; }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: 0;
        top: 80px;
        bottom: 0;
        transform: translateX(-110%);
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 70%;
        max-width: 320px;
        text-align: left;
        transition: transform 0.3s ease;
        box-shadow: 0 10px 27px rgba(102, 126, 234, 0.3);
        padding: 2rem 1.25rem;
        backdrop-filter: blur(10px);
        z-index: 1500;
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    }

    .hero-content p {
        font-size: 1.1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    
    /* Video habilitado en móvil */
    .hero-video {
        display: block;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 1.05rem;
        padding: 20px;
        margin-bottom: 1.5rem;
    }
    
    .about-button {
        text-align: center;
        margin-top: 1.5rem;
    }
    
    .about-button .btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .about-image img:hover {
        transform: scale(1.02);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .cart-actions {
        flex-direction: column;
    }

    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Alternativa basada en clase del body para máxima compatibilidad móvil */
@media (max-width: 768px) {
    .menu-open .nav-menu { transform: translateX(0); }
    .menu-open .menu-overlay { display: block; }
    .menu-open #cart-btn-mobile { display: none; }
}

/* Notificaciones Toast Persistentes - Mejoradas */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
    pointer-events: none;
}

#toast-container .toast {
    pointer-events: auto;
}

.toast {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: slideInRight 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    will-change: transform;
    min-height: 60px;
}

.toast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #00b894, #00cec9);
}

.toast-success {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.toast-warning {
    background: linear-gradient(135deg, #fdcb6e 0%, #f39c12 100%);
    box-shadow: 0 8px 25px rgba(253, 203, 110, 0.4);
}

.toast-error {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    box-shadow: 0 8px 25px rgba(253, 121, 168, 0.4);
}

.toast-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255,255,255,0.3);
    animation: toastProgress 4s linear;
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

@keyframes slideOutRight {
    to { 
        transform: translateX(100%) scale(0.8);
        opacity: 0;
    }
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9998;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    gap: 12px;
    max-width: 200px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
}

.whatsapp-float a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-icon i {
    font-size: 1.4rem;
    color: white;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.whatsapp-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.whatsapp-subtitle {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    margin-top: 2px;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float a {
        padding: 10px 15px;
        max-width: 160px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
    
    .whatsapp-icon i {
        font-size: 1.2rem;
    }
}























/* Obras Personalizadas */
.custom-art-section {
    padding: 4rem 0;
    background: #ffffff;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
}

.custom-art-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="custom-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ecf0f1" opacity="0.3"/><circle cx="10" cy="40" r="0.5" fill="%23bdc3c7" opacity="0.2"/><circle cx="40" cy="10" r="1.5" fill="%23d5dbdb" opacity="0.25"/></pattern></defs><rect width="100" height="100" fill="url(%23custom-pattern)"/></svg>');
    pointer-events: none;
}

.custom-art-section .section-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.custom-art-section .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #7f8c8d;
    position: relative;
    z-index: 1;
}

.custom-art-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.custom-art-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.custom-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(52, 73, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2c3e50;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(52, 73, 94, 0.2);
}

.feature-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
}

/* Formulario de Obras Personalizadas */
.custom-art-form {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.custom-form {
    position: relative;
    min-height: 500px;
}

.form-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
    transform: translateY(-1px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.next-step-btn,
.prev-step-btn,
.submit-custom-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.next-step-btn,
.submit-custom-btn {
    background: linear-gradient(45deg, #34495e, #2c3e50);
    color: white;
    margin-left: auto;
}

.next-step-btn:hover,
.submit-custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.4);
}

.prev-step-btn {
    background: #6c757d;
    color: white;
}

.prev-step-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.submit-custom-btn {
    background: linear-gradient(45deg, #34495e, #2c3e50);
    font-size: 1.1rem;
    padding: 15px 30px;
}

.submit-custom-btn:hover {
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.4);
}

/* Resumen del formulario */
.form-summary {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #667eea;
}

.form-summary h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #6c757d;
}

.summary-value {
    color: #2c3e50;
    font-weight: 500;
}

/* Checkbox personalizado */
.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    transform: scale(1.2);
}

/* Pantalla de éxito */
.custom-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-content i {
    font-size: 4rem;
    color: #00b894;
    margin-bottom: 1.5rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.success-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.success-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-direct {
    background: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-direct:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.new-request-btn {
    background: #667eea;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.new-request-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Indicador de progreso */
.form-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #667eea;
    transform: scale(1.3);
}

.progress-dot.completed {
    background: #00b894;
}

/* Responsive Obras Personalizadas */
@media (max-width: 768px) {
    .custom-art-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .custom-art-info {
        order: 2;
    }
    
    .custom-art-form {
        order: 1;
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .custom-feature {
        gap: 1rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-direct,
    .new-request-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Modal de Checkout Simplificado */
.checkout-modal-content {
    max-width: 1100px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    box-sizing: border-box;
}

.modal-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
    text-align: center;
}

.whatsapp-checkout-container {
    padding: 2rem;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Columna izquierda - Resumen del pedido */
.checkout-left-column {
    position: sticky;
    top: 0;
}

/* Columna derecha - Info de WhatsApp */
.checkout-right-column {
    min-height: 500px;
}

/* Resumen simplificado */
.order-summary-simple {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.order-summary-simple h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

#checkout-items-simple {
    margin-bottom: 1.5rem;
}

.checkout-item-simple {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.checkout-item-simple:last-child {
    border-bottom: none;
}

.checkout-item-details-simple {
    flex: 1;
}

.checkout-item-name-simple {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.checkout-item-price-simple {
    font-weight: bold;
    color: #667eea;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-left: 1rem;
}

.checkout-total-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 15px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.total-label {
    font-size: 1.1rem;
    font-weight: 500;
}

.total-amount {
    font-size: 1.8rem;
    font-weight: bold;
}

/* Información de envío */
.shipping-info {
    background: rgba(0, 184, 148, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid #00b894;
}

.shipping-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.shipping-item:last-child {
    margin-bottom: 0;
}

.shipping-item i {
    color: #00b894;
    width: 16px;
    font-size: 1rem;
}

/* Información de WhatsApp */
.whatsapp-info {
    background: linear-gradient(145deg, #ffffff, #f0f8ff);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(37, 211, 102, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

/* Header de seguridad */
.security-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.security-header i {
    font-size: 2.5rem;
    color: #25d366;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.security-header h4 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.security-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Grid de beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-card {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(37, 211, 102, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
}

.benefit-card i {
    font-size: 2rem;
    color: #25d366;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h5 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Acción de WhatsApp */
.whatsapp-action {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 15px;
    border: 2px dashed rgba(37, 211, 102, 0.2);
}

.action-instruction {
    color: #6c757d;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.action-instruction i {
    color: #25d366;
}

.whatsapp-order-button {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 15px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    width: 100%;
    max-width: 400px;
    margin: 1.5rem auto;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-order-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.whatsapp-order-button:hover::before {
    left: 100%;
}

.whatsapp-order-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-order-button:active {
    transform: scale(0.98);
}

.whatsapp-order-button i {
    font-size: 2rem;
    animation: whatsappPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.button-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.button-title {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.2;
}

.button-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 4px;
    line-height: 1.2;
}

/* Contacto alternativo */
.alternative-contact {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
}

.alternative-contact p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.alternative-contact a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin-left: 8px;
}

.alternative-contact a:hover {
    text-decoration: underline;
}

/* Horario de contacto */
.contact-schedule {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-item i {
    color: #667eea;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.schedule-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.schedule-item strong {
    color: #2c3e50;
    font-size: 1rem;
}

.schedule-item span {
    color: #6c757d;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    /* Checkout responsive mejorado */
    .checkout-modal-content {
        max-width: 100%;
        width: 98%;
        margin: 5% auto;
    }
    
    .whatsapp-checkout-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 2rem;
    }
    
    .checkout-left-column {
        position: static;
        order: 1;
    }
    
    .checkout-right-column {
        order: 2;
        min-height: auto;
    }
    
    .order-summary-simple {
        padding: 1.5rem;
    }
    
    .checkout-total-simple {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 1.2rem;
    }
    
    .total-amount {
        font-size: 1.5rem;
    }
    
    .whatsapp-info {
        padding: 1.5rem;
    }
    
    .security-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .security-header h4 {
        font-size: 1.4rem;
    }
    
    .security-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.2rem;
    }
    
    .whatsapp-action {
        padding: 1.5rem;
    }
    
    .whatsapp-order-button {
        padding: 15px 20px;
        flex-direction: column;
        gap: 8px;
        text-align: center;
        max-width: none;
    }
    
    .button-content {
        text-align: center;
    }
    
    .button-title {
        font-size: 1.1rem;
    }
    
    .button-subtitle {
        font-size: 0.85rem;
    }
    
    .alternative-contact {
        text-align: center;
    }
    
    .contact-schedule {
        padding: 1.2rem;
    }
    
    .schedule-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .action-instruction {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    #toast-container {
        right: 15px;
        left: 15px;
        top: 10px;
        max-width: none;
    }
    
    .toast {
        font-size: 0.9rem;
        padding: 14px 16px;
        min-height: 55px;
    }
}

/* Menú móvil habilitado (mostrar hamburguesa y navegación completa) */
@media (max-width: 768px) {
    .nav-logo, .nav-brand { display: block !important; }
    .hamburger { display: flex !important; }
    /* Se usa la definición de panel lateral ya incluida arriba */
    .nav-menu {
        position: fixed;
        left: 0;
        top: 80px;
        bottom: 0;
        transform: translateX(-110%);
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 70%;
        max-width: 320px;
        text-align: left;
        transition: transform 0.3s ease;
        box-shadow: 0 10px 27px rgba(102, 126, 234, 0.3);
        padding: 2rem 1.25rem;
        backdrop-filter: blur(10px);
        z-index: 1500;
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
    }
    .nav-menu.active { transform: translateX(0); }
    .nav-menu li { margin: 1rem 0; display: block !important; }
}



/* Botón de expandir galería */
.gallery-expand-button {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    animation: fadeInUp 0.6s ease-out;
}

.gallery-expand-button button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.3);
    backdrop-filter: blur(10px);
}

.gallery-expand-button button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.4);
    background: linear-gradient(135deg, #2c3e50, #1a252f);
}

.gallery-expand-button button:active {
    transform: translateY(0);
}

.gallery-expand-button i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.gallery-expand-button:hover i {
    transform: translateY(2px);
}

/* Placeholder para mantener grid consistente */
.artwork-card-placeholder {
    background: transparent;
    border: 2px dashed rgba(52, 73, 94, 0.2);
    border-radius: 15px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(52, 73, 94, 0.4);
    font-style: italic;
    transition: all 0.3s ease;
}

.artwork-card-placeholder:hover {
    border-color: rgba(52, 73, 94, 0.3);
    background: rgba(52, 73, 94, 0.05);
}

.artwork-card-placeholder::before {
    content: "✨";
    font-size: 2rem;
    opacity: 0.3;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive para botón expandir */
@media (max-width: 768px) {
    .gallery-expand-button button {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .gallery-expand-button i {
        font-size: 1rem;
    }
    
    .artwork-card-placeholder {
        min-height: 300px;
    }
}

/* Página de Detalles del Cuadro */
.artwork-detail-section {
    min-height: 100vh;
    padding: 2rem 0;
    background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 50%, #bdc3c7 100%);
}

.back-navigation {
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: linear-gradient(45deg, #34495e, #2c3e50);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(52, 73, 94, 0.3);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.4);
    background: linear-gradient(45deg, #2c3e50, #1a252f);
}

.artwork-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.artwork-image-container {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.artwork-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.artwork-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.artwork-main-image:hover {
    transform: scale(1.02);
}

.image-zoom-hint {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(52, 73, 94, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.artwork-image-container:hover .image-zoom-hint {
    opacity: 1;
}

.artwork-info-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.artwork-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.artwork-price-section {
    margin-bottom: 2rem;
}

.artwork-price {
    font-size: 2rem;
    font-weight: 700;
    color: #34495e;
    background: linear-gradient(45deg, #34495e, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artwork-description-section {
    margin-bottom: 2rem;
}

.artwork-description-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.artwork-description {
    color: #7f8c8d;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}

.artwork-specifications {
    margin-bottom: 3rem;
}

.artwork-specifications h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.spec-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(52, 73, 94, 0.05);
    border-radius: 10px;
    border-left: 4px solid #34495e;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(52, 73, 94, 0.1);
    transform: translateX(5px);
}

.spec-item i {
    color: #34495e;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.spec-content strong {
    color: #2c3e50;
    margin-right: 0.5rem;
}

.spec-content span {
    color: #7f8c8d;
}

.artwork-actions {
    text-align: center;
}

.add-to-cart-btn-enhanced {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(52, 73, 94, 0.3);
}

.add-to-cart-btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 73, 94, 0.4);
    background: linear-gradient(135deg, #2c3e50, #1a252f);
}

.artwork-guarantee {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.guarantee-item i {
    color: #27ae60;
}

/* Zoom Overlay */
.image-zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 2rem;
}

.zoom-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.zoomed-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.zoom-close-btn {
    position: absolute;
    top: -40px;
    right: -40px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-close-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Responsive Design para Detalles */
@media (max-width: 1024px) {
    .artwork-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .artwork-info-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .artwork-detail-section {
        padding: 1rem 0;
    }
    
    .artwork-title {
        font-size: 2rem;
    }
    
    .artwork-price {
        font-size: 1.5rem;
    }
    
    .artwork-image-container,
    .artwork-info-container {
        padding: 1.5rem;
    }
    
    .spec-grid {
        gap: 0.75rem;
    }
    
    .spec-item {
        padding: 0.75rem;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .guarantee-item {
        font-size: 0.8rem;
    }
    
    .zoom-close-btn {
        top: -30px;
        right: -30px;
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .artwork-title {
        font-size: 1.5rem;
    }
    
    .add-to-cart-btn-enhanced {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .image-zoom-overlay {
        padding: 1rem;
    }
}

/* ========================================
   PÁGINA DE CHECKOUT / CARRITO
======================================== */

.checkout-section {
    padding: 6rem 0 4rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #34495e 100%);
    color: #f8f6f0;
}

.checkout-content {
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-section .back-navigation {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.checkout-header {
    text-align: center;
    margin-bottom: 3rem;
}

.checkout-header h1 {
    font-size: 2.5rem;
    color: #f8f6f0;
    margin-bottom: 1rem;
}

.checkout-header h1 i {
    margin-right: 1rem;
    color: #3498db;
}

.cart-count-display {
    font-size: 1.1rem;
    color: #bdc3c7;
}

/* Items del carrito */
.cart-items-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cart-items-list {
    max-height: 60vh;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cart-item:last-child {
    margin-bottom: 0;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.05);
}

.cart-item-info {
    flex: 1;
    margin-right: 1rem;
}

.cart-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f8f6f0;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.cart-item-details {
    color: #bdc3c7;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.cart-item-year {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cart-item-price {
    text-align: right;
    flex-shrink: 0;
}

.cart-item-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    display: block;
    margin-bottom: 1rem;
}

.remove-item-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remove-item-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-1px);
}

.remove-item-btn i {
    font-size: 0.8rem;
}

/* Carrito vacío */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: #bdc3c7;
}

.empty-cart i {
    font-size: 4rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.empty-cart h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f8f6f0;
}

.empty-cart p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Resumen del carrito */
.cart-summary {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.summary-content {
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.summary-row:last-child {
    border-bottom: none;
}

.total-row {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid rgba(52, 152, 219, 0.3);
}

.checkout-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.clear-cart-btn {
    background: linear-gradient(135deg, #7f8c8d, #95a5a6);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clear-cart-btn:hover {
    background: linear-gradient(135deg, #95a5a6, #bdc3c7);
    transform: translateY(-2px);
}

.checkout-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #2980b9, #21618c);
    transform: translateY(-2px);
}

/* Opciones de pago */
.payment-options {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.payment-options h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #f8f6f0;
}

.payment-options p {
    text-align: center;
    color: #bdc3c7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.payment-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.payment-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #f8f6f0;
}

.payment-info p {
    color: #bdc3c7;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature i {
    color: #3498db;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.feature-content h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #f8f6f0;
}

.feature-content p {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0;
    text-align: left;
}

.payment-guarantees {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2ecc71;
    font-weight: 600;
}

.guarantee i {
    color: #2ecc71;
}

.whatsapp-checkout-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.whatsapp-checkout-btn:hover {
    background: linear-gradient(135deg, #128c7e, #0d7377);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-checkout-btn i {
    font-size: 1.4rem;
}

/* Responsive para checkout */
@media (max-width: 768px) {
    .checkout-section {
        padding: 5rem 0 2rem;
    }
    
    .checkout-section .back-navigation {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .checkout-header h1 {
        font-size: 2rem;
    }
    
    .cart-items-container,
    .cart-summary,
    .payment-options {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .cart-item-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cart-item-info {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cart-item-price {
        text-align: center;
    }
    
    .checkout-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .payment-features {
        grid-template-columns: 1fr;
    }
    
    .payment-guarantees {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .payment-method {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-icon {
        margin: 0 auto;
    }
}

/* Estilos de cookies eliminados */

/* Modal de opciones de contacto */
.contact-options-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-options-modal.show {
    opacity: 1;
    visibility: visible;
}

.contact-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.contact-options-modal.show .contact-modal-content {
    transform: scale(1) translateY(0);
}

.contact-modal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.contact-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.close-contact-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-contact-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.contact-modal-body {
    padding: 30px;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-option:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-color: #2c3e50;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
}

.contact-option:last-child {
    margin-bottom: 0;
}

.contact-option-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    min-width: 60px;
    text-align: center;
}

.contact-option-info {
    flex: 1;
}

.contact-option-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-option-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.contact-option-arrow {
    font-size: 1.5rem;
    color: #95a5a6;
    transition: all 0.3s ease;
}

.contact-option:hover .contact-option-arrow {
    color: #2c3e50;
    transform: translateX(5px);
}

.contact-modal-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.contact-modal-footer p {
    margin: 0;
    color: #2c3e50;
    font-size: 1rem;
}

/* Responsive para el modal de contacto */
@media (max-width: 768px) {
    .contact-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .contact-modal-header {
        padding: 20px 25px;
    }
    
    .contact-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .contact-modal-body {
        padding: 25px 20px;
    }
    
    .contact-option {
        padding: 18px 20px;
        margin-bottom: 12px;
    }
    
    .contact-option-icon {
        font-size: 2.2rem;
        margin-right: 15px;
        min-width: 50px;
    }
    
    .contact-option-info h4 {
        font-size: 1.1rem;
    }
    
    .contact-option-info p {
        font-size: 0.9rem;
    }
    
    .contact-modal-footer {
        padding: 18px 25px;
    }
    
    .contact-modal-footer p {
        font-size: 0.95rem;
    }
}

/* Modal de opciones de obra personalizada */
.custom-art-sending-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-art-sending-modal.show {
    opacity: 1;
    visibility: visible;
}

.custom-art-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 0;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.custom-art-sending-modal.show .custom-art-modal-content {
    transform: scale(1) translateY(0);
}

.custom-art-modal-header {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.custom-art-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.close-custom-art-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-custom-art-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.custom-art-modal-body {
    padding: 30px;
}

.custom-art-recommendation {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff9c4 0%, #ffeb3b33 100%);
    border: 2px solid #ffd600;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 25px;
    position: relative;
}

.recommendation-icon {
    font-size: 2rem;
    margin-right: 15px;
    min-width: 40px;
}

.recommendation-text strong {
    color: #f57f17;
    font-size: 1.1rem;
}

.recommendation-text small {
    color: #795548;
    line-height: 1.4;
}

.custom-art-option {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-art-option.recommended {
    border-color: #ffd600;
    background: linear-gradient(135deg, #fffde7 0%, #fff8e1 100%);
    position: relative;
}

.custom-art-option:hover {
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
    border-color: #8e44ad;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.15);
}

.custom-art-option.recommended:hover {
    background: linear-gradient(135deg, #fff3c4 0%, #ffecb3 100%);
    border-color: #ff8f00;
}

.custom-art-option:last-child {
    margin-bottom: 0;
}

.custom-art-option-icon {
    font-size: 2.5rem;
    margin-right: 20px;
    min-width: 60px;
    text-align: center;
}

.custom-art-option-info {
    flex: 1;
    position: relative;
}

.custom-art-option-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

.custom-art-option-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.option-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.custom-art-option-arrow {
    font-size: 1.5rem;
    color: #95a5a6;
    transition: all 0.3s ease;
}

.custom-art-option:hover .custom-art-option-arrow {
    color: #8e44ad;
    transform: translateX(5px);
}

.custom-art-option.recommended:hover .custom-art-option-arrow {
    color: #ff8f00;
}

.custom-art-modal-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 30px;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.custom-art-modal-footer p {
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-size: 1rem;
}

.custom-art-modal-footer p:last-child {
    margin: 0;
}

.custom-art-modal-footer small {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive para el modal de obra personalizada */
@media (max-width: 768px) {
    .custom-art-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .custom-art-modal-header {
        padding: 20px 25px;
    }
    
    .custom-art-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .custom-art-modal-body {
        padding: 25px 20px;
    }
    
    .custom-art-recommendation {
        padding: 12px 18px;
        margin-bottom: 20px;
    }
    
    .recommendation-icon {
        font-size: 1.8rem;
        margin-right: 12px;
    }
    
    .recommendation-text strong {
        font-size: 1rem;
    }
    
    .custom-art-option {
        padding: 18px 20px;
        margin-bottom: 12px;
    }
    
    .custom-art-option-icon {
        font-size: 2.2rem;
        margin-right: 15px;
        min-width: 50px;
    }
    
    .custom-art-option-info h4 {
        font-size: 1.1rem;
    }
    
    .custom-art-option-info p {
        font-size: 0.9rem;
    }
    
    .option-badge {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .custom-art-modal-footer {
        padding: 18px 25px;
    }
    
    .custom-art-modal-footer p {
        font-size: 0.95rem;
    }
    
    .custom-art-modal-footer small {
        font-size: 0.85rem;
    }
}



/* Estilos de cookies eliminados (resto) */

/* ========================================
   🎨 ESTILOS PARA PÁGINAS DEDICADAS CTA
======================================== */

/* Estilos para Call-to-Action de Obras Personalizadas */
.custom-art-cta {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
    margin-top: 0.5rem;
    transform: translateY(-1rem);
    box-shadow: 0 15px 35px rgba(108, 117, 125, 0.3);
}

.custom-art-cta .cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.custom-art-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-cta .cta-button-large {
    background: rgba(44, 62, 80, 0.9);
    color: white;
    border: 2px solid rgba(44, 62, 80, 1);
}

.contact-cta .cta-button-large:hover {
    background: rgba(44, 62, 80, 1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
}

.cta-button-large:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-feature i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Estilos para Call-to-Action de Contacto */
.contact-cta {
    background: linear-gradient(135deg, #e8e6e1 0%, #d4d2cd 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    color: #2c3e50;
    margin-top: 2rem;
    box-shadow: 0 15px 35px rgba(212, 210, 205, 0.4);
    border: 2px solid rgba(44, 62, 80, 0.1);
}

.contact-cta .cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: none;
    color: #2c3e50;
}

.contact-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #2c3e50;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: rgba(44, 62, 80, 0.1);
    color: #2c3e50;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(44, 62, 80, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.contact-option i {
    font-size: 1.5rem;
}

.contact-option span {
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-option.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.contact-option.whatsapp i {
    color: #25d366;
}

.contact-option.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
}

.contact-option.email {
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(66, 133, 244, 0.3);
}

.contact-option.email i {
    color: #4285f4;
}

.contact-option.email:hover {
    background: rgba(66, 133, 244, 0.2);
}

.contact-option.instagram {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.1), rgba(255, 204, 128, 0.1));
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.contact-option.instagram i {
    background: linear-gradient(45deg, #e1306c, #fd5949, #f56040, #f77737, #fcaf45, #ffdc80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-option.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(255, 204, 128, 0.2));
}

/* Responsive para CTAs */
@media (max-width: 768px) {
    .custom-art-cta,
    .contact-cta {
        padding: 2rem 1rem;
    }
    
    .custom-art-cta .cta-content h3,
    .contact-cta .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .custom-art-cta .cta-content p,
    .contact-cta .cta-content p {
        font-size: 1rem;
    }
    
    .cta-button-large {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-option {
        min-width: 200px;
    }
}