/*
Theme Name: FoodMart
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: FoodMart is specially designed product packaged for eCommerce store websites.
Version: 1.1
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Floating & Alignment
  2.3 Forms
  2.4 Lists
  2.5 Code
  2.6 Tables
  2.7 Spacing
  2.8 Utilities
  2.9 Misc
    - Row Border
    - Zoom Effect
  2.10 Buttons
    - Button Sizes
    - Button Shapes
    - Button Color Scheme
    - Button Aligns
  2.11 Section
    - Hero Section
    - Section Title
    - Section Paddings
    - Section Margins
    - Section Bg Colors
    - Content Colors
    - Content Borders

3. EXTENDED TYPOGRAPHY
  3.1 Blockquote / Pullquote
  3.2 Text Highlights

4. CONTENT ELEMENTS
  4.1 Tabs
  4.2 Accordions
  4.3 Brand Carousel
  4.4 Category Carousel

5. BLOG STYLES
  5.1 Blog Single Post
  5.2 About Author
  5.3 Comments List
  5.4 Comments Form3

6. SITE STRUCTURE
  6.1 Header
    - Header Menu
    - Nav Sidebar
  6.2 Billboard
  6.3 About Us Section
  6.4 Video Section
  6.5 Selling Products Section
  6.6 Quotation Section
  6.7 Latest Blogs Section
  6.8 Newsletter Section
  6.9 Instagram Section
  6.10 Footer
    - Footer Top
    - Footer Bottom

7. OTHER PAGES
  7.1 Product detail
  7.2 Shop page


/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
    /* widths for rows and containers
     */
    --header-height       : 160px;
    --header-height-min   : 80px;
}
/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
    :root {
        --header-height : 100px;
        --header-height-min   : 80px;
    }
}
/* Theme Colors */
:root {
    --accent-color       : #6646FB;
    --dark-color         : #222222;
    --light-dark-color   : #727272;
    --light-color        : #fff;
    --grey-color         : #dbdbdb;
    --light-grey-color   : #fafafa;
    --primary-color      : #6995B1;
    --light-primary-color   : #eef1f3;
}

/* Fonts */
:root {
    --body-font           : "Open Sans", sans-serif;
    --heading-font        : "Nunito", sans-serif;
}

body {
    --bs-link-color: #333;
    --bs-link-hover-color:#333;

    --bs-link-color-rgb: 40,40,40;
    --bs-link-hover-color-rgb: 0,0,0;

    /* --bs-link-color: #FFC43F;
    --bs-link-hover-color: #FFC43F; */

    --bs-light-rgb: 248, 248, 248;

    --bs-font-sans-serif: "Open Sans", sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 2;
    --bs-body-color: #747474;

    --bs-primary: #6646FB;
    --bs-primary-rgb: 80, 38, 239;

    --bs-success: #a3be4c;
    --bs-success-rgb: 163, 190, 76;

    --bs-primary-bg-subtle: #FFF9EB;
    --bs-success-bg-subtle: #eef5e5;

    --bs-border-color: #F7F7F7;

    --bs-secondary-rgb: 230, 243, 251;
    /* --bs-success-rgb: 238, 245, 228; */

    --bs-warning-rgb: 255, 200, 0;
    --bs-info-rgb: 230, 243, 250;
}

.homepage {
    background-color: #F5F5F5;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #6646FB;
    --bs-btn-border-color: transparent;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #6646FB;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #6646FB;
    --bs-btn-active-border-color: transparent;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #d3d7dd;
    --bs-btn-disabled-border-color: transparent;
}
.btn-outline-primary {
    --bs-btn-color: #6646FB;
    --bs-btn-border-color: #6646FB;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #6646FB;
    --bs-btn-hover-border-color: #6646FB;
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #6646FB;
    --bs-btn-active-border-color: #6646FB;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff3cd;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #fff3cd;
    --bs-gradient: none;
}
.btn-outline-light {
    --bs-btn-color: #747474;
    --bs-btn-border-color: #EFEFEF;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #EFEFEF;
    --bs-btn-hover-border-color: #EFEFEF;
    --bs-btn-focus-shadow-rgb: 248,249,250;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #EFEFEF;
    --bs-btn-active-border-color: #EFEFEF;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #EFEFEF;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #EFEFEF;
    --bs-gradient: none;
}
.btn-warning {
    --bs-btn-color: #747474;
    --bs-btn-bg: #FCF7EB;
    --bs-btn-border-color: #FCF7EB;
    --bs-btn-hover-color: #747474;
    --bs-btn-hover-bg: #FFECBE;
    --bs-btn-hover-border-color: #FFECBE;
    --bs-btn-focus-shadow-rgb: 217,164,6;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #FFECBE;
    --bs-btn-active-border-color: #FFECBE;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #FCF7EB;
    --bs-btn-disabled-border-color: #FCF7EB;
}
.btn-success {
    --bs-btn-color: #222;
    --bs-btn-bg: #EEF5E4;
    --bs-btn-border-color: #EEF5E4;
    --bs-btn-hover-color: #222;
    --bs-btn-hover-bg: #9de3c2;
    --bs-btn-hover-border-color: #9de3c2;
    --bs-btn-focus-shadow-rgb: 60,153,110;
    --bs-btn-active-color: #222;
    --bs-btn-active-bg: #9de3c2;
    --bs-btn-active-border-color: #9de3c2;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #222;
    --bs-btn-disabled-bg: #EEF5E4;
    --bs-btn-disabled-border-color: #EEF5E4;
}
.btn-danger {
    --bs-btn-color: #222;
    --bs-btn-bg: #FFEADA;
    --bs-btn-border-color: #FFEADA;
    --bs-btn-hover-color: #222;
    --bs-btn-hover-bg: #ecc9af;
    --bs-btn-hover-border-color: #ecc9af;
    --bs-btn-focus-shadow-rgb: 60,153,110;
    --bs-btn-active-color: #222;
    --bs-btn-active-bg: #ecc9af;
    --bs-btn-active-border-color: #ecc9af;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #222;
    --bs-btn-disabled-bg: #FFEADA;
    --bs-btn-disabled-border-color: #FFEADA;
}
body {
    letter-spacing: 0.03em;
}
h1,h2,h3,h4,h5,h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    font-weight: 700;
}
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-weight: 700;
}
.breadcrumb.text-white {
    --bs-breadcrumb-divider-color: #fff;
    --bs-breadcrumb-item-active-color: var(--bs-primary);
}
.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--bs-primary);
}
.nav-pills .nav-link {
    --bs-nav-pills-link-active-color: #111;
    --bs-nav-pills-link-active-bg: #f1f1f1;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 3rem;
}
/*----------------------------------------------*/
/* 6. SITE STRUCTURE */
/*----------------------------------------------*/
/* 6.1 Header
--------------------------------------------------------------*/
/* Preloader */
.preloader-wrapper {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
    background: #fff;
}

