/*! ☕ Cozy Coffee Table Themes */
:root,
:root:has(input.theme-controller[value="swiss"]:checked),
[data-theme="swiss"] {
    color-scheme: light;
    /* Warm Coffee Table - Light theme */
    --color-base-100: #f5f0e8; /* Warm cream, like steamed milk */
    --color-base-200: #ebe3d5; /* Warm beige, like light wood */
    --color-base-300: #d9cdb8; /* Soft tan */
    --color-base-content: #3d3529; /* Rich coffee brown */
    --color-primary: #8b6f47; /* Warm caramel */
    --color-primary-content: #f5f0e8;
    --color-secondary: #b08968; /* Toasted almond */
    --color-secondary-content: #f5f0e8;
    --color-accent: #a67c52; /* Honey brown */
    --color-accent-content: #f5f0e8;
    --color-neutral: #6b5d52; /* Coffee with cream */
    --color-neutral-content: #f5f0e8;
    --color-info: #7d9d9c; /* Soft sage */
    --color-info-content: #f5f0e8;
    --color-success: #8a9a5b; /* Muted olive */
    --color-success-content: #f5f0e8;
    --color-warning: #d4a574; /* Warm amber */
    --color-warning-content: #f5f0e8;
    --color-error: #b85c50; /* Terracotta */
    --color-error-content: #f5f0e8;
    /* Cozy rounded corners */
    --radius-selector: 0.75rem;
    --radius-field: 0.75rem;
    --radius-box: 1rem;
    --size-selector: 0.25rem;
    --size-field: 0.25rem;
    /* Soft borders */
    --border: 1px;
    --depth: 0;
    --noise: 0;
}

:root:has(input.theme-controller[value="swiss-dark"]:checked),
[data-theme="swiss-dark"] {
    color-scheme: dark;
    /* Evening Coffee Table - Dark theme */
    --color-base-100: #2a2520; /* Deep espresso */
    --color-base-200: #1f1b17; /* Dark roast */
    --color-base-300: #151210; /* Almost black coffee */
    --color-base-content: #e8dcc8; /* Soft cream */
    --color-primary: #c9a875; /* Golden latte */
    --color-primary-content: #2a2520;
    --color-secondary: #b89968; /* Warm caramel */
    --color-secondary-content: #2a2520;
    --color-accent: #d4a574; /* Butterscotch */
    --color-accent-content: #2a2520;
    --color-neutral: #9d8b73; /* Soft mocha */
    --color-neutral-content: #2a2520;
    --color-info: #8fa8a3; /* Muted teal */
    --color-info-content: #2a2520;
    --color-success: #a3b18a; /* Sage green */
    --color-success-content: #2a2520;
    --color-warning: #daa874; /* Amber glow */
    --color-warning-content: #2a2520;
    --color-error: #c17a6e; /* Warm clay */
    --color-error-content: #2a2520;
    /* Cozy rounded corners */
    --radius-selector: 0.75rem;
    --radius-field: 0.75rem;
    --radius-box: 1rem;
    --size-selector: 0.25rem;
    --size-field: 0.25rem;
    /* Soft borders */
    --border: 1px;
    --depth: 0;
    --noise: 0;
}
