﻿/* Estilos generales */
:root {
    --primary-color: #3483fa;
    --secondary-color: #2968c8;
    --dark-color: #333;
    --light-color: #f5f5f5;
    --gray-color: #999;
    --success-color: #00a650;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Proxima Nova', -apple-system, 'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif;
    color: var(--dark-color);
    background-color: #f7f7f7;
}

.container2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.container {
    min-height: 80% !important;
}

/* Cards de productos */
.ezy__epgrid8-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.ezy__epgrid8-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

    .ezy__epgrid8-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

.ezy__epgrid8-img {
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ezy__epgrid8-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.ezy__epgrid8-sub-title {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 8px;
}

.ezy__epgrid8-price-container {
    margin: 8px 0;
}

.ezy__epgrid8-discount-price {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
}

.ezy__epgrid8-real-price {
    font-size: 14px;
    color: var(--gray-color);
    text-decoration: line-through;
}

.ezy__epgrid8-shipping {
    font-size: 14px;
    color: var(--success-color);
    font-weight: 600;
}

.ezy__epgrid8-stock {
    font-size: 12px;
    color: var(--gray-color);
}

.ezy__epgrid8-available {
    color: var(--success-color);
}

.ezy__epgrid8-rating {
    color: #ffc107;
    font-size: 12px;
}

    .ezy__epgrid8-rating .count {
        color: var(--gray-color);
        margin-left: 4px;
    }

.ezy__epgrid8-fav, .ezy__epgrid8-cart {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
}

.ezy__epgrid8-cart {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .ezy__epgrid8-cart:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

/* Modal */
#productModal .modal-dialog {
    max-width: 900px;
}

#productModal .modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

#productModal .modal-header {
    border-bottom: 1px solid #eee;
    padding: 20px;
}

#productModal .modal-title {
    font-weight: 600;
    font-size: 24px;
    color: var(--dark-color);
}

#productModal .modal-body {
    padding: 0;
}

/* Contenido del modal */
.product-modal-container {
    display: flex;
    flex-wrap: wrap;
}

.product-modal-gallery {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 20px;
    background: #f9f9f9;
}

.product-modal-main-image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.product-modal-thumbnails {
    display: flex;
    gap: 10px;
}

.product-modal-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ddd;
    transition: var(--transition);
}

    .product-modal-thumbnail:hover {
        border-color: var(--primary-color);
    }

.product-modal-details {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 30px;
}

.product-modal-price {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-modal-original-price {
    font-size: 16px;
    color: var(--gray-color);
    text-decoration: line-through;
    margin-left: 10px;
}

.product-modal-discount {
    color: var(--success-color);
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
}

.product-modal-shipping {
    color: var(--success-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-modal-description {
    margin-top: 30px;
}

    .product-modal-description h3 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--dark-color);
    }

    .product-modal-description p {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
    }

.product-modal-features {
    margin-top: 20px;
}

    .product-modal-features ul {
        padding-left: 20px;
    }

    .product-modal-features li {
        margin-bottom: 8px;
        font-size: 14px;
    }

.product-modal-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

    .btn-primary:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

.btn-outline-secondary {
    border-color: #ddd;
    color: var(--dark-color);
    padding: 10px 20px;
    font-weight: 800;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-family:Montserrat;
    font-size:50px;
}

    .btn-outline-secondary:hover {
        background-color: #333333;
    }


.modern-title-3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 5em;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    position: relative;
}

    .modern-title-3 span {
        position: relative;
        padding: 0 20px;
    }

        .modern-title-3 span::before,
        .modern-title-3 span::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 40px;
            height: 7px;
            background: linear-gradient(90deg, #e74c3c, #f39c12);
        }

        .modern-title-3 span::before {
            left: -40px;
        }

        .modern-title-3 span::after {
            right: -40px;
        }

.bt_Modal{
    font-size:20px !important;
}
.modern-title.amazon-style {
    font-family: 'Amazon Ember', Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: 500;
    margin-bottom:2%;
}

.amazon-style .main-text {
    color: #333333;
    font-size: 38px;
    letter-spacing: -0.5px;
}

.amazon-style .highlight-text {
    color: #FF9900;
    font-size: 48px;
    font-weight: 700;
    position: relative;
    padding-left: 8px;
  
}

    .amazon-style .highlight-text::before {
        content: "";
        position: absolute;
        left: 0;
        top: 5px;
        bottom: 5px;
        width: 3px;
        background-color: #DDDDDD;
    }
/* Responsive */
@media (max-width: 768px) {
    .product-modal-gallery, .product-modal-details {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-modal-main-image {
        height: 300px;
    }

    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 576px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Estilos para las cards de ejemplo */
.example-card {
    opacity: 0.7;
    filter: grayscale(30%);
    position: relative;
    overflow: hidden;
}

    .example-card::after {
        content: "PRÓXIMAMENTE";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-15deg);
        background-color: rgba(52, 131, 250, 0.8);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: bold;
        font-size: 14px;
        z-index: 2;
        white-space: nowrap;
    }

.example-image-placeholder {
    height: 200px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 50px;
}

    .example-image-placeholder i {
        opacity: 0.5;
    }

.example-text {
    color: #aaa !important;
}

/* Efecto de carga para las cards de ejemplo */
@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 0.6;
    }
}

.example-card {
    animation: pulse 2s infinite ease-in-out;
}


#map {
    margin-top:5%;
    height: 300px;
    width: 100%;
}