:root {
  --color-navy: #0A1F44;
  --color-gold: #B8860B;
  --color-sand: #F0EDE5;
  --color-mahogany: #6A4F4B;
  --color-teal: #3C6378;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-hero: 3rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  
  --shadow-sm: 0 2px 4px rgba(10, 31, 68, 0.1);
  --shadow-md: 0 4px 8px rgba(10, 31, 68, 0.15);
  --shadow-lg: 0 8px 16px rgba(10, 31, 68, 0.2);
  --shadow-xl: 0 12px 24px rgba(10, 31, 68, 0.25);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-navy);
  background-color: var(--color-sand);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--font-size-hero);
}

h2 {
  font-size: var(--font-size-xxl);
}

h3 {
  font-size: var(--font-size-xl);
}

h4 {
  font-size: var(--font-size-lg);
}

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-wrapper {
  position: relative;
  z-index: 1000;
}

.header {
  background: rgba(240, 237, 229, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-md) 0;
  transition: transform var(--transition-smooth), opacity var(--transition-smooth);
  transform: translateY(0);
  opacity: 1;
}

.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-navy);
  letter-spacing: 0.05em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-xl);
  color: var(--color-navy);
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu a {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-base);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-teal) 100%);
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#accessories-section-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-sand);
  padding: var(--space-xl);
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
  color: var(--color-sand);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-xl);
  background: var(--color-gold);
  color: var(--color-navy);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.btn:hover {
  background: var(--color-mahogany);
  color: var(--color-sand);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

.section {
  padding: var(--space-xxl) 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: var(--color-navy);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-sm);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-gold);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  background: var(--color-sand);
}

.product-info {
  padding: var(--space-md);
}

.product-title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
  color: var(--color-navy);
}

.product-price {
  font-size: var(--font-size-xl);
  color: var(--color-gold);
  font-weight: 700;
  margin-top: var(--space-sm);
}

.asymmetric-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.asymmetric-item {
  position: relative;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.asymmetric-item:nth-child(odd) {
  transform: rotate(-1deg);
  margin-left: var(--space-lg);
}

.asymmetric-item:nth-child(even) {
  transform: rotate(1deg);
  margin-right: var(--space-lg);
}

.contact-section {
  background: var(--color-navy);
  color: var(--color-sand);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-wrapper {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sand);
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm);
  border: 2px solid rgba(240, 237, 229, 0.3);
  border-radius: var(--radius-md);
  background: rgba(240, 237, 229, 0.1);
  color: var(--color-sand);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(240, 237, 229, 0.15);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: var(--font-size-sm);
  line-height: 1.5;
}

.footer {
  background: var(--color-navy);
  color: var(--color-sand);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: var(--font-size-sm);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: var(--color-sand);
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-navy);
  color: var(--color-sand);
  padding: var(--space-md);
  box-shadow: var(--shadow-xl);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: var(--space-xl);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.thank-you-content {
  max-width: 600px;
  animation: fadeInScale 0.8s ease-out;
}

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-content {
  max-width: 600px;
}

