/* Sekiya Sourcing — Minimal additional CSS */

:root {
    --brand-forest: #2D5A3D;
    --brand-gold: #C4A052;
    --brand-cream: #FAF8F5;
    --brand-dark: #1A1A1A;
    --brand-muted: #6B7280;
    --buy-now-bg: #1A4D2E;
    --buy-now-hover: #143D24;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Variant card radio hidden but clickable label */
.variant-card {
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

/* Dropdown animation */
[data-dropdown-wrapper] > div[id] {
    transition: opacity 0.15s ease;
}

/* Product card image zoom */
.group:hover img {
    transform: scale(1.05);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--brand-forest);
    outline-offset: 2px;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--brand-cream);
}

::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}
