@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400&family=Cinzel:wght@400;600&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --color-bg: #07060A;
  --color-bg-2: #0E0C12;
  --color-bg-3: #16131C;
  --color-gold: #C9A84C;
  --color-gold-light: #E8C96A;
  --color-gold-dim: rgba(201, 168, 76, 0.15);
  --color-parchment: #D4B896;
  --color-parchment-dark: #A08060;
  --color-text: #EDE8DC;
  --color-text-muted: #7A7468;
  --color-text-dark: #1A1714;
  --color-border: rgba(201, 168, 76, 0.2);
  --color-border-strong: rgba(201, 168, 76, 0.5);

  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body: 'EB Garamond', serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --bp-tablet: 768px;
  --bp-desktop: 1024px;
  --bp-wide: 1280px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.8;
  overflow-x: hidden;
}

::selection {
  background: var(--color-gold);
  color: #07060A;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-2);
}

::-webkit-scrollbar-thumb {
  background: var(--color-gold);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-light);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) var(--color-bg-2);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

.section-dark {
  background: var(--color-bg);
}

.section-mid {
  background: var(--color-bg-2);
}

.section-parchment {
  background: var(--color-parchment);
  color: var(--color-text-dark);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--color-gold);
  color: #07060A;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--color-gold);
  color: #07060A;
}

.gold-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.ornament {
  display: block;
  text-align: center;
  color: var(--color-gold);
  letter-spacing: 8px;
  margin: 2rem 0;
  font-size: 14px;
}

.ornament::before {
  content: '❖ ─────── ❖';
}

.card {
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
}

.card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-4px);
}

.product-card {
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

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

.product-img {
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #1a1520 0%, #07060A 100%);
  overflow: hidden;
}

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

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

.product-info {
  padding: 1.25rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 15px;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.product-price {
  color: var(--color-gold);
  font-size: 18px;
  font-family: var(--font-heading);
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-delay-1.active {
  transition-delay: 0.1s;
}

.reveal-delay-2.active {
  transition-delay: 0.2s;
}

.reveal-delay-3.active {
  transition-delay: 0.3s;
}

.reveal-delay-4.active {
  transition-delay: 0.4s;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }

  .section {
    padding: 7rem 0;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 4rem;
  }

  .section {
    padding: 8rem 0;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }
}
