/* =====================================================
   PRODUCT DETAIL - Sprint 5: Detalle de Producto
   =====================================================
   Sistema de detalle de producto profesional con:
   - Galeria de imagenes con Swiper.js
   - Thumbnails navegables
   - Zoom on hover
   - Layout de informacion mejorado
   - Bloque de beneficios
   - Productos relacionados
   ===================================================== */

/* =====================================================
   BREADCRUMBS
   ===================================================== */
.product-breadcrumbs {
    padding: var(--spacing-4) 0;
    margin-bottom: var(--spacing-4);
}

.product-breadcrumbs .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: var(--text-sm);
}

.product-breadcrumbs .breadcrumb-item a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.product-breadcrumbs .breadcrumb-item a:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.product-breadcrumbs .breadcrumb-item.active {
    color: var(--text-secondary);
}

.product-breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
    content: "";
    font-family: "bootstrap-icons";
    color: var(--color-gray-400);
    padding: 0 var(--spacing-2);
}

/* =====================================================
   PRODUCT CONTAINER
   ===================================================== */
.product-detail-container {
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-8);
}

.product-detail-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 0 !important;
}

@media (max-width: 991.98px) {
    .product-detail-row {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}

/* =====================================================
   GALERIA DE IMAGENES
   ===================================================== */
.product-gallery {
    position: relative;
    background: var(--color-gray-50);
    padding: var(--spacing-4);
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ISSUE 3 FIX: Alinear galeria arriba, no centrada */
    /* Prevent gallery from overflowing in grid */
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

/* Main Image Swiper - ISSUE 3 FIX: Asegurar contencion del swiper */
.product-gallery-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: white;
    margin-bottom: var(--spacing-4);
    width: 100%;
    max-width: 100%;
}

/* ISSUE 3 FIX: Forzar que el slide respete el ancho del contenedor */
.product-gallery-main .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    height: 400px;
    width: 100% !important;
    max-width: 100% !important;
}

@media (min-width: 992px) {
    .product-gallery-main .swiper-slide {
        height: 450px;
    }
}

/* ISSUE 3 FIX: La imagen debe contenerse dentro del slide sin desbordarse */
.product-gallery-main .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform var(--transition-normal);
}

/* Zoom Container - ISSUE 3 FIX: Contener imagen correctamente y centrarla */
.product-image-zoom-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-zoom-container:hover img {
    transform: scale(1.5);
}

.product-image-zoom-container img {
    transform-origin: var(--zoom-x, center) var(--zoom-y, center);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Swiper Navigation */
.product-gallery-main .swiper-button-next,
.product-gallery-main .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    color: var(--color-gray-700);
    opacity: 0;
    transition: all var(--transition-fast);
}

.product-gallery-main:hover .swiper-button-next,
.product-gallery-main:hover .swiper-button-prev {
    opacity: 1;
}

.product-gallery-main .swiper-button-next:hover,
.product-gallery-main .swiper-button-prev:hover {
    background: var(--color-primary);
    color: white;
}

.product-gallery-main .swiper-button-next::after,
.product-gallery-main .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Swiper Pagination */
.product-gallery-main .swiper-pagination {
    bottom: var(--spacing-4);
}

.product-gallery-main .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: white;
    opacity: 0.7;
    box-shadow: var(--shadow-sm);
}

.product-gallery-main .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
}

/* Thumbnails Swiper */
.product-gallery-thumbs {
    padding: 0 var(--spacing-8);
}

.product-gallery-thumbs .swiper-slide {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    background: white;
}

.product-gallery-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs .swiper-slide:hover {
    border-color: var(--color-gray-300);
    transform: scale(1.05);
}

.product-gallery-thumbs .swiper-slide-thumb-active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-primary);
}

/* No Image Placeholder */
.product-no-image {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-gray-100);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
}

.product-no-image i {
    font-size: 4rem;
    margin-bottom: var(--spacing-4);
    opacity: 0.5;
}

/* Fullscreen Modal */
.product-image-modal .modal-dialog {
    max-width: 90vw;
    margin: auto;
}

.product-image-modal .modal-content {
    background: transparent;
    border: none;
}

.product-image-modal .modal-body {
    padding: 0;
}

.product-image-modal .btn-close {
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    z-index: 10;
    background: white;
    border-radius: var(--radius-full);
    padding: var(--spacing-3);
    opacity: 1;
}

.product-image-modal img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

/* =====================================================
   PRODUCT INFO
   ===================================================== */
.product-info {
    padding: var(--spacing-8);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-5);
}