.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-md);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-navy);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    transition: right var(--transition-smooth);
    z-index: 9999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu a {
    color: var(--color-sand);
    font-size: var(--font-size-base);
  }
  
  .hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .asymmetric-item:nth-child(odd),
  .asymmetric-item:nth-child(even) {
    transform: none;
    margin-left: 0;
    margin-right: 0;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .error-code {
    font-size: 5rem;
  }
  
  .policy-hero {
    padding: var(--space-xl) 0;
  }
  
  .policy-hero h1 {
    font-size: 2rem;
  }
  
  .policy-card {
    padding: var(--space-md);
  }
  
  .modern-404-code {
    font-size: 6rem;
  }
  
  .thank-you-icon {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .thank-you-buttons {
    flex-direction: column;
  }
  
  .thank-you-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-hero: 2rem;
    --font-size-xxl: 1.5rem;
    --font-size-xl: 1.25rem;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .product-image {
    height: 250px;
  }
  
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .map-container {
    height: 300px;
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.375rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.25rem;
    --space-xl: 1.5rem;
    --space-xxl: 2rem;
    
    --font-size-xs: 0.7rem;
    --font-size-sm: 0.8rem;
    --font-size-base: 0.9rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.1rem;
    --font-size-xl: 1.25rem;
    --font-size-xxl: 1.5rem;
    --font-size-hero: 1.75rem;
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .header {
    padding: var(--space-sm) 0;
  }
  
  .header-content {
    padding: 0 var(--space-sm);
  }
  
  .logo {
    font-size: var(--font-size-lg);
  }
  
  .nav-toggle {
    font-size: var(--font-size-lg);
    padding: var(--space-xs);
  }
  
  .nav-menu {
    width: 100%;
    right: -100%;
    padding: var(--space-lg);
  }
  
  .nav-menu a {
    font-size: var(--font-size-base);
    padding: var(--space-xs) 0;
  }
  
  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .split-hero-image {
    min-height: 40vh;
  }
  
  .split-hero-content {
    padding: var(--space-lg);
  }
  
  .split-hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
  }
  
  .split-hero-content p {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-lg);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-xs);
    width: 100%;
    text-align: center;
  }
  
  .hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .hero-content {
    padding: var(--space-md);
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
  }
  
  .hero-content p {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-lg);
  }
  
  .full-image-section {
    min-height: 50vh;
  }
  
  .full-image-content {
    padding: var(--space-md);
  }
  
  .full-image-content h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
  }
  
  .full-image-content p {
    font-size: var(--font-size-sm);
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  #accessories-section-1 {
    grid-template-columns: none;
  }

  .magazine-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(auto, 200px);
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-sm);
  }
  
  .magazine-item {
    grid-column: span 1;
    grid-row: span 2;
  }
  
  .magazine-item-large,
  .magazine-item-medium,
  .magazine-item-small {
    grid-column: span 1;
    grid-row: span 2;
  }
  
  .magazine-overlay {
    padding: var(--space-md);
  }
  
  .magazine-overlay h3 {
    font-size: var(--font-size-lg);
  }
  
  .magazine-overlay .product-price {
    font-size: var(--font-size-base);
  }
  
  .diagonal-section {
    padding: var(--space-lg) 0;
  }
  
  .diagonal-content {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .diagonal-content h2 {
    font-size: 1.5rem;
  }
  
  .overlap-section {
    margin-top: -50px;
    padding: var(--space-lg) 0;
  }
  
  .overlap-card {
    padding: var(--space-lg);
    margin: 0 var(--space-sm);
  }
  
  .overlap-card::before {
    width: 60px;
    height: 60px;
    top: -15px;
  }
  
  .overlap-card h2 {
    font-size: 1.5rem;
  }
  
  .contact-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .contact-info-panel {
    padding: var(--space-lg);
  }
  
  .contact-info-panel h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
  }
  
  .contact-info-item {
    margin-bottom: var(--space-md);
  }
  
  .contact-info-item i {
    font-size: var(--font-size-lg);
    margin-right: var(--space-sm);
    width: 20px;
  }
  
  .contact-info-item h3 {
    font-size: var(--font-size-base);
  }
  
  .contact-info-item p {
    font-size: var(--font-size-sm);
  }
  
  .contact-form-panel {
    padding: var(--space-lg);
  }
  
  .contact-form-panel h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
  }
  
  .form-group {
    margin-bottom: var(--space-md);
  }
  
  .form-group label {
    font-size: var(--font-size-xs);
  }
  
  .form-group input,
  .form-group textarea {
    padding: var(--space-sm);
    font-size: var(--font-size-base);
  }
  
  .form-group textarea {
    min-height: 120px;
  }
  
  .checkbox-group {
    margin-top: var(--space-sm);
  }
  
  .checkbox-group label {
    font-size: var(--font-size-xs);
    line-height: 1.4;
  }
  
  .large-number {
    font-size: 3rem;
    top: var(--space-sm);
    right: var(--space-sm);
  }
  
  .text-block-large {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-sm);
  }
  
  .feature-showcase-item {
    padding: var(--space-md);
  }
  
  .feature-showcase-item i {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }
  
  .feature-showcase-item h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xs);
  }
  
  .feature-showcase-item p {
    font-size: var(--font-size-sm);
  }
  
  .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: var(--font-size-base);
  }
  
  .product-price {
    font-size: var(--font-size-lg);
  }
  
  .map-container {
    height: 250px;
    margin: var(--space-md) var(--space-sm);
  }
  
  .policy-hero {
    padding: var(--space-lg) 0;
  }
  
  .policy-hero h1 {
    font-size: 1.5rem;
  }
  
  .policy-hero p {
    font-size: var(--font-size-sm);
  }
  
  .policy-content {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .policy-meta {
    padding: var(--space-sm);
    font-size: var(--font-size-xs);
  }
  
  .policy-card {
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .policy-card h2 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
  }
  
  .policy-card h2 i {
    font-size: 1.25rem;
  }
  
  .policy-card p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
  }
  
  .policy-card ul,
  .policy-card ol {
    margin-left: var(--space-md);
    font-size: var(--font-size-sm);
  }
  
  .policy-card li {
    margin-bottom: var(--space-xs);
    line-height: 1.6;
  }
  
  .policy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
  }
  
  .policy-feature {
    padding: var(--space-md);
  }
  
  .policy-feature i {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }
  
  .policy-feature h3 {
    font-size: var(--font-size-base);
  }
  
  .policy-feature p {
    font-size: var(--font-size-xs);
  }
  
  .modern-404 {
    min-height: 70vh;
  }
  
  .modern-404-content {
    padding: var(--space-lg);
  }
  
  .modern-404-code {
    font-size: 5rem;
    margin-bottom: var(--space-sm);
  }
  
  .modern-404 h1 {
    font-size: 1.5rem;
  }
  
  .modern-404 p {
    font-size: var(--font-size-base);
  }
  
  .thank-you-modern {
    min-height: 70vh;
  }
  
  .thank-you-content-modern {
    padding: var(--space-lg);
    margin: var(--space-md);
  }
  
  .thank-you-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: var(--space-md);
  }
  
  .thank-you-content-modern h1 {
    font-size: 1.5rem;
  }
  
  .thank-you-content-modern p {
    font-size: var(--font-size-base);
  }
  
  .thank-you-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .thank-you-buttons .btn {
    width: 100%;
  }
  
  .footer {
    padding: var(--space-md) 0;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
  }
  
  .footer-links a {
    font-size: var(--font-size-xs);
  }
  
  .footer p {
    font-size: var(--font-size-xs);
  }
  
  .cookie-popup {
    padding: var(--space-sm);
  }
  
  .cookie-content {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .cookie-text {
    font-size: var(--font-size-xs);
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons .btn {
    width: 100%;
    font-size: var(--font-size-xs);
    padding: var(--space-xs) var(--space-md);
  }
}

.policy-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-teal) 50%, var(--color-mahogany) 100%);
  padding: var(--space-xxl) 0;
  text-align: center;
  color: var(--color-sand);
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.policy-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(60, 99, 120, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.policy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.policy-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-md);
  color: var(--color-sand);
}

