/*
:root {
    --foxb2c-primary: #4494D3;
    --foxb2c-gradient-start: #00C8C6;
    --foxb2c-gradient-end: #4494d3;
    --foxb2c-neutro: #ffffff;
    --foxb2c-secondary: #00d0c7;
    --foxb2c-accent: #00d0c7;
    --foxb2c-border: #dee2e6;
    --foxb2c-text: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--foxb2c-text);
    line-height: 1.6;
}
*/

/* ============================================
    HOME HEADER STYLES
    ============================================

.home-header {
    background: linear-gradient(to bottom, var(--foxb2c-gradient-start) 0%, var(--foxb2c-gradient-end) 100%);
    padding: 1.5rem 0 0;
    position: relative;
    overflow: hidden;
}

.home-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('_images/bg-header-wave.png') no-repeat top right;
    background-size: cover;
    opacity: 0.3;
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 1;
}
*/

/* Top Bar
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.site-logo img {
    max-width: 200px;
    height: auto;
}
 */

/* Navigation
.home-nav {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.home-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.home-nav a:hover {
    background: rgba(255,255,255,0.2);
}
 */

/* Search Bar
.home-search {
    max-width: 500px;
}

.search-form {
    position: relative;
    display: flex;
}

.search-form input {
    width: 100%;
    padding: 0.75rem 3.5rem 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    background: rgba(255,255,255,0.95);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--foxb2c-primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
 */

/* Categories
.home-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-dropdown {
    position: relative;
}

.category-btn {
    background: white;
    color: var(--foxb2c-primary);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-block;
}

.category-btn:hover {
    background: var(--foxb2c-accent);
    color: white;
    transform: translateY(-2px);
}

.category-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    padding: 1rem;
    min-width: 250px;
    display: none;
    z-index: 1000;
}

.category-dropdown:hover .category-dropdown-menu {
    display: block;
}

.category-dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--foxb2c-primary);
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 5px;
}

.category-dropdown-menu a:hover {
    background: rgba(0, 208, 199, 0.1);
    padding-left: 1.5rem;
}
 */

/* ============================================
    HERO BANNER SLIDER
    ============================================ */

.hero-banner {
    position: relative;
    margin-top: -2rem;
    margin-top: 0;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 500px;
    height: 307px;
    height: 413px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slide img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: contain;
}

.banner-slide.mobile-only {
    display: none;
}

/* Banner Controls */
.banner-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.banner-btn {
    position: absolute;
    background: rgba(255,255,255,0.9);
    color: var(--foxb2c-primary);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.banner-btn:hover {
    background: white;
    transform: scale(1.1);
}

.banner-btn.prev {
    left: 30px;
}

.banner-btn.next {
    right: 30px;
}

/* Banner Indicators */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* ============================================
    ATENDIMENTO SECTION (ex-hero content)
    ============================================ */

.atendimento-section {
    background: linear-gradient(135deg, rgba(68,148,211,0.9), rgba(0,208,199,0.9));
    padding: 4rem 0;
    position: relative;
}

.atendimento-content {
    position: relative;
    z-index: 1;
}

.atendimento-content h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.atendimento-content p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 500px;
}

