/* ==========================================================================
   PRODUCT PAGE - BOL.COM STYLE LAYOUT
   ========================================================================== */

/* Title Section */
.product-title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    flex-wrap: wrap;
}

.product-title-section__main {
    flex: 1;
    min-width: 0;
}

.product-title-section__actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .product-title-section {
        flex-direction: column;
        gap: 1rem;
    }
    .product-title-section__actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ==========================================================================
   MAIN TWO-COLUMN LAYOUT
   ========================================================================== */
.product-main {
    display: grid;
    grid-template-columns: 1fr minmax(650px, 700px);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

/* Left Column */
.product-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Right Column - STICKY */
.product-right {
    position: sticky;
    top: 1rem;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.25rem);
}

@media (max-width: 1200px) {
    .product-main {
        grid-template-columns: 1fr minmax(500px, 600px);
        gap: clamp(1.5rem, 3vw, 2rem);
    }
}

@media (max-width: 900px) {
    .product-main {
        grid-template-columns: 1fr 400px;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
}

/* Price history mobile version - hidden on desktop */
.price-history-mobile {
    display: none;
}

@media (max-width: 768px) {
    .product-main {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .product-left {
        gap: 0;
    }
    .product-right {
        position: static;
        margin-top: 1rem;
    }

    /* Show mobile price history, hide desktop version */
    .price-history-mobile {
        display: block;
        margin-top: 1.5rem;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
    }

    .price-history-mobile .section-header {
        margin-bottom: 0.75rem;
    }

    .price-history-mobile .section-header__title {
        font-size: 1rem;
    }

    .price-history-mobile .price-history__toggle {
        gap: 0.25rem;
    }

    .price-history-mobile .price-history__btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    .price-history__chart-wrapper--mobile {
        height: 180px;
    }

    .price-history__empty--compact {
        padding: 1rem;
        text-align: center;
    }

    .price-history__empty--compact p {
        font-size: 0.85rem;
        margin: 0;
    }

    /* Hide desktop price history section on mobile */
    .price-history-section {
        display: none;
    }

    /* Gallery on mobile - show full image */
    .product-gallery {
        width: 100% !important;
        min-height: auto !important;
        height: auto !important;
    }

    .product-gallery__main {
        aspect-ratio: unset !important;
        width: 100% !important;
        min-height: 200px !important;
        height: auto !important;
        max-height: none !important;
        overflow: hidden !important;
        padding: 1rem;
    }

    .product-gallery__main img,
    .product-gallery__image {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block !important;
    }

    .product-gallery__thumbnails {
        justify-content: center;
        max-width: 100%;
        overflow-x: auto;
    }
}

/* ==========================================================================
   PRODUCT GALLERY
   ========================================================================== */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 768px) {
    .product-gallery {
        gap: 8px;
    }
}

.product-gallery__main {
    width: 100%;
    margin: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-gallery__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.product-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.product-gallery__nav:hover {
    background: rgba(0, 0, 0, 0.4);
}

.product-gallery__nav--prev {
    left: 10px;
}

.product-gallery__nav--next {
    right: 10px;
}

.product-gallery__thumbnails {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.product-gallery__thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bg-primary);
    overflow: hidden;
}

.product-gallery__thumb:hover,
.product-gallery__thumb.is-active {
    border-color: var(--accent);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   COMPARE CHECKBOX
   ========================================================================== */
.product-compare-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.product-compare-checkbox:hover {
    color: var(--text-primary);
}

.product-compare-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* ==========================================================================
   QUICK SPECS (in left column)
   ========================================================================== */
.product-quick-specs {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: clamp(1rem, 2vw, 1.25rem);
    border: 1px solid var(--border-color);
}

.product-quick-specs__title {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.product-quick-specs__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-quick-specs__item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.85rem;
}

.product-quick-specs__item:last-child {
    border-bottom: none;
}

.product-quick-specs__label {
    color: var(--text-secondary);
}

.product-quick-specs__value {
    color: var(--text-primary);
    font-weight: 600;
}

.product-quick-specs__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 500;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-quick-specs__link:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.product-quick-specs__link svg {
    flex-shrink: 0;
}

/* ==========================================================================
   MERCHANT FEED (right column)
   ========================================================================== */
.product-merchant-feed {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

.product-merchant-feed__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.product-merchant-feed__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.product-merchant-feed__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.product-merchant-feed__count {
    color: var(--text-secondary);
}

.product-merchant-feed__updated {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-merchant-feed__updated svg {
    opacity: 0.6;
    width: 12px;
    height: 12px;
}

/* Hero merchants table */
.merchants-table--hero {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.merchants-table--hero .merchant-row {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.15s ease;
}

.merchants-table--hero .merchant-row:hover {
    border-color: var(--accent);
}

.merchants-table--hero .merchant-row--lowest {
    border-color: var(--accent);
    background: var(--bg-primary);
}

.merchants-table--hero .merchant-row__logo-wrap {
    width: 70px;
    height: 35px;
    flex-shrink: 0;
}

.merchants-table--hero .merchant-row__left {
    display: contents;
}

.merchants-table--hero .merchant-row__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.merchants-table--hero .merchant-row__center {
    padding: 0 1rem;
}

.merchants-table--hero .merchant-row__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.merchants-table--hero .merchant-row__right {
    flex-shrink: 0;
}

.product-merchant-feed__add-btn {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.product-merchant-feed__add-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.product-merchant-feed__disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin: 0.75rem 0 0;
    text-align: left;
    line-height: 1.4;
}

/* ==========================================================================
   RELATED MINI (in right column - "Bekijk ook eens")
   ========================================================================== */
.product-related-mini {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--border-color);
}

.product-related-mini__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.related-mini-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-mini-card {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.2s ease;
    align-items: center;
}

.related-mini-card:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.related-mini-card__image {
    width: 60px;
    height: 60px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.related-mini-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.related-mini-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.related-mini-card__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.related-mini-card__price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

/* ==========================================================================
   DESCRIPTION SECTION (in left column)
   ========================================================================== */
.product-description {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: clamp(1rem, 2vw, 1.25rem);
    border: 1px solid var(--border-color);
}

.product-description__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.product-description__static-title {
    font-weight: 700;
    color: var(--text-primary);
}

.product-description__toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
}

.product-description__chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--text-muted);
}

.product-description__chevron.is-expanded {
    transform: rotate(180deg);
}

.product-description__content {
    max-height: 350px;
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
    transition: max-height 0.3s ease;
}

.product-description__content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg-secondary));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.product-description__content.is-expanded {
    max-height: none;
}

