@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --color-primary: #81D8D0;
  --color-silver: #E5E7EB;
  --color-white: #FFFFFF;
  --color-gunmetal: #374151;
  --color-ice: #F3F4F6;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  
  --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-gunmetal);
  background: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

button, .btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: var(--color-gunmetal);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

button:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #6fc9c1;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-luxury);
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
}

.header.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-sm) var(--space-lg);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gunmetal);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.5rem 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-smooth);
}

.nav a:hover::after {
  width: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 1.5rem;
  height: 2px;
  background: var(--color-gunmetal);
  transition: all var(--transition-fast);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

/* Home Hero - Split Screen Luxury Design */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--color-white);
}

.hero-home-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  z-index: 2;
}

.hero-home-right {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, #6fc9c1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-home-right::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(255,255,255,0.03) 50px,
    rgba(255,255,255,0.03) 100px
  );
  animation: slidePattern 20s linear infinite;
}

.hero-home-content {
  position: relative;
  z-index: 3;
}

.hero-home h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--color-gunmetal);
  letter-spacing: -0.02em;
  animation: slideInFromLeft 1s ease-out 0.3s forwards;
}

.hero-home .hero-accent {
  display: inline-block;
  width: 4rem;
  height: 2px;
  background: var(--color-primary);
  margin-bottom: var(--space-md);
  animation: expandWidth 0.8s ease-out 0.6s forwards;
}

.hero-home p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-gunmetal);
  opacity: 0.7;
  margin-bottom: var(--space-lg);
  max-width: 32rem;
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

.hero-home .btn {
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

.hero-home-decorative {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(129, 216, 208, 0.2);
  border-radius: 50%;
  animation: fadeInScale 1.5s ease-out 0.5s forwards;
}

.hero-home-decorative::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  border: 1px solid rgba(129, 216, 208, 0.15);
  border-radius: 50%;
}

/* Apparel Hero - Full Width Image with Elegant Overlay */
.hero-apparel {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-apparel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.9) 100%);
  z-index: 1;
}

.hero-apparel-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 60rem;
  padding: var(--space-xl);
}