.preloader-wrapper .preloader {
    margin: 20% auto 0;
    transform: translateZ(0);
}

.preloader:before,
.preloader:after {
    content: '';
    position: absolute;
    top: 0;
}

.preloader:before,
.preloader:after,
.preloader {
    border-radius: 50%;
    width: 2em;
    height: 2em;
    animation: animation 1.2s infinite ease-in-out;
}

.preloader {
    animation-delay: -0.16s;
}

.preloader:before {
    left: -3.5em;
    animation-delay: -0.32s;
}

.preloader:after {
    left: 3.5em;
}

@keyframes animation {
    0%,
    80%,
    100% {
        box-shadow: 0 2em 0 -1em var(--accent-color);
    }
    40% {
        box-shadow: 0 2em 0 0 var(--accent-color);
    }
}

/* *** Start editing below this line *** */
.container-fluid {
    max-width: 1400px;
}
.banner-blocks {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 2rem;
}
.block-1 { grid-area: 1 / 1 / 3 / 8; }
.block-2 { grid-area: 1 / 8 / 2 / 13; }
.block-3 { grid-area: 2 / 8 / 3 / 13; }

@media screen and (max-width:1140px) {
    .banner-blocks {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
    .block-1 { grid-area: 1 / 1 / 3 / 2; }
    .block-2 { grid-area: 3 / 1 / 4 / 2; }
    .block-3 { grid-area: 4 / 1 / 5 / 2; }

}

/* banner ad */
.banner-ad {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.banner-ad.blue {
    background: #e6f3fb;
}
.banner-ad .swiper-pagination {
    bottom: 40px;
    left: 0;
    right: 0;
}
.banner-ad .swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 4px;
    background: #FFF;
    opacity: 1;
    transition: background 0.3s ease-out;
}
.banner-ad .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #6646FB;
}
.banner-ad .swiper-slide {
    min-height: 630px;
    display: flex;
}
/* .banner-ad .banner-content {
  padding: 52px;
}
.banner-ad.large .banner-content {
  padding: 90px;
} */
.banner-ad .banner-content .categories {
    font-family: 'Garamond';
    font-size: 37px;
    text-transform: capitalize;
    color: var(--dark-color);
}
.banner-ad .banner-content .sale {
    position: relative;
    display: inline-block;
}
.banner-ad .banner-content .sale:before {
    content: '';
    width: 80px;
    border-bottom: 1px solid #111;
    position: absolute;
    bottom: 6px;
}
.banner-ad .banner-content .sale:after {
    content: 'SALE';
    font-family: var(--body-font);
    position: absolute;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #252525;
    bottom: 0;
    right: 0;
}
.banner-ad .banner-content .banner-title {
    letter-spacing: 0.02em;
    font-size: 33px;
}
.banner-ad.large .banner-content .categories {
    color: var(--accent-color);

}
.banner-ad.large .banner-content .banner-title {
    font-size: 54px;
}

