/* ==========================================================================
   TIBY.SEXY - ESTILO PREMIUM E DESIGN RESPONSIVO (MOBILE-FIRST) 111111111111
   ========================================================================== */

/* 1. VARIÁVEIS DO TEMA E RESET */
:root {
    --bg-main: #070707;
    --bg-card: #121212;
    --bg-darker: #020202;
    --bg-glass: rgba(18, 18, 18, 0.75);
    
    --accent-red: #800020; /* Vinho / Borgonha */
    --accent-red-hover: #9E002B;
    --accent-gold: #D4AF37; /* Ouro Metálico */
    --accent-gold-hover: #F3CD57;
    
    --text-white: #F5F5F5;
    --text-muted: #9E9E9E;
    --text-dark: #121212;
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', Helvetica, Arial, sans-serif;
    
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.2);
    --shadow-red: 0 0 15px rgba(128, 0, 32, 0.25);
    
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-red);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

li {
    list-style: none;
}

button, select, input {
    font-family: inherit;
    border: none;
    background: none;
    outline: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-red);
    color: var(--text-white);
    border: 1px solid var(--accent-red);
}
.btn-primary:hover {
    background: var(--accent-red-hover);
    border-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-glow {
    box-shadow: 0 0 20px rgba(128, 0, 32, 0.4);
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(128, 0, 32, 0.7);
}

.btn-block {
    width: 100%;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.divider-gold {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}
.divider-gold::before, .divider-gold::after {
    content: "";
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}
.gold-heart {
    color: var(--accent-gold);
    font-size: 0.8rem;
    filter: drop-shadow(0 0 3px var(--accent-gold));
}

/* ==========================================================================
   2. ANNOUNCEMENT BAR & MAIN HEADER
   ========================================================================== */
.announcement-bar {
    background-color: var(--bg-darker);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    padding: 8px 0;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.announcement-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

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

.announcement-item i {
    color: var(--accent-gold);
    margin-right: 4px;
}

/* main header style */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* logo */
.header-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.header-logo:hover {
    transform: scale(1.05);
}

/* navigation links */
.desktop-nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    position: relative;
    padding: 8px 0;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.highlight {
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    background: rgba(212, 175, 55, 0.05);
}
.nav-link.highlight:hover {
    background: var(--accent-gold);
    color: var(--text-dark) !important;
    border-color: var(--accent-gold);
}
.nav-link.highlight::after {
    display: none;
}

/* header icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.action-btn {
    position: relative;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-smooth);
}
.action-btn:hover {
    color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.05);
}

.action-btn .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent-red);
    color: var(--text-white);
    font-size: 0.65rem;
    font-weight: 700;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-btn .badge.badge-gold {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    background: transparent;
    border: none;
    color: var(--text-white);
    transition: var(--transition-smooth);
}
.mobile-menu-btn:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   3. HERO SECTION (BANNER INTEGRATION)
   ========================================================================== */
.hero-section {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(135deg, var(--bg-main) 60%, var(--bg-card) 100%);
    overflow: hidden;
}
.hero-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(128,0,32,0.15) 0%, transparent 70%);
    top: -50px;
    left: -50px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 5px;
    line-height: 1.1;
}

.script-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    color: var(--accent-red);
}

.hero-slogan {
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    color: var(--text-white);
    margin: 20px 0;
    text-transform: uppercase;
}
.hero-slogan strong {
    color: var(--accent-gold);
}

.hero-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 25px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}
.hero-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-tags span i {
    color: var(--accent-gold);
}

.hero-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Lado Direito: Imagem do Banner */
.hero-banner-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.15);
    background: var(--bg-card);
    transition: var(--transition-smooth);
}
.hero-banner-image-wrapper:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold), 0 15px 50px rgba(0, 0, 0, 0.8);
}
.hero-banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.hero-banner-image-wrapper:hover .hero-banner-image {
    transform: scale(1.02);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   4. FEATURES BAR (BARRA DE DIFERENCIAIS)
   ========================================================================== */
.features-bar {
    background-color: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}
.feature-card:hover .feature-icon {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: rotateY(180deg);
}

.feature-info h3 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.feature-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   5. SECTIONS COMMON
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.sub-title {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-gold);
    font-size: 1.1rem;
}
.section-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
}
.header-divider {
    height: 1px;
    width: 80px;
    background-color: var(--accent-red);
    margin: 15px auto 0 auto;
    position: relative;
}
.header-divider::after {
    content: "";
    height: 5px;
    width: 5px;
    background-color: var(--accent-gold);
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
}

