/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    /* Premium Dark Palette */
    --color-bg: #050505;
    --color-bg-alt: #0f0f0f;
    --color-bg-card: #141414;

    --color-text: #ffffff;
    --color-text-muted: #b0b0b0;

    --color-gold: #c5a059;
    --color-gold-light: #e6c888;
    --color-gold-dark: #8a6d3b;

    --border-light: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(197, 160, 89, 0.3);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #e6c888 0%, #c5a059 50%, #8a6d3b 100%);
    --gradient-dark: linear-gradient(to bottom, transparent 0%, #050505 100%);
    --gradient-card: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.8) 100%);

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gold {
    color: var(--color-gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    background: transparent;
    transition: var(--transition-fast);
    cursor: pointer;
    border-radius: 4px;
}

.btn:hover {
    background: var(--color-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.btn-primary {
    background: var(--color-gold);
    color: #000;
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons a {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at top right, #1a1a1a 0%, #050505 60%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1541123165275-5205562d3a33?q=80&w=2000&auto=format&fit=crop');
    /* Placeholder Hero Image */
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    filter: grayscale(80%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #050505 30%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: left;
    padding-left: 2rem;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    max-width: 500px;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-image-wrapper {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
    background: #111;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-image {
    transform: scale(1.05);
}

.product-card:hover .card-action {
    opacity: 1;
    transform: translateY(0);
}

*/ .card-action {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.card-action .btn {
    width: 100%;
    background: var(--color-gold);
    color: #000;
    border: none;
    padding: 0.8rem;
}

.card-action .btn:hover {
    background: var(--color-gold-light);
}

.card-info {
    padding: 1.5rem;
    text-align: center;
}

.card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

/* Footer */
footer {
    background: #000;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-light);
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: #666;
    font-size: 0.9rem;
}