/* Swiper carousel */
.swiper-prev,
.swiper-next {
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: #F1F1F1;
    color: #222222;
    padding: 0;
    text-align: center;
    border-radius: 10px;
    --bs-btn-border-color: transparent;
    --bs-btn-active-bg: #6646FB;
    --bs-btn-active-border-color: transparent;
    --bs-btn-hover-bg: #6646FB;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-disabled-color: #ccc;
    --bs-btn-disabled-bg: #eaeaea;
    --bs-btn-disabled-border-color: #eaeaea
}
.swiper-prev:hover,
.swiper-next:hover {
    background: #6646FB;
}
.btn-link {
    margin-right: 30px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: right;
    text-transform: capitalize;
    color: #787878;
}
/* category carousel */
.category-carousel .category-item {
    background: #FFFFFF;
    border: 1px solid #FBFBFB;
    box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    text-align: center;
    padding: 60px 20px;
    margin: 20px 0;
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out;
}
.category-carousel .category-item:hover {
    transform: translate3d(0,-10px,0);
    box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
}
.category-carousel .category-item .category-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
    color: #222222;
    margin-top: 20px;
}

/* brand carousel */
.brand-carousel .brand-item {
    background: #FFFFFF;
    border: 1px solid #FBFBFB;
    box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 16px;
}
.brand-carousel .brand-item img {
    width: 100%;
    border-radius: 12px;
}
.brand-carousel .brand-item .brand-details {
    margin-left: 15px;
}
.brand-carousel .brand-item .brand-title {
    margin: 0;
}

.product-tabs-section {
    position: relative;
}

.nav-tabs .nav-link {
    color: #6c757d;
    border: none;
    transition: all 0.3s ease;
    margin-right: 0;
    border-radius: 0;
}

.nav-tabs .nav-link:hover {
    color: #6646FB;
    background: rgba(13, 110, 253, 0.05);
}

.nav-tabs .nav-link.active {
    color: #6646FB;
    background: transparent;
    font-weight: 700;
}

/* Indicador Ativo Animado */
.active-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #6646FB;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-tabs .nav-link.active .active-indicator {
    transform: scaleX(1);
}

/* Efeito hover completo */
.nav-tabs .nav-link {
    position: relative;
    overflow: hidden;
}

.nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;

    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.2s ease;
    z-index: 0;
}

.nav-tabs .nav-link:hover::after {
    transform: scaleY(1);
}

/* product-grid */
/* .product-grid {
  gap: 25px;
} */
/* Product Section Styles */
.shop-section {
    padding: 2rem 0;
}


/* Horizontal scroll for mobile */
@media (max-width: 767.98px) {
    .product-scroll-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem;
        margin-bottom: -1rem; /* Compensate for padding */
    }

    .product-scroll-container .col {
        flex: 0 0 75%;
        scroll-snap-align: start;
        padding-right: 15px;
    }

    .product-scroll-container::-webkit-scrollbar {
        height: 5px;
    }

    .product-scroll-container::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .product-scroll-container::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }
}

/* Product Item Styles */
.product-item {
    position: relative;
    padding: 0.5rem;
    background: #FFFFFF;
    border: 1px solid #FBFBFB;
    box-shadow: 0px 5px 22px rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    box-shadow: 0px 21px 44px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.product-item h3 {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #333333;
    margin: 1rem 0 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Image Container - Versão Corrigida */
.image-container {
    position: relative;
    background: #F9F9F9;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1; /* Mantém proporção quadrada */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 0;
    left: 0;
}

/* Imagem principal visível por padrão */
.product-image.active {
    opacity: 1;
    position: relative; /* Mantém o fluxo do documento */
}

/* Segunda imagem escondida por padrão */
.product-image:not(.active) {
    opacity: 0;
}

/* No hover, esconde a imagem ativa e mostra a outra */
.product-item:hover .product-image.active {
    opacity: 0;
}

.product-item:hover .product-image:not(.active) {
    opacity: 1;
}

/* Badge */
.product-item .badge {
    top: 1rem;
    left: 1rem;
    z-index: 2;
    font-size: 0.8rem;
    padding: 0.35rem 0.65rem;
}

/* Wishlist Button */
.btn-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #d8d8d8;
    transition: all 0.3s ease;
    z-index: 2;
}

.btn-wishlist:hover {
    background: rgb(240, 56, 56);
    color: #fff;
}

/* Rating */
.rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #222222;
    margin-bottom: 0.5rem;
}

.rating iconify-icon {
    color: #6646FB;
}

/* Price */

.discounted-price {
    font-weight: 700;
    font-size: 1.6rem;
    /*color: #0c3a97; */
    color: #027F00;
}

.original-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: #222222;
}

/* Add to Cart */
.add-to-cart {
    margin-top: auto;
    padding: 0.5rem;
    border-radius: 8px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none !important;
}

.add-to-cart:hover {
    background: #e9ecef;
    color: #6646FB;

}

/* cart */
.cart .product-qty {
    min-width: 130px;
}

/* floating image */
.image-float {
    margin-top: -140px;
    margin-bottom: -140px;
}

#myVideo {
    width: 100%;
    height: auto; /* Mantém a proporção */
}

.rounded-3 {
    transition: all 0.2s ease;
}
.rounded-3:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

/*The background card*/
.card-timeline {
    z-index: 2;
    border: none;
    position: relative;
    padding: 20px;
    width: 100%; /* Define largura total */
}