/* ==========================================================================
   6. CATEGORIES SECTION
   ========================================================================== */
.categories-section {
    padding: 80px 0;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.category-image-holder {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 1 / 1.1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-card);
    margin-bottom: 15px;
}

.category-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 7, 7, 0.9) 0%, rgba(128, 0, 32, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.category-overlay span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.category-card:hover .category-image-holder img {
    transform: scale(1.08);
}
.category-card:hover .category-overlay {
    opacity: 1;
}
.category-card:hover .category-overlay span {
    transform: translateY(0);
}

.category-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}
.category-card:hover h3 {
    color: var(--accent-gold);
}

/* ==========================================================================
   7. VITRINE DE PRODUTOS
   ========================================================================== */
.products-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
}

.product-filters {
    max-width: 1400px;
    margin: -20px auto 40px auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.02);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-white);
}

/* Grid de Produtos */
.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    background-color: var(--bg-main);
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
}
.badge-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: var(--border-radius-sm);
}
.badge-tag.tag-new {
    background: var(--accent-red);
    color: var(--text-white);
}
.badge-tag.tag-hot {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.wishlist-heart-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(7, 7, 7, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    height: 35px;
    width: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 5;
    backdrop-filter: blur(5px);
}
.wishlist-heart-btn:hover {
    background: var(--text-white);
    color: var(--accent-red);
}
.wishlist-heart-btn.favorited {
    background: var(--accent-red);
    color: var(--text-white);
    border-color: var(--accent-red);
}

.quick-view-overlay-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(128, 0, 32, 0.95);
    color: var(--text-white);
    text-align: center;
    padding: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.product-image-container:hover .quick-view-overlay-btn {
    bottom: 0;
}

/* Info do Produto */
.product-info-box {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category-name {
    font-size: 0.7rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 6px;
}

.product-name-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    min-height: 2.6em;
    height: auto;
    line-height: 1.3;
    overflow: visible;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.product-size-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}
.size-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    color: var(--text-muted);
}

.price-box-wrapper {
    margin-top: auto;
    margin-bottom: 15px;
}
.price-regular {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.price-row-promo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.price-promo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}
.pix-note-badge {
    font-size: 0.65rem;
    color: var(--accent-gold);
    font-weight: 500;
    background: rgba(212, 175, 55, 0.1);
    padding: 1px 6px;
    border-radius: var(--border-radius-sm);
}

.installment-price-info {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.btn-add-to-cart {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}
.btn-add-to-cart:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-red);
}

/* ==========================================================================
   8. VIP BANNER SECTION
   ========================================================================== */
.vip-banner-section {
    background: linear-gradient(rgba(7,7,7,0.85), rgba(7,7,7,0.85)), url('assets/banner.png') no-repeat center center / cover;
    padding: 100px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.vip-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.vip-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}
.vip-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}
.vip-content p {
    font-size: 1rem;
    color: var(--text-white);
    margin-bottom: 35px;
    opacity: 0.9;
}

.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.vip-benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 24px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.vip-benefit-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.03);
}

.vip-benefit-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}
.vip-benefit-card:hover .vip-benefit-icon {
    background: var(--accent-gold);
    color: var(--text-dark);
}

.vip-benefit-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 8px;
}

.vip-benefit-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.btn-whatsapp-large {
    background: #25D366;
    color: #FFFFFF;
    border: 1px solid #25D366;
    padding: 16px 40px;
    font-size: 1rem;
}
.btn-whatsapp-large:hover {
    background: #20BA56;
    border-color: #20BA56;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   9. DEPOIMENTOS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 80px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: -20px;
    margin-bottom: 40px;
}
.testimonials-rating-summary .stars i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin: 0 2px;
}
.rating-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}
.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    margin-bottom: 15px;
}
.testimonial-card .stars i {
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-right: 2px;
}