.policy-hero p {
  font-size: var(--font-size-lg);
  opacity: 0.95;
}

.policy-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-xxl) var(--space-md);
}

.policy-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  border-left: 4px solid var(--color-gold);
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.policy-card h2 {
  color: var(--color-navy);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.policy-card h2 i {
  color: var(--color-gold);
  font-size: 1.5rem;
}

.policy-card p {
  color: var(--color-navy);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.policy-card ul,
.policy-card ol {
  margin-left: var(--space-lg);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.policy-card li {
  margin-bottom: var(--space-xs);
  line-height: 1.8;
  color: var(--color-navy);
}

.policy-card a {
  color: var(--color-gold);
  font-weight: 500;
  transition: color var(--transition-base);
}

.policy-card a:hover {
  color: var(--color-mahogany);
}

.policy-meta {
  background: var(--color-sand);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xl);
  text-align: center;
  color: var(--color-navy);
  font-size: var(--font-size-sm);
}

.modern-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-teal) 100%);
  position: relative;
  overflow: hidden;
}

.modern-404::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.3;
  }
}

.modern-404-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-sand);
  max-width: 700px;
  padding: var(--space-xl);
}

.modern-404-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-md);
  text-shadow: 0 4px 20px rgba(184, 134, 11, 0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.modern-404 h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-md);
  color: var(--color-sand);
}

.modern-404 p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.thank-you-modern {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-sand) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.thank-you-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.thank-you-content-modern {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  animation: fadeInScale 0.8s ease-out;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-mahogany) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: var(--shadow-lg);
  animation: scaleIn 0.6s ease-out 0.2s both;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-content-modern h1 {
  color: var(--color-navy);
  margin-bottom: var(--space-md);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.thank-you-content-modern p {
  color: var(--color-navy);
  font-size: var(--font-size-lg);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.thank-you-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-xl);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.policy-feature {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-base);
}