@media (max-width: 767.98px) {
    .product-info {
        padding: var(--spacing-6);
    }
}

/* Category Badge */
.product-category-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-1-5) var(--spacing-3);
    background: var(--color-primary-light);
    background: rgba(102, 126, 234, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    width: fit-content;
}

.product-category-badge i {
    font-size: 0.875rem;
}

/* Product Title */
.product-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    line-height: var(--leading-tight);
    margin: 0;
}

@media (max-width: 767.98px) {
    .product-title {
        font-size: var(--text-2xl);
    }
}

/* Price Section */
.product-price-section {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: var(--spacing-3);
}

.product-price {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--color-primary);
    font-family: var(--font-body);
}

.product-price-original {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    text-decoration: line-through;
}

.product-discount-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-1) var(--spacing-3);
    background: var(--color-error);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
}

/* Stock Status */
.product-stock-status {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) var(--spacing-4);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.product-stock-status.in-stock {
    background: var(--color-success-light);
    color: var(--color-success);
}

.product-stock-status.low-stock {
    background: var(--color-warning-light);
    color: var(--color-warning);
}

.product-stock-status.out-of-stock {
    background: var(--color-error-light);
    color: var(--color-error);
}

.product-stock-status i {
    font-size: 1.25rem;
}

.product-stock-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
}

.in-stock .stock-dot {
    background: var(--color-success);
}

.low-stock .stock-dot {
    background: var(--color-warning);
}

.out-of-stock .stock-dot {
    background: var(--color-error);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Tags */
.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
}

.product-tag {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-1) var(--spacing-3);
    background: var(--color-gray-100);
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
}

/* =====================================================
   DESCRIPTION
   ===================================================== */
.product-description-section {
    background: var(--color-gray-50);
    border-radius: var(--radius-lg);
    padding: var(--spacing-5);
}

.product-description-section h4 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--spacing-3);
}

.product-description {
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    font-size: var(--text-base);
}

.product-description.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description.expanded {
    display: block;
}

.description-toggle {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    cursor: pointer;
    padding: var(--spacing-2) 0;
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
    transition: color var(--transition-fast);
}

.description-toggle:hover {
    color: var(--color-primary-dark);
}

.description-toggle i {
    transition: transform var(--transition-fast);
}

.description-toggle.expanded i {
    transform: rotate(180deg);
}

/* =====================================================
   ADD TO CART SECTION
   ===================================================== */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
    padding: var(--spacing-5);
    background: var(--color-gray-50);
    border-radius: var(--radius-xl);
}

/* Variations Selector */
.product-variations {
    padding-bottom: var(--spacing-4);
    border-bottom: 1px solid var(--color-gray-200);
}

.product-variations h5 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-3);
}

.variation-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2);
}

.variation-option {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-3) var(--spacing-4);
    background: white;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.variation-option:hover:not(.disabled) {
    border-color: var(--color-primary-light);
}

.variation-option.selected {
    border-color: var(--color-primary);
    background: rgba(102, 126, 234, 0.05);
}

.variation-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.variation-option input {
    display: none;
}

.variation-option .variation-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-gray-300);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.variation-option.selected .variation-radio {
    border-color: var(--color-primary);
}

.variation-option.selected .variation-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

.variation-details {
    flex: 1;
}

.variation-name {
    font-weight: var(--font-medium);
    color: var(--text-primary);
}

.variation-sku {
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.variation-stock {
    font-size: var(--text-xs);
}

.variation-stock .badge {
    font-weight: var(--font-medium);
}

/* Quantity Controls */
.product-quantity {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
}

.product-quantity label {
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    font-size: var(--text-sm);
}

.quantity-controls {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.quantity-controls button {
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls button:hover:not(:disabled) {
    background: var(--color-primary);
    color: white;
}

.quantity-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.quantity-controls input {
    width: 60px;
    height: 44px;
    border: none;
    border-left: 1px solid var(--color-gray-200);
    border-right: 1px solid var(--color-gray-200);
    text-align: center;
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    color: var(--text-primary);
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-max {
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

/* CTA Buttons */
.product-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
}

.btn-add-to-cart-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-3);
    padding: var(--spacing-4) var(--spacing-6);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-xl);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-primary);
}

.btn-add-to-cart-main:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-add-to-cart-main:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

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

.btn-whatsapp-consult {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-5);
    background: #25D366;
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-whatsapp-consult:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-1px);
}

.btn-whatsapp-consult i {
    font-size: 1.25rem;
}