.testimonial-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.client-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-white);
}
.client-info span {
    display: block;
    font-size: 0.75rem;
    color: var(--accent-gold);
    margin-top: 2px;
}

/* ==========================================================================
   10. FOOTER SECTION
   ========================================================================== */
.main-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    height: 55px;
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 320px;
}

.social-links-footer {
    display: flex;
    gap: 12px;
}
.social-links-footer a {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.social-links-footer a:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-col h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    color: var(--text-white);
    position: relative;
    padding-bottom: 8px;
}
.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 1px;
    background-color: var(--accent-gold);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--accent-gold);
    margin-right: 8px;
    width: 15px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    margin: 50px 0 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-payments-security {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    flex-wrap: wrap;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.8rem;
    color: var(--text-muted);
}
.payment-icons i:hover {
    color: var(--text-white);
}
.barcode-icon {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.security-badges {
    display: flex;
    gap: 15px;
}
.security-badges span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ==========================================================================
   11. CARTRIDGE DRAWER (CARRINHO LATERAL)
   ========================================================================== */
.cart-drawer-wrapper, .mobile-menu-drawer, .modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cart-drawer-wrapper.active, .mobile-menu-drawer.active, .modal-wrapper.active {
    visibility: visible;
}

.drawer-overlay, .modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}
.cart-drawer-wrapper.active .drawer-overlay,
.mobile-menu-drawer.active .drawer-overlay,
.modal-wrapper.active .modal-overlay {
    opacity: 1;
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background-color: var(--bg-card);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
}
.cart-drawer-wrapper.active .cart-drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.drawer-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.drawer-title i {
    color: var(--accent-gold);
}

.close-drawer-btn, .close-modal-btn {
    font-size: 1.4rem;
    cursor: pointer;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.close-drawer-btn:hover, .close-modal-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-red);
}

/* Progresso de Pedido Mínimo */
.minimum-order-progress-wrapper {
    padding: 15px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.progress-text {
    font-size: 0.75rem;
    margin-bottom: 8px;
    font-weight: 500;
}
.progress-bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
    border-radius: 10px;
    transition: width 0.4s ease;
}

/* Lista do Carrinho */
.cart-items-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empty-cart-message {
    margin: auto;
    text-align: center;
}
.empty-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    opacity: 0.3;
}
.empty-cart-message p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.cart-item-card {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-image {
    width: 75px;
    height: 85px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.cart-item-details h4 {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.cart-item-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

/* Controladores de Quantidade */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
}
.qty-btn {
    height: 28px;
    width: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition-smooth);
}
.qty-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
}
.qty-value {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0 8px;
    min-width: 24px;
    text-align: center;
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
}

.btn-remove-item {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    padding: 4px;
}
.btn-remove-item:hover {
    color: var(--accent-red);
}

/* Rodapé do Carrinho */
.cart-drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-darker);
}

.coupon-section {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}
.coupon-section input {
    flex-grow: 1;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.coupon-section input:focus {
    border-color: var(--accent-gold);
}
.btn-apply-coupon {
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
}
.btn-apply-coupon:hover {
    background: var(--accent-gold-hover);
}
.coupon-message {
    font-size: 0.7rem;
    margin-top: -10px;
    margin-bottom: 15px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85rem;
}
.summary-line.pix-highlight {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 5px;
}
.summary-line.pix-highlight .total-price {
    color: var(--accent-gold);
    font-size: 1.3rem;
}
.summary-line.installment-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-checkout:disabled {
    background: #333 !important;
    border-color: #333 !important;
    color: #666 !important;
    cursor: not-allowed;
    box-shadow: none !important;
}

.checkout-footer-note {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
}

/* ==========================================================================
   12. MOBILE MENU DRAWER
   ========================================================================== */
.mobile-menu-drawer .drawer-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background-color: var(--bg-card);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mobile-menu-drawer.active .drawer-content {
    transform: translateX(0);
}

.mobile-nav {
    padding: 30px 24px;
    flex-grow: 1;
}
.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.mobile-nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}
.mobile-nav-link i {
    width: 20px;
    font-size: 1.1rem;
}
.mobile-nav-link.active, .mobile-nav-link:hover {
    color: var(--text-white);
}
.mobile-nav-link.text-gold {
    color: var(--accent-gold);
}

