:root {
    --color-text: #000;
    --color-bg: transparent;
    --color-card-bg: #e8e8e8;
    --color-badge-bg: rgb(186, 59, 59);
    --color-badge-text: #fff;
    --artwork-size: 120px;
    --card-width: 135px;
    --font-family: 'Courier', monospace;
    --font-size: 13px;
    --space-sm: 6px;
    --space-md: 10px;
    --space-lg: 14px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    color: var(--color-text);
    background: var(--color-bg);
    margin: 0;
    padding: var(--space-lg);
    text-transform: lowercase;
    overflow: hidden;
    max-width: 100%;
}

.new-arrivals-widget {
    border: 1px solid #333;
    padding: var(--space-lg);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
}

.carousel-dots {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    gap: 6px;
    align-items: center;
    z-index: 10;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(85, 85, 85, 0.85);
    border: 1.5px solid transparent;
    flex-shrink: 0;
    box-sizing: border-box;
}

.dot.active {
    background: transparent;
    border-color: rgba(85, 85, 85, 0.85);
}

.carousel {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
}

.carousel::-webkit-scrollbar { display: none; }
.carousel { scrollbar-width: none; }

a.arrival-card {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: var(--card-width);
    scroll-snap-align: start;
    text-decoration: none;
    color: var(--color-text);
    background: var(--color-card-bg);
    padding: var(--space-sm);
    border-radius: 0;
    overflow: hidden;
    transition: background-color 0.1s ease;
}

a.arrival-card:hover {
    background: #000;
    color: #fff;
}

.card-artwork {
    position: relative;
    width: 100%;
    height: 135px;
    background: #fff;
    margin-bottom: var(--space-sm);
}

.card-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.restock-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-badge-bg);
    color: var(--color-badge-text);
    font-size: 10px;
    padding: 2px var(--space-sm);
    z-index: 1;
}

a.arrival-card:hover .restock-badge {
    background: #fff;
    color: #000;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.card-row1 {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.3;
}

.card-artist {
    font-weight: bold;
    flex-shrink: 0;
    max-width: 60%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-title {
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sep { flex-shrink: 0; }

.card-price { font-size: var(--font-size); }

.card-styles {
    font-size: 11px;
    opacity: 0.7;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.arrivals-header {
    font-size: var(--font-size);
    margin-bottom: var(--space-md);
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}
.arrivals-header::-webkit-scrollbar { display: none; }

a.see-all-link {
    color: var(--color-text);
    text-decoration: underline;
    transition: background-color 80ms ease, color 80ms ease;
}

a.see-all-link:hover {
    background-color: #000;
    color: #fff;
    text-decoration: none;
}
