/* Contenedor principal */
.producto-detalle-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 15px;
}

/* Breadcrumbs */
.producto-breadcrumbs {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.producto-breadcrumbs .breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.producto-breadcrumbs .breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.producto-breadcrumbs .breadcrumb-item a:hover {
    color: #f39c12;
}

.producto-breadcrumbs .breadcrumb-item.active {
    color: #2c3e50;
}

/* Layout principal - 3 columnas */
.producto-main-row {
    margin-bottom: 40px;
}

/* Columna izquierda - Galeria */
.producto-galeria {
    /*position: sticky;*/
    top: 100px;
}

/* Carrusel principal */
.producto-carousel {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
}

.producto-carousel .carousel-inner {
    border-radius: 8px;
}

.producto-carousel .carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background-color: #fff;
}

/* Controles del carrusel */
.producto-carousel .carousel-control-prev,
.producto-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    /*background-color: #1a5f7a;*/
    color: #555555ff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    margin: 0 10px;
}

.producto-carousel .carousel-control-prev {
    left: 10px;
}

.producto-carousel .carousel-control-next {
    right: 10px;
}

.producto-carousel .carousel-control-prev:hover,
.producto-carousel .carousel-control-next:hover {
    /*background-color: #f39c12;*/
}

/* Indicadores del carrusel */
.producto-carousel .carousel-indicators {
    margin-bottom: 10px;
    position: relative;
}

.producto-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background-color: #fff;
    border: 2px solid #e9ecef;
    opacity: 1;
    margin: 0 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.producto-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.producto-carousel .carousel-indicators .active {
    border-color: #f39c12;
}

.producto-carousel .carousel-indicators [data-bs-target]:hover {
    border-color: #f39c12;
}

/* Thumbnails row */
.producto-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.producto-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    border: 2px solid #e9ecef;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
}

.producto-thumbnail:hover,
.producto-thumbnail.active {
    border-color: #f39c12;
}

.producto-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Columna central - Info producto */
.producto-info {
    padding-left: 30px;
    padding-right: 30px;
}

/* Logo de marca */
.producto-brand-logo {
    display: flex;
    align-items: center;
    height: 1.8rem;
    max-height: 1.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a5f7a;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Badges */
.producto-badges {
    margin-bottom: 15px;
}

.producto-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 10px;
}

.producto-badge.sale {
    background-color: #f39c12;
    color: #ffffffff;
}

.producto-badge.new {
    background-color: #034c8c;
    color: #fff;
}

/* Titulo */
.producto-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* SKU */
.producto-sku {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}

/* Ratings */
.producto-rating {
    margin-bottom: 15px;
}

.producto-rating .stars {
    color: #f39c12;
    margin-right: 10px;
}

.producto-rating .stars .far {
    color: #ddd;
}

.producto-rating .rating-text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Separador */
.producto-separador {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 15px 0;
}

/* Precio */
.producto-precio {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.producto-precio-actual {
    font-size: 2rem;
    font-weight: 700;
    color: #c0392b;
}

.producto-precio-anterior {
    font-size: 1.25rem;
    color: #6c757d;
    text-decoration: line-through;
}

/* Stock */
.producto-stock {
    margin-bottom: 20px;
}

.producto-stock .stock-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #d4edda;
    color: #155724;
}

.producto-stock .out-stock-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: #edd4d4;
    color: #b70019;
}

.producto-stock .stock-badge i {
    margin-right: 8px;
}

