@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
 --primary-color: #c09f58; /* Gold Accent */
 --primary-dark: #a8874a;
 --secondary-color: #333333;
 --text-dark: #1a1a1a;
 --text-light: #555555;
 --text-muted: #777777;
 --bg-light: #f9f8f6; /* Beige */
 --bg-white: #ffffff;
 --bg-dark: #1a1a1a; /* Black/Dark Gray */
 --border-color: #e0e0e0;
 
 --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
 --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
 --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
 
 --radius-sm: 4px;
 --radius-md: 8px;
 --radius-lg: 16px;
 
 --transition: all 0.3s ease-in-out;
 
 --font-main: 'Inter', sans-serif;
 --font-display: 'Playfair Display', serif;
}

/* Base Reset & Typography */
*, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}

html {
 scroll-behavior: smooth;
 scroll-padding-top: 90px;
}

body {
 font-family: var(--font-main);
 font-size: 16px;
 line-height: 1.7;
 color: var(--text-dark);
 background: var(--bg-white);
 -webkit-font-smoothing: antialiased;
 overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
 font-family: var(--font-display);
 font-weight: 700;
 line-height: 1.3;
 color: var(--text-dark);
 margin-bottom: 0.75em;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p { margin-bottom: 1rem; color: var(--text-light); }
a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Main Container & Section Styling */
.container {
 max-width: 1280px;
 margin: 0 auto;
 padding: 0 24px;
}
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section.bg-light { background: var(--bg-light); }
.section-header { text-align: center; max-width: 750px; margin: 0 auto 48px; }
.section-header h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.section-header p { font-size: 1.1rem; color: var(--text-muted); }

/* Header & Navigation */
.announcement-bar {
 background: var(--bg-dark);
 color: #f0f0f0;
 text-align: center;
 padding: 10px 20px;
 font-size: 0.9rem;
 font-weight: 500;
}
.header {
 position: sticky;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1000;
 background: rgba(255,255,255,0.95);
 backdrop-filter: blur(10px);
 box-shadow: var(--shadow-sm);
 border-bottom: 1px solid #f0f0f0;
}
.nav {
 display: grid;
 grid-template-columns: auto 1fr auto;
 align-items: center;
 gap: 24px;
 height: 70px;
 max-width: 1400px;
 margin: 0 auto;
 padding: 0 24px;
}
.nav-logo {
 display: flex;
 align-items: center;
 gap: 12px;
 font-size: 1.3rem;
 font-weight: 700;
 color: var(--text-dark);
}
.nav-logo img { height: 40px; width: 40px; }
.logo-text { font-family: var(--font-display); }

.nav-search {
 max-width: 450px;
 width: 100%;
 justify-self: center;
 position: relative;
}
.nav-search input {
 width: 100%;
 padding: 12px 20px 12px 45px;
 border-radius: var(--radius-md);
 border: 1px solid var(--border-color);
 background: var(--bg-light);
 font-size: 0.95rem;
 transition: var(--transition);
}
.nav-search input:focus {
 background: white;
 border-color: var(--primary-color);
 box-shadow: 0 0 0 3px rgba(192, 159, 88, 0.2);
 outline: none;
}
.nav-search svg {
 position: absolute;
 left: 15px;
 top: 50%;
 transform: translateY(-50%);
 width: 20px;
 height: 20px;
 color: var(--text-muted);
}
.nav-actions {
 display: flex;
 align-items: center;
 gap: 20px;
}
.nav-action-btn {
 background: none;
 border: none;
 cursor: pointer;
 position: relative;
 color: var(--text-dark);
}
.nav-action-btn svg { width: 24px; height: 24px; }
.nav-action-btn:hover { color: var(--primary-color); }
.nav-toggle { display: none; }
.nav-links {
 background: var(--bg-white);
 box-shadow: var(--shadow-md);
 padding: 20px 0;
 border-top: 1px solid #f0f0f0;
 display: flex;
 justify-content: center;
 gap: 40px;
 list-style: none;
}
.nav-links a {
 font-weight: 600;
 font-size: 1rem;
 color: var(--text-dark);
 padding: 8px 0;
 position: relative;
}
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 0;
 height: 2px;
 background: var(--primary-color);
 transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Hero Section */
.hero {
 height: calc(85vh - 126px);
 min-height: 500px;
 max-height: 700px;
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 text-align: center;
 background-size: cover;
 background-position: center;
}
.hero::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0; bottom: 0;
 background: rgba(0, 0, 0, 0.6);
 z-index: 1;
}
.hero-content {
 position: relative;
 z-index: 2;
 max-width: 800px;
 padding: 0 20px;
}
.hero h1 {
 color: white;
 margin-bottom: 24px;
 text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero p {
 font-size: 1.2rem;
 color: rgba(255,255,255,0.9);
 margin-bottom: 32px;
}
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 8px;
 padding: 14px 32px;
 font-size: 1rem;
 font-weight: 600;
 border-radius: var(--radius-md);
 cursor: pointer;
 transition: var(--transition);
 border: none;
}
.btn-primary {
 background: var(--primary-color);
 color: white;
}
.btn-primary:hover {
 background: var(--primary-dark);
 transform: translateY(-2px);
 box-shadow: var(--shadow-md);
}

