.logo-wrapper {
    position: absolute;
    background: #fff;
    height: 100%;
}

/* Product cards */
#productList .card.product-card {
    height: calc(100% - 20px);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}
#productList .card.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.img-wrap {
    position: relative;
    overflow: hidden;
    height: 206px !important;
    min-height: 206px;
    border-radius: 12px;
}
.brand-logo {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 98px;
    height: 98px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 4px;
    z-index: 2;
}
.product .title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.4em;
    min-height: 2.8em;
    overflow: hidden;
    margin-bottom: 0.25rem;
}
.product-card .card-body {
    padding: 0.75rem 1rem;
}
.product-card .card-text {
    font-size: 0.9rem;
}

/* Orange button */
.btn-primary-orange {
    background-color: #f29500;
    border-color: #f29500;
    color: #fff;
}
.btn-primary-orange:hover,
.btn-primary-orange:focus {
    background-color: #d98600;
    border-color: #d98600;
    color: #fff;
}
.btn-primary-orange:active,
.btn-primary-orange:first-child:active {
    background-color: #c07700;
    border-color: #c07700;
    color: #fff;
}

/* Variant quantity inputs - hide native spinners */
.variant-qty-input {
    -moz-appearance: textfield;
    appearance: textfield;
}
.variant-qty-input::-webkit-outer-spin-button,
.variant-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Product detail */
.product-image {
    overflow: hidden;
    border-radius: 12px;
}
.product-image .brand-logo {
    width: 200px;
    height: 200px;
}

/* Product detail - variant list */
.product-variants-list {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 0.5rem 1rem;
}
.variant-row {
    gap: 1rem;
}
.variant-quantity {
    flex-shrink: 0;
}
.variant-quantity .btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.variant-qty-input.form-control {
    width: 50px;
    height: 32px;
    padding: 0;
    text-align: center;
}

/* Card variant rows on listing */
.card-variants-list {
    margin: 0 0 0.5rem 0;
    font-size: 0.85rem;
}
.card-variant-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3px 0;
    gap: 0.5rem;
}
.card-variant-row .variant-price {
    white-space: nowrap;
    min-width: 50px;
}
.card-variant-row .variant-quantity .btn {
    width: 26px;
    height: 26px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 0.8rem;
}
.card-variant-row .variant-qty-input.form-control {
    width: 38px;
    height: 26px;
    padding: 0;
    text-align: center;
    font-size: 0.8rem;
}

.choices__list--multiple .choices__item {
    background-color: #f29500;
    border: 1px solid #f29500;
}
