/* Indicador de carregamento para campos de formulário */
.form-control.is-loading {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M12,1A11,11,0,1,0,23,12,11,11,0,0,0,12,1Zm0,19a8,8,0,1,1,8-8A8,8,0,0,1,12,20Z' opacity='.25'/%3E%3Cpath fill='%23666' d='M10.14,1.16a11,11,0,0,0-9,8.92A1.59,1.59,0,0,0,2.46,12,1.52,1.52,0,0,0,4.11,10.7a8,8,0,0,1,6.66-6.61A1.42,1.42,0,0,0,12,2.69h0A1.57,1.57,0,0,0,10.14,1.16Z'%3E%3CanimateTransform attributeName='transform' dur='0.75s' repeatCount='indefinite' type='rotate' values='0 12 12;360 12 12'/%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem 1rem;
    padding-right: 2.5rem;
}

.form-control.is-loading:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* Animações e Transições */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    10%,
    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

/* Footer Styles */
.footer-section {
    margin-top: 60px;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h5 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section h6 {
    color: #fff;
    font-size: 0.95rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #fff !important;
}

.footer-section a {
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff !important;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: #fff !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.payment-methods i {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
}

.security-badges .text-center {
    flex: 0 0 auto;
    min-width: 80px;
}

.security-badges .small {
    font-size: 0.75rem;
    white-space: nowrap;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* Estilos Gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fadeIn 0.5s ease-in;
}

/* Cores do Tema Giftu.me */
:root {
    --giftu-primary: var(--loja-primary);
    --giftu-primary-dark: var(--loja-primary-dark);
    --giftu-secondary: var(--loja-secondary);
    --giftu-accent: #3b145f;
}
.btn-link {
    text-decoration: none !important;
}
button a {
    text-decoration: none !important;
}
button {
    text-decoration: none !important;
}
.navbar-toggler {
    background-color: #fff !important;
}
/* Navbar Principal */
.navbar-giftu {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
}

.navbar-giftu .navbar-brand {
    font-size: 1.5rem;
    color: #fff !important;
}

.navbar-giftu .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.navbar-giftu .nav-link:hover {
    color: #fff !important;
}

/* Barra de Busca */
.search-form {
    max-width: 600px;
}

/* Barra de busca Desktop */
.navbar-search-form {
    flex: 1;
    max-width: 500px;
    margin: 0 auto;
}

.navbar-search-form .input-group {
    position: relative;
}

.navbar-search-form .form-control {
    padding-right: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-search-form .form-control:focus {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar-search-form .search-icons-wrapper {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
    pointer-events: none;
}

.navbar-search-form .search-icons-wrapper button {
    pointer-events: all;
}

/* Barra de busca Mobile (sempre visível no topo) */
.navbar-search-form-mobile {
    max-width: none;
    flex: 1 1 auto;
    min-width: 0;
}

.navbar-search-form-mobile .input-group {
    position: relative;
}

.navbar-search-form-mobile .form-control {
    padding-right: 45px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-search-form-mobile .form-control:focus {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar-search-form-mobile .search-icons-wrapper {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 10;
    pointer-events: none;
    width: 32px;
    height: 32px;
}

.navbar-search-form-mobile .search-icons-wrapper button {
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Avatar do usuário */
.user-avatar {
    width: 32px;
    height: 32px;
    object-fit: cover;
    flex-shrink: 0;
}

.user-avatar-initial {
    width: 32px;
    height: 32px;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

/* Menu do usuário - evitar quebra de linha */
#userDropdown {
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
    display: inline-flex !important;
    align-items: center;
}

@media (min-width: 768px) {
    #userDropdown > span {
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }
}

.search-form .form-control {
    border-radius: 4px 0 0 4px;
    border: 2px solid transparent;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
}

.search-form .form-control:focus {
    border-color: var(--giftu-secondary);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-search {
    background: var(--giftu-secondary);
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0.6rem 1.5rem;
    transition: background 0.3s ease;
}

.btn-search:hover {
    background: var(--giftu-primary-dark);
    color: white;
}


/* Menu de Categorias - Botão Compacto com Dropdown */
.categories-menu-wrapper {
    position: relative;
    display: inline-block;
    margin: 0.75rem 0;
    z-index: 100;
}

.btn-categories-toggle {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--giftu-primary);
    color: var(--giftu-primary);
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-categories-toggle:hover {
    background: var(--giftu-primary);
    color: #fff;
    border-color: var(--giftu-primary);
}

.btn-categories-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(156, 39, 176, 0.25);
}

.btn-categories-toggle[aria-expanded="true"] {
    background: var(--giftu-primary);
    color: #fff;
}

.btn-categories-toggle i {
    font-size: 1rem;
}

.categories-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 1000;
    min-width: 250px;
    max-width: 300px;
}

.categories-dropdown.show {
    display: block !important;
}

.categories-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.categories-list li {
    margin: 0;
}

.category-link {
    display: block;
    padding: 0.75rem 1.25rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.category-link:hover {
    background: rgba(156, 39, 176, 0.1);
    color: var(--giftu-primary);
    border-left-color: var(--giftu-primary);
    padding-left: 1.5rem;
}

.category-link.active {
    background: rgba(156, 39, 176, 0.15);
    color: var(--giftu-primary);
    font-weight: 600;
    border-left-color: var(--giftu-primary);
    padding-left: 1.5rem;
}

/* Menu Categorias no Navbar - Destaque */
.categories-nav-link {
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.categories-nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.categories-nav-link::after {
    transition: transform 0.3s ease;
}

.categories-nav-link[aria-expanded="true"] {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

/* Dropdown de Categorias */
.categories-dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.category-dropdown-item {
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.category-dropdown-item:hover {
    background: rgba(156, 39, 176, 0.1);
    color: var(--giftu-primary);
    border-left-color: var(--giftu-primary);
    padding-left: 1.5rem;
    transform: translateX(2px);
}

.category-dropdown-item.active {
    background: rgba(156, 39, 176, 0.15);
    color: var(--giftu-primary);
    font-weight: 600;
    border-left-color: var(--giftu-primary);
    padding-left: 1.5rem;
}

/* Cards de Filtros sobrepondo o Carrossel */
.quick-filters-overlay {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding-bottom: 1rem;
}

.quick-filter-card {
    display: block;
    padding: 1.25rem 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #333;
    background: var(--giftu-secondary);
    border: 1px solid var(--giftu-primary-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.quick-filter-card:hover {
    background: #fff;
    border-color: var(--giftu-primary);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(156, 39, 176, 0.2);
    color: var(--giftu-primary);
    text-decoration: none;
}

.quick-filter-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--loja-primary-dark) 0%, var(--loja-primary) 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.75rem;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.quick-filter-card:hover .quick-filter-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px var(--loja-primary);
}

.quick-filter-card p {
    color: #333;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.quick-filter-card:hover p {
    color: var(--loja-primary);
}

/* Botões do Tema */
.btn-giftu {
    background: linear-gradient(135deg, var(--loja-primary) 0%, var(--loja-primary-dark) 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-giftu:hover {
    background: linear-gradient(135deg, var(--loja-primary-dark) 0%, var(--loja-primary) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--loja-primary-transparent);
}

.btn-outline-giftu {
    border: 2px solid var(--loja-primary);
    color: var(--loja-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-giftu:hover {
    background: var(--loja-primary);
    color: white;
    border-color: var(--loja-primary);
}

.text-giftu-primary {
    color: var(--loja-primary) !important;
}

/* Títulos de Seção */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Banner Promocional - Carrossel Visual */
.promo-carousel-section {
    margin-bottom: 0;
    background: #f8f9fa;
    position: relative;
    /* padding-bottom: 100px; não colocar padding no banner promocional */
}

.promo-carousel-container {
    position: relative;
    width: 100%;
}

.promoCarousel {
    width: 100%;
    height: 470px;
    /*altura do banner promocional - manter assim*/
    border-radius: 0;
    overflow: hidden;
}

.promo-slide {
    width: 100%;
    height: 100%;
}

.promo-slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.promo-slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.promo-text {
    position: relative;
    z-index: 2;
    padding: 1rem;
}

.promo-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-badge-danger {
    background: rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.promo-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.promo-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.promo-products-preview {
    position: relative;
    height: 300px;
    z-index: 2;
}

.product-float {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

.product-float.product-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.product-float.product-2 {
    top: 10%;
    right: 15%;
    animation-delay: 2s;
}

.product-float.product-3 {
    bottom: 10%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.promoCarousel .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.promoCarousel .swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

.promoCarousel .swiper-button-next,
.promoCarousel .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.promoCarousel .swiper-button-next:after,
.promoCarousel .swiper-button-prev:after {
    font-size: 20px;
}

.promoCarousel .swiper-button-next:hover,
.promoCarousel .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
}

.hero-section h2 {
    color: white;
}

/* Swiper Customização */
.featuredSwiper {
    padding: 2rem 0 3rem;
}

.swiper-slide {
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #667eea;
}

.swiper-pagination-bullet-active {
    background: #667eea;
}

/* Cards de Produtos */
.product-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    animation: fadeIn 0.6s ease-in;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.card-img-wrapper {
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff98 0%, #00000018 100%);
    /*manter assim*/
}

.card-img-top {
    width: 100%;
    /* height: 100%; manter assim */
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.1);
}

.price-section {
    margin: 1rem 0;
}

.price-section .text-giftu-primary {
    color: var(--loja-primary) !important;
}

/* Botões */
.btn {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

/* Badge de Desconto */
.badge {
    font-size: 0.9rem;
    padding: 0.2rem 0.4rem;
    /* animation: pulse 2s infinite; manter assim */
}

/* Carrinho */
#cartBtn {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#cartBtn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

#cartBadge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

/* Modal Carrinho */
.cart-item {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
    animation: slideIn 0.3s ease;
}

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

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #dee2e6;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #f8f9fa;
    border-color: #667eea;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Sidebar de Filtros */
.filters-sidebar {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.filters-header {
    border-bottom: 2px solid var(--loja-primary);
    padding-bottom: 0.75rem;
}

.filter-group {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1rem;
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.filter-options-collapsed {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.filter-options-collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}

.btn-show-more {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--loja-primary);
    border: 1px solid var(--loja-primary);
    background: transparent;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-show-more:hover {
    background: var(--loja-primary);
    color: white;
}

.btn-show-more i {
    transition: transform 0.3s ease;
}

.btn-show-more.expanded i {
    transform: rotate(180deg);
}

.filter-options .form-check {
    transition: background 0.2s ease;
    border-radius: 4px;
    padding-left: 0.5rem;
    margin-left: 16px;
}

.filter-options .form-check:hover {
    background: rgba(156, 39, 176, 0.05);
}

.filter-options .form-check-label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    user-select: none;
}

.filter-options .form-check-input {
    cursor: pointer;
    margin-top: 0.25rem;
    vertical-align: top;
}

.filter-options .form-check {
    display: flex;
    align-items: flex-start;
}

.filter-options .form-check-label {
    margin-left: 0.5rem;
    line-height: 1.5;
}

.filter-options .form-check-input:checked {
    background-color: var(--loja-primary);
    border-color: var(--loja-primary);
}

/* Offcanvas Carrinho (Drawer Lateral) */
#cartModal.offcanvas {
    width: 400px;
    max-width: 90vw;
}

#cartModal .offcanvas-body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#cartModal #cartContent {
    padding: 1rem;
}

#cartModal .cart-item {
    transition: background-color 0.2s ease;
}

#cartModal .cart-item:hover {
    background-color: #f8f9fa;
}

#cartModal .cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Galeria de Produtos */
.product-gallery {
    position: relative;
}

.product-main-image {
    position: relative;
}

.product-main-image img {
    transition: opacity 0.3s ease;
    cursor: zoom-in;
}

.product-main-image img:hover {
    opacity: 0.9;
}

.product-thumbnails {
    margin-top: 1rem;
}

.thumbnail-btn {
    background: none;
    border: 2px solid transparent;
    padding: 2px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.thumbnail-btn:hover {
    border-color: var(--loja-primary);
    transform: scale(1.05);
}

.thumbnail-btn.active {
    border-color: var(--loja-primary);
    box-shadow: 0 0 0 2px rgba(156, 39, 176, 0.2);
}

.thumbnail-btn img {
    border-radius: 4px;
}

@media (max-width: 576px) {
    .product-card {
        margin-bottom: 1rem;
    }

    #cartModal.offcanvas {
        width: 100vw;
    }
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Animações de entrada */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    min-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Menu hambúrguer apenas em telas <= 768px */
@media (min-width: 768px) {
    .navbar-toggler {
        display: none !important;
    }
}

/* Layout em coluna para mobile */
@media (max-width: 767px) {
    .navbar-giftu .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .navbar-giftu > .container-fluid > .d-flex {
        width: 100%;
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    .navbar-giftu .navbar-brand {
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    
    .navbar-giftu .navbar-search-form-mobile {
        min-width: 0;
        flex: 1 1 auto;
        overflow: hidden;
    }
    
    .navbar-giftu .navbar-search-form-mobile .input-group {
        min-width: 0;
    }
    
    .navbar-giftu .navbar-search-form-mobile .form-control {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .navbar-giftu .navbar-toggler {
        margin-left: 0.5rem;
        flex-shrink: 0;
    }
    
    .navbar-collapse {
        padding-top: 1rem;
        width: 100%;
    }

    .navbar-collapse .navbar-nav {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .navbar-collapse .d-flex.align-items-center {
        /* width: 100%; */
        justify-content: center;
        flex-wrap: wrap;
        /* flex-direction: column; */
        gap: 0.75rem;
    }
    
    .navbar-collapse .d-flex.align-items-center .dropdown {
        width: auto;
        display: block;
    }
    .flex-direction {
        flex-direction: column;
    }
    
    .navbar-collapse .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .promoCarousel {
        height: 350px;
    }

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

    .promo-description {
        font-size: 1rem;
    }

    .product-float {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .promo-text {
        text-align: center;
    }

    .promo-products-preview {
        display: none;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .card-img-wrapper {
        height: auto;
        /*manter assim*/
        width: 100%;
        /*manter assim*/
    }

    .featuredSwiper {
        padding: 1rem 0 2rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .search-form {
        max-width: 100%;
        margin: 0.5rem 0;
    }

    .quick-filters-overlay {
        margin-top: -60px;
        padding-bottom: 0.5rem;
    }

    .quick-filter-card {
        padding: 1rem 0.5rem;
        margin-bottom: 0.5rem;
    }

    .quick-filter-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .promo-carousel-section {
        padding-bottom: 80px;
    }

    .footer-section .col-lg-3,
    .footer-section .col-lg-2 {
        margin-bottom: 2rem;
    }

    .footer-section h5 {
        font-size: 1rem;
    }

    .security-badges .d-flex {
        justify-content: center;
    }
}

/* ================================
   Banner da Loja (Fallback)
   ================================ */
.banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 2rem;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsivo para Banner */
@media (max-width: 991px) {
    .banner-container {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .banner-container {
        height: 200px;
    }
    
    .banner-section .quick-filters-overlay {
        margin-top: -60px;
    }
}