/* Category Quick Links */
.category-quick-links { padding: 40px 0; background: var(--bg-light); }
.category-quick-links .container { display: flex; justify-content: space-around; gap: 20px; flex-wrap: wrap; }
.category-quick-link { text-align: center; }
.category-quick-link a {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 12px;
 color: var(--text-dark);
 font-weight: 600;
}
.category-quick-link img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-md); transition: var(--transition); }
.category-quick-link a:hover img { transform: scale(1.05); box-shadow: var(--shadow-lg); }
.category-quick-link a:hover span { color: var(--primary-color); }

/* Product/Article Card */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.product-card {
 background: var(--bg-white);
 border-radius: var(--radius-md);
 box-shadow: var(--shadow-sm);
 overflow: hidden;
 transition: var(--transition);
 display: flex;
 flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card-image { position: relative; width: 100%; height: 220px; background: #eee; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-card-tag {
 position: absolute;
 top: 12px;
 left: 12px;
 background: var(--primary-color);
 color: white;
 padding: 4px 10px;
 font-size: 0.8rem;
 font-weight: 600;
 border-radius: var(--radius-sm);
}
.product-card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.product-card-title {
 font-family: var(--font-main);
 font-size: 1.1rem;
 font-weight: 600;
 margin-bottom: 8px;
 color: var(--text-dark); flex-grow: 1;
}
.product-card-meta {
 font-size: 0.85rem;
 color: var(--text-muted);
 margin-bottom: 16px;
}
.product-card-btn {
 align-self: flex-start;
 padding: 10px 20px;
 background: transparent;
 border: 2px solid var(--primary-color);
 color: var(--primary-color);
 font-weight: 600;
 border-radius: var(--radius-md);
}
.product-card-btn:hover { background: var(--primary-color); color: white; }

/* Why Us Section */
.why-us-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 30px;
 text-align: center;
}
.why-us-item .icon-wrapper {
 margin: 0 auto 20px;
 width: 64px;
 height: 64px;
 border-radius: 50%;
 background: rgba(192, 159, 88, 0.1);
 display: flex;
 align-items: center;
 justify-content: center;
}
.why-us-item svg { width: 32px; height: 32px; color: var(--primary-color); }
.why-us-item h3 { font-family: var(--font-main); font-size: 1.2rem; font-weight: 600; }