.hero-apparel h1 {
  font-size: 5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: translateY(3rem);
  animation: elegantFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.hero-apparel-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  font-weight: 300;
  animation: elegantFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.hero-apparel p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 45rem;
  margin: 0 auto var(--space-lg);
  animation: elegantFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.hero-apparel-floating {
  position: absolute;
  width: 1px;
  height: 8rem;
  background: linear-gradient(180deg, transparent, rgba(129, 216, 208, 0.4), transparent);
  animation: floatVertical 4s ease-in-out infinite;
}

.hero-apparel-floating:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.hero-apparel-floating:nth-child(2) {
  top: 60%;
  right: 20%;
  animation-delay: 1.5s;
  height: 6rem;
}

.hero-apparel-floating:nth-child(3) {
  bottom: 25%;
  left: 25%;
  animation-delay: 3s;
  height: 5rem;
}

/* Jewelry Hero - Layered Geometric Luxury */
.hero-jewelry {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.hero-jewelry::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60rem;
  height: 60rem;
  background: radial-gradient(circle, rgba(129, 216, 208, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero-jewelry::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, rgba(129, 216, 208, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite reverse;
}

.hero-jewelry-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 55rem;
  padding: var(--space-xl);
}

.hero-jewelry h1 {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--color-gunmetal);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
  position: relative;
  animation: scaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

.hero-jewelry h1::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  animation: expandLine 1.2s ease-out 1s forwards;
}

.hero-jewelry-tagline {
  font-size: 1.3rem;
  color: var(--color-gunmetal);
  font-style: italic;
  margin-bottom: var(--space-lg);
  opacity: 0.8;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-jewelry-geometric {
  position: absolute;
  border: 1px solid rgba(129, 216, 208, 0.2);
  animation: fadeInRotate 2s ease-out forwards;
}

.hero-jewelry-geometric:nth-child(1) {
  top: 15%;
  left: 10%;
  width: 8rem;
  height: 8rem;
  transform: rotate(45deg);
  animation-delay: 0.5s;
}

.hero-jewelry-geometric:nth-child(2) {
  top: 25%;
  right: 12%;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  animation-delay: 0.8s;
}

.hero-jewelry-geometric:nth-child(3) {
  bottom: 20%;
  left: 15%;
  width: 5rem;
  height: 5rem;
  transform: rotate(30deg);
  animation-delay: 1.1s;
}

/* Contact Hero - Minimalist Luxury */
.hero-contact {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(90deg, transparent 0%, rgba(129, 216, 208, 0.03) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, rgba(129, 216, 208, 0.03) 50%, transparent 100%);
  background-size: 100px 100px;
  opacity: 0.5;
}

.hero-contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 50rem;
  padding: var(--space-xl);
}

.hero-contact h1 {
  font-size: 4rem;
  font-weight: 300;
  color: var(--color-gunmetal);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
  font-weight: 400;
  animation: elegantSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.hero-contact-divider {
  width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  margin: 0 auto var(--space-lg);
  animation: expandWidth 1s ease-out 0.6s forwards;
}

.hero-contact p {
  font-size: 1.15rem;
  color: var(--color-gunmetal);
  line-height: 1.9;
  opacity: 0.7;
  max-width: 40rem;
  margin: 0 auto;
  font-weight: 300;
  animation: elegantSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}

.hero-contact-accent {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(129, 216, 208, 0.15);
  border-radius: 50%;
  opacity: 0;
  animation: fadeInScale 2s ease-out 0.4s forwards;
}

.hero-contact-accent::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 1px solid rgba(129, 216, 208, 0.1);
  border-radius: 50%;
}

/* Legacy hero styles for backward compatibility */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-ice) 0%, var(--color-white) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 50rem;
  padding: var(--space-md);
  animation: fadeInUp var(--transition-luxury) ease-out;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-gunmetal);
  animation: fadeInUp var(--transition-luxury) 0.2s ease-out;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--color-gunmetal);
  opacity: 0.8;
  animation: fadeInUp var(--transition-luxury) 0.4s ease-out;
}

.section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
}

.container {
  max-width: 75rem;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: 2.5rem;
}

.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: transform var(--transition-luxury);
}

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

.card-content {
  padding: var(--space-md);
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
}

.card-text {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 600;
}

.asymmetric-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-xl);
}

.asymmetric-section:nth-child(even) {
  grid-template-columns: 0.8fr 1.2fr;
}

.asymmetric-section:nth-child(even) .asymmetric-content {
  order: -1;
}

.asymmetric-img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
  transition: transform var(--transition-luxury);
}

.asymmetric-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.asymmetric-content {
  padding: var(--space-md);
}

.overlap-section {
  position: relative;
  margin-top: -5rem;
  z-index: 10;
}

.angled-section {
  position: relative;
  padding: var(--space-xl) var(--space-md);
  background: var(--color-ice);
  transform: skewY(-2deg);
  margin: var(--space-xl) 0;
}

.angled-section > * {
  transform: skewY(2deg);
}

.contact-form {
  max-width: 35rem;
  margin: 0 auto;
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--color-silver);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(129, 216, 208, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: normal;
}

.map-container {
  width: 100%;
  height: 28rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-lg);
  position: relative;
  background: var(--color-ice);
  border: 1px solid rgba(129, 216, 208, 0.2);
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(129, 216, 208, 0.08) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(8%) contrast(1.03) brightness(0.98);
  transition: filter var(--transition-smooth);
  position: relative;
  z-index: 0;
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1.05) brightness(1);
}

/* Map Overlay */
.map-overlay {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(129, 216, 208, 0.2);
  transition: all var(--transition-smooth);
  pointer-events: none;
}

.map-overlay:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.map-overlay-content {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.map-overlay-icon {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.map-overlay-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gunmetal);
  margin: 0;
  white-space: nowrap;
}