.menu-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 10px 0;
}

.drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.drawer-footer .social-links {
    display: flex;
    gap: 15px;
}
.drawer-footer .social-links a {
    font-size: 1.25rem;
    color: var(--text-muted);
}
.drawer-footer .social-links a:hover {
    color: var(--accent-gold);
}

/* ==========================================================================
   13. MODALS (QUICK VIEW, INSTITUTIONAL, CHECKOUT, SUCCESS)
   ========================================================================== */
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 90%;
    max-width: 850px;
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 10;
}
.modal-wrapper.active .modal-content {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Quick View Grid */
.modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 35px;
}

.modal-image-holder {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 1 / 1.2;
}
.modal-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-holder {
    display: flex;
    flex-direction: column;
}
.modal-category {
    font-size: 0.75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 10px;
}
.modal-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}
.modal-price-box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.modal-price-box .regular {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: var(--text-muted);
}
.modal-price-box .promo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.modal-description {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.option-group-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.size-selector-row {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}
.size-selector-btn {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    height: 38px;
    width: 42px;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}
.size-selector-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}
.size-selector-btn.active {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-white);
}

.modal-actions-row {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.qty-control-large {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.02);
}
.qty-control-large .qty-btn {
    height: 44px;
    width: 44px;
    font-size: 0.9rem;
}
.qty-control-large .qty-value {
    font-size: 0.95rem;
    min-width: 32px;
}

.btn-add-modal {
    flex-grow: 1;
    font-size: 0.85rem;
}

/* ==========================================================================
   14. CHECKOUT SIMULATION MODAL
   ========================================================================== */
.checkout-modal-content {
    max-width: 650px;
    padding: 30px;
}

.checkout-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;
}

.form-section {
    margin-bottom: 24px;
}
.form-section h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group.flex-2 {
    flex: 2;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}
.form-group input, .form-group select {
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--text-white);
    width: 100%;
}
.form-group input:focus, .form-group select:focus {
    border-color: var(--accent-gold);
}

/* Métodos de Pagamento */
.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-option-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    cursor: pointer;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: var(--transition-smooth);
    background: rgba(255,255,255,0.01);
}
.payment-option-card input[type="radio"] {
    margin-top: 4px;
    accent-color: var(--accent-gold);
}
.payment-option-card.active {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
}

.payment-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
}
.payment-desc {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Resumo Checkout */
.checkout-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-bottom: 25px;
}
.checkout-summary-box h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.summary-row.total-row {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
    margin-top: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-gold);
}

/* ==========================================================================
   15. SUCCESS MODAL (QR CODE PIX E WHATSAPP REDIRECT)
   ========================================================================== */
.success-modal-content {
    max-width: 500px;
    text-align: center;
    padding: 40px 30px;
}

.success-icon-wrapper {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 20px;
}

.success-modal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.success-modal-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.pix-qrcode-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--accent-gold);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-bottom: 25px;
}
.pix-qrcode-box h3 {
    font-size: 0.85rem;
    margin-bottom: 8px;
}
.pix-instructions {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.pix-key-copy-container {
    display: flex;
    gap: 8px;
}
.pix-key-copy-container input {
    flex-grow: 1;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--border-radius-sm);
}
.btn-copy {
    background: var(--accent-gold);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0 15px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
}
.btn-copy:hover {
    background: var(--accent-gold-hover);
}

.copy-alert {
    font-size: 0.7rem;
    color: #25D366;
    margin-top: 6px;
    display: none;
}

.next-steps-info {
    text-align: left;
    margin-bottom: 25px;
}
.next-steps-info h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 8px;
}
.next-steps-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.success-modal-content .btn {
    margin-bottom: 12px;
}

/* ==========================================================================
   16. BUSCA POPUP / MODAL BUSCA
   ========================================================================== */
.search-modal-content {
    max-width: 550px;
    padding: 30px;
}
.search-modal-content h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}
.search-input-wrapper input {
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-sm);
    padding: 14px 44px 14px 18px;
    font-size: 0.9rem;
    color: var(--text-white);
    width: 100%;
}
.search-input-wrapper input:focus {
    border-color: var(--accent-gold);
}
.search-icon {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--text-muted);
}