/* Reviews Section */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.review-card {
 background: var(--bg-white);
 border: 1px solid var(--border-color);
 border-radius: var(--radius-lg);
 padding: 24px;
}
.review-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.review-header img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.review-author h4 { font-family: var(--font-main); font-size: 1.1rem; margin-bottom: 4px; }
.review-stars { color: #f59e0b; }
.review-card blockquote {
 font-style: italic;
 color: var(--text-light);
 line-height: 1.7;
 border-left: 3px solid var(--primary-color);
 padding-left: 16px;
}

/* Newsletter Section */
.newsletter-section {
 background: var(--bg-dark);
 color: #f0f0f0;
 text-align: center;
}
.newsletter-section h2, .newsletter-section p { color: white; }
.newsletter-form {
 display: flex;
 gap: 12px;
 justify-content: center;
 max-width: 600px;
 margin: 32px auto 0;
}
.newsletter-form input {
 flex-grow: 1;
 padding: 14px 20px;
 border-radius: var(--radius-md);
 border: 1px solid #555;
 background: #333;
 color: white;
 font-size: 1rem;
}

/* Footer */
.footer { background: var(--secondary-color); color: #ccc; padding: 60px 0 20px; }
.footer a { color: #ccc; }
.footer a:hover { color: white; }
.footer-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 40px;
 margin-bottom: 40px;
}
.footer-heading {
 font-family: var(--font-main);
 font-weight: 600;
 font-size: 1.1rem;
 color: white;
 margin-bottom: 20px;
}
.footer-links li { margin-bottom: 12px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer-contact-item svg { width: 20px; height: 20px; color: var(--primary-color); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 16px; margin-top: 24px; }
.footer-social a {
 width: 40px; height: 40px;
 display: flex; align-items: center; justify-content: center;
 background: #444; border-radius: 50%;
}
.footer-social a:hover { background: var(--primary-color); }
.footer-bottom {
 border-top: 1px solid #444;
 padding-top: 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 0.9rem;
 color: #888;
 flex-wrap: wrap;
 gap: 16px;
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: #888; }
.footer-legal-links a:hover { color: white; }
.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icons svg { height: 24px; color: #aaa; }

/* Page Specific: About, Services... */
.page-header-section { padding: 60px 0; background: var(--bg-light); }
.page-header-section h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.media-object { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.media-object-reverse { grid-template-columns: 1fr 1fr; }
.media-object img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.media-copy ul { list-style: none; padding: 0; margin: 24px 0; }
.media-copy li { position: relative; padding-left: 28px; margin-bottom: 12px; font-weight: 500; }
.media-copy li::before {
 content: '';
 position: absolute;
 left: 0; top: 0;
 color: var(--primary-color);
 font-weight: 700;
}
/* Contact Page */
.contact-container {
 display: grid;
 grid-template-columns: 2fr 1.5fr;
 gap: 48px;
 align-items: flex-start;
}
.contact-info-item {
 display: flex;
 align-items: center;
 gap: 16px;
 margin-bottom: 24px;
}
.contact-info-icon {
 width: 50px; height: 50px;
 background: var(--bg-light); border-radius: 50%;
 display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 24px; height: 24px; color: var(--primary-color); }
.contact-info-content strong { display: block; font-size: 1.1rem; }
.contact-info-content span { color: var(--text-muted); }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.form-control {
 width: 100%;
 padding: 14px 18px;
 font-size: 1rem;
 border: 1px solid var(--border-color);
 border-radius: var(--radius-md);
 transition: var(--transition);
 background: var(--bg-light);
}
.form-control:focus {
 outline: none;
 border-color: var(--primary-color);
 background: white;
 box-shadow: 0 0 0 3px rgba(192, 159, 88, 0.2);
}
textarea.form-control { resize: vertical; min-height: 140px; }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-group input { margin-top: 5px; }

.map-container {
 width: 100%;
 height: 450px;
 border-radius: 12px;
 overflow: hidden;
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 margin-top: 40px;
}

/* Thank You Page */
.thank-you-container {
 text-align: center;
 padding: 100px 20px;
}
.thank-you-icon {
 width: 80px;
 height: 80px;
 margin: 0 auto 30px;
 background: #dcfce7;
 color: #16a34a;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}
.thank-you-icon svg { width: 40px; height: 40px; }

/* Legal Pages */
.legal-content .container { max-width: 800px; }
.legal-content h2 { margin-top: 2em; }
.legal-content h3 { margin-top: 1.5em; }
.legal-content ul { list-style: disc; padding-left: 20px; }
.legal-content li { margin-bottom: 0.5rem; }

/* Form Validation & Cookie Banner */
.input-error { border-color: #dc2626 !important; }
.field-error { color: #dc2626; font-size: 0.85rem; margin-top: 4px; }
.spinner {
 display: inline-block; width: 16px; height: 16px;
 border: 2px solid rgba(255,255,255,0.3);
 border-radius: 50%; border-top-color: #fff;
 animation: spin 0.8s linear infinite; margin-right: 8px; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }
button[disabled] { opacity: 0.7; cursor: not-allowed; }

#cookie-banner {
 position: fixed;
 bottom: 0; left: 0; right: 0;
 background: var(--bg-dark);
 color: #f0f0f0;
 padding: 20px;
 display: none;
 align-items: center;
 justify-content: space-between;
 gap: 20px;
 z-index: 2000;
 box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}
#cookie-banner p { color: #f0f0f0; margin: 0; }
#cookie-banner p a { color: var(--primary-color); text-decoration: underline; }
#cookie-banner-actions { display: flex; gap: 12px; }

/* Responsive */
@media (max-width: 992px) {
 .nav { grid-template-columns: auto 1fr auto; }
 .nav-search { display: none; }
 .nav-links { gap: 20px; justify-content: center; }
 .contact-container { grid-template-columns: 1fr; }
 .media-object, .media-object-reverse { grid-template-columns: 1fr; gap: 30px; }
 .media-object-reverse .media-visual { order: -1; }
}

@media (max-width: 768px) {
 .nav { display: flex; justify-content: space-between; }
 .nav-links-container { display: none; }
 .nav-actions { gap: 12px; }
 .nav-toggle { display: block; background: none; border: none; cursor: pointer; }
 .nav-toggle svg { width: 28px; height: 28px; color: var(--text-dark); }
 .mobile-nav {
 position: fixed;
 top: 116px; left: 0; right: 0; bottom: 0;
 background: rgba(255,255,255,0.98);
 backdrop-filter: blur(5px);
 padding: 40px 20px;
 transform: translateX(100%);
 transition: transform 0.3s ease-in-out;
 }
 .mobile-nav.active { transform: translateX(0); }
 .mobile-nav .nav-links { flex-direction: column; align-items: center; gap: 24px; box-shadow: none; border: none; padding: 0; }
 .mobile-nav .nav-links a { font-size: 1.2rem; }
 .logo-text { display: none; }
 .hero { height: auto; min-height: 450px; padding: 80px 0; }
 .footer-grid { grid-template-columns: 1fr 1fr; }
 #cookie-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 576px) {
 .footer-grid { grid-template-columns: 1fr; text-align: center; }
 .footer-brand { margin: 0 auto; }
 .footer-social { justify-content: center; }
 .footer-bottom { flex-direction: column; gap: 10px; }
}