/*
Theme Name: Meteoritos Chile
Author: Treasures from Chile
Description: Custom theme for meteorite store.
Version: 1.0
Text Domain: meteoritos-chile
*/

:root {
    color-scheme: dark;
    --tfc-accent: #d97706;
    --tfc-surface: #131313;
    --tfc-border: #27272a;
}

body {
    margin: 0;
    padding: 0;
    background-color: #0e0e0e;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--tfc-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.product-card {
    background: #1a1a1a;
    border: 1px solid var(--tfc-border);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}