/* Global Styles */
:root {
    --gold: #d4af37;
    --gold-light: #f1d592;
    --gold-dark: #996515;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-main: #e5e5e5;
    --text-muted: #a3a3a3;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-weight: 900;
    font-size: 1.2rem;
}

.logo-text h1 {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-btn {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-dark), transparent, var(--bg-dark));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
}

.hero-tagline {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-tagline::before {
    content: '';
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.hero h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero h2 span {
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats */
.stats {
    background: var(--bg-card);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--bg-dark);
    border-color: rgba(212, 175, 55, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.news-card-content {
    padding: 30px;
    flex-grow: 1;
}

.news-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.news-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.news-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-link {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Products Page Styles */
.product-filters {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    margin-bottom: 50px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.search-input {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    outline: none;
}

.search-input:focus {
    border-color: var(--gold);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tag {
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tag.active, .filter-tag:hover {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.product-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 10, 10, 0.8);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.product-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.product-tag {
    font-size: 0.6rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: var(--bg-card);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h2 { font-size: 3rem; }
    .nav-links { display: none; }
    .menu-toggle { display: block; }
}

@media (max-width: 768px) {
    .hero h2 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}