.search-results-list {
    max-height: 250px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}
.search-result-item:hover {
    background: rgba(255,255,255,0.03);
}

.search-result-thumb {
    height: 45px;
    width: 40px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg-main);
}
.search-result-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.search-result-info h4 {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 500;
}
.search-result-info span {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* ==========================================================================
   17. MODAL INSTITUCIONAL
   ========================================================================== */
.inst-modal-content {
    max-width: 600px;
    padding: 40px;
    max-height: 80vh;
    overflow-y: auto;
}
.inst-modal-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}
.inst-modal-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}
.inst-modal-content ol, .inst-modal-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.inst-modal-content li {
    list-style: decimal;
    margin-bottom: 10px;
}
.inst-modal-content ul li {
    list-style: disc;
}

/* Modal de Seleção de Vendedoras */
.seller-modal-content {
    max-width: 420px;
    width: 90%;
    padding: 30px 24px;
    border-radius: var(--border-radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-gold-glow);
    box-shadow: var(--shadow-deep);
    text-align: center;
}
.seller-modal-header {
    margin-bottom: 24px;
}
.seller-modal-badge {
    height: 52px;
    width: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.seller-modal-header h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 6px;
}
.seller-modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.seller-list-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.seller-option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: var(--border-radius-md);
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    text-align: left;
    text-decoration: none;
}
.seller-option-card:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}
.seller-avatar-circle {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.seller-details-text {
    flex: 1;
    margin-left: 14px;
    display: flex;
    flex-direction: column;
}
.seller-name-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}
.seller-status-label {
    font-size: 0.75rem;
    color: #25D366;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}
.seller-status-label i {
    font-size: 0.5rem;
}
.seller-wa-icon {
    font-size: 1.4rem;
    color: #25D366;
}

/* ==========================================================================
   18. RESPONSIVIDADE E MEDIA QUERIES (MOBILE-FIRST)
   ========================================================================== */

@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none; /* Esconde nav principal no celular */
    }
    
    .hero-grid {
        gap: 30px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.25rem;
    }
    .hero-slogan {
        font-size: 1.1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Dispositivos Móveis Grandes (Abaixo de 768px) */
@media screen and (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr; /* Coluna única no mobile */
        text-align: center;
    }
    
    .hero-text-content {
        order: 2; /* Texto embaixo do banner */
    }
    .hero-banner-image-wrapper {
        order: 1; /* Imagem do banner em cima */
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        margin: 0 auto 25px auto;
    }
    .hero-tags {
        justify-content: center;
    }
    .hero-cta-wrapper {
        justify-content: center;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .modal-image-holder {
        max-width: 300px;
        margin: 0 auto;
    }
    .modal-title {
        font-size: 1.4rem;
        text-align: center;
    }
    .modal-price-box {
        text-align: center;
    }
    .modal-price-box .promo {
        justify-content: center;
    }
    .modal-description {
        text-align: center;
    }
    .option-group-title {
        text-align: center;
    }
    .size-selector-row {
        justify-content: center;
    }
    .modal-actions-row {
        flex-direction: column;
        gap: 10px;
    }
    .qty-control-large {
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
}

/* Dispositivos Móveis Pequenos (Abaixo de 480px) */
@media screen and (max-width: 480px) {
    .header-container {
        padding: 8px 16px;
    }
    .header-logo {
        height: 42px;
    }
    .header-actions {
        gap: 10px;
    }
    .action-btn {
        padding: 6px;
        font-size: 1.1rem;
    }
    
    .features-container {
        grid-template-columns: 1fr; /* Coluna única diferenciais */
        gap: 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr; /* Coluna única categorias */
    }
    .category-image-holder {
        aspect-ratio: 1.2 / 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 por linha para aproveitar espaço */
        gap: 10px;
    }
    .product-info-box {
        padding: 12px;
    }
    .product-name-title {
        font-size: 0.9rem;
        min-height: 2.6em;
        height: auto;
    }
    .price-promo {
        font-size: 1.1rem;
    }
    .btn-add-to-cart {
        padding: 8px;
        font-size: 0.7rem;
    }
    
    .vip-content h2 {
        font-size: 1.8rem;
    }
    .btn-whatsapp-large {
        padding: 12px 24px;
        font-size: 0.88rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .checkout-modal-content {
        padding: 20px 15px;
    }
}

/* ==========================================================================
   APP CATALOG RESTRUCTURE STYLES
   ========================================================================== */

/* Layout e Container Geral */
.app-container {
    max-width: 1250px; /* Aumentado para melhor proveito em desktops */
    margin: 0 auto;
    padding: 30px 16px;
}

/* Header de App */
.app-header .header-container {
    max-width: 1250px; /* Aumentado para alinhar com o container */
    height: 60px;
    padding: 8px 16px;
}
.circular-logo {
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    height: 46px;
    width: 46px;
    object-fit: cover;
    background-color: var(--bg-card);
    transition: var(--transition-smooth);
}
.circular-logo:hover {
    border-color: var(--accent-red);
}
.app-logo-wrapper {
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

/* Seção de Boas Vindas */
.app-welcome-section {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 10px;
}
.app-welcome-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-gold);
    font-size: 0.95rem;
    letter-spacing: 1px;
}
.app-welcome-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
    margin-bottom: 12px;
}
.app-welcome-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Seção de Filtros (Dropdown + Busca Lado a Lado) */
.app-filter-section {
    margin-bottom: 40px;
}
.app-filter-controls {
    display: flex;
    gap: 12px;
    align-items: center;
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
}

.select-dropdown-wrapper {
    position: relative;
    flex: 1.2;
}
.select-dropdown-wrapper select {
    background-color: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 35px 10px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-white);
    width: 100%;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: var(--transition-smooth);
}
.select-dropdown-wrapper select:focus {
    border-color: var(--accent-gold);
}
.select-arrow-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--accent-gold);
    pointer-events: none;
}