/*FieldSet headings*/
.fs-title {
    font-size: 25px;
    color: #14A44D;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

/* Texto roxo */
.purple-text {
    color: #14A44D;
    font-weight: normal;
}


.navbar-nav .nav-link {
    font-size: 1.0rem; /* Aumenta o tamanho da fonte dos links */
    font-weight: bold; /* Deixa o texto mais destacado */
}

.navbar-nav .nav-link i {
    font-size: 1.3rem; /* Aumenta o tamanho do ícone */
}

/* Container principal */
.search-results-container {
    padding: 0;
    margin: 0;
    max-height: 70vh;
    overflow-y: auto;
}

/* Item de resultado */
.search-result-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background-color: #f8faff;
}

.search-result-link {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #333;
}


.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #eee;
    background: white;
}

.product-thumbnail.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 24px;
    background: #f9f9f9;
}

/* Informações do produto */
.product-info {
    flex: 1;
    min-width: 0;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #2c3e50;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-meta {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.product-category {
    color: #7f8c8d;
    margin-right: 10px;
}

.product-discount {
    background-color: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Preços */


/* Ações */
.product-actions {
    margin-left: 15px;
}

.view-product {
    color: #3498db;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Sem resultados */
.no-results {
    padding: 30px 15px;
    text-align: center;
    color: #7f8c8d;
}

.no-results i {
    margin-bottom: 15px;
    color: #bdc3c7;
}

.no-results p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.no-results small {
    font-size: 0.9rem;
}

/* Rodapé */
.search-footer {
    padding: 15px;
    text-align: center;
    border-top: 1px solid #eee;
}

.view-all-btn {
    display: inline-block;
    color: #3498db;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.view-all-btn:hover {
    color: #2980b9;
    transform: translateX(3px);
}

/* Estilização dos inputs de quantidade */
.num-product {
    max-width: 50px;
    padding: 0.25rem;
    text-align: center;
    -moz-appearance: textfield;
}

.num-product::-webkit-outer-spin-button,
.num-product::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* post item */
.post-item .post-meta {
    font-size: 0.8rem;
    line-height: 1;
}
.post-item .post-meta svg {
    margin-right: 5px;
}

/* product-thumbnail-slider */
.product-thumbnail-slider {
    height: 740px;
}


/* Container principal */
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem 0;
    background-color: #f8f9fc;
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

/* Cards de autenticação */
.auth-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.auth-card-signup {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.auth-card-login {
    background: white;
}

.auth-card:hover {
    transform: translateY(-5px);
}

/* Cabeçalho */
.auth-header {
    text-align: center;
}

.auth-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.auth-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Formulário */
.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control-lg {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid #d1d3e2;
}

.input-group-text {
    background-color: #f8f9fc;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}


/* Features */
.auth-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-icon {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Divider */
.auth-divider {
    position: relative;
    margin: 2rem 0;
    text-align: center;
    color: var(--text-light);
}

.auth-divider:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e3e6f0;
    z-index: 1;
}

.auth-divider span {
    position: relative;
    z-index: 2;
    background: white;
    padding: 0 1rem;
}

/* Link esqueci senha */
.forgot-password {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Alertas */
.alert-premium {
    background-color: rgba(78, 115, 223, 0.1);
    border-left: 4px solid var(--primary-color);
    color: var(--text-dark);
    border-radius: 0;
}

/* Variáveis de tema */
:root {
    --primary-color: #4e73df;
    --primary-dark: #2e59d9;
    --secondary-color: #f8f9fc;
    --text-dark: #2a2a2a;
    --text-light: #858796;
    --border-radius: 0.5rem;
    --box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
}

/* Barra de Progresso Premium */
.checkout-progress {
    padding: 2rem 0;
}

.progress-tracker {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.progress-step {
    flex: 1;
    position: relative;
    text-align: center;
}

.step-marker {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: #a0a0a0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.progress-step.completed .step-marker,
.progress-step.active .step-marker {
    background: linear-gradient(135deg, #4e73df, #2e59d9);
    color: white;
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
}

.progress-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    right: -50%;
    height: 4px;
    background: #f0f0f0;
    z-index: 1;
    transition: all 0.3s ease;
}

.progress-step.completed:not(:last-child):after {
    background: linear-gradient(135deg, #4e73df, #2e59d9);
}

.step-info {
    margin-top: 0.5rem;
}

.step-title {
    font-weight: 600;
    color: #a0a0a0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.progress-step.completed .step-title,
.progress-step.active .step-title {
    color: #2e59d9;
    font-weight: 700;
}

/* Estilos Gerais do Checkout */
.checkout-container {
    padding: 2rem 0;
    background-color: #f8f9fc;
}

.checkout-card, .checkout-summary {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: none;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-title {
    font-weight: 700;
    color: #2a2a2a;
    margin: 0;
    display: flex;
    align-items: center;
}

.checkout-title i {
    color: #4e73df;
}

.card-body {
    padding: 1.5rem;
}

.alert-premium {
    background-color: #f8faff;
    border-left: 4px solid #4e73df;
    border-radius: 8px;
    color: #2a2a2a;
}

/* Produtos no Resumo */
.product-list {
    margin-bottom: 1.5rem;
}

.product-image {
    position: relative;
    margin-right: 1rem;
}

.product-quantity {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #4e73df;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.product-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}


.product-price {
    font-weight: 700;
}


.total-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.grand-total {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid #f0f0f0;
}

/* Botão Premium */
.btn-premium {
    background: linear-gradient(135deg, #4e73df, #2e59d9);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.4);
    color: white;
}

/* Variáveis de Tema */
:root {
    --primary-color: #4e73df;
    --primary-dark: #2e59d9;
    --secondary-color: #6c757d;
    --success-color: #14A44D;
    --warning-color: #E4A11B;
    --danger-color: #DC4C64;
    --light-color: #f8f9fa;
    --dark-color: #2a2a2a;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Container Principal */
.payment-container {
    padding: 2rem 0;
    background-color: #f8f9fc;
    min-height: 100vh;
}

/* Barra de Progresso */
.checkout-progress {
    padding: 2rem 0;
}

.progress-tracker {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.progress-step {
    flex: 1;
    position: relative;
    text-align: center;
}

.step-marker {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: #a0a0a0;
    font-size: 1.5rem;
    transition: var(--transition);
}

.progress-step.completed .step-marker,
.progress-step.active .step-marker {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(78, 115, 223, 0.3);
}

.progress-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    right: -50%;
    height: 4px;
    background: #f0f0f0;
    z-index: 1;
    transition: var(--transition);
}

.progress-step.completed:not(:last-child):after {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.step-info {
    margin-top: 0.5rem;
}

.step-title {
    font-weight: 600;
    color: #a0a0a0;
    font-size: 0.9rem;
    transition: var(--transition);
}

.progress-step.completed .step-title,
.progress-step.active .step-title {
    color: var(--primary-dark);
    font-weight: 700;
}

/* Cartões de Método de Pagamento */
.payment-method-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

.payment-method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.method-header {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    position: relative;
}

.method-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon-container.bg-pix {
    background: linear-gradient(135deg, #32BCAD, #1F8F84);
}

.method-icon-container.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.method-icon-container.bg-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #5a6268);
}

.method-icon-container.bg-warning {
    background: linear-gradient(135deg, var(--warning-color), #d18f1a);
}

.method-icon {
    color: white;
    font-size: 1.5rem;
}

.method-header-content {
    flex: 1;
}

.method-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--dark-color);
}

.method-subtitle {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin: 0.25rem 0 0;
}

.method-radio-container {
    margin-left: 1rem;
}

/* Radio Buttons Personalizados */
.custom-radio {
    position: relative;
    width: 24px;
    height: 24px;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.radio-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    background-color: white;
    border: 2px solid #d1d3e2;
    border-radius: 50%;
    transition: var(--transition);
}

.custom-radio input:checked ~ .radio-checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
}

.custom-radio input:checked ~ .radio-checkmark:after {
    display: block;
}

/* Corpo do Método de Pagamento */
.method-body {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 1px solid transparent;
}

.payment-method-card.active .method-body {
    padding: 1.5rem;
    max-height: 1000px;
    border-top: 1px solid #f0f0f0;
}

/* Alertas Premium */
.alert-premium {
    background-color: #f8faff;
    border-radius: var(--border-radius);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.alert-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--dark-color);
}

.alert-content p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
}

/* Formulário de Pagamento */
.payment-form {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.9rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .form-control {
    padding-left: 2.5rem;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #d1d3e2;
    transition: var(--transition);
}

.input-with-icon .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.1);
}

.input-with-icon i,
.input-with-icon .icon-cvv {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.input-with-icon .icon-cvv {
    left: auto;
    right: 1rem;
    width: 20px;
    height: auto;
}

/* Cartões Salvos */
.saved-cards-list {
    margin-top: 1rem;
}

.saved-card-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.saved-card-item:last-child {
    border-bottom: none;
}

.saved-card-item .form-check {
    display: flex;
    align-items: center;
}

.saved-card-item .form-check-input {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
}

.saved-card-item .form-check-label {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    cursor: pointer;
}

.saved-card-item .form-check-label small {
    font-size: 0.8rem;
    color: var(--secondary-color);
    margin-left: 0.5rem;
}

/* Checkbox Personalizado */
.save-card {
    margin-top: 1.5rem;
    padding-left: 1.75rem;
}

.save-card .form-check-input {
    width: 18px;
    height: 18px;
    margin-left: -1.75rem;
    margin-top: 0.2em;
}

.save-card .form-check-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.checkbox-replacer {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d3e2;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: var(--transition);
}

.save-card .form-check-input:checked ~ .checkbox-replacer {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-replacer:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
    display: none;
}

.save-card .form-check-input:checked ~ .checkbox-replacer:after {
    display: block;
}



.loading {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100vw ;
    height: 100vh ;
    display: flex ;
    align-items: center;
    justify-content: center ;
    position: fixed ;
    top: 0 ;
    left: 0 ;
    z-index: 9999 ;
}

/* Cabeçalho de Confirmação */
.confirmation-header {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.confirmation-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.confirmation-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.order-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.order-card-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f4f8;
    background: linear-gradient(to right, #f8fafc, white);
}

.order-header-content {
    display: flex;
    flex-direction: column;
}

.order-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-number i {
    color: var(--primary-color);
}

.order-date {
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-badge.success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.order-card-body {
    padding: 2rem;
}

/* Order Summary Grid */
.order-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f4f8;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(78, 115, 223, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.summary-content small {
    display: block;
    color: var(--secondary-color);
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.summary-content strong {
    font-weight: 600;
    color: var(--dark-color);
}



.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title i {
    color: var(--primary-color);
}

/* Status Indicator */
.product-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 120px;
}

.status-indicator {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator.success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
}

.status-indicator.processing {
    background: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
}

/* Card Footer */
.order-card-footer {
    padding: 1.5rem;
    border-top: 1px solid #f0f4f8;
    display: flex;
    justify-content: space-between;
}

/* Support Section */
.support-section {
    margin-top: 3rem;
}

.support-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.support-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(78, 115, 223, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.support-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.support-content p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}



.whatsapp-icon {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}


/* Estilo do ícone (mantido premium) */
.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
}


.icon-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.4) 0%, transparent 70%);
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}




.cta-text {
    font-weight: 500;
    font-size: 15px;
    margin-right: 10px;
}

.cta-arrow {
    transition: transform 0.3s ease;
}




/* Horários Alinhados */
.opening-hours {
    margin-top: 8px;
}

.hours-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 5px;
}

.hours-item i {
    width: 18px;
    text-align: center;
}

.title {
    color: #2c3e50;
    font-weight: 700;
}

.item-thumb {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.item-thumb:hover {
    transform: scale(1.05);
    border-color: #3498db;
}

.installment-info {
    background-color: #f8f9fa;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9rem;
}

#mainImageContainer {
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(52, 152, 219, 0.1);
    color: #2c3e50;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(52, 152, 219, 0.25);
}

.testimonial-item {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
}

:root {
    --primary: #0065cc;
    --secondary: #ff6a00;
    --success: #28a745;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
}

.product-view {
    font-family: 'Segoe UI', Roboto, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    color: #333;
}

.line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #e0e0e0 0%, var(--primary) 100%);
    position: relative;
}

.features-section {
    background-color: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.feature-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-text {
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.6;
}

.protection-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.protection-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.alert-info {
    position: relative;
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 5px solid var(--warning);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.alert-info h4 {
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.info-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.requirements-section {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-list li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.req-list li:last-child {
    border-bottom: none;
}

.req-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(16, 124, 65, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--primary);
}

.req-text {
    flex: 1;
}

.req-label {
    font-weight: 700;
    margin-right: 0.5rem;
}

/* Reset de estilos para scroll */
.d-flex::-webkit-scrollbar {
    display: none;
}

/* Ajuste de ícones */
.fa-2x {
    font-size: 1.6em !important;
}

/* Estilos Premium para os selos */
.trust-badges-section {
    position: relative;
    background: linear-gradient(to bottom, #f8f9fa, #fff);
}

.trust-badge-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.trust-badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
    border-color: rgba(13, 110, 253, 0.2) !important;
}

.icon-wrapper {
    transition: transform 0.3s ease;
}

.trust-badge-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.badge-title {
    letter-spacing: 0.5px;
}

.highlight-pill, .warranty-badge {
    transition: all 0.3s ease;
}

/* Estilos gerais */

.benefit-item {
    position: relative;
}

.equal-size {
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.benefit-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-icon {
    min-width: 24px;
    text-align: center;
}

.benefit-icon i {
    font-size: 1.25rem;
}

.benefit-title {
    letter-spacing: 0.5px;
    font-size: 1.0rem;
    white-space: nowrap;
}

.benefit-description {

}

/* Container principal */
.cart-wrapper {
    margin-left: 1rem;
}

/* Botão do carrinho */
.cart-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.cart-button:hover {
    background-color: rgba(0,0,0,0.03) !important;
}

/* Badge de quantidade */
.cart-badge {
    font-size: 0.65rem;
    padding: 0.35em 0.5em;
    min-width: 20px;
}

/* Efeito hover animado */
.cart-hover-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--bs-primary);
    transition: width 0.3s ease;
}

.cart-button:hover .cart-hover-effect {
    width: 70%;
}

/* Valor total */
.cart-total {
    transition: transform 0.2s ease;
}

.cart-button:hover .cart-total {
    transform: translateY(-2px);
}

/* Ícone do carrinho */
.fa-shopping-cart {
    transition: transform 0.3s ease;
}

.cart-button:hover .fa-shopping-cart {
    transform: scale(1.1);
}

/* Dropdown por hover */
.dropdown-hover:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Manter compatibilidade com click em mobile */


/* Melhorias visuais */
.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.2s ease;
    color: #333;
}

.dropdown-item:hover {

    padding-left: 1.75rem;
}

.nav-link {
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--bs-primary);
}



.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    color: #495057;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item:hover {
    color: var(--bs-primary);
    transform: translateX(5px);
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--bs-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 0.8rem;
}


.phone-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}
/*

.phone-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.phone-hours {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.luxury-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    background: white;
    color: var(--bs-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.luxury-call-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: var(--bs-primary);
}

/* Container da linha animada */
.animated-line-wrapper {
    background: #f5f5f5; /* Cor de fundo para contraste */
}

/* Linha animada premium */
.animated-line {
    height: 100%;
    width: 300%;
    background: linear-gradient(
        90deg,
        rgba(74, 100, 145, 0) 0%,
        #4a6491 20%,
        #105ada 40%,
        #12d9e3 50%,
        #105ada 60%,
        #4a6491 80%,
        rgba(74, 100, 145, 0) 100%
    );
    animation: shimmer 3s infinite linear;
    transform: translateX(-100%);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho que percorre a linha */
.animated-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shine 3s infinite linear;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    20% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

/* Ajustes para o selo de segurança */
.security-badge {
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.security-badge:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Estilos premium mantendo a identidade auth-card */
.auth-card-profile {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.auth-card-profile:hover {
    transform: translateY(-5px);
}

.nav-pills .nav-link {
    border-radius: 8px;
    padding: 10px 20px;
    margin: 0 5px;
    color: var(--bs-dark);
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background: var(--bs-primary);
    color: white;
    box-shadow: 0 4px 10px rgba(var(--bs-primary-rgb), 0.3);
}

.document-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.document-upload-area:hover {
    border-color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.05);
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.verification-badge.verified {
    background: rgba(25, 135, 84, 0.1);
    color: var(--bs-success);
}

.stat-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.stat-item i {
    margin-right: 10px;
    color: var(--bs-primary);
}

.feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.feature-list i {
    margin-right: 10px;
    color: var(--bs-success);
}

/* Dark Premium Styles */
.add-to-cart-mobile-wrapper {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.bg-dark-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    opacity: 0.98;
    z-index: -1;
}

.price-section {
    min-width: 120px;
}

.current-price {
    font-size: 1.4rem;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.original-price {
    font-size: 0.8rem;
    opacity: 0.8;
}

.buy-form {
    flex: 1;
    max-width: 60%;
}


.installment-info {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

/* Smooth Animation */
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.fixed-bottom {
    animation: slideUp 0.3s ease-out forwards;
}

/* Estilos Premium para Mobile */
.how-it-works-mobile {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0,0,0,0.05);
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
}

.step-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #4a6cf7 0%, #2541b2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.star-rating {
    direction: rtl;
    unicode-bidi: bidi-override;
    font-size: 1.5rem;
    display: inline-block;
}
.star-rating input {
    display: none;
}
.star-rating label {
    color: #ddd;
    cursor: pointer;
    padding: 0 5px;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}
.file-upload-wrapper {
    position: relative;
}
.file-upload-wrapper input[type="file"] {
    padding: 10px;
    border: 1px dashed #ccc;
    border-radius: 4px;
}


.how-it-works-mobile::-webkit-scrollbar {
    height: 5px;
}

.how-it-works-mobile::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.how-it-works-mobile::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.how-it-works-mobile::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.btn-premium-review {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    color: #333;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.btn-premium-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 165, 0, 0.3);
    color: #333;
}

.btn-premium-review:active {
    transform: translateY(0);
}

/* Estilo para botão de já avaliado */
.btn-premium-reviewed {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.2);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Estilo para os indicadores de status */
.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-indicator i {
    margin-right: 5px;
}

.status-indicator.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-indicator.processing {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.evaluation-completed-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Card de confirmação */
.completed-card {
    background: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,249,240,0.9));
    position: relative;
    overflow: hidden;
}

.completed-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

/* Botão premium */
.btn-premium-evaluation {
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(75, 108, 183, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-premium-evaluation:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(75, 108, 183, 0.4);
    color: white;
}

.btn-premium-evaluation:active {
    transform: translateY(1px);
}

.btn-premium-evaluation::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: 0.5s;
}

.btn-premium-evaluation:hover::before {
    left: 100%;
}

/* Efeitos extras */
.icon-wrapper {
    display: inline-block;
    padding: 15px;
    background-color: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Efeito hover para desktop */
@media (min-width: 768px) {
    .how-it-works-mobile .card {
        transition: all 0.3s ease;
    }

    .how-it-works-mobile .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
    }
}


@media (max-width: 768px) {
    .security-badge {
        flex-direction: column;
        align-items: flex-end !important;
    }
    .security-badge > div:first-child {
        margin-bottom: 8px;
    }
    .security-badge img {
        max-height: 45px !important;
    }
}

/* Responsividade */
@media (max-width: 991.98px) {
    .luxury-phone-col {
        padding: 2rem;
    }

    .phone-number {
        font-size: 1.8rem;
    }

    .luxury-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .luxury-help-card {
        flex-direction: column;
    }

    .luxury-content, .luxury-phone-col {
        width: 100%;
    }

    .luxury-content {
        padding: 2rem;
    }

    .phone-number {
        font-size: 1.6rem;
    }
}

/* Desktop (lg e acima) */
@media (min-width: 992px) {
    .equal-size {
        width: 20%;
        border-right: 1px solid rgba(0,0,0,0.05);
    }

    .equal-size:last-child {
        border-right: none;
    }

    .benefit-icon i {
        font-size: 1.5rem;
    }
}

/* Mobile (abaixo de lg) */
@media (max-width: 991.98px) {
    .equal-size {
        min-height: 100px;
    }

    .benefit-content {
        padding: 1rem;
    }

    .benefit-title {
        font-size: 0.8rem;
    }

    .benefit-description {
        font-size: 0.7rem;
    }

    .border-bottom, .border-end {
        border-color: rgba(0,0,0,0.05) !important;
    }
}

/* Desktop - ajustes finos */
@media (min-width: 768px) {
    .fa-2x {
        font-size: 1.8em !important;
    }

    div[style*="min-width: 80px"] {
        min-width: 100px !important;
    }

    div[style*="font-size: 0.7rem"] {
        font-size: 0.8rem !important;
    }

    div[style*="font-size: 0.65rem"] {
        font-size: 0.75rem !important;
    }
}


@media (max-width: 768px) {

    .feature-card {
        margin-bottom: 1rem;
    }
}
/* Ajustes para col-md-8 */
@media (min-width: 768px) {
    .product-showcase {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    h5 {
        font-size: 1.1rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}

/* Responsividade */


/* Responsive Adjustments */
@media (max-width: 992px) {
    .order-summary-grid {
        grid-template-columns: 1fr;
    }

    .order-item {
        flex-direction: column;
    }

    .product-status {
        align-items: flex-start;
        margin-top: 1rem;
    }

    .support-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .confirmation-hero {
        padding: 3rem 0;
    }

    .confirmation-title {
        font-size: 2rem;
    }

    .confirmation-subtitle {
        font-size: 1.1rem;
    }

    .order-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .order-card-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsividade */
@media (max-width: 767.98px) {
    .payment-container {
        padding: 1rem 0;
    }

    .method-header {
        padding: 1rem;
    }

    .method-icon-container {
        width: 40px;
        height: 40px;
    }

    .method-icon {
        font-size: 1.2rem;
        width: 24px;
        height: 24px;
    }

    .method-title {
        font-size: 1rem;
    }

    .method-subtitle {
        font-size: 0.8rem;
    }

    .custom-radio {
        width: 20px;
        height: 20px;
    }

    .radio-checkmark {
        width: 20px;
        height: 20px;
    }

    .payment-method-card.active .method-body {
        padding: 1rem;
    }

    .alert-premium {
        padding: 1rem;
    }

    .alert-icon {
        font-size: 1.2rem;
    }

    .alert-content h4 {
        font-size: 0.95rem;
    }

    .alert-content p {
        font-size: 0.85rem;
    }
}

/* Responsividade */
@media (max-width: 767.98px) {
    .progress-step:not(:last-child):after {
        right: -40%;
    }

    .step-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-title {
        font-size: 0.8rem;
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .auth-container {
        padding: 4rem 0;
    }

    .auth-card {
        margin-bottom: 2rem;
    }

    .auth-card-login {
        order: -1;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Garante que os controles de quantidade não quebrem */
    .col-12.col-sm-3 > div {
        display: flex !important;
        flex-wrap: nowrap;
    }

    /* Input numérico mais largo */
    .num-product {
        min-width: 50px;
    }

    /* Espaçamento entre itens */
    .border-bottom {
        padding-bottom: 1rem;
    }
}

/* Ajustes para mobile */
@media (max-width: 575.98px) {
    .col-6.col-sm-3 {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .col-4.col-sm-2,
    .col-2.col-sm-1 {
        text-align: left !important;
        padding-left: 15px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .search-result-link {
        flex-wrap: wrap;
    }

    .product-actions {
        margin-left: 95px;
        margin-top: 10px;
        width: 100%;
    }
}



@media screen and (max-width:991px) {
    .image-float {
        margin: 0;
    }
}

/* single product */

@media screen and (max-width:992px) {
    .product-thumbnail-slider {
        margin-top: 20px;
        height: auto;
    }
}
@media screen and (min-width:992px) {
    .product-thumbnail-slider {
        height: 520px;
    }
}
@media screen and (min-width:1200px) {
    .product-thumbnail-slider {
        height: 740px;
    }
}

/* Media Queries para responsividade */
@media screen and (max-width: 1140px) {
    .banner-blocks {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-gap: 1rem;
    }

    .block-1, .block-2, .block-3 {
        grid-area: auto;
        height: auto;
    }

    .banner-ad .swiper-slide {
        min-height: 250px;
    }

    .banner-ad .banner-content {
        padding: 1.5rem;
    }

    .banner-ad .banner-content .categories {
        font-size: 1.3rem;
    }

    .banner-ad .banner-content .banner-title {
        font-size: 1.5rem;
    }

    .banner-ad.large .banner-content {
        padding: 2rem;
    }

    .banner-ad.large .banner-content .categories {
        font-size: 1.8rem;
    }

    .banner-ad.large .banner-content .banner-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .banner-ad .swiper-slide {
        min-height: 200px;
    }

    .banner-ad .banner-content {
        padding: 1rem;
    }

    .banner-ad .banner-content .categories {
        font-size: 1.1rem;
    }

    .banner-ad .banner-content .banner-title {
        font-size: 1.2rem;
    }

    .banner-ad .swiper-pagination {
        bottom: 10px;
    }

    .banner-ad .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-buttons {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
        padding: 0 10px;
    }

    .swiper-prev,
    .swiper-next {
        pointer-events: all;
        width: 32px;
        height: 32px;
        margin: 0;
    }


    .banner-ad.large .banner-content .categories {
        font-size: 1.5rem;
    }

    .banner-ad.large .banner-content .banner-title {
        font-size: 1.8rem;
    }
}
