/* ===================================
   BMPT Final Clean Style - 100px Brand Circle + Big Logo Inside
   No Checkmark, No Hover Effects, Compact Design
   =================================== */

.bmpt-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 15px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: #111827;
    min-height: 100vh;
}

/* BRAND SECTION */
.bmpt-brands-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    margin-bottom: 25px;
    border: 1px solid #f0f0f0;
}

.bmpt-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px;
    text-align: center;
}

.bmpt-brands-grid {
    display: flex;                    /* grid ki jagah flex use karo */
    flex-wrap: nowrap;                /* wrap mat hone do → 1 hi line rahegi */
    gap: 16px;                        /* gap thoda kam kar diya taake zyada fit ho */
    overflow-x: auto;                 /* agar 10 se zyada hue to scroll aayega */
    padding: 12px 0;                  /* upar neeche thodi space */
    scroll-behavior: smooth;          /* scroll smooth feel dega */
}

/* scrollbar ko acha look do (optional lekin acha lagta hai) */
.bmpt-brands-grid::-webkit-scrollbar {
    height: 6px;
}
.bmpt-brands-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}
.bmpt-brands-grid::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 10px;
}

.bmpt-brand-card {
    position: relative;
    width: 100px;
    height: 100px;
    background: #ffffff;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
padding: 0px;
}

.bmpt-brand-card.active {
    border: 3px solid #2e2485 !important;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.10);
   padding: 0px;
}

.bmpt-brand-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

.bmpt-brand-logo {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.bmpt-brand-name {
    font-size: 12px;
    font-weight: 500;
    color: #4b5563;
    text-align: center;
    padding: 0 4px;
    line-height: 1.2;
}

/* CHECKMARK KO POORA REMOVE */
.bmpt-brand-check {
    display: none !important;
}

/* MODELS TABS */
.bmpt-models-tabs {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
}

.bmpt-tabs-scroll {
    display: flex;
    gap: 10px;
    padding: 0 15px;
    overflow-x: auto;
}

.bmpt-tab {
    flex-shrink: 0;
    padding: 8px 18px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    white-space: nowrap;
}

.bmpt-tab:hover{
    background: #2e2485 !important;
    color: #ffffff !important;
}

.bmpt-tab.active {
    background: #2e2485 !important;
    border-color: #2e2485 !important;
    color: #ffffff !important;
}

/* PRODUCTS GRID & CARDS */
.bmpt-products-display {
    padding: 25px 20px;
    background: #ffffff;
}

.bmpt-products-grid-shopify {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 18px;
}

.bmpt-product-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.bmpt-product-image {
    background: #f9fafb;
    aspect-ratio: 1 / 1;
}

.bmpt-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bmpt-product-info {
    padding: 12px;
    flex: 1;
}

.bmpt-product-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px;
    line-height: 1.3;
}

.bmpt-product-rating .star {
    font-size: 13px;
}

.bmpt-product-price {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 6px 0;
}

.bmpt-variant-description {
    font-size: 13px;
    color: #4b5563;
    padding: 8px 12px;
    background: #f0f9ff;
    border-left: 3px solid #3b82f6;
    border-radius: 4px;
    margin: 8px 0;
    font-style: italic;
}

.bmpt-variant-swatches {
    display: flex;
    gap: 8px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.bmpt-variant-swatch {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    padding: 2px;
}

.bmpt-variant-swatch.active {
    border-color: #3b82f6;
}

.bmpt-product-actions {
    display: flex;
    gap: 8px;
    padding: 0 12px 12px;
}

.bmpt-quick-view-btn,
.bmpt-add-cart-btn {
    flex: 1;
    padding: 9px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
}

.bmpt-quick-view-btn {
    background: white;
    color: #111827;
    border: 1px solid #6b7280;
}

.bmpt-add-cart-btn {
    background: #2e2485 !important;
    color: #ffffff !important;
    border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bmpt-brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 14px 10px;
    }
    .bmpt-brand-card {
        width: 90px;
        height: 90px;
    }
    .bmpt-brand-logo {
        width: 85%;
        height: 85%;
    }
    .bmpt-products-grid-shopify {
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .bmpt-brand-card {
        width: 80px;
        height: 80px;
    }
    .bmpt-brand-logo {
        width: 82%;
        height: 82%;
    }
    .bmpt-product-card {
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Quick View Modal (simple rakha) */
.bmpt-qv-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0,0,0,0.65);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.bmpt-qv-modal.active {
    opacity: 1;
    visibility: visible;
}

.bmpt-qv-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
}

.bmpt-qv-modal.active .bmpt-qv-container {
    transform: translate(-50%, -50%) scale(1);
}