/*
CSS LOJA LAYOUT - ROUPAS
AUTOR - MATEUS PAIANO
SITE - WWW.DESIGNMP.NET
EMAIL - SUPORTE@DESIGNMP.NET
*/

/** Indice
1. Luxury Categories Showcase
2. Flash Deal Luxury Showcase
3. Fashion Product Showcase
*/




/*Luxury Categories Showcase */
.luxury-categories-showcase {

}

.showcase-container {
    margin: 0 auto;
}

.categories-wrapper {
    position: relative;
}

/* Premium Carousel */
.premium-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.premium-carousel::-webkit-scrollbar {
    display: none;
}

/* Category Masterpiece Card */
.category-masterpiece {
    flex: 0 0 280px;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
}

.category-card-wrapper {
    position: relative;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-masterpiece:hover .category-card-wrapper {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Elite Image Container */
.category-link-elegant {
    display: block;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.image-container-premium {
    position: relative;
    height: 75%;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.category-image-luxury {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95) contrast(1.1);
}

.category-masterpiece:hover .category-image-luxury {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.2);
}

/* Sophisticated Overlay */
.elegant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.1) 0%,
            transparent 30%,
            transparent 70%,
            rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.category-masterpiece:hover .elegant-overlay {
    opacity: 1;
}

/* Shimmer Effect */
.shimmer-effect {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 70%);
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.8s ease;
}

.category-masterpiece:hover .shimmer-effect {
    transform: translateX(100%) translateY(100%);
}

/* Refined Category Title */
.category-title-luxury {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem;
}