.policy-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.policy-feature i {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.policy-feature h3 {
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
  font-size: var(--font-size-lg);
}

.policy-feature p {
  color: var(--color-navy);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.split-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.split-hero-image {
  position: relative;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: transform var(--transition-slow);
}

.split-hero-image:hover img {
  transform: scale(1.05);
}

.split-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xxl);
  background: var(--color-sand);
  position: relative;
}

.split-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--color-navy);
}

.split-hero-content p {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xl);
  color: var(--color-navy);
  opacity: 0.8;
}

.full-image-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  overflow: hidden;
}

.full-image-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 31, 68, 0.8) 0%, rgba(60, 99, 120, 0.6) 100%);
  z-index: 1;
}

.full-image-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.full-image-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-sand);
  max-width: 800px;
  padding: var(--space-xl);
}

.full-image-content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
  color: var(--color-sand);
}

.diagonal-section {
  position: relative;
  padding: var(--space-xxl) 0;
  background: var(--color-sand);
  overflow: hidden;
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-navy);
  transform: skewY(-2deg);
  transform-origin: top left;
  z-index: 0;
}

.diagonal-content {
  position: relative;
  z-index: 1;
  padding: var(--space-xxl) var(--space-md);
  color: var(--color-sand);
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 200px);
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-md);
}

.magazine-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-sand);
  transition: all var(--transition-smooth);
}

.magazine-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.magazine-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.magazine-item:hover img {
  transform: scale(1.1);
}

.magazine-item-large {
  grid-column: span 6;
  grid-row: span 3;
}

.magazine-item-medium {
  grid-column: span 6;
  grid-row: span 2;
}

.magazine-item-small {
  grid-column: span 3;
  grid-row: span 2;
}

.magazine-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 31, 68, 0.9), transparent);
  padding: var(--space-lg);
  color: var(--color-sand);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.magazine-item:hover .magazine-overlay {
  transform: translateY(0);
}

.magazine-overlay h3 {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xs);
  color: var(--color-sand);
}

.magazine-overlay .product-price {
  font-size: var(--font-size-lg);
  color: var(--color-gold);
  font-weight: 700;
}

.overlap-section {
  position: relative;
  padding: var(--space-xxl) 0;
  margin-top: -100px;
  z-index: 2;
}

.overlap-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-xxl);
  box-shadow: var(--shadow-xl);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.overlap-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: var(--color-gold);
  border-radius: 50%;
  z-index: -1;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 80vh;
  position: relative;
}

.contact-info-panel {
  background: var(--color-navy);
  color: var(--color-sand);
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-xl);
  color: var(--color-sand);
  position: relative;
  z-index: 2;
}

.contact-info-item {
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.contact-info-item i {
  font-size: var(--font-size-xl);
  color: var(--color-gold);
  margin-right: var(--space-md);
  width: 30px;
}

.contact-info-item h3 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xs);
  color: var(--color-sand);
}

.contact-info-item p,
.contact-info-item a {
  color: var(--color-sand);
  opacity: 0.9;
  font-size: var(--font-size-base);
}

.contact-form-panel {
  background: white;
  padding: var(--space-xxl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: var(--space-xl);
  color: var(--color-navy);
}



.large-number {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: 'Playfair Display', serif;
}

.text-block-large {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  color: var(--color-navy);
  margin-bottom: var(--space-lg);
}

.feature-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  padding: var(--space-xl) var(--space-md);
}
#accessories-section-2 {
  grid-template-columns: none;
}
.feature-showcase-item {
  text-align: center;
  padding: var(--space-xl);
  background: white;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.feature-showcase-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-mahogany));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-showcase-item:hover::before {
  transform: scaleX(1);
}

.feature-showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-showcase-item i {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.feature-showcase-item h3 {
  color: var(--color-navy);
  margin-bottom: var(--space-sm);
}

.feature-showcase-item p {
  color: var(--color-navy);
  opacity: 0.8;
}

@media (max-width: 968px) {
  .split-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .split-hero-image {
    min-height: 50vh;
  }
  
  .magazine-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(auto, 200px);
  }
  
  .magazine-item-large,
  .magazine-item-medium {
    grid-column: span 6;
  }
  
  .magazine-item-small {
    grid-column: span 3;
  }
  
  .contact-split {
    grid-template-columns: 1fr;
  }
  
  .feature-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .magazine-item-small {
    grid-column: span 6;
  }
  
  .overlap-section {
    margin-top: -50px;
  }
  
  .overlap-card {
    padding: var(--space-lg);
  }
}