.search-input-wrapper-app {
    position: relative;
    flex: 1.8;
    display: flex;
}
.search-input-wrapper-app input {
    background-color: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 45px 10px 20px;
    font-size: 0.82rem;
    color: var(--text-white);
    width: 100%;
}
.search-input-wrapper-app input:focus {
    border-color: var(--accent-gold);
}
.search-btn-app {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    background: var(--accent-gold);
    color: var(--text-dark);
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}
.search-btn-app:hover {
    background: var(--accent-gold-hover);
}

/* Heading da Seção de Produtos */
.app-section-heading {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-gold);
    padding-left: 10px;
    letter-spacing: 0.5px;
}

/* Grade de Produtos Compacta */
.app-products-grid {
    max-width: 100%;
    padding: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Cards Menores e Botão Pílula */
.app-products-grid .product-card {
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    background-color: var(--bg-card);
}
.app-products-grid .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
}
.app-products-grid .product-name-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
    min-height: 2.6em;
    height: auto;
}
.app-products-grid .price-promo {
    font-size: 1.15rem;
}
.app-products-grid .btn-add-to-cart {
    border-radius: 50px !important; /* Estilo pílula do exemplo */
    padding: 8px 16px;
    font-size: 0.72rem;
    font-weight: 600;
}

/* Grupo VIP App */
.app-vip-section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.app-vip-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 30px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-soft);
}
.app-vip-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}
.app-vip-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Footer do App */
.app-footer {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 40px 0 80px 0;
    margin-top: 60px;
}
.app-footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.app-footer-links a {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.app-footer-links a:hover {
    color: var(--accent-gold);
}
.app-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
}
.app-payment-icons {
    font-size: 1.3rem;
}

/* Botão Flutuante e Balão do WhatsApp */
.whatsapp-floating-group {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 150;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}
.whatsapp-floating-tooltip {
    background-color: var(--bg-card);
    color: var(--text-white);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    white-space: nowrap;
    position: relative;
    pointer-events: auto;
    text-decoration: none;
    animation: tooltip-fade-in 1s ease-out;
    transition: var(--transition-smooth);
}
.whatsapp-floating-tooltip:hover {
    transform: translateY(-2px);
    border-color: var(--accent-gold);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}