.title-text-premium {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-masterpiece:hover .title-text-premium {
    color: #2d3748;
    transform: translateY(-2px);
}

.title-underline-elegant {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin-top: 0.5rem;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

.category-masterpiece:hover .title-underline-elegant {
    width: 60%;
}

/* Hover Glow Effect */
.hover-glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            rgba(102, 126, 234, 0.4),
            rgba(118, 75, 162, 0.4),
            rgba(102, 126, 234, 0.4));
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.category-masterpiece:hover .hover-glow-effect {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .category-masterpiece {
        flex: 0 0 240px;
    }

    .category-card-wrapper {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .luxury-categories-showcase {
        margin-top: 10px !important;
    }

    .premium-carousel {
        gap: 1.5rem;
        padding: 0.5rem 0;
    }

    .category-masterpiece {
        flex: 0 0 200px;
    }

    .category-card-wrapper {
        height: 280px;
    }

    .title-text-premium {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .categories-wrapper {
        padding: 0 0.5rem;
    }

    .category-masterpiece {
        flex: 0 0 180px;
    }

    .category-card-wrapper {
        height: 250px;
    }
}


/** Flash Deal Luxury Showcase */
.flash-deal-luxury-showcase {
    margin: 3rem 0 4rem 0;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.flash-deal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Mobile Header */
.flash-deal-mobile-header {
    display: flex;
    padding: 2rem 1.5rem 1rem;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .flash-deal-mobile-header {
        display: none;
    }
}

/* Premium Title Section */
.flash-deal-title-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 1rem;
}

.flash-deal-title-luxury {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.title-text-premium {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.lightning-icon-wrapper {
    margin-left: 0.75rem;
    position: relative;
}

.lightning-icon-premium {
    width: 20px;
    height: 24px;
    animation: lightning-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(252, 194, 1, 0.3));
}

@keyframes lightning-pulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(-3deg);
    }
}

/* Premium Navigation */
.flash-deal-nav-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link-elegant {
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link-dark {
    color: #64748b;
}

.nav-link-dark:hover {
    color: #3b82f6;
}

.nav-link-light {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link-light:hover {
    color: white;
}

.nav-link-elegant::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-elegant:hover::after {
    width: 100%;
}

.nav-separator {
    width: 1px;
    height: 20px;
    background: rgba(100, 116, 139, 0.3);
}

/* Mobile Countdown */
.mobile-countdown-wrapper {
    padding: 0 1.5rem 1rem;
    display: block;
}

@media (min-width: 768px) {
    .mobile-countdown-wrapper {
        display: none;
    }
}

.countdown-card-mobile {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.flash-deal-main-content {
    display: flex;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
    min-height: 400px;
}

/* Banner Section */
.flash-deal-banner-section {
    flex: 0 0 40%;
    position: relative;
}

.banner-image-luxury {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.banner-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 100%);
}

.desktop-countdown-container {
    position: relative;
    z-index: 2;
    display: none;
    padding: 2rem;
}

@media (min-width: 768px) {
    .desktop-countdown-container {
        display: block;
    }
}

.countdown-card-desktop {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

/* Products Section */
.flash-deal-products-section {
    flex: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.flash-deal-desktop-header {
    display: none;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .flash-deal-desktop-header {
        display: block;
    }
}

/* Products Carousel */
.flash-products-carousel-luxury {
    display: flex;
    gap: 1px;
    background: #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-column-elegant {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
}

.product-column-elegant:first-child {
    border-radius: 16px 0 0 16px;
}

.product-column-elegant:last-child {
    border-radius: 0 16px 16px 0;
}

/* Flash Product Card */
.flash-product-card-luxury {
    position: relative;
    padding: 1.5rem 1rem;
    transition: all 0.4s ease;
    cursor: pointer;
    height: 250px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flash-product-card-luxury:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.flash-product-card-luxury:hover {
    background: #f8fafc;
    transform: scale(1.02);
}

.product-link-premium {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
}

/* Product Image */
.product-image-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.product-image-flash {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.flash-product-card-luxury:hover .product-image-flash {
    transform: scale(1.1);
}

.image-overlay-flash {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.flash-product-card-luxury:hover .image-overlay-flash {
    opacity: 1;
}

.hover-shimmer {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.6s ease;
}

.flash-product-card-luxury:hover .hover-shimmer {
    transform: translateX(100%) translateY(100%);
}

/* Price Section */
.flash-price-section {
    text-align: center;
}

.current-price-flash {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.25rem;
}

.original-price-flash {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    text-decoration: line-through;
}

/* Flash Badge */
.flash-badge-luxury {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.6rem;
    font-weight: 700;
    transform: rotate(15deg);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .flash-deal-banner-section {
        flex: 0 0 35%;
    }

    .product-image-container {
        width: 60px;
        height: 60px;
    }

    .current-price-flash {
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .flash-deal-main-content {
        flex-direction: column;
    }

    .flash-deal-banner-section {
        flex: none;
        height: 200px;
    }

    .banner-image-luxury {
        min-height: 200px;
    }

    .flash-products-carousel-luxury {
        overflow-x: auto;
        scroll-behavior: smooth;
    }

    .product-column-elegant {
        flex: 0 0 120px;
    }
}

@media (max-width: 768px) {
    .flash-product-card-luxury {
        max-height: 150px;
    }

    .product-info-luxury {
        margin-top: -150px;
    }

    .flash-deal-luxury-showcase {
        margin: 2rem 1rem;
        border-radius: 16px;
    }

    .flash-deal-mobile-header {
        padding: 1.5rem 1rem 0.5rem;
    }

    .flash-deal-title-luxury {
        font-size: 1.25rem;
    }

    .flash-deal-products-section {
        padding: 1rem;
    }

    .flash-product-card-luxury {
        height: 160px !important;
        padding: 1rem 0.5rem;
    }

    .product-image-container {
        width: 50px;
        height: 50px;
    }

    .fashion-product-showcase {
        max-height: 250px !important;
    }
}

/* Fashion Product Showcase */
.fashion-product-showcase {
    margin-bottom: 2rem;
    perspective: 1000px;
}

.product-card-luxury {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
}

.product-card-luxury:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Gallery Wrapper */
.image-gallery-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.product-image-link {
    display: block;
    height: 100%;
    position: relative;
}

.image-container-fashion {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-image-premium {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.98) contrast(1.05);
}

.product-card-luxury:hover .product-image-premium {
    transform: scale(1.05);
    filter: brightness(1.02) contrast(1.1);
}

/* Sophisticated Overlay */
.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-luxury:hover .image-overlay-gradient {
    opacity: 1;
}

.hover-zoom-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.product-card-luxury:hover .hover-zoom-effect {
    width: 200px;
    height: 200px;
}

/* Premium Badges */
.badges-collection {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.discount-badge-luxury {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    transform: rotate(-2deg);
}

.custom-badge-text {
    color: #FFF !important;
}

.wholesale-badge-elegant {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(100, 116, 139, 0.3);
}

.custom-badge-fashion {
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Refined Action Icons */
.product-actions-luxury {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s ease;
}

.product-card-luxury:hover .product-actions-luxury {
    opacity: 1;
    transform: translateX(0);
}

.action-btn-elegant {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.action-btn-elegant:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.action-icon {
    width: 18px;
    height: 18px;
    color: #64748b;
    transition: color 0.3s ease;
}

.action-btn-elegant:hover .action-icon {
    color: #ef4444;
}

/* Product Information */
.product-info-luxury {
    margin-top: -40px;
    padding: 1.5rem;
    text-align: center;
}

.product-title-fashion {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    height: 2.8rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-link-elegant {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-link-elegant:hover {
    color: #3b82f6;
}

/* Price Section */
.price-section-premium {
    margin-bottom: 1.5rem;
}

.price-display-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.original-price {
    font-size: 0.9rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 400;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bid-price-container {
    text-align: center;
}

.bid-label {
    display: block;
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.bid-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
}

/* Action Buttons */
.add-to-cart-luxury,
.place-bid-luxury {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-base) 100%);
    color: white;
    border: none;
    border-radius: 0 0 20px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.add-to-cart-luxury::before,
.place-bid-luxury::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-luxury:hover::before,
.place-bid-luxury:hover::before {
    left: 100%;
}

.add-to-cart-luxury:hover,
.place-bid-luxury:hover {
    background: linear-gradient(135deg, #53df76 0%, #278145 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.cart-added {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.cart-icon,
.bid-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.add-to-cart-luxury:hover .cart-icon,
.place-bid-luxury:hover .bid-icon {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-info-luxury {
        padding: 1rem;
    }

    .product-title-fashion {
        font-size: 0.9rem;
        height: 2.5rem;
    }

    .current-price {
        font-size: 1.1rem;
    }

    .add-to-cart-luxury,
    .place-bid-luxury {
        height: 45px;
        font-size: 0.9rem;
    }

    .badges-collection {
        top: 0.75rem;
        left: 0.75rem;
    }

    .product-actions-luxury {
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* Animation for cart added state */
@keyframes cartSuccess {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.cart-added {
    animation: cartSuccess 0.3s ease;
}

/* Ofertas do dia  */

.deals-section-luxury {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    margin-top: -50px;
}

.deals-banner-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem !important;
    height: 400px;
}

.banner-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.banner-container:hover .banner-image {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.85) 0%,
            rgba(255, 86, 86, 0.8) 50%,
            rgba(255, 107, 53, 0.7) 100%);
}

.banner-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    color: white;
    z-index: 2;
}

.banner-header {
    flex: 1;
    max-width: 50%;
}

.banner-countdown {
    flex: 1;
    max-width: 40%;
    text-align: center;
}

.header-decoration {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    margin: 0 1rem;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

.lightning-icon {
    width: 28px;
    height: 28px;
    color: white;
}

.banner-title-main {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-subtitle-main {
    font-size: 1.4rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 0;
}

.countdown-label {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.deals-countdown-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.countdown-unit {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 15px;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.unit-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: block;
    line-height: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.unit-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Fallback styles quando não tem banner */
.deals-header-premium {
    position: relative;
    background: linear-gradient(135deg, #ff6b35, #ff4444);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    color: white;
}

.deals-title-premium {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .banner-content-overlay {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 2rem;
    }

    .banner-header,
    .banner-countdown {
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .banner-title-main {
        font-size: 2.8rem;
    }

    .deals-banner-premium {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .banner-title-main {
        font-size: 2.2rem;
    }

    .banner-subtitle-main {
        font-size: 1.1rem;
    }

    .countdown-unit {
        min-width: 70px;
        padding: 1rem;
    }

    .unit-value {
        font-size: 2rem;
    }

    .countdown-separator {
        font-size: 2rem;
    }

    .deals-banner-premium {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .banner-content-overlay {
        padding: 1.5rem;
    }

    .banner-title-main {
        font-size: 1.8rem;
    }

    .deals-countdown-premium {
        gap: 0.5rem;
    }

    .countdown-unit {
        min-width: 60px;
        padding: 0.8rem;
    }

    .unit-value {
        font-size: 1.5rem;
    }

    .unit-label {
        font-size: 0.7rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .deals-banner-premium {
        height: 400px;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}
