/* ── Carousel ───────────────────────────────────────────────────────────── */
.seba-gifts-carousel {
    margin: 1.5rem 0;
    padding: 1.25rem;
    border-radius: 12px;
    background: #fffaf4;
    border: 1px solid #e8d5b7;
}

.seba-gifts-carousel__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.seba-gifts-carousel__icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    object-fit: contain;
}

.seba-gifts-carousel__title {
    font-size: 16px;
    font-weight: 700;
    color: #CC7D74;
    margin: 0 0 2px;
}

.seba-gifts-carousel__subtitle {
    font-size: 13px;
    color: #B5B891;
    margin: 0;
    font-weight: 600;
}

.seba-gifts-carousel__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

/* ── Item card ──────────────────────────────────────────────────────────── */
.seba-gifts-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .2s ease, border-color .2s ease;
}

.seba-gifts-item:hover {
    border-color: #9E805C;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.seba-gifts-item__image {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.seba-gifts-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
    border-radius: 0;
}

.seba-gifts-item__image:hover img {
    transform: scale(1.06);
}

.seba-gifts-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.6rem 0.7rem 0.75rem;
    flex: 1;
}

.seba-gifts-item__short-name {
    font-size: 14px;
    font-weight: 700;
    color: #1b1b1b;
    text-decoration: none;
    line-height: 1.3;
}

.seba-gifts-item__short-name:hover {
    color: #9E805C;
}

.seba-gifts-item__name {
    font-size: 11px;
    font-weight: 400;
    color: #aaa;
    line-height: 1.3;
    flex: 1;
}

.seba-gifts-item__prices {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.seba-gifts-item__price-regular {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.seba-gifts-item__price-promo {
    font-size: 18px;
    font-weight: 800;
    color: #B24646;
}

/* ── Add button ─────────────────────────────────────────────────────────── */
.seba-gifts-add-btn {
    width: 100%;
    margin-top: auto;
    height: 40px;
    line-height: 12px !important;
    text-transform: capitalize;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px !important;
    background-color: #8AAF66 !important;
    border-color: #8AAF66 !important;
    color: #fff !important;
    padding: 0 10px !important;
}

.seba-gifts-add-btn:hover:not(:disabled) {
    background-color: #6e9350 !important;
    border-color: #6e9350 !important;
}

.seba-gifts-item__selected-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #5a8a40;
    border-radius: 999px;
    padding: 2px 8px;
    margin-bottom: 2px;
}

.seba-gifts-add-btn--loading {
    opacity: .6;
    cursor: wait;
}

.seba-gifts-add-btn--in-cart,
.seba-gifts-add-btn--in-cart:disabled {
    background-color: #aaa !important;
    border-color: #aaa !important;
    cursor: default;
    opacity: 1;
}

.seba-gifts-add-btn__short {
    display: none;
}

/* ── Variant select ─────────────────────────────────────────────────────── */
.seba-gifts-variant-select {
    margin-bottom: 0.4rem;
    padding: 6px 12px !important;
    font-size: 13px !important;
}

.seba-gifts-variant-select--error {
    border-color: #B24646 !important;
    box-shadow: 0 0 0 2px rgba(178, 70, 70, 0.2);
}

/* ── Addon badge (product page) ─────────────────────────────────────────── */
.seba-gifts-addon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
    padding: 3px 10px;
    border-radius: 999px;
    background: #fff8f0;
    color: #CC7D74;
    border: 1px solid #CC7D74;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    width: 100%;
}

.seba-gifts-addon-badge__icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    object-fit: contain;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .seba-gifts-carousel__items {
        display: flex;
        flex-direction: row;
        overflow-x: scroll;
        gap: 0.75rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        margin-top: 0.5rem;
        scrollbar-color: #CC7D74 #f0ebe5;
    }

    .seba-gifts-carousel__items::-webkit-scrollbar {
        height: 6px;
    }

    .seba-gifts-carousel__items::-webkit-scrollbar-track {
        background: #f0ebe5;
        border-radius: 999px;
    }

    .seba-gifts-carousel__items::-webkit-scrollbar-thumb {
        background: #CC7D74;
        border-radius: 999px;
    }

    .seba-gifts-item {
        flex: 0 0 160px;
        scroll-snap-align: start;
    }

    .seba-gifts-add-btn__full {
        display: none;
    }

    .seba-gifts-add-btn__short {
        display: inline;
    }
}
