:root {
    --brand-1: #7c3aed;
    --brand-2: #ec4899;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #fafafa;
}

.site-navbar {
    background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
}

.hero {
    background: linear-gradient(120deg, var(--brand-1), var(--brand-2));
    color: white;
    padding: 3rem 0;
}

.design-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    height: 100%;
}

.design-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.design-card img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100%;
}

.price-tag {
    font-weight: 700;
    color: var(--brand-1);
}

.swatch {
    display: inline-block;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    cursor: pointer;
}

.swatch.selected {
    border-color: var(--brand-1);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}

.cart-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 0.5rem;
}