/* Login Box */
.login-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.login-box h3 {
    color: var(--foxb2c-primary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-box input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 2px solid var(--foxb2c-border);
    border-radius: 8px;
}

.login-box button {
    width: 100%;
    padding: 0.75rem;
    background: var(--foxb2c-accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.login-box button:hover {
    background: #00b8b0;
    transform: translateY(-2px);
}

.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.85rem;
}

.login-links a {
    color: var(--foxb2c-primary);
    text-decoration: none;
}

/* ============================================
    CONTACT SECTION
    ============================================ */

.contact-section.home {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--foxb2c-border);
}

.contact-section.home {
    background: linear-gradient(135deg, rgba(68, 148, 211, 0.9), rgba(0, 208, 199, 0.9));
    padding: 4rem 0;
    position: relative;
}

.contact-section.home .contact-title {
    font-size: 2rem;
    color: var(--foxb2c-primary);
    margin-bottom: 2rem;
    text-align: center;
    display: none;
}

.contact-section.home .contact-wrapper {
    position: relative;
}

.contact-section.home .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

/* Carousel controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.why-carousel-wrapper .carousel-controls,
.brands-wrapper .carousel-controls {
    display: block;
}

.contact-wrapper .carousel-controls {
    display: none;
}

.carousel-btn {
    position: absolute;
    background: var(--foxb2c-accent);
    color: var(--foxb2c-neutro);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
    background: var(--foxb2c-accent);
    transform: scale(1.1);
}

.carousel-btn.prev {
    left: -20px;
    left: -55px;
}

.carousel-btn.next {
    right: -20px;
    right: -55px;
}

.contact-section.home .contact-item {
    text-align: center;
    display: inline-block;
    padding: 2rem 1rem;
    background: var(--icon-box);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.contact-section.home .contact-item:hover {
    transform: translateY(-5px);
}

.contact-section.home .contact-item i {
    font-size: 2.5rem;
    color: var(--icon-icon);
    margin-bottom: 1rem;
}

.contact-section.home .contact-item strong {
    display: block;
    color: var(--icon-text);
    margin-bottom: 0.5rem;
}

.contact-section.home .contact-item small{
    color: var(--icon-link);
    font-weight: 600;
}

.contact-section.home .contact-item a {
    text-decoration: none;
}

/* ============================================
    SERVICES SECTION
    ============================================ */

.services-section {
    background: #f8f9fa;
    padding: 3rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1rem;
    color: var(--foxb2c-text);
    margin: 0;
}

/* ============================================
    FEATURED PRODUCTS CAROUSEL
    ============================================ */

.featured-products-section {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid var(--foxb2c-border);
}

.featured-products-section h2 {
    font-size: 2rem;
    color: var(--foxb2c-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.featured-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    overflow: hidden;
}

.featured-product-card {
    background: white;
    border: 1px solid var(--foxb2c-border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.featured-product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #f8f9fa;
}

.featured-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.featured-product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.featured-product-info h3 {
    font-size: 1rem;
    color: var(--foxb2c-text);
    margin-bottom: 0.5rem;
    min-height: 2.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foxb2c-success);
    margin: 0.5rem 0;
}

.featured-product-btn {
    background: var(--foxb2c-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
}

.featured-product-btn:hover {
    background: #0052a3;
}

/* ============================================
    SPECIALTIES SECTION
    ============================================ */

.specialties-section {
    background: white;
    padding: 3rem 0;
    text-align: center;
}

.specialties-section h2 {
    font-size: 2rem;
    color: var(--foxb2c-primary);
    margin-bottom: 2rem;
}

.specialties-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.specialty-tag {
    background: var(--foxb2c-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.specialty-tag:hover {
    background: var(--foxb2c-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,208,199,0.3);
}

/* ============================================
    STATS SECTION
    ============================================ */

.stats-section {
    background: var(--foxb2c-gradient);
    padding: 3rem 0;
    color: var(--foxb2c-neutro);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    font-size: 1.1rem;
    margin: 0;
}

.google-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.google-logo {
    max-width: 175px;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
    margin-bottom: 0;
}

.stars i{
    font-size: 1rem;
}

/* ============================================
    WHY SECTION
    ============================================ */

.why-section {
    background: white;
    padding: 4rem 0;
}

.why-section h2 {
    font-size: 2.5rem;
    color: var(--foxb2c-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.why-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 2rem;
}

.why-card {
    flex: 0 0 calc(33.333% - 1.35rem); /* 3 colunas no desktop */
    text-align: left;
    padding: 1rem 2rem 1rem 2rem;
    transition: all 0.3s;
}

.why-card h3 {
    color: var(--foxb2c-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
	display:none;
}

.why-card p {
	color: #666;
	line-height: 1.8;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 13px;
	min-height: 117px;
}

.why-card .btn-link {
    color: var(--foxb2c-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    padding-left: 20px;
    font-size: 12px;
}

.google-review-btn {
    text-align: center;
    margin-top: 3rem;
}

.google-review-btn a {
    display: inline-block;
    background: var(--foxb2c-accent);
    color: white;
    padding: 1rem 3rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.google-review-btn a:hover {
    background: #00b8b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,208,199,0.3);
}

/* ============================================
    DEPARTAMENTOS CAROUSEL
    ============================================ */

.brands-section.dep {
    background: var(--foxb2c-quartenary);
    padding: 1rem 0;
}


/* ============================================
    BRANDS CAROUSEL
    ============================================ */

.brands-section {
    background: var(--foxb2c-accent);
    padding: 1rem 0;
}

.brands-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.brands-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 2rem 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

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

.brand-item {
    flex: 0 0 auto;
    width: 150px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 1rem;
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.dep-item {
    flex: 0 0 auto;
    width: 205px;
    height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    border: 2px solid transparent;
    padding: 1rem;
}

.dep-item:hover{
    border-color: var(--foxb2c-primary);
}

.dep-item > a {
    text-align: center;
    text-decoration: none;
    color: var(--aside-secondary);
}

.dep-item img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* CARROSSEL ICONES: PAGAMENTO, ENTREGA, CONTATO */
.brands-carousel#iconsCarousel{
    gap: 0;
    padding: 0;
}

.brands-section.icons > .container{
    background: #fff;
    padding: 0;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 12px;

    position: relative;
    margin: -10px auto;
    z-index: 9;
}

.brands-section.icons .carousel-controls{
    display: none!important;
}

.icone-item {
    flex: 0 0 auto;
    width: 205px;
    width: max-content;
    width: 25%;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 10px;
    padding: 1rem;
}

.icone-item > a {
    text-align: center;
    text-decoration: none;
    justify-content: center;
    display: flex;
    color: #4b5563;
}

.icone-item > a > span{
    display: grid;
    text-align: left;
}

.icone-item > a > span > strong{
    font-size: 0.8rem;
}

.icone-item > a > i{
    width: 60px;
    font-size: 1.7rem;
    color: var(--foxb2c-secondary);
}

/* VARIACAO SOLID */
.brands-section.icons.solid,
.brands-section.icons.solid > .container,
.brands-section.icons.solid .icone-item{ background: var(--foxb2c-primary); box-shadow: none; }
.brands-section.icons.solid .icone-item > a > i{ color: var(--foxb2c-secondary); }
.brands-section.icons.solid .icone-item > a,
.brands-section.icons.solid .icone-item > a > span > strong{color: var(--foxb2c-neutro);}

/* BOX EMPRESA */
.box-empresa{
    color: var(--txt-cor-texto);
}

.box-empresa h2{
    color: var(--foxb2c-secondary)
}

/* ============================================
    ELEMENTOS COMUNS
    ============================================ */

.btn-primary{
    width: auto;
    padding: 0.5rem 1rem 0.5rem 1rem;
    background-color: var(--header-menu-link);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover{
    background-color: var(--header-menu-hover);
}


/* ============================================
    RESPONSIVE
    ============================================ */
@media (max-width: 1366px) {
    .banner-slider {
        height: 400px;
        height: 348px;
    }
}

@media (max-width: 991px) {
    
    body,
    .site-header,
    .header-top,
    .header-search,
    .stats-section,
    .brands-section,
    .services-section,
    .contact-section.home{
        background: var(--foxb2c-primary);
        border: 0;
    }

    /*.stats-section,
    .brands-section{
        background: var(--foxb2c-neutro);
    }*/

    .desktop,
    .contact-section.home .contact-wrapper .carousel-controls,
    .specialties-section,
    .why-section,
    .home-nav {
        display: none;
    }

    .banner-slider {
        height: 400px;
    }
    
    .atendimento-content h1 {
        font-size: 2rem;
    }
    
    .login-box {
        margin-top: 2rem;
    }
    
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-section.home{
        padding: 0;
    }

    .contact-section.home .contact-grid {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        gap: 2rem;
        padding: 1rem 0;
        scrollbar-width: none;
    }
    
    .contact-section.home .contact-grid::-webkit-scrollbar {
        display: none;
    }
    
    .contact-section.home .contact-item {
        flex: 0 0 150px;
        display: flex;
        background: transparent;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        text-align: center;
        align-items: center;
        flex-direction: column;
        color: var(--foxb2c-neutro);
    }
    
    .contact-section.home .contact-item a{
        display: flex;
        align-items: center;
        justify-content: space-between;
        display: initial;
        line-height: 10px;
    }

    .contact-section.home .contact-item i{
        color: var(--foxb2c-accent);
        font-size: 1.5rem;
    }

    .contact-section.home .contact-item strong {
        color: var(--foxb2c-neutro);
    }

    .contact-section.home .contact-item small{
        color: var(--foxb2c-neutro);
    }

    .service-card{
        padding: 1rem;
    }

    .service-card h3{
        font-size: 0.7rem;
    }

    .service-icon{
        width: 60px;
        height: 40px;
    }

    .service-icon i{
        font-size: 45px!important;
    }

    .brands-section{
        padding: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form input{
        background: rgb(255 255 255)!important;
    }
    
    .why-grid {
        display: flex;
    }
    
    .why-card {
        flex: 0 0 100%;
    }

    .box-empresa{
        font-size: 0.8rem;
    }

    .box-empresa div.txt{
        padding: 20px;
    }

    .box-empresa h2 {
        font-size: 0.9rem;
    }

}

@media (max-width: 767px) {
    .home-header {
        padding: 1rem 0 0;
    }
    
    .site-logo img {
        max-width: 150px;
    }
    
    .home-search {
        margin-top: 1rem;
    }
    
    .banner-slider {
        height: 300px;
        height: 130px;
        height: 230px;
    }
    
    .banner-slide.desktop-only {
        display: none;
    }
    
    .banner-slide.mobile-only {
        display: block;
    }
    
    .banner-btn {
        width: 40px;
        height: 40px;
    }
    
    .banner-btn.prev {
        left: 15px;
    }
    
    .banner-btn.next {
        right: 15px;
    }

    .icone-item{
        width: max-content;
        border-radius: 0;
    }
    
    .atendimento-section {
        padding: 2rem 0;
    }
    
    .atendimento-content h1 {
        font-size: 1.75rem;
    }
    
    .featured-products-grid {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        gap: 1rem;
    }
    
    .featured-products-grid::-webkit-scrollbar {
        display: none;
    }
    
    .featured-product-card {
        flex: 0 0 280px;
    }
    
    .featured-carousel-wrapper .carousel-controls {
        display: none;
    }
    
    .brands-wrapper .carousel-controls {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
}

/* ============================================
   BANNER MODAL
   ============================================ */

.banner-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: bannerModalFadeIn 0.3s ease;
}

.banner-modal-overlay.active {
    display: flex;
}

.banner-modal-overlay.closing {
    animation: bannerModalFadeOut 0.3s ease forwards;
}

@keyframes bannerModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes bannerModalFadeOut {
    from { opacity: 1; }
    to   { opacity: 0; }
}

.banner-modal-box {
    position: relative;
    max-width: 640px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: bannerModalSlideIn 0.35s ease;
}

@keyframes bannerModalSlideIn {
    from { transform: translateY(-24px); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

.banner-modal-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.banner-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 1;
}

.banner-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

@media (max-width: 480px) {
    .banner-modal-box {
        max-width: 100%;
        border-radius: 8px;
    }
}