/* Descripcion corta */
.producto-descripcion-corta {
    color: #495057;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Cantidad */
.producto-cantidad {
    margin-bottom: 25px;
}

.producto-cantidad .input-group {
    max-width: 150px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.producto-cantidad .btn-qty {
    background-color: #e9ecef;
    border: none;
    color: #333;
    padding: 10px 15px;
}

.producto-cantidad .btn-qty:hover {
    background-color: #f39c12;
    border-color: #f39c12;
    color: #fff;
}

.producto-cantidad .form-control {
    text-align: center;
    font-weight: 600;
    border: none;
}

/* Botones de accion */
.producto-acciones {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.producto-acciones .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.producto-acciones .btn-carrito {
    background-color: #f39c12;
    border-color: #f39c12;
    color: #fff;
    min-width: 180px;
}

.producto-acciones .btn-carrito:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    color: #fff;
}

.producto-acciones .btn-comprar {
    background-color: #1a5f7a;
    border-color: #1a5f7a;
    color: #fff;
    min-width: 180px;
}

.producto-acciones .btn-comprar:hover {
    background-color: #134b61;
    border-color: #134b61;
    color: #fff;
}

/* Acciones secundarias - Lista de deseos y comparar */
.producto-secondary-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.producto-secondary-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a5f7a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.producto-secondary-actions a:hover {
    color: #f39c12;
}

.producto-secondary-actions a i {
    font-size: 1rem;
}

/* Estilo para botón cuando está en wishlist */
.producto-secondary-actions a.in-wishlist {
    color: #e74c3c;
}

.producto-secondary-actions a.in-wishlist i {
    font-weight: 900;
}

/* Columna derecha - Especificaciones */
.producto-specs {
    padding-left: 20px;
    border-left: 1px solid #e9ecef;
}

/* Tabla de especificaciones y compatibilidad con zebra striping */
.producto-specs-table,
.producto-compatibilidad-table {
    width: 100%;
    margin: 0;
}

.producto-specs-table tr:nth-child(even),
.producto-compatibilidad-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.producto-specs-table tr:nth-child(odd),
.producto-compatibilidad-table tr:nth-child(odd) {
    background-color: #fff;
}

.producto-specs-table td,
.producto-compatibilidad-table td,
.producto-compatibilidad-table th {
    padding: 12px 15px;
    font-size: 0.9rem;
}

.producto-specs-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
    width: 50%;
}

.producto-specs-table td:last-child {
    color: #6c757d;
}

.producto-compatibilidad-table th {
    font-weight: 600;
    color: #2c3e50;
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
}

.producto-compatibilidad-table td {
    color: #6c757d;
}

/* Features list */
.producto-features {
    margin-top: 30px;
}

.producto-features-title {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.producto-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.producto-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    padding: 8px 0;
}

.producto-features li:last-child {
    margin-bottom: 0;
}

.producto-features .feature-icon {
    width: 20px;
    height: 20px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.producto-features .feature-text {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1199px) {
    .producto-info {
        padding-left: 20px;
        padding-right: 20px;
    }

    .producto-specs {
        padding-left: 15px;
    }
}

@media (max-width: 991px) {
    .producto-info {
        padding-left: 0;
        padding-right: 0;
        margin-top: 30px;
    }

    .producto-specs {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e9ecef;
        padding-top: 30px;
        margin-top: 30px;
    }

    .producto-carousel .carousel-item img {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .producto-detalle-wrapper {
        padding: 15px;
    }

    .producto-carousel .carousel-item img {
        height: 300px;
    }

    .producto-titulo {
        font-size: 1.3rem;
    }

    .producto-precio-actual {
        font-size: 1.6rem;
    }

    .producto-acciones {
        flex-direction: column;
    }

    .producto-acciones .btn {
        width: 100%;
    }

    .producto-thumbnail {
        width: 55px;
        height: 55px;
    }

    .producto-carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 575px) {
    .producto-carousel .carousel-item img {
        height: 250px;
    }

    .producto-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .producto-secondary-actions {
        flex-direction: column;
        gap: 10px;
    }
}


/* ========== SECCION DE RESEÑAS ========== */
.reseñas-wrapper {
    margin-top: 40px;
}

.reseñas-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.reseñas-layout {
    display: flex;
    gap: 30px;
}

/* Resumen de reseñas */
.reseñas-resumen {
    flex: 0 0 300px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    height: fit-content;
}

.reseñas-resumen h3 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1;
}

.reseñas-resumen .promedio-estrellas {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.reseñas-resumen .total-reseñas {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.reseñas-resumen .rating-bars {
    text-align: left;
}

.reseñas-resumen .rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.reseñas-resumen .rating-label {
    font-size: 0.85rem;
    color: #6c757d;
    width: 20px;
}

.reseñas-resumen .rating-progress {
    flex: 1;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.reseñas-resumen .rating-fill {
    height: 100%;
    background-color: #f39c12;
    border-radius: 4px;
}

.reseñas-resumen .rating-count {
    font-size: 0.85rem;
    color: #6c757d;
    width: 30px;
    text-align: right;
}

/* Lista de reseñas */
.reseñas-lista {
    flex: 1;
}

.reseña-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.reseña-item:last-child {
    border-bottom: none;
}

.reseña-avatar {
    flex-shrink: 0;
}

.reseña-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reseña-contenido {
    flex: 1;
}

.reseña-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.reseña-nombre {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.reseña-fecha {
    color: #999;
    font-size: 0.85rem;
}

.reseña-estrellas {
    color: #f39c12;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.reseña-texto {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
}

.reseña-verificado {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #28a745;
    font-size: 0.8rem;
    margin-top: 10px;
}

.reseña-verificado i {
    font-size: 0.7rem;
}

/* Formulario de reseñas */
.reseñas-formulario {
    margin-top: 30px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
}

.reseñas-formulario h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.reseñas-formulario .form-label {
    font-weight: 500;
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.reseñas-formulario .form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 10px 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.reseñas-formulario .form-control:focus {
    border-color: #f39c12;
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

.reseñas-formulario textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.reseñas-formulario .btn-enviar {
    background-color: #1a5f7a;
    border-color: #1a5f7a;
    color: #fff;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.reseñas-formulario .btn-enviar:hover {
    background-color: #134b61;
    border-color: #134b61;
    color: #fff;
}

.rating-input {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    color: #ddd;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.rating-input input:checked~label,
.rating-input label:hover,
.rating-input label:hover~label {
    color: #f39c12;
}

/* ========== SECCION DE DESCRIPCION ========== */
.producto-descripcion-wrapper {
    margin-top: 40px;
    padding-top: 30px;
}

.producto-descripcion-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.producto-descripcion-contenido {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
}

.producto-descripcion-texto {
    color: #495057;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.producto-descripcion-texto:last-child {
    margin-bottom: 0;
}

.producto-descripcion-texto h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 15px;
}

.producto-descripcion-texto h4:first-child {
    margin-top: 0;
}

.producto-descripcion-texto ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.producto-descripcion-texto ul li {
    margin-bottom: 8px;
    color: #495057;
}

.producto-descripcion-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e9ecef;
}

.producto-descripcion-info-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.producto-descripcion-info-item i {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a5f7a;
    font-size: 1rem;
    flex-shrink: 0;
}

.producto-descripcion-info-item .info-texto {
    flex: 1;
}

.producto-descripcion-info-item .info-titulo {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.producto-descripcion-info-item .info-valor {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 767px) {
    .producto-descripcion-wrapper {
        margin-top: 30px;
        padding-top: 20px;
    }

    .producto-descripcion-contenido {
        padding: 20px;
    }

    .producto-descripcion-info {
        flex-direction: column;
        gap: 15px;
    }

    .producto-descripcion-info-item {
        min-width: 100%;
    }
}

@media (max-width: 575px) {
    .producto-descripcion-contenido {
        padding: 15px;
    }

    .producto-descripcion-titulo {
        font-size: 1.3rem;
    }

    .producto-descripcion-texto {
        font-size: 0.9rem;
    }
}

/* Responsive para reseñas */
@media (max-width: 991px) {
    .reseñas-layout {
        flex-direction: column;
    }

    .reseñas-resumen {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .reseña-item {
        flex-direction: column;
    }

    .reseña-avatar {
        display: flex;
        justify-content: center;
    }

    .reseña-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ========== SECCION DE BANNERS Y DESCRIPCION MEJORADA ========== */
.enhanced-description-layout {
    margin-top: 40px;
}

.enhanced-description-layout .main-content {
    padding-right: 20px;
}

.enhanced-description-layout .sidebar {
    padding-left: 20px;
}

/* Banner principal con productos */
.main-product-banner {
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8bb5 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 40px;
    margin-bottom: 25px;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.main-product-banner::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><linearGradient id="gold" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23d4af37;stop-opacity:0.3"/><stop offset="100%" style="stop-color:%23f4e4bc;stop-opacity:0.1"/></linearGradient></defs><rect fill="url(%23gold)" width="100" height="100"/></svg>');
    opacity: 0.5;
}

.main-product-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.main-product-banner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.main-product-banner p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 20px;
}

.main-product-banner .brand-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Lista de características con checkmarks */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #495057;
    font-size: 0.95rem;
}

.features-list .check-icon {
    width: 22px;
    height: 22px;
    background-color: #1a5f7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.features-list .check-icon i {
    color: #fff;
    font-size: 0.75rem;
}

/* Banner lateral - Care Care Kit */
.sidebar-banner {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 25px;
    margin-bottom: 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-banner-care {
    background: linear-gradient(145deg, #1a5f7a 0%, #0d3d4d 100%);
}

.sidebar-banner-new {
    background: linear-gradient(145deg, #c0392b 0%, #8e261d 100%);
}

.sidebar-banner .banner-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f39c12;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-banner-new .banner-tag {
    background: #f1c40f;
    color: #333;
}

.sidebar-banner-content {
    color: #fff;
    margin-top: 20px;
}

.sidebar-banner h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-banner .subtitle {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.sidebar-banner .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #333;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-banner .cta-button:hover {
    background: #f39c12;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar-banner .banner-image {
    margin-top: 20px;
    text-align: center;
}

.sidebar-banner .banner-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-height: 120px;
    object-fit: contain;
}

/* Responsive para el layout mejorado */
@media (max-width: 991px) {
    .enhanced-description-layout .main-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .enhanced-description-layout .sidebar {
        padding-left: 0;
    }

    .sidebar-banner {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .main-product-banner {
        padding: 25px;
        min-height: auto;
    }

    .main-product-banner h3 {
        font-size: 1.4rem;
    }

    .sidebar-banner h4 {
        font-size: 1.2rem;
    }
}