:root {
  /* Colors */
  --color-primary: #5A6A5B;
  --color-secondary: #C9B681;
  --color-background: #F8F8F8;
  --color-footer-bg: #2F3D30;
  --color-button: #C9B681;
  --color-text-dark: #2F3D30;
  --color-text-light: #F8F8F8;
  --color-neutral-100: #F8F8F8;
  --color-neutral-200: #EDECE3;
  --color-neutral-300: #E2E1D2;
  --color-neutral-400: #DBD8C2;
  --color-neutral-500: #D1CFB5;
  --color-neutral-600: #C7C5A7;

  /* Typography */
  --font-family-primary: 'Inter', sans-serif;
  --font-family-secondary: 'Playfair Display', serif; /* For headings or accents */
  --font-size-base: 1rem;
  --line-height-base: 1.6;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;

  /* Border Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;

  /* Box Shadow */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text-dark);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-secondary);
  color: var(--color-primary);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes (to complement Tailwind, for specific custom elements) */

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-button);
  color: var(--color-text-dark);
  border-color: var(--color-button);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-button);
  border-color: var(--color-button);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
  transform: translateY(-2px);
}

/* Cards & Sections - Subtle Earthy Tones */
.card {
  background-color: var(--color-neutral-100);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.section-bg-100 { background-color: var(--color-neutral-100); }
.section-bg-200 { background-color: var(--color-neutral-200); }
.section-bg-300 { background-color: var(--color-neutral-300); }
.section-bg-400 { background-color: var(--color-neutral-400); }
.section-bg-500 { background-color: var(--color-neutral-500); }
.section-bg-600 { background-color: var(--color-neutral-600); }

/* Forms */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
  color: var(--color-text-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid var(--color-neutral-400);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-dark);
  background-color: var(--color-neutral-100);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(201, 182, 129, 0.2); /* Subtle focus ring */
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Alpine.js Transitions (example for x-show, x-transition) */
[x-cloak] {
  display: none !important;
}

.fade-in-out-enter-active,
.fade-in-out-leave-active {
  transition: opacity 0.3s ease-in-out;
}

.fade-in-out-enter, .fade-in-out-leave-to {
  opacity: 0;
}

/* Premium Minimalism - Specific Enhancements */
.hero-section {
  padding: var(--spacing-xxl) 0;
  text-align: center;
  background-color: var(--color-neutral-200); /* Slightly off-white for depth */
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%),
              linear-gradient(135deg, rgba(201,182,129,0.05) 0%, rgba(90,106,91,0.02) 100%);
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.product-item {
  background-color: var(--color-neutral-100);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
  position: relative;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}

.product-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.product-info {
  padding: var(--spacing-md) var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-family: var(--font-family-secondary);
  font-size: 1.4rem;
  margin-top: 0;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-dark);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.product-actions {
  margin-top: var(--spacing-md);
}

/* Footer Styling */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-text-light);
  padding: var(--spacing-xl) 0;
  font-size: 0.9rem;
}

.footer a {
  color: var(--color-neutral-400);
  border-bottom-color: transparent;
}

.footer a:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
}

.footer-column h4 {
  color: var(--color-secondary);
  font-family: var(--font-family-primary);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-md);
  text-align: center;
  color: var(--color-neutral-400);
}

/* Media Queries */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .hero-section {
    padding: var(--spacing-xl) 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .btn {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.9rem;
  }
  .card {
    padding: var(--spacing-md);
  }
}

/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-neutral-100);
}

::-webkit-scrollbar-thumb {
  background: var(--color-neutral-500);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Selection highlight */
::selection {
  background-color: var(--color-secondary);
  color: var(--color-text-dark);
}

::-moz-selection {
  background-color: var(--color-secondary);
  color: var(--color-text-dark);
}

/* Subtle gold accent border on focus */
*:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: var(--border-radius-sm); /* or match element's border-radius */
}<ctrl63>


/* Cookie Banner Additional Styles for Tailwind */
.cookie-banner-hover-effect:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner-hover-effect:hover {
        transform: none;
    }
}