:root {
  --color-black: #0A0A0A;
  --color-gray: #22252B;
  --color-teal: #0F3B42;
  --color-magenta: #FF2EDB;
  --color-silver: #D1D5DB;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(255, 46, 219, 0.3);
  --shadow-luxury: 0 12px 48px rgba(255, 46, 219, 0.15), 0 4px 16px rgba(15, 59, 66, 0.2);
  --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 46, 219, 0.1);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  --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;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-silver);
  background-color: var(--color-black);
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 46, 219, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(15, 59, 66, 0.05) 0%, transparent 50%);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-silver);
  letter-spacing: 0.05em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-magenta);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-silver);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  position: relative;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: transparent;
  transition: all var(--transition-base);
}

.header-scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-magenta);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--transition-base);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-magenta);
  transition: width var(--transition-slow);
}

.logo:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-silver);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu.active {
  transform: translateX(0);
}

.nav-link {
  color: var(--color-silver);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-magenta);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--space-xxl) var(--space-md);
}

.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;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-silver) 0%, var(--color-magenta) 50%, var(--color-silver) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  position: relative;
}

.hero-title::before {
  content: attr(title);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: pulse 3s ease-in-out infinite;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-silver);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-magenta);
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 46, 219, 0.5);
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: var(--space-xxl) auto;
  perspective: 1200px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  transform-style: preserve-3d;
}

.slider-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: rotateY(90deg) translateZ(300px);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slider-slide.active {
  opacity: 1;
  transform: rotateY(0deg) translateZ(0);
  z-index: 10;
}

.slider-slide.prev {
  transform: rotateY(-90deg) translateZ(300px);
  z-index: 5;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.slider-btn {
  background: var(--color-gray);
  border: 2px solid var(--color-magenta);
  color: var(--color-silver);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  font-size: 1.2rem;
}

.slider-btn:hover {
  background: var(--color-magenta);
  transform: scale(1.1);
}

.section {
  padding: var(--space-xxl) var(--space-md);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-magenta), transparent);
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.asymmetric-item {
  padding: var(--space-lg);
  background: var(--color-gray);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-luxury);
  border: 1px solid rgba(255, 46, 219, 0.1);
}

.asymmetric-item:nth-child(odd) {
  transform: rotate(-1deg);
}

.asymmetric-item:nth-child(even) {
  transform: rotate(1deg);
}

.asymmetric-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 46, 219, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.asymmetric-item:hover::after {
  opacity: 1;
}

.asymmetric-item:hover {
  transform: rotate(0deg) scale(1.03) translateY(-5px);
  box-shadow: var(--shadow-luxury);
  border-color: rgba(255, 46, 219, 0.3);
}

.asymmetric-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 46, 219, 0.1), transparent);
  transition: left 0.5s;
}

.asymmetric-item:hover::before {
  left: 100%;
}

.overlap-section {
  position: relative;
  margin: var(--space-xxl) 0;
}

.overlap-content {
  background: var(--color-gray);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  margin-top: -50px;
  margin-left: 5%;
  width: 90%;
}

.overlap-image {
  width: 80%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-md);
}

.contact-form {
  background: var(--color-gray);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 46, 219, 0.2);
  box-shadow: var(--shadow-luxury);
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 46, 219, 0.15) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.contact-form::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(15, 59, 66, 0.1) 0%, transparent 70%);
  animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.form-group {
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  color: var(--color-silver);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  background: var(--color-black);
  border: 2px solid var(--color-teal);
  border-radius: var(--radius-md);
  color: var(--color-silver);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-magenta);
  box-shadow: 0 0 0 3px rgba(255, 46, 219, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-top: 2px;
}

.checkbox-label {
  font-size: 0.85rem;
  line-height: 1.4;
}

.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(--color-gray);
  padding: var(--space-lg);
  text-align: center;
  margin-top: var(--space-xxl);
  border-top: 1px solid var(--color-teal);
}

.footer-text {
  font-size: 0.85rem;
  color: var(--color-silver);
  opacity: 0.7;
}

.cookie-popup {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: var(--color-gray);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  border: 2px solid var(--color-magenta);
  max-width: 500px;
  margin: 0 auto;
  display: none;
}

.cookie-popup.active {
  display: block;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  margin-bottom: var(--space-md);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn-accept {
  background: var(--color-magenta);
  color: var(--color-black);
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
}

.btn-accept:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.error-content h1 {
  font-size: 8rem;
  color: var(--color-magenta);
  margin-bottom: var(--space-lg);
  line-height: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.product-card {
  background: var(--color-gray);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: all var(--transition-luxury);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 46, 219, 0.1), transparent);
  transition: left 0.6s;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  border-color: var(--color-magenta);
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-premium);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.product-title {
  margin-bottom: var(--space-sm);
  color: var(--color-magenta);
}

.product-price {
  font-size: 1.5rem;
  color: var(--color-silver);
  font-family: var(--font-display);
  margin-top: var(--space-md);
}

.thank-you-content {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-magenta);
  margin-bottom: var(--space-lg);
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 46, 219, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 46, 219, 0.6), 0 0 60px rgba(255, 46, 219, 0.3);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.luxury-animate {
  animation: fadeInUp 0.8s ease-out;
}

.luxury-float {
  animation: float 6s ease-in-out infinite;
}

.luxury-shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 46, 219, 0.4), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.luxury-glow {
  animation: glow 2s ease-in-out infinite;
}

