.store-availability .section-label {
    letter-spacing: 0.1em;
    font-family: 'Montserrat', sans-serif;
    /* Ou a fonte principal do seu site */
}

.store-list li {
    transition: all 0.2s ease;
}

/* Estilo para o ícone de "X" (Indisponível) */
.text-muted {
    color: #999 !important;
}

/* Estilo para o ícone de "Check" (Disponível) */
.text-success {
    color: #28a745 !important;
}

/* Estrutura Geral */
.product-page-wrapper {
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
}

.x-small {
    font-size: 11px;
    letter-spacing: 1px;
}

.help-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Galeria */
.gallery-frame {
    background-color: #f9f9f9;
    transition: 0.3s;
}

.gallery-frame img {
    mix-blend-mode: multiply;
}

/* Info do Produto */
.product-sticky-info {
    position: sticky;
    top: 100px;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-title {
    font-size: 20px;
    font-weight: 300;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
}

.currency {
    font-size: 14px;
    color: #999;
    margin-left: 5px;
}

/* Seleção de Tamanhos */
.section-label {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1.5px;
}

.size-grid {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #eee;
    margin-top: 10px;
}

.size-box {
    flex: 1;
    min-width: 60px;
    text-align: center;
    padding: 12px 5px;
    border-right: 1px solid #eee;
    cursor: pointer;
    color: #1a1a1a;
    font-size: 12px;
    transition: 0.2s;
    border-bottom: 1px solid #eee;
}

.size-box:hover {
    background: #f8f8f8;
}

.size-box.active {
    background: #999;
    color: #fff;
    border-color: #999;
}

/* Botões */
.btn-add-bag {
    background: #1a1a1a;
    border: none;
    border-radius: 0;
    padding: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
}

.btn-wishlist {
    border-radius: 0;
    width: 60px;
    border-color: #eee;
    color: #333;
}

.btn-wishlist:hover {
    background: #f8f8f8;
    border-color: #333;
}

.btn-guia-tallas {
    font-size: 10px;
    text-decoration: underline;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Accordion Custom */
.accordion-item-sax {
    border-top: 1px solid #eee;
}

.accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

.accordion-content.show {
    max-height: 1000px;
    padding-bottom: 20px;
}

.help-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: left;
    background: #fff;
    transition: transform 0.3s ease;
}

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

.help-card .icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.help-card .red-icon {
    color: #d9534f;
    font-weight: bold;
}

.help-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    letter-spacing: 0.5px;
}

.help-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* Loja e WhatsApp */
.store-list li {
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Seções Inferiores */
.sax-section-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .product-sticky-info {
        position: static;
        margin-top: 30px;
    }

    .brand-name {
        font-size: 20px;
    }
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .help-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
}
