/* ---------- Tabs Nav ---------- */
.dwr-tabs__nav {
    display: flex;
    border-bottom: 2px solid #adc3c7;
    margin-bottom: 28px;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dwr-tabs__nav::-webkit-scrollbar {
    display: none;
}

.dwr-tab-btn {
    background: none;
    border: none;
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    font-family: "Avenir-book", Poppins, sans-serif;
    transition: color 0.15s, border-color 0.15s;
}

.dwr-tab-btn--active {
    color: #222722;
    border-bottom-color: #adc3c7;
}

.dwr-tab-btn:hover {
    color: #222722;
}


/* ---------- Registry Controls ---------- */
.dwr-registry-controls {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dwr-select-wrap label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 4px;
    font-family: "Avenir-book", Poppins, sans-serif;
}

.dwr-select-wrap select {
    padding: 8px 28px 8px 10px;
    border: 1px solid #adc3c7;
    font-size: 13px;
    color: #222722;
    appearance: auto;
    background: #fff;
    font-family: "Avenir-book", Poppins, sans-serif;
}


/* ---------- Items Grid ---------- */
.dwr-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.dwr-item-card {
    position: relative;
    border: 1px solid #eee;
    overflow: hidden;
    transition: box-shadow 0.15s;
}

.dwr-item-card:hover {
    box-shadow: 0 4px 12px rgba(173, 195, 199, 0.25);
    border-color: #adc3c7;
}

.dwr-item-card__image {
    display: block;
    overflow: hidden;
    background: #fafafa;
}

.dwr-item-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.2s;
}

.dwr-item-card:hover .dwr-item-card__image img {
    transform: scale(1.03);
}

.dwr-item-card__body {
    padding: 12px;
}

.dwr-item-card__name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #222722;
    text-decoration: none;
    margin-bottom: 6px;
    line-height: 1.3;
    font-family: "Avenir-book", Poppins, sans-serif;
}

.dwr-item-card__name:hover {
    color: #adc3c7;
    text-decoration: none;
}

.dwr-item-card__price {
    font-size: 14px;
    color: #222722;
    margin-bottom: 6px;
    font-family: "Avenir-book", Poppins, sans-serif;
}

.dwr-item-card__variation {
    font-size: 12px;
    color: #64748b;
    line-height: 1.35;
    margin: -2px 0 6px;
    font-family: "Avenir-book", Poppins, sans-serif;
}

.dwr-item-card__qty {
    font-size: 12px;
    color: #888;
    font-family: "Avenir-book", Poppins, sans-serif;
}

.dwr-item-card__remove {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #adc3c7;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: background 0.15s, color 0.15s;
    line-height: 1;
}

.dwr-item-card__remove:hover {
    background: #bb251a;
    border-color: #bb251a;
    color: #fff;
}

.dwr-items-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-family: "Avenir-book", Poppins, sans-serif;
}

.dwr-items-empty p {
    font-size: 16px;
    margin-bottom: 20px;
}