.fade-in-scale {
  animation: fadeInScale 0.6s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-gray);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: var(--space-xxl);
    gap: var(--space-lg);
    transition: right var(--transition-base);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    right: 0;
  }

  .slider-wrapper {
    height: 300px;
  }

  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    transform: rotate(0deg);
  }

  .overlap-content {
    margin-left: 0;
    width: 100%;
    margin-top: var(--space-md);
  }

  .overlap-image {
    width: 100%;
    transform: rotate(0deg);
  }

  .cookie-popup {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .section {
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-section {
    min-height: 80vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .slider-wrapper {
    height: 250px;
  }

  .contact-form {
    padding: var(--space-md);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }

  .container {
    padding: 0 var(--space-xs);
  }

  .header-container {
    padding: var(--space-sm) var(--space-xs);
  }

  .logo {
    font-size: 1.2rem;
  }

  .nav-toggle {
    font-size: 1.2rem;
  }

  .nav-menu {
    width: 85%;
    padding-top: var(--space-xl);
  }

  .hero-section {
    min-height: 70vh;
    padding: var(--space-md) var(--space-xs);
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
  }

  .section {
    padding: var(--space-md) var(--space-xs);
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p {
    font-size: 0.85rem;
  }

  .btn-primary {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
  }

  .slider-wrapper {
    height: 200px;
  }

  .slider-controls {
    gap: var(--space-sm);
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .asymmetric-layout {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .asymmetric-item {
    padding: var(--space-md);
    transform: rotate(0deg) !important;
  }

  .asymmetric-item:hover {
    transform: scale(1.01) translateY(-3px) !important;
  }

  .overlap-content {
    margin-left: 0 !important;
    width: 100% !important;
    margin-top: var(--space-sm) !important;
    padding: var(--space-md);
  }

  .overlap-image {
    width: 100% !important;
    transform: rotate(0deg) !important;
    height: 250px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .product-card {
    padding: var(--space-md);
  }

  .product-image {
    height: 150px;
  }

  .product-price {
    font-size: 1.3rem;
  }

  .contact-wrapper {
    padding: var(--space-md) var(--space-xs);
  }

  .contact-form {
    padding: var(--space-md);
  }

  .form-input,
  .form-textarea {
    padding: var(--space-sm);
    font-size: 0.9rem;
  }

  .form-textarea {
    min-height: 120px;
  }

  .map-container {
    height: 250px;
  }

  .cookie-popup {
    left: var(--space-xs);
    right: var(--space-xs);
    bottom: var(--space-xs);
    padding: var(--space-md);
  }

  .cookie-content h3 {
    font-size: 1.1rem;
  }

  .cookie-content p {
    font-size: 0.8rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .btn-accept {
    width: 100%;
  }

  .error-content h1 {
    font-size: 5rem;
  }

  .error-content h2 {
    font-size: 1.5rem;
  }

  .thank-you-icon {
    font-size: 3.5rem;
  }

  .thank-you-content h1 {
    font-size: 1.8rem;
  }

  .footer {
    padding: var(--space-md) var(--space-xs);
  }

  .footer-text {
    font-size: 0.75rem;
  }

  .footer-text a {
    display: inline-block;
    margin: 0 2px;
  }

  .luxury-glow,
  .luxury-float {
    animation: none;
  }

  .slide-in-left,
  .slide-in-right,
  .fade-in-scale {
    animation: fadeInUp 0.4s ease-out;
  }

  [class*="slide-in"],
  [class*="fade-in"] {
    animation: fadeInUp 0.4s ease-out;
  }

  .hero-canvas {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 var(--space-xs);
  }

  .slider-container {
    margin: var(--space-md) auto;
  }

  .slider-image {
    border-radius: var(--radius-md);
  }

  .nav-link {
    font-size: 0.85rem;
    padding: var(--space-xs) var(--space-sm);
  }

  .checkbox-group {
    flex-wrap: wrap;
  }

  .checkbox-label {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .form-label {
    font-size: 0.8rem;
    margin-bottom: var(--space-xs);
  }

  .section-title::after {
    width: 60px;
    height: 3px;
  }

  .overlap-section {
    display: flex;
    flex-direction: column;
  }

  .overlap-section > * {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .thank-you-content {
    padding: var(--space-lg) var(--space-xs);
    min-height: 50vh;
  }

  .error-page {
    padding: var(--space-md) var(--space-xs);
  }

  .error-content {
    padding: var(--space-md);
  }

  body {
    background-image: none;
  }

  .asymmetric-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
  }

  .asymmetric-item p {
    font-size: 0.8rem;
    margin-bottom: var(--space-xs);
  }

  .asymmetric-item [style*="font-size"] {
    font-size: 1.5rem !important;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .btn-primary::before {
    display: none;
  }

  .btn-primary:hover {
    transform: none;
  }

  .contact-form::before,
  .contact-form::after {
    display: none;
  }

  iframe {
    max-width: 100%;
    height: auto;
  }

  .map-container iframe {
    height: 250px;
  }

  .cookie-popup {
    max-width: calc(100% - var(--space-xs) * 2);
  }

  .hero-subtitle {
    line-height: 1.4;
  }

  a {
    word-break: break-word;
  }

  .footer-text {
    line-height: 1.5;
    word-break: break-word;
  }

  .footer-text a {
    word-break: normal;
  }

  .form-group {
    margin-bottom: var(--space-md);
  }

  .contact-form {
    position: relative;
    z-index: 1;
  }

  .asymmetric-item::after {
    display: none;
  }

  .asymmetric-item::before {
    display: none;
  }

  .product-card::before {
    display: none;
  }

  .asymmetric-item:hover {
    box-shadow: var(--shadow-sm);
  }

  .product-card:hover {
    box-shadow: var(--shadow-sm);
  }
}