.map-info {
  margin-top: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-ice);
  border-radius: var(--radius-md);
  border: 1px solid rgba(129, 216, 208, 0.15);
}

.map-info-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.map-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  text-align: center;
}

.map-info-text {
  font-size: 0.9rem;
  color: var(--color-gunmetal);
  line-height: 1.6;
}

.map-info-text strong {
  color: var(--color-gunmetal);
  font-weight: 600;
}

.map-marker-icon {
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.map-info-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.map-action-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.6rem 1.2rem;
  background: var(--color-white);
  color: var(--color-gunmetal);
  border: 2px solid var(--color-silver);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.map-action-link i {
  font-size: 0.9rem;
  color: var(--color-primary);
}

.map-action-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(129, 216, 208, 0.3);
}

.map-action-link:hover i {
  color: var(--color-white);
}

.map-action-link-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.map-action-link-primary i {
  color: var(--color-white);
}

.map-action-link-primary:hover {
  background: #6fc9c1;
  border-color: #6fc9c1;
}

.map-directions-link {
  color: var(--color-primary);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.map-directions-link:hover {
  text-decoration: underline;
  opacity: 1;
  color: #6fc9c1;
}

.map-external-icon {
  font-size: 0.7rem;
  margin-left: 0.25rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .map-container {
    height: 22rem;
  }
  
  .map-overlay {
    top: var(--space-sm);
    left: var(--space-sm);
    padding: var(--space-xs) var(--space-sm);
  }
  
  .map-overlay-text {
    font-size: 0.75rem;
  }
  
  .map-overlay-icon {
    font-size: 0.95rem;
  }
  
  .map-info {
    padding: var(--space-md);
  }
  
  .map-info-content {
    gap: var(--space-sm);
  }
  
  .map-info-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .map-action-link {
    width: 100%;
    justify-content: center;
  }
}

.footer {
  background: var(--color-gunmetal);
  color: var(--color-white);
  padding: var(--space-md);
  text-align: center;
  font-size: 0.8rem;
}

.footer a {
  color: var(--color-primary);
  margin: 0 var(--space-xs);
}

.footer a:hover {
  text-decoration: underline;
}

/* Modern Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-gunmetal) 0%, #1a1a1a 100%);
  color: var(--color-white);
  z-index: 9999;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 1px solid rgba(129, 216, 208, 0.2);
}

.cookie-consent.active {
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent.hidden {
  display: none !important;
}

.cookie-consent-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-xl);
}

.cookie-consent-content {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.cookie-consent-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, #6fc9c1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(129, 216, 208, 0.3);
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-consent-text-wrapper {
  flex: 1;
}

.cookie-consent-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.cookie-consent-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cookie-consent-link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: all var(--transition-fast);
}

.cookie-consent-link:hover {
  color: #6fc9c1;
  text-decoration: none;
}

.cookie-consent-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-consent-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.cookie-consent-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cookie-consent-btn:hover::before {
  width: 300px;
  height: 300px;
}

.cookie-consent-btn span {
  position: relative;
  z-index: 1;
}

.cookie-consent-btn-accept {
  background: var(--color-primary);
  color: var(--color-gunmetal);
  box-shadow: 0 4px 12px rgba(129, 216, 208, 0.3);
}

.cookie-consent-btn-accept:hover {
  background: #6fc9c1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(129, 216, 208, 0.4);
}

.cookie-consent-btn-decline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-consent-btn-customize {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-btn-customize:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Cookie Settings Panel */
.cookie-settings {
  background: var(--color-white);
  color: var(--color-gunmetal);
  border-top: 1px solid var(--color-silver);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-settings.active {
  max-height: 600px;
  padding: var(--space-lg) var(--space-xl);
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-silver);
}

.cookie-settings-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gunmetal);
  margin: 0;
}

.cookie-settings-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-ice);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gunmetal);
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.cookie-settings-close:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: rotate(90deg);
}