/* Seta do balão de fala */
.whatsapp-floating-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: var(--bg-card);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
}
.whatsapp-floating-tooltip:hover::after {
    border-top-color: var(--accent-gold);
    border-right-color: var(--accent-gold);
}
.whatsapp-floating-btn {
    position: relative;
    background-color: #25D366;
    color: #FFFFFF;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition-smooth);
    animation: whatsapp-pulse 2s infinite;
}
.whatsapp-floating-btn:hover {
    transform: scale(1.1);
    background-color: #20BA56;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes tooltip-fade-in {
    from {
        opacity: 0;
        transform: translateX(15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-floating-group {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    .whatsapp-floating-tooltip {
        font-size: 0.72rem;
        padding: 6px 12px;
    }
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Botão do WhatsApp Direto (Pílula Verde) */
.btn-whatsapp-direct {
    border-color: rgba(37, 211, 102, 0.4) !important;
    color: #25D366 !important;
    border-radius: 50px !important;
}
.btn-whatsapp-direct:hover {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

/* Responsividade de App para Mobile */
@media screen and (max-width: 768px) {
    .app-products-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 colunas no mobile para ficar bem compacto */
        gap: 12px;
    }
    .wishlist-heart-btn {
        top: auto !important;
        bottom: 12px !important;
        right: 12px !important;
        height: 32px !important;
        width: 32px !important;
        font-size: 0.85rem !important;
    }
    .app-filter-controls {
        flex-direction: column;
        border-radius: var(--border-radius-md);
        padding: 15px;
        gap: 15px;
    }
    .select-dropdown-wrapper, .search-input-wrapper-app {
        width: 100%;
        flex: none;
    }
    .app-footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    .footer-payments-security, .app-payment-icons {
        justify-content: center;
        width: 100%;
    }
}

/* Página de Detalhes do Produto */
.app-product-details-view {
    margin-top: 15px;
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.btn-back-catalog {
    background: transparent;
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}
.btn-back-catalog:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    border-color: var(--accent-gold);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 40px;
}

.details-image-holder {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius-md);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
}
.details-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    transition: transform 0.5s ease;
}
.details-image-holder:hover img {
    transform: scale(1.05);
}

.details-info-holder {
    display: flex;
    flex-direction: column;
}

.details-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 8px;
}
h2.details-title, .details-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    line-height: 1.25;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.details-price-box {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.08);
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    width: fit-content;
}
.details-price-box .regular {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--text-muted);
}
.details-price-box .promo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-gold);
}
.details-price-box .pix-badge {
    background-color: rgba(37, 211, 102, 0.15);
    color: #25D366;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.details-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Seletores de Atributo (Tamanho e Cor) */
.details-option-group {
    margin-bottom: 20px;
}
.details-option-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-options-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.size-option-btn {
    background: var(--bg-main);
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius-sm);
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.size-option-btn:hover {
    border-color: var(--accent-gold);
}
.size-option-btn.active {
    background: var(--accent-gold);
    color: var(--text-dark);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.color-options-row {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 8px;
}
.color-swatch-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 3px;
    height: 38px;
    width: 38px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}
.color-swatch-btn:hover {
    border-color: var(--accent-gold);
    transform: scale(1.1);
}
.color-swatch-btn.active {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}
.swatch-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.color-preto {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.color-vermelho {
    background-color: #800020;
}

.details-actions-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    align-items: center;
}
.qty-selector-details {
    display: flex;
    align-items: center;
    background-color: var(--bg-main);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 4px;
}
.qty-selector-details .qty-btn {
    background: transparent;
    border: none;
    color: var(--text-white);
    width: 32px;
    height: 32px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}
.qty-selector-details .qty-btn:hover {
    background-color: rgba(255,255,255,0.08);
}
.qty-selector-details .qty-value {
    font-size: 0.9rem;
    font-weight: 600;
    width: 30px;
    text-align: center;
}

.btn-whatsapp-buy-large {
    background-color: #25D366 !important;
    border: 1px solid #25D366 !important;
    color: #FFFFFF !important;
    border-radius: 50px !important;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    flex-grow: 1;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}
.btn-whatsapp-buy-large:hover {
    background-color: #20BA56 !important;
    border-color: #20BA56 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media screen and (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .app-product-details-view {
        padding: 20px 15px;
    }
    .details-title {
        font-size: 1.6rem;
    }
    .details-image-holder {
        aspect-ratio: 1.1 / 1;
    }
}



