/* ===== BRAZINGO SHOP ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
    --brazingo-blue: #1B3A6B;
    --brazingo-blue-light: #2952a3;
    --brazingo-blue-pale: #EEF2F9;
    --brazingo-gold: #C9A96E;
    --brazingo-text: #1a1a2e;
    --brazingo-gray: #6b7280;
    --brazingo-white: #ffffff;
    --brazingo-border: #e5e7eb;
}

.brazingo-shop-wrap {
    font-family: 'DM Sans', sans-serif;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
}

.brazingo-section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--brazingo-blue);
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.02em;
    position: relative;
}

.brazingo-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--brazingo-gold);
    margin: 12px auto 0;
}

.brazingo-category-block {
    margin-bottom: 56px;
}

.brazingo-category-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brazingo-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    padding-left: 4px;
    border-left: 3px solid var(--brazingo-gold);
    padding-left: 12px;
}

/* ===== CAROUSEL ===== */
.brazingo-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brazingo-carousel {
    overflow: hidden;
    flex: 1;
}

.brazingo-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ===== ARROWS ===== */
.brazingo-arrow {
    background: var(--brazingo-blue);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
    z-index: 2;
}

.brazingo-arrow:hover {
    background: var(--brazingo-blue-light);
    transform: scale(1.05);
}

.brazingo-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* ===== DOTS ===== */
.brazingo-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.brazingo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brazingo-border);
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    padding: 0;
}

.brazingo-dot.active {
    background: var(--brazingo-blue);
    width: 24px;
    border-radius: 4px;
}

/* ===== PRODUCT CARD ===== */
.brazingo-product-card {
    flex: 0 0 calc(25% - 12px);
    min-width: calc(25% - 12px);
    background: var(--brazingo-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--brazingo-border);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.brazingo-product-card:hover {
    box-shadow: 0 8px 30px rgba(27, 58, 107, 0.12);
    transform: translateY(-2px);
}

/* ===== PRODUCT IMAGE ===== */
.brazingo-product-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--brazingo-blue-pale);
}

.brazingo-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.brazingo-product-img-wrap .img-primary {
    opacity: 1;
    z-index: 1;
}

.brazingo-product-img-wrap .img-secondary {
    opacity: 0;
    z-index: 2;
}

.brazingo-product-card:hover .img-primary {
    opacity: 0;
}

.brazingo-product-card:hover .img-secondary {
    opacity: 1;
}

/* ===== PRODUCT INFO ===== */
.brazingo-product-info {
    padding: 14px 16px 16px;
}

.brazingo-product-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brazingo-text);
    margin: 0 0 6px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brazingo-product-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brazingo-blue);
    margin: 0 0 10px;
}

.brazingo-product-price .woocommerce-Price-amount {
    color: var(--brazingo-blue);
}

/* ===== SIZE BADGES ===== */
.brazingo-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.brazingo-size-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brazingo-blue);
    color: var(--brazingo-blue);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    min-width: 28px;
    text-align: center;
}

/* ===== BUY BUTTON ===== */
.brazingo-btn-comprar {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--brazingo-blue);
    color: white !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 9px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.brazingo-btn-comprar:hover {
    background: var(--brazingo-blue-light);
    color: white !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .brazingo-section-title {
        font-size: 1.6rem;
    }

    .brazingo-product-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    .brazingo-carousel-track {
        gap: 12px;
    }

    .brazingo-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .brazingo-product-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .brazingo-shop-wrap {
        padding: 24px 12px;
    }

    .brazingo-product-card {
        flex: 0 0 calc(50% - 6px);
        min-width: calc(50% - 6px);
    }
}