.cookie-settings-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-category {
  padding: var(--space-md);
  background: var(--color-ice);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-silver);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
}

.cookie-category-info {
  flex: 1;
}

.cookie-category-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-gunmetal);
}

.cookie-category-info p {
  font-size: 0.85rem;
  color: var(--color-gunmetal);
  opacity: 0.7;
  line-height: 1.5;
  margin: 0;
}

/* Cookie Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 3.5rem;
  height: 2rem;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-silver);
  transition: all var(--transition-smooth);
  border-radius: 2rem;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  left: 0.25rem;
  bottom: 0.25rem;
  background-color: var(--color-white);
  transition: all var(--transition-smooth);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(1.5rem);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle.disabled .cookie-toggle-slider {
  background-color: var(--color-primary);
  cursor: not-allowed;
}

.cookie-settings-footer {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 2px solid var(--color-silver);
  display: flex;
  justify-content: flex-end;
}


@media (max-width: 768px) {
  .cookie-consent-container {
    padding: var(--space-md) var(--space-lg);
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-bottom: var(--space-md);
  }
  
  .cookie-consent-icon {
    margin-bottom: var(--space-sm);
  }
  
  .cookie-consent-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-consent-btn {
    width: 100%;
  }
  
  .cookie-settings.active {
    padding: var(--space-md) var(--space-lg);
  }
  
  .cookie-category-header {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .cookie-toggle {
    align-self: flex-end;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  animation: fadeIn var(--transition-fast);
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 35rem;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp var(--transition-smooth);
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gunmetal);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-ice);
}

.thank-you {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.thank-you h1 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.error-404 {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-404 h1 {
  font-size: 6rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: all var(--transition-luxury);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-3rem);
  transition: all var(--transition-luxury);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(3rem);
  transition: all var(--transition-luxury);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-luxury);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.floating {
  animation: float 3s ease-in-out infinite;
}

@keyframes slidePattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-4rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 4rem;
    opacity: 1;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes elegantFadeIn {
  from {
    opacity: 0;
    transform: translateY(3rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatVertical {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-2rem) translateX(1rem);
    opacity: 0.7;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 12rem;
  }
}

@keyframes fadeInRotate {
  from {
    opacity: 0;
    transform: rotate(0deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
}

@keyframes elegantSlideIn {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero h1 { font-size: 2.5rem; }
  
  .hero-home {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: var(--space-xl) 0;
  }
  
  .hero-home-left {
    padding: var(--space-lg);
    min-height: 60vh;
  }
  
  .hero-home-right {
    min-height: 40vh;
  }
  
  .hero-home h1 {
    font-size: 3rem;
  }
  
  .hero-apparel h1 {
    font-size: 3.5rem;
  }
  
  .hero-jewelry h1 {
    font-size: 3.5rem;
  }
  
  .hero-contact h1 {
    font-size: 3rem;
  }
  
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  
  .asymmetric-section,
  .asymmetric-section:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-section:nth-child(even) .asymmetric-content {
    order: 0;
  }
}

@media (max-width: 768px) {
  .header {
    padding: var(--space-sm) var(--space-md);
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition-smooth);
  }
  
  .nav.active {
    right: 0;
  }
  
  .burger {
    display: flex;
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 0.95rem;
  }
  
  .hero-home {
    grid-template-columns: 1fr;
  }
  
  .hero-home-left {
    min-height: 50vh;
    padding: var(--space-md);
  }
  
  .hero-home-right {
    min-height: 30vh;
  }
  
  .hero-home h1 {
    font-size: 2.5rem;
  }
  
  .hero-apparel {
    min-height: 70vh;
  }
  
  .hero-apparel h1 {
    font-size: 2.8rem;
  }
  
  .hero-apparel-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-apparel p {
    font-size: 1rem;
  }
  
  .hero-jewelry {
    min-height: 75vh;
  }
  
  .hero-jewelry h1 {
    font-size: 2.8rem;
  }
  
  .hero-jewelry-tagline {
    font-size: 1.1rem;
  }
  
  .hero-contact {
    min-height: 60vh;
  }
  
  .hero-contact h1 {
    font-size: 2.5rem;
  }
  
  .hero-contact p {
    font-size: 1rem;
  }
  
  .hero-jewelry-geometric,
  .hero-apparel-floating {
    display: none;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .error-404 h1 {
    font-size: 4rem;
  }
  
  .thank-you h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 90%;
  }
  
  .header {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  button, .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .card-img {
    height: 12rem;
  }
  
  .asymmetric-img {
    height: 18rem;
  }
  
  .map-container {
    height: 18rem;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 87.5%;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero-home h1 {
    font-size: 2rem;
  }
  
  .hero-apparel h1 {
    font-size: 2.2rem;
  }
  
  .hero-jewelry h1 {
    font-size: 2.2rem;
  }
  
  .hero-contact h1 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .card-content {
    padding: var(--space-sm);
  }
  
  button, .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 85%;
  }
  
  :root {
    --space-xs: 0.4rem;
    --space-sm: 0.75rem;
    --space-md: 1.25rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
  }
  
  /* Header & Navigation */
  .header {
    padding: var(--space-xs) var(--space-xs);
  }
  
  .logo {
    font-size: 1.1rem;
    letter-spacing: 0.01em;
  }
  
  .nav {
    width: 85%;
    padding: var(--space-md);
  }
  
  .nav a {
    font-size: 0.75rem;
    padding: var(--space-sm) 0;
  }
  
  .burger span {
    width: 1.25rem;
  }
  
  /* Hero Sections */
  .hero {
    min-height: 80vh;
  }
  
  .hero h1 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  
  .hero p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  
  .hero-home {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
  }
  
  .hero-home-left {
    padding: var(--space-md) var(--space-sm);
    min-height: 50vh;
  }
  
  .hero-home-right {
    min-height: 25vh;
    padding: var(--space-md);
  }
  
  .hero-home h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-home p {
    font-size: 0.85rem;
    max-width: 100%;
  }
  
  .hero-home-right h2 {
    font-size: 1.5rem;
  }
  
  .hero-home-right p {
    font-size: 0.75rem;
  }
  
  .hero-home-decorative {
    width: 15rem;
    height: 15rem;
    top: 5%;
    right: -10%;
  }
  
  .hero-apparel {
    min-height: 60vh;
    padding: var(--space-md) var(--space-sm);
  }
  
  .hero-apparel h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-apparel-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }
  
  .hero-apparel p {
    font-size: 0.85rem;
    padding: 0 var(--space-sm);
  }
  
  .hero-jewelry {
    min-height: 65vh;
    padding: var(--space-md) var(--space-sm);
  }
  
  .hero-jewelry h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .hero-jewelry-tagline {
    font-size: 0.9rem;
  }
  
  .hero-jewelry-extra {
    font-size: 0.85rem;
    padding: 0 var(--space-sm);
  }
  
  .hero-contact {
    min-height: 50vh;
    padding: var(--space-md) var(--space-sm);
  }
  
  .hero-contact h1 {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
  }
  
  .hero-contact p {
    font-size: 0.85rem;
    padding: 0 var(--space-sm);
  }
  
  .hero-contact-accent {
    width: 8rem;
    height: 8rem;
    top: 15%;
    right: 10%;
  }
  
  /* Sections */
  .section {
    padding: var(--space-lg) var(--space-xs);
  }
  
  .container {
    padding: 0 var(--space-xs);
  }
  
  .section-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    padding: 0 var(--space-xs);
  }
  
  /* Cards */
  .card {
    border-radius: var(--radius-md);
  }
  
  .card-img {
    height: 10rem;
  }
  
  .card-content {
    padding: var(--space-sm);
  }
  
  .card-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
  }
  
  .card-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  .card-price {
    font-size: 1.2rem;
  }
  
  /* Grid */
  .grid {
    gap: var(--space-sm);
  }
  
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  /* Buttons */
  button, .btn {
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    width: 100%;
    text-align: center;
  }
  
  .flex-center {
    flex-direction: column;
    gap: var(--space-xs);
  }
  
  /* Asymmetric Sections */
  .asymmetric-section {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .asymmetric-img {
    height: 15rem;
    border-radius: var(--radius-md);
  }
  
  .asymmetric-content {
    padding: var(--space-sm);
  }
  
  .asymmetric-content h2 {
    font-size: 1.3rem;
  }
  
  .asymmetric-content p {
    font-size: 0.8rem;
  }
  
  /* Forms */
  .contact-form {
    padding: var(--space-md);
    margin: 0 var(--space-xs);
  }
  
  .form-group {
    margin-bottom: var(--space-sm);
  }
  
  .form-group label {
    font-size: 0.75rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
  
  .form-group textarea {
    min-height: 6rem;
  }
  
  .checkbox-group {
    gap: var(--space-xs);
  }
  
  .checkbox-group label {
    font-size: 0.7rem;
    line-height: 1.5;
  }
  
  /* Map */
  .map-container {
    height: 18rem;
    margin-top: var(--space-md);
  }
  
  .map-info {
    padding: var(--space-sm);
    margin-top: var(--space-sm);
  }
  
  .map-info p {
    font-size: 0.75rem;
  }
  
  /* Footer */
  .footer-container {
    padding: var(--space-md) var(--space-xs);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
    text-align: center;
  }
  
  .footer-column h4 {
    font-size: 0.9rem;
    margin-bottom: var(--space-xs);
  }
  
  .footer-column p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  .footer-link {
    font-size: 0.75rem;
    margin-bottom: var(--space-xs);
  }
  
  .footer-divider {
    padding-top: var(--space-sm);
  }
  
  .footer-copyright {
    font-size: 0.7rem;
  }
  
  .footer-legal {
    font-size: 0.65rem;
  }
  
  /* Cookie Consent - Optimized for 320px */
  .cookie-consent {
    padding: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(129, 216, 208, 0.15);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  }
  
  .cookie-consent-container {
    padding: var(--space-sm) var(--space-xs);
    max-width: 100%;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    text-align: center;
  }
  
  .cookie-consent-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    box-shadow: 0 2px 8px rgba(129, 216, 208, 0.25);
  }
  
  .cookie-consent-text-wrapper {
    width: 100%;
    text-align: center;
  }
  
  .cookie-consent-title {
    font-size: 0.95rem;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
    letter-spacing: 0.01em;
  }
  
  .cookie-consent-description {
    font-size: 0.7rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    padding: 0 var(--space-xs);
  }
  
  .cookie-consent-link {
    font-size: 0.7rem;
    word-break: break-word;
  }
  
  .cookie-consent-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-xs);
    justify-content: stretch;
  }
  
  .cookie-consent-btn {
    width: 100%;
    padding: 0.65rem 1rem;
    font-size: 0.7rem;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    min-height: 2.5rem;
  }
  
  .cookie-consent-btn span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .cookie-consent-btn-accept {
    order: 1;
    box-shadow: 0 2px 8px rgba(129, 216, 208, 0.25);
  }
  
  .cookie-consent-btn-decline {
    order: 2;
    border-width: 1.5px;
  }
  
  .cookie-consent-btn-customize {
    order: 3;
    border-width: 1.5px;
    font-size: 0.68rem;
  }
  
  /* Cookie Settings Panel - 320px */
  .cookie-settings {
    max-height: 0;
    overflow: hidden;
  }
  
  .cookie-settings.active {
    max-height: 500px;
    padding: var(--space-sm) var(--space-xs);
    overflow-y: auto;
  }
  
  .cookie-settings-header {
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-xs);
  }
  
  .cookie-settings-header h3 {
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
  }
  
  .cookie-settings-close {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
    align-self: flex-end;
    position: absolute;
    top: var(--space-xs);
    right: var(--space-xs);
  }
  
  .cookie-settings-content {
    gap: var(--space-sm);
  }
  
  .cookie-category {
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
  }
  
  .cookie-category-header {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: flex-start;
  }
  
  .cookie-category-info {
    width: 100%;
  }
  
  .cookie-category-info h4 {
    font-size: 0.85rem;
    margin-bottom: var(--space-xs);
    line-height: 1.3;
  }
  
  .cookie-category-info p {
    font-size: 0.65rem;
    line-height: 1.4;
    opacity: 0.65;
  }
  
  .cookie-toggle {
    width: 3rem;
    height: 1.75rem;
    align-self: flex-end;
    margin-top: var(--space-xs);
  }
  
  .cookie-toggle-slider {
    border-radius: 1.75rem;
  }
  
  .cookie-toggle-slider::before {
    height: 1.25rem;
    width: 1.25rem;
    left: 0.2rem;
    bottom: 0.25rem;
  }
  
  .cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(1.25rem);
  }
  
  .cookie-settings-footer {
    margin-top: var(--space-sm);
    padding-top: var(--space-xs);
  }
  
  .cookie-settings-footer .cookie-consent-btn {
    width: 100%;
    padding: 0.7rem;
    font-size: 0.75rem;
  }
  
  /* Trust Badge */
  .trust-badge {
    padding: var(--space-sm);
    margin-top: var(--space-md);
  }
  
  .trust-badge p:first-child {
    font-size: 0.75rem;
  }
  
  .trust-badge p:last-child {
    font-size: 0.7rem;
  }
  
  /* Icons */
  .icon-large {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
  }
  
  .icon-medium {
    font-size: 1.5rem;
    margin-bottom: var(--space-xs);
  }
  
  /* Typography */
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  h4 { font-size: 1rem; }
  h5 { font-size: 0.9rem; }
  h6 { font-size: 0.85rem; }
  
  .text-lg {
    font-size: 0.9rem;
  }
  
  .text-sm {
    font-size: 0.7rem;
  }
  
  .text-xs {
    font-size: 0.65rem;
  }
  
  .text-xxs {
    font-size: 0.6rem;
  }
  
  /* Container Utilities */
  .container-max-width,
  .container-max-width-large,
  .container-max-width-40 {
    max-width: 100%;
    padding: 0 var(--space-xs);
  }
  
  /* Angled Section */
  .angled-section {
    padding: var(--space-lg) var(--space-xs);
    margin: var(--space-lg) 0;
  }
  
  /* Modal */
  .modal-content {
    padding: var(--space-md);
    width: 95%;
    max-width: 95%;
  }
  
  .modal-close {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 1.25rem;
  }
  
  /* Error & Thank You Pages */
  .error-404 h1 {
    font-size: 3rem;
  }
  
  .thank-you h1 {
    font-size: 1.5rem;
  }
  
  /* Testimonials */
  .testimonial-text {
    font-size: 0.75rem;
    margin-bottom: var(--space-sm);
  }
  
  .testimonial-author {
    font-size: 0.8rem;
  }
  
  /* Contact Hours */
  .contact-hours {
    font-size: 0.7rem;
  }
  
  /* Map Container - 320px */
  .map-container {
    height: 18rem;
  }
  
  .map-overlay {
    top: var(--space-xs);
    left: var(--space-xs);
    padding: 0.4rem 0.6rem;
    max-width: calc(100% - 2 * var(--space-xs));
  }
  
  .map-overlay-content {
    gap: 0.3rem;
  }
  
  .map-overlay-icon {
    font-size: 0.8rem;
  }
  
  .map-overlay-text {
    font-size: 0.65rem;
    font-weight: 500;
  }
  
  .map-info {
    padding: var(--space-sm);
    margin-top: var(--space-sm);
  }
  
  .map-info-content {
    gap: var(--space-xs);
  }
  
  .map-info-item {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
  
  .map-info-text {
    font-size: 0.7rem;
    line-height: 1.4;
  }
  
  .map-marker-icon {
    font-size: 0.9rem;
  }
  
  .map-info-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-xs);
  }
  
  .map-action-link {
    width: 100%;
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    justify-content: center;
  }
  
  .map-action-link i {
    font-size: 0.8rem;
  }
  
  .map-external-icon {
    font-size: 0.6rem;
  }
}