.product-description__content.is-expanded::after {
    opacity: 0;
}

.product-description__body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.product-description__body p {
    margin: 0 0 1rem;
}

.product-description__body p:last-child {
    margin-bottom: 0;
}

.product-description__read-more {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.product-description__read-more:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* ==========================================================================
   PROS/CONS SECTION (in left column)
   ========================================================================== */
.product-pros-cons {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: clamp(1rem, 2vw, 1.25rem);
    border: 1px solid var(--border-color);
}

.product-pros-cons__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.product-pros-cons__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 600px) {
    .product-pros-cons__content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.product-pros-cons__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-pros-cons__item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.product-pros-cons__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.product-pros-cons__item--pro .product-pros-cons__icon {
    background: var(--success-bg);
    color: var(--success);
}

.product-pros-cons__item--con .product-pros-cons__icon {
    background: var(--error-bg);
    color: var(--error);
}

/* ==========================================================================
   MERCHANT ROW STYLING
   ========================================================================== */
.merchant-row__logo-wrap {
    width: 100px;
    height: 50px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

@media (max-width: 600px) {
    .merchant-row__logo-wrap {
        width: 70px;
        height: 35px;
    }
}

.merchant-row__name {
    display: none;
}

.merchant-row__logo-wrap--amazon {
    background-color: transparent;
}

.merchant-row__stock--unknown {
    color: var(--text-muted);
    font-style: italic;
}

.merchant-row__shipping {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.merchant-row__amazon-note {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.merchant-row__amazon-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

.merchant-row__hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    margin-left: 4px;
}

.merchant-row__hint[x-cloak] {
    display: none !important;
}

@media (max-width: 768px) {
    .merchant-row__amazon-note {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 380px) {
    .merchant-row__hint {
        display: none;
    }
}

/* ==========================================================================
   DESKTOP - Clean look without card boxes
   ========================================================================== */
@media (min-width: 769px) {
    /* Left column sections - no card styling, just borders between */
    .product-quick-specs,
    .product-description,
    .product-pros-cons {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 1.5rem 0;
        border-top: 1px solid var(--border-color);
    }

    /* Compare checkbox with top border */
    .product-compare-checkbox {
        padding: 1rem 0;
    }

    /* First section after gallery doesn't need top border */
    .product-compare-checkbox + .product-quick-specs {
        border-top: none;
        padding-top: 0;
    }

    /* Section titles */
    .product-quick-specs__title,
    .product-description__title,
    .product-pros-cons__title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* Quick specs items */
    .product-quick-specs__item {
        padding: 0.625rem 0;
        font-size: 0.95rem;
    }

    /* Pros/cons content */
    .product-pros-cons__content {
        gap: 2rem;
    }

    .product-pros-cons__item {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
}

/* ==========================================================================
   MOBILE LAYOUT - BOL.COM STYLE (strak, geen onnodige spacing)
   ========================================================================== */
@media (max-width: 768px) {
    /* Container - minder padding */
    .single-product-container {
        padding: 0 12px;
    }

    /* Title - compacter */
    .product-title-section {
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--border-color);
    }

    .product-title-section__category {
        font-size: 0.55rem;
        padding: 2px 6px;
        margin-bottom: 0.25rem;
    }

    .product-title-section__title {
        font-size: 1.1rem;
        margin-bottom: 0.15rem;
    }

    .product-title-section__subtitle {
        font-size: 0.8rem;
    }

    .product-title-section__actions {
        /* Toon actie buttons op mobiel - kleiner formaat */
        display: flex;
        gap: 0.375rem;
    }

    .product-title-section__actions .product-info__icon-btn {
        width: 36px;
        height: 36px;
    }

    .product-title-section__actions .product-info__icon-btn svg {
        width: 16px;
        height: 16px;
    }

    /* Gallery - edge to edge, geen border */
    .product-gallery {
        margin: 0 -12px;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid var(--border-color);
        padding: 0;
        background: var(--bg-primary);
    }

    .product-gallery__main {
        border-radius: 0;
        border: none;
        max-width: none;
        max-height: 280px;
        aspect-ratio: auto;
        box-shadow: none;
    }

    .product-gallery__thumbnails {
        padding: 8px 12px;
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        max-width: none;
    }

    .product-gallery__thumb {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    /* Compare checkbox - verberg op mobiel */
    .product-compare-checkbox {
        display: none;
    }

    /* Quick specs - geen card styling op mobiel */
    .product-quick-specs {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .product-quick-specs__title {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .product-quick-specs__item {
        padding: 0.4rem 0;
        font-size: 0.8rem;
    }

    .product-quick-specs__link {
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }

    /* Merchant feed - mobiel */
    .product-merchant-feed {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
    }

    .product-merchant-feed__header {
        margin-bottom: 0.75rem;
    }

    .product-merchant-feed__title {
        font-size: 1rem;
    }

    .product-merchant-feed__meta {
        display: none;
    }

    .merchants-table--hero {
        gap: 0.5rem;
    }

    .merchants-table--hero .merchant-row {
        display: grid;
        grid-template-columns: 50px 1fr auto;
        grid-template-rows: auto auto;
        gap: 0.5rem 0.75rem;
        padding: 0.75rem;
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
        border-radius: 8px;
    }

    .merchants-table--hero .merchant-row:hover {
        border-color: var(--accent);
    }

    .merchants-table--hero .merchant-row__left {
        display: contents;
    }

    .merchants-table--hero .merchant-row__logo-wrap {
        width: 50px;
        height: 25px;
        grid-row: 1 / 3;
        align-self: center;
    }

    .merchants-table--hero .merchant-row__info {
        grid-column: 2;
        grid-row: 1;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .merchants-table--hero .merchant-row__center {
        grid-column: 3;
        grid-row: 1;
        text-align: right;
    }

    .merchants-table--hero .merchant-row__right {
        grid-column: 2 / 4;
        grid-row: 2;
    }

    .merchants-table--hero .merchant-row__right .btn-buy {
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }

    .merchants-table--hero .merchant-row__price {
        font-size: 1rem;
        font-weight: 700;
    }

    .product-merchant-feed__add-btn {
        margin-top: 0.75rem;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .product-merchant-feed__disclaimer {
        font-size: 0.65rem;
        margin-top: 0.5rem;
    }

    /* Related mini - geen card */
    .product-related-mini {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .product-related-mini__title {
        font-size: 0.85rem;
    }

    .related-mini-card {
        background: var(--bg-secondary);
        border: 1px solid var(--border-color);
    }

    /* Description - geen card */
    .product-description {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .product-description__title {
        font-size: 0.9rem;
    }

    /* Pros/cons - geen card */
    .product-pros-cons {
        background: transparent;
        border: none;
        border-radius: 0;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .product-pros-cons__title {
        font-size: 0.9rem;
    }

    .product-pros-cons__content {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .product-pros-cons__item {
        font-size: 0.85rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .product-title-section__title {
        font-size: 1rem;
    }

    .product-gallery__main {
        max-height: 240px;
    }

    .merchant-row__logo-wrap {
        width: 60px;
        height: 30px;
    }
}

/* ==========================================================================
   Variant Dropdown (compact, in header)
   ========================================================================== */

.variant-dropdown {
    display: inline-flex;
    align-items: center;
}

.variant-dropdown__select {
    appearance: none;
    -webkit-appearance: none;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    min-width: 140px;
}

.variant-dropdown__select:hover:not(:disabled) {
    border-color: var(--accent);
}

.variant-dropdown__select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.2);
}

.variant-dropdown__select:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.variant-dropdown__select option {
    padding: 0.5rem;
    background: var(--bg-primary);
    color: var(--text-primary);
}