/* Out of Stock Message */
.product-unavailable {
    text-align: center;
    padding: var(--spacing-6);
    background: var(--color-gray-100);
    border-radius: var(--radius-lg);
}

.product-unavailable i {
    font-size: 3rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-3);
}

.product-unavailable p {
    color: var(--text-secondary);
    margin: 0;
}

/* =====================================================
   BENEFITS BLOCK
   ===================================================== */
.product-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-3);
    padding-top: var(--spacing-4);
    border-top: 1px solid var(--color-gray-200);
}

@media (max-width: 575.98px) {
    .product-benefits {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-3);
    gap: var(--spacing-2);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.1);
    border-radius: var(--radius-lg);
    color: var(--color-primary);
    font-size: 1.25rem;
}

.benefit-text {
    font-size: var(--text-xs);
    color: var(--text-secondary);
    font-weight: var(--font-medium);
    line-height: var(--leading-tight);
}

/* =====================================================
   STORE INFO CARD
   ===================================================== */
.product-store-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-4);
    background: white;
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
}

.product-store-card img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.store-card-info {
    flex: 1;
}

.store-card-info h5 {
    margin: 0;
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.store-card-info p {
    margin: 0;
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.store-card-link {
    color: var(--color-primary);
    font-size: var(--text-sm);
    text-decoration: none;
}

.store-card-link:hover {
    text-decoration: underline;
}

/* =====================================================
   RELATED PRODUCTS
   ===================================================== */
.related-products-section {
    margin-top: var(--spacing-10);
    margin-bottom: var(--spacing-10);
}

.related-products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-6);
}

.related-products-header h2 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin: 0;
}

.related-products-header a {
    color: var(--color-primary);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-1);
}

.related-products-header a:hover {
    text-decoration: underline;
}

/* Related Products Swiper */
.related-products-swiper {
    padding: var(--spacing-2) 0;
}

.related-products-swiper .swiper-slide {
    height: auto;
}

.related-product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.related-product-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-gray-100);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-content {
    padding: var(--spacing-4);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-product-category {
    font-size: var(--text-xs);
    color: var(--color-primary);
    font-weight: var(--font-medium);
    margin-bottom: var(--spacing-1);
}

.related-product-name {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin: 0 0 var(--spacing-2) 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-price {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--color-primary);
    margin-top: auto;
}

/* Related Products Navigation */
.related-products-swiper .swiper-button-next,
.related-products-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    color: var(--color-gray-700);
}

.related-products-swiper .swiper-button-next::after,
.related-products-swiper .swiper-button-prev::after {
    font-size: 14px;
    font-weight: bold;
}

.related-products-swiper .swiper-button-next:hover,
.related-products-swiper .swiper-button-prev:hover {
    background: var(--color-primary);
    color: white;
}

/* Empty Related */
.no-related-products {
    text-align: center;
    padding: var(--spacing-10);
    color: var(--text-secondary);
}

.no-related-products i {
    font-size: 3rem;
    margin-bottom: var(--spacing-4);
    opacity: 0.5;
}

/* =====================================================
   SECONDARY ACTIONS
   ===================================================== */
.product-secondary-actions {
    display: flex;
    gap: var(--spacing-3);
    flex-wrap: wrap;
}

.btn-back-catalog {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--color-gray-100);
    color: var(--text-secondary);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-back-catalog:hover {
    background: var(--color-gray-200);
    color: var(--text-primary);
}

.btn-view-cart {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-4);
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-view-cart:hover {
    background: var(--color-primary-dark);
    color: white;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 767.98px) {
    .product-gallery {
        padding: var(--spacing-4);
    }

    .product-gallery-thumbs .swiper-slide {
        width: 60px;
        height: 60px;
    }

    .product-price {
        font-size: var(--text-3xl);
    }

    .product-benefits {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefit-item {
        padding: var(--spacing-2);
    }

    .benefit-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .related-products-header h2 {
        font-size: var(--text-xl);
    }
}

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

.product-info > * {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.product-info > *:nth-child(1) { animation-delay: 0.1s; }
.product-info > *:nth-child(2) { animation-delay: 0.15s; }
.product-info > *:nth-child(3) { animation-delay: 0.2s; }
.product-info > *:nth-child(4) { animation-delay: 0.25s; }
.product-info > *:nth-child(5) { animation-delay: 0.3s; }
.product-info > *:nth-child(6) { animation-delay: 0.35s; }
.product-info > *:nth-child(7) { animation-delay: 0.4s; }
.product-info > *:nth-child(8) { animation-delay: 0.45s; }
