/* Fourthwall Shop UI (mobile first) */
.fw-product-card {
    background: var(--white);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.fw-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #f7f7f7;
}

.fw-product-body {
    padding: 1rem;
}

.fw-product-title {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary-orange);
    margin-bottom: 0.45rem;
    font-size: 1.25rem;
}

.fw-product-price {
    font-family: 'Fredoka', sans-serif;
    color: #0f766e;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.fw-product-description {
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.fw-variant-group {
    margin-bottom: 0.9rem;
}

.fw-label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.fw-color-options,
.fw-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.fw-color-swatch {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid rgba(44, 62, 80, 0.22);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fw-color-swatch.selected {
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.9);
}

.fw-size-pill {
    border: 2px solid rgba(44, 62, 80, 0.2);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 10px;
    padding: 0.45rem 0.7rem;
    font-weight: 700;
    cursor: pointer;
}

.fw-size-pill.selected {
    border-color: rgba(255, 107, 53, 0.9);
    background: #fff2e9;
}

.fw-status {
    min-height: 1.2rem;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.fw-status.is-error {
    color: #b91c1c;
}

.fw-status.is-success {
    color: #166534;
}

.fw-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.fw-btn-add:disabled,
.fw-btn-buy:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (min-width: 768px) {
    .fw-actions {
        grid-template-columns: 1fr 1fr;
    }
}

