:root {
  --gold: #FFD700;
  --plum: #580F41;
  --black: #1C1C1C;
  --blue: #0F52BA;
  --rosewood: #65000B;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--black);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--plum);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: relative;
  background: var(--black);
  padding: var(--space-md) 0;
  z-index: 1000;
  transition: transform var(--transition-base);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1001;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.nav {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav a {
  color: var(--gold);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum) 0%, var(--black) 50%, var(--blue) 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: var(--space-xl);
  animation: fadeInUp 1s ease;
}

.hero h1 {
  font-size: 5rem;
  background: linear-gradient(135deg, var(--gold) 0%, #fff 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  margin-bottom: var(--space-lg);
  text-shadow: none;
  letter-spacing: 0.1em;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(15, 82, 186, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.section-alt {
  background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
  position: relative;
}

.section-alt::before {
  background: radial-gradient(circle, rgba(88, 15, 65, 0.08) 0%, transparent 70%);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xxl);
  color: var(--plum);
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: 3rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--plum) 0%, var(--blue) 50%, var(--plum) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 5s ease infinite;
}

@keyframes gradientText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.section-title h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -30px;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
  animation: pulseDot 2s ease-in-out infinite;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: expandLine 1s ease-out;
}

@keyframes pulseDot {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50% { transform: translateY(-50%) scale(1.3); opacity: 0.7; }
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 100px; }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  overflow: hidden;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(15, 82, 186, 0.1) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--plum));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
  z-index: 1;
}

.card:hover::before {
  opacity: 1;
}

.card:hover::after {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card > * {
  position: relative;
  z-index: 2;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-body);
}

.btn:hover {
  background: var(--plum);
  transform: scale(1.05);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: #ffed4e;
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xxl);
  position: relative;
  padding: var(--space-xl) 0;
}

.asymmetric-item {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-base);
  overflow: hidden;
}

.asymmetric-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(15, 82, 186, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.asymmetric-item > * {
  position: relative;
  z-index: 1;
}

.asymmetric-item:nth-child(odd) {
  transform: rotate(-2deg) translateX(-20px);
}

.asymmetric-item:nth-child(even) {
  transform: rotate(2deg) translateX(20px);
}

.asymmetric-item:hover {
  transform: rotate(0deg) translateX(0) translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.asymmetric-item:hover::before {
  opacity: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition-base);
  position: relative;
  transform-style: preserve-3d;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
}

.product-card:hover::before {
  opacity: 1;
  animation: shine 0.6s;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.product-card:hover {
  transform: translateY(-15px) rotateY(5deg) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-info {
  padding: var(--space-lg);
}

.product-title {
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: 1.75rem;
  color: var(--gold);
  font-weight: 700;
  margin-top: var(--space-md);
}

.form-container {
  max-width: 700px;
  margin: var(--space-xl) auto;
  padding: var(--space-xxl);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--gold), var(--blue), var(--plum), var(--rosewood));
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.form-container::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--plum);
  font-weight: 600;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.8125rem;
}

.map-container {
  margin: var(--space-xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--black);
  color: var(--gold);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.75rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.footer-links a {
  color: var(--gold);
  font-size: 0.75rem;
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-page h1 {
  font-size: 6rem;
  color: var(--plum);
  margin-bottom: var(--space-lg);
}

.error-page p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  background: var(--black);
  color: #fff;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  z-index: 10000;
  animation: slideInUp 0.5s ease;
  border: 2px solid var(--gold);
}

.cookie-popup.hidden {
  display: none;
}

.cookie-popup p {
  font-size: 0.8125rem;
  margin-bottom: var(--space-md);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.75rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: var(--space-xxl) var(--space-lg);
    transition: right var(--transition-base);
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    font-size: 1rem;
    padding: var(--space-sm) 0;
  }

  .asymmetric-item {
    transform: none !important;
    margin: 0 !important;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-popup {
    bottom: var(--space-sm);
    right: var(--space-sm);
    left: var(--space-sm);
    max-width: none;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: var(--space-lg);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 11px;
  }

  .container {
    padding: 0 var(--space-xs);
  }

  .header {
    padding: var(--space-sm) 0;
  }

  .logo {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
  }

  .nav-toggle {
    font-size: 1.25rem;
  }

  .hero {
    min-height: 50vh;
    padding: var(--space-md) 0;
  }

  .hero-content {
    padding: var(--space-md);
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    line-height: 1.1;
  }

  .hero p {
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
  }

  .btn {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .section::before,
  .section::after {
    display: none;
  }

  .section-title {
    margin-bottom: var(--space-lg);
  }

  .section-title h2 {
    font-size: 1.5rem;
  }

  .section-title h2::before {
    width: 12px;
    height: 12px;
    left: -18px;
  }

  .section-title h2::after {
    width: 60px;
    height: 3px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .card {
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
  }

  .card p {
    font-size: 0.8125rem;
    line-height: 1.5;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .product-card {
    border-radius: var(--radius-md);
  }

  .product-image {
    height: 200px;
  }

  .product-info {
    padding: var(--space-md);
  }

  .product-title {
    font-size: 1.125rem;
  }

  .product-price {
    font-size: 1.25rem;
  }

  .asymmetric-layout {
    grid-template-columns: none;
    gap: var(--space-md);
    padding: var(--space-md) 0;
  }

  .asymmetric-item {
    padding: var(--space-md);
    margin: 0 !important;
    transform: none !important;
    border-radius: var(--radius-md);
  }

  .asymmetric-item:hover {
    transform: translateY(-5px) scale(1.01) !important;
  }

  .form-container {
    padding: var(--space-md);
    margin: var(--space-md) auto;
  }

  .form-container h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
  }

  .form-group {
    margin-bottom: var(--space-md);
  }

  .form-group label {
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
  }

  .form-group input,
  .form-group textarea {
    padding: var(--space-xs);
    font-size: 0.8125rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .checkbox-group {
    margin-top: var(--space-sm);
  }

  .checkbox-group label {
    font-size: 0.75rem;
  }

  .map-container {
    height: 300px;
    margin: var(--space-md) 0;
  }

  .footer {
    padding: var(--space-md) 0;
    font-size: 0.6875rem;
  }

  .footer-content {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
    width: 100%;
  }

  .footer-links a {
    font-size: 0.6875rem;
  }

  .cookie-popup {
    bottom: var(--space-xs);
    right: var(--space-xs);
    left: var(--space-xs);
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }

  .cookie-popup p {
    font-size: 0.75rem;
    margin-bottom: var(--space-sm);
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
    margin: 0;
  }

  .error-page {
    min-height: 60vh;
    padding: var(--space-md);
  }

  .error-page h1 {
    font-size: 4rem;
  }

  .error-page p {
    font-size: 0.875rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 0.8125rem;
  }

  .btn-gold {
    padding: var(--space-xs) var(--space-md);
  }
}

