.stats-container {
    display: flex;
    gap: 15px;
    align-items: center;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.visitas-widget,
.clock-widget {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #ffa700 0%, #ffa700 100%);
    border-radius: 12px;
    padding: 12px 20px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 180px;
}

.visitas-widget:hover,
.clock-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.visitas-icon,
.clock-icon {
    font-size: 24px;
    margin-right: 15px;
    background: rgba(255, 249, 249, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visitas-content,
.clock-content {
    display: flex;
    flex-direction: column;
}

.visitas-count,
.digital-clock {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.visitas-label,
.clock-label {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.digital-clock {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* Animación para el contador */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.visitas-count {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .visitas-widget,
    .clock-widget {
        width: 100%;
        justify-content: flex-start;
    }
}
.unavailable-badge {
    position: relative;
    display: inline-block;
    margin: 15px 0;
}

.unavailable-content {
    position: relative;
    z-index: 2;
    padding: 5px 10px;
    background-color: #ffa700;
    color: white;
    font-weight: bold;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(255, 59, 48, 0.4);
    transform: scale(0);
    animation: zoomIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.unavailable-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.6;
    animation: pulse 2s infinite;
}

@keyframes zoomIn {
    to {
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}
.fly-icon {
    position: absolute;
    z-index: 9999;
    font-size: 22px;
    animation: flyToCart 1s ease-in-out forwards;
    color: #28a745;
    pointer-events: none;
}

@keyframes flyToCart {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateY(-120px) translateX(180px) scale(0.3);
        opacity: 0;
    }
}
.hover-effect-dato {
    transition: all 0.3s ease;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.hover-effect-dato:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(78, 84, 200, 0.2);
}

.service-icon img {
    transition: transform 0.5s ease;
}

.hover-effect:hover .service-icon img {
    transform: scale(1.1) rotate(-5deg);
}

.service-content h3 {
    color: #333;
    transition: color 0.3s ease;
}

.hover-effect:hover .service-content h3 {
    color: #ffa700;
}

.footer-shipping {
    background: linear-gradient(to right, #f9f9ff, #f0f2ff);
    border-radius: 15px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .service-card {
        margin-bottom: 20px;
    }
}
.footer-static-middle {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.link-hover {
    color: #666;
    transition: all 0.3s ease;
}

.link-hover:hover {
    color: #ffa700;
    padding-left: 5px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.bg-twitter {
    background-color: #ffa700;
}

.bg-facebook {
    background-color: #ffa700;
}

.bg-instagram {
    background: linear-gradient(45deg, #ffa700, #ffa700 #ffa700, #C13584, #E1306C, #FD1D1D);
}

.bg-youtube {
    background-color: #FF0000;
}

.bg-linkedin {
    background-color: #ffa700;
}

.subscribe-form .form-control {
    border-radius: 30px 0 0 30px;
}

.subscribe-form .btn {
    border-radius: 0 30px 30px 0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 10px;
    left: 30px;
    z-index: 100;
}

.btn-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 24px;
    border: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon i {
    font-size: 48px;
}

#whatsappModal .modal-content {
    border-radius: 15px;
}

.oferta-descuento {
    position: relative;
    animation: destello 1.5s infinite, zoom 0.5s ease-in-out;
}

/* Efecto de destello */
@keyframes destello {
    0% {
        color: #ff0000;
        box-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000;
    }

    50% {
        color: #ffff00;
        box-shadow: 0 0 20px #ffff00, 0 0 30px #ffff00;
    }

}

/* Efecto de zoom */
@keyframes zoom {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
 /* Estilos para el sticker "Nuevo" */
 .position-relative {
    position: relative;
}

.new-sticker {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    animation: stickerBounce 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.new-badge {
    position: relative;
    background: linear-gradient(135deg, #ffa700 0%, #182848 100%);
    color: white;
    padding: 8px 15px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(75, 108, 183, 0.5);
    transform: rotate(5deg);
    overflow: hidden;
}

.new-text {
    position: relative;
    z-index: 2;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.new-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
    opacity: 0;
    z-index: 1;
}

/* Animaciones */
@keyframes stickerBounce {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }

    80% {
        transform: scale(1.1) rotate(5deg);
    }

    100% {
        transform: scale(1) rotate(5deg);
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Efecto hover */
.product-image:hover .new-badge {
    animation: badgeShake 0.5s ease-in-out;
}

@keyframes badgeShake {

    0%,
    100% {
        transform: rotate(5deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(0deg);
    }
}

/* Efecto para productos nuevos recientes (opcional) */
.new-recent {
    background: linear-gradient(135deg, #ffa700 0%, #ffa700 100%);
}

.new-recent .new-pulse {
    background: rgba(255, 255, 255, 0.4);
}
.shopping-cart-modern {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    padding: 2rem 0;
    background-color: #f8f9fa;
    min-height: 80vh;
}

.cart-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.cart-header h2 {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.cart-header h2 i {
    margin-right: 10px;
    color: v
}

.cart-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem;
    position: relative;
    color: #95a5a6;
}

.step.active {
    color: #ffa700;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    border: 2px solid #ecf0f1;
}

.step.active .step-number {
    background-color: #ffa700;
    color: white;
    border-color: #ffa700;
}

.step-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.step-connector {
    position: absolute;
    top: 18px;
    left: calc(100% - 10px);
    width: 40px;
    height: 2px;
    background-color: #ecf0f1;
}

.step:last-child .step-connector {
    display: none;
}

.cart-table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 2rem;
}

.cart-table-header {
    padding: 1rem;
    background-color: #f8f9fa;
    font-weight: 600;
    color: #7f8c8d;
    border-bottom: 1px solid #eee;
}

.cart-item {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background-color: #f9f9f9;
}

.product-info {
    display: flex;
    align-items: center;
}

.btn-remove {
    background: none;
    border: none;
    color: #ffa700;
    margin-right: 15px;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-remove:hover {
    transform: scale(1.2);
}


.product-details {
    flex: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #2c3e50;
}

.product-variant {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 0;
}

.product-price,
.product-total {
    font-weight: 600;
    color: #2c3e50;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-qty {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f1f1f1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-qty:hover {
    background-color: #ffa700;
    color: white;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0 10px;
    padding: 5px;
    font-weight: 600;
}

.cart-summary {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.coupon-box h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.input-group {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.form-control {
    border: none;
    padding: 12px 15px;
}

.btn-gradient {
    background: linear-gradient(135deg, #ffa700, #ffa700);
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.totals-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.total-row:last-child {
    margin-bottom: 0;
}

.total-row.grand-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    padding-top: 0.8rem;
    border-top: 1px solid #eee;
}

.discount {
    color: #ffa700;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
}

.btn-continue {
    color: #ffa700;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-continue:hover {
    background-color: #f1f9ff;
    color: #ffa700;
    text-decoration: none;
}

.btn-update {
    background-color: white;
    color: #7f8c8d;
    border: 1px solid #ddd;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-update:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
}

.btn-checkout {
    background: linear-gradient(135deg, #ffa700, #ffa700);
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border: none;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
    color: white;
    text-decoration: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cart-item .row>div {
        margin-bottom: 1rem;
    }

    .product-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-image {
        margin-bottom: 10px;
    }

    .cart-actions {
        flex-direction: column;
    }

    .cart-actions .col-md-6 {
        width: 100%;
        margin-bottom: 1rem;
        text-align: center !important;
    }

    .btn-checkout {
        width: 100%;
    }
}
  /* Estilos Modernos y Elegantes */
  :root {
    --primary-color: #ffa700;
    --secondary-color: #f8f9fc;
    --accent-color: #ffa700;
    --text-color: #333;
    --light-text: #6c757d;
    --border-color: #e3e6f0;
    --success-color: #1cc88a;
}

.modern-breadcrumb {
    padding: 15px 0;
    background-color: var(--secondary-color);
    margin-bottom: 30px;
}

.modern-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.modern-breadcrumb .breadcrumb-item a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.modern-breadcrumb .breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.modern-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: '›';
    color: var(--light-text);
}

.checkout-header {
    text-align: center;
    margin-bottom: 40px;
}

.checkout-header h1 {
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    position: relative;
}

.checkout-steps:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 0 30px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.step.active .step-number {
    background: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background: var(--success-color);
    color: white;
}

.step-text {
    color: var(--light-text);
    font-size: 14px;
}

.step.active .step-text {
    color: var(--primary-color);
    font-weight: 600;
}


/* Order Summary */
.order-summary {
    position: sticky;
    top: 20px;
}

.order-products {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.order-product {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8f9fa;
}

.order-product:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.order-product-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 15px;
}

.order-product-info {
    flex: 1;
}

.order-product-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.order-product-variant {
    font-size: 12px;
    color: var(--light-text);
    margin-bottom: 5px;
}

.order-product-price {
    font-weight: 600;
}

.order-product-qty {
    font-size: 14px;
    color: var(--light-text);
}

.order-totals {
    padding-top: 15px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Payment Methods */
.payment-methods .payment-method {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method label {
    display: block;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method input[type="radio"]:checked+label {
    background-color: rgba(78, 115, 223, 0.05);
    border-left: 3px solid var(--primary-color);
}

.method-content {
    display: flex;
    align-items: center;
}

.method-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
}

.method-info {
    flex: 1;
}

.method-name {
    display: block;
    font-weight: 600;
    margin-bottom: 3px;
}

.method-desc {
    display: block;
    font-size: 12px;
    color: var(--light-text);
    text-align: center;
}

.payment-details {
    padding: 0 15px 15px;
    display: none;
}

.payment-method input[type="radio"]:checked~.payment-details {
    display: block;
}

.card-icons {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.card-icons img {
    height: 20px;
    margin-left: 5px;
}

.crypto-options {
    display: flex;
    margin-bottom: 15px;
}

.crypto-option {
    flex: 1;
    text-align: center;
}

.crypto-option input[type="radio"] {
    display: none;
}

.crypto-option label {
    display: block;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
}

.crypto-option input[type="radio"]:checked+label {
    border-color: var(--primary-color);
    background: rgba(78, 115, 223, 0.05);
}

.crypto-option img {
    height: 30px;
    display: block;
    margin: 0 auto 5px;
}

.crypto-option span {
    font-size: 12px;
}

.crypto-qr {
    text-align: center;
    padding: 15px;
    background: var(--secondary-color);
    border-radius: 4px;
}

.crypto-qr p {
    margin-bottom: 10px;
}

.qr-code-placeholder {
    background: white;
    padding: 15px;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Shipping Methods */
.shipping-methods .custom-control-label {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.method-price {
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 991px) {
    .order-summary {
        position: static;
    }

    .checkout-steps .step {
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .checkout-steps {
        flex-wrap: wrap;
    }

    .checkout-steps:before {
        display: none;
    }

    .step {
        padding: 0 10px;
        margin-bottom: 15px;
    }

    .step-text {
        font-size: 12px;
    }
}