/* Utility Classes - Extracted from inline styles */
.section-bg-ice {
  background: var(--color-ice);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.card-content-center {
  text-align: center;
}

.icon-large {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.icon-medium {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.container-center {
  text-align: center;
}

.container-max-width {
  max-width: 45rem;
  margin: 0 auto;
}

.container-max-width-40 {
  max-width: 40rem;
  margin: 0 auto;
}

.container-max-width-large {
  max-width: 50rem;
  margin: 0 auto;
}

.flex-center {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.text-primary {
  color: var(--color-primary);
}

.text-white {
  color: var(--color-white);
}

.text-gunmetal {
  color: var(--color-gunmetal);
}

.text-italic {
  font-style: italic;
}

.text-sm {
  font-size: 0.85rem;
}

.text-xs {
  font-size: 0.8rem;
}

.text-xxs {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 1.05rem;
}

.opacity-90 {
  opacity: 0.9;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-70 {
  opacity: 0.7;
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-xs {
  margin-bottom: var(--space-xs);
}

.mt-xs {
  margin-top: var(--space-xs);
}

/* Hero Home Right Content */
.hero-home-right-content {
  color: var(--color-white);
  text-align: center;
}

.hero-home-right h2 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: elegantFadeIn 1.2s ease-out 1.5s forwards;
}

.hero-home-right p {
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: elegantFadeIn 1.2s ease-out 1.8s forwards;
}

/* Footer Styles */
.footer-container {
  max-width: 75rem;
  margin: 0 auto;
  padding: var(--space-lg) var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  text-align: left;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.footer-column p {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-column p.footer-business {
  margin-top: var(--space-sm);
}

.footer-link {
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-xs);
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: var(--space-md);
  text-align: center;
}

.footer-copyright {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-bottom: var(--space-xs);
}

.footer-legal {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Trust Section */
.trust-badge {
  text-align: center;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.trust-badge p:first-child {
  font-size: 0.9rem;
  color: var(--color-gunmetal);
  opacity: 0.8;
  margin-bottom: var(--space-sm);
}

.trust-badge p:last-child {
  font-size: 0.85rem;
  color: var(--color-gunmetal);
  opacity: 0.7;
}

/* Button Variants */
.btn-dark {
  background: var(--color-gunmetal);
  color: var(--color-white);
}

.btn-dark:hover {
  background: #2d2d2d;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-gunmetal);
}

.btn-white:hover {
  background: #f0f0f0;
}

/* Cookie Consent Styles */
.cookie-consent-text {
  flex: 1;
  margin-right: var(--space-md);
}

.cookie-consent-text h4 {
  font-size: 1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-white);
}

.cookie-consent-text p {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

.cookie-consent-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--color-white);
  color: var(--color-gunmetal);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--color-white);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-btn-decline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Testimonial Styles */
.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  color: var(--color-primary);
}

/* Modal Styles */
.modal-btn {
  margin-top: var(--space-md);
}

/* Contact Hours */
.contact-hours {
  font-size: 0.8rem;
  margin-top: var(--space-sm);
}

/* Jewelry Hero Extra Text */
.jewelry-hero-extra {
  font-size: 1.1rem;
  color: var(--color-gunmetal);
  opacity: 0.7;
  max-width: 42rem;
  margin: 0 auto;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

@media (max-width: 768px) {
  .cookie-consent-text {
    margin-right: 0;
    margin-bottom: var(--space-sm);
  }
  
  .footer-grid {
    text-align: center;
  }
}
