* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #c9a88a;
  --secondary: #e6d4c4;
  --accent: #f5ebe0;
  --dark: #8b6f47;
  --light: #faf6f1;
  --white: #ffffff;
  --text: #5c4a3a;
  --text-light: #9d8b7a;
  --gradient-1: linear-gradient(135deg, #d4b5a0 0%, #e8d9cc 100%);
  --gradient-2: linear-gradient(135deg, #c9a88a 0%, #e6d4c4 100%);
  --gradient-3: linear-gradient(135deg, #f5ebe0 0%, #faf6f1 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 15px 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.privacy-content p {
  margin: 0;
  font-size: 0.85rem;
  flex: 1;
  min-width: 250px;
}

.privacy-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-actions a {
  color: var(--accent);
  font-size: 0.85rem;
  text-decoration: underline;
}

.privacy-actions button {
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 8px 20px;
  font-size: 0.85rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.privacy-actions button:hover {
  background: var(--secondary);
  color: var(--white);
}

.header {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 138, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 15px 0;
  box-shadow: 0 5px 30px rgba(201, 168, 138, 0.15);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 2px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

.nav a::after {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #b89f8a 0%, #d4b5a0 50%, #e6d4c4 100%);
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(245, 235, 224, 0.4) 0%,
    transparent 70%
  );
}

.hero::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(230, 212, 196, 0.2) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(245, 235, 224, 0.1) 0%,
      transparent 50%
    );
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.03) 50%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(201, 168, 138, 0.05) 50%,
      transparent 70%
    );
  background-size: 200% 200%;
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-stars {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-stars span {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
  animation: twinkle 3s infinite;
}

.hero-stars span:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}
.hero-stars span:nth-child(2) {
  left: 20%;
  top: 40%;
  animation-delay: 0.5s;
}
.hero-stars span:nth-child(3) {
  left: 30%;
  top: 60%;
  animation-delay: 1s;
}
.hero-stars span:nth-child(4) {
  left: 40%;
  top: 30%;
  animation-delay: 1.5s;
}
.hero-stars span:nth-child(5) {
  left: 50%;
  top: 70%;
  animation-delay: 2s;
}
.hero-stars span:nth-child(6) {
  left: 60%;
  top: 50%;
  animation-delay: 0.3s;
}
.hero-stars span:nth-child(7) {
  left: 70%;
  top: 25%;
  animation-delay: 0.8s;
}
.hero-stars span:nth-child(8) {
  left: 80%;
  top: 65%;
  animation-delay: 1.3s;
}
.hero-stars span:nth-child(9) {
  left: 90%;
  top: 45%;
  animation-delay: 1.8s;
}
.hero-stars span:nth-child(10) {
  left: 15%;
  top: 80%;
  animation-delay: 2.3s;
}
.hero-stars span:nth-child(11) {
  left: 25%;
  top: 15%;
  animation-delay: 0.2s;
}
.hero-stars span:nth-child(12) {
  left: 35%;
  top: 85%;
  animation-delay: 0.7s;
}
.hero-stars span:nth-child(13) {
  left: 45%;
  top: 55%;
  animation-delay: 1.2s;
}
.hero-stars span:nth-child(14) {
  left: 55%;
  top: 35%;
  animation-delay: 1.7s;
}
.hero-stars span:nth-child(15) {
  left: 65%;
  top: 75%;
  animation-delay: 2.2s;
}
.hero-stars span:nth-child(16) {
  left: 75%;
  top: 10%;
  animation-delay: 0.4s;
}
.hero-stars span:nth-child(17) {
  left: 85%;
  top: 90%;
  animation-delay: 0.9s;
}
.hero-stars span:nth-child(18) {
  left: 95%;
  top: 20%;
  animation-delay: 1.4s;
}
.hero-stars span:nth-child(19) {
  left: 5%;
  top: 50%;
  animation-delay: 1.9s;
}
.hero-stars span:nth-child(20) {
  left: 12%;
  top: 65%;
  animation-delay: 2.4s;
}
.hero-stars span:nth-child(21) {
  left: 8%;
  top: 35%;
  animation-delay: 0.6s;
}
.hero-stars span:nth-child(22) {
  left: 18%;
  top: 55%;
  animation-delay: 1.1s;
}
.hero-stars span:nth-child(23) {
  left: 28%;
  top: 25%;
  animation-delay: 1.6s;
}
.hero-stars span:nth-child(24) {
  left: 38%;
  top: 75%;
  animation-delay: 2.1s;
}
.hero-stars span:nth-child(25) {
  left: 48%;
  top: 45%;
  animation-delay: 0.1s;
}
.hero-stars span:nth-child(26) {
  left: 58%;
  top: 15%;
  animation-delay: 0.6s;
}
.hero-stars span:nth-child(27) {
  left: 68%;
  top: 85%;
  animation-delay: 1.1s;
}
.hero-stars span:nth-child(28) {
  left: 78%;
  top: 55%;
  animation-delay: 1.6s;
}
.hero-stars span:nth-child(29) {
  left: 88%;
  top: 25%;
  animation-delay: 2.1s;
}
.hero-stars span:nth-child(30) {
  left: 98%;
  top: 75%;
  animation-delay: 0.1s;
}
.hero-stars span:nth-child(31) {
  left: 3%;
  top: 10%;
  animation-delay: 0.5s;
}
.hero-stars span:nth-child(32) {
  left: 13%;
  top: 90%;
  animation-delay: 1s;
}
.hero-stars span:nth-child(33) {
  left: 23%;
  top: 70%;
  animation-delay: 1.5s;
}
.hero-stars span:nth-child(34) {
  left: 33%;
  top: 40%;
  animation-delay: 2s;
}
.hero-stars span:nth-child(35) {
  left: 43%;
  top: 10%;
  animation-delay: 0.3s;
}
.hero-stars span:nth-child(36) {
  left: 53%;
  top: 80%;
  animation-delay: 0.8s;
}
.hero-stars span:nth-child(37) {
  left: 63%;
  top: 60%;
  animation-delay: 1.3s;
}
.hero-stars span:nth-child(38) {
  left: 73%;
  top: 30%;
  animation-delay: 1.8s;
}
.hero-stars span:nth-child(39) {
  left: 83%;
  top: 5%;
  animation-delay: 2.3s;
}
.hero-stars span:nth-child(40) {
  left: 93%;
  top: 95%;
  animation-delay: 0.2s;
}
.hero-stars span:nth-child(41) {
  left: 7%;
  top: 60%;
  animation-delay: 0.7s;
}
.hero-stars span:nth-child(42) {
  left: 17%;
  top: 30%;
  animation-delay: 1.2s;
}
.hero-stars span:nth-child(43) {
  left: 27%;
  top: 50%;
  animation-delay: 1.7s;
}
.hero-stars span:nth-child(44) {
  left: 37%;
  top: 20%;
  animation-delay: 2.2s;
}
.hero-stars span:nth-child(45) {
  left: 47%;
  top: 90%;
  animation-delay: 0.4s;
}
.hero-stars span:nth-child(46) {
  left: 57%;
  top: 65%;
  animation-delay: 0.9s;
}
.hero-stars span:nth-child(47) {
  left: 67%;
  top: 40%;
  animation-delay: 1.4s;
}
.hero-stars span:nth-child(48) {
  left: 77%;
  top: 70%;
  animation-delay: 1.9s;
}
.hero-stars span:nth-child(49) {
  left: 87%;
  top: 35%;
  animation-delay: 2.4s;
}
.hero-stars span:nth-child(50) {
  left: 97%;
  top: 50%;
  animation-delay: 0.1s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  filter: blur(40px);
}

.hero-badge {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-number {
  font-size: 2rem;
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f5ebe0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-text {
  font-size: 0.85rem;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -50px;
}

.shape-3 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: 30%;
}

.shape-4 {
  width: 250px;
  height: 250px;
  top: 20%;
  left: 60%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #faf6f1 50%, #f5ebe0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
  line-height: 1.2;
  position: relative;
}

.hero-content h1::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(230, 217, 245, 0.1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.hero-content .btn-primary {
  box-shadow: 0 15px 50px rgba(201, 168, 138, 0.5),
    0 0 30px rgba(255, 255, 255, 0.2);
  transform-style: preserve-3d;
  position: relative;
  overflow: visible;
}

.hero-content .btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50px;
  opacity: 0;
  transition: all 0.6s ease;
}

.hero-content .btn-primary:hover::after {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0.3;
}

.hero-content .btn-primary:hover {
  box-shadow: 0 20px 60px rgba(201, 168, 138, 0.6),
    0 0 40px rgba(255, 255, 255, 0.3);
  transform: translateY(-5px) scale(1.05);
}

.btn-primary,
.btn-secondary,
.btn-light {
  display: inline-block;
  padding: 15px 40px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  text-align: center;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--gradient-2);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(201, 168, 138, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 138, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-light {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 5px 20px rgba(201, 168, 138, 0.2);
}

.btn-light:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 138, 0.3);
}

.intro {
  padding: 100px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-size: 2.5rem;
}

.intro-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-image {
  position: relative;
}

.intro-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: var(--gradient-3);
  border-radius: 30px;
  z-index: -1;
}

.intro-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(201, 168, 138, 0.3);
}

.philosophy {
  padding: 80px 0;
  background: var(--gradient-1);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.philosophy-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.philosophy-content p {
  font-size: 1.1rem;
  line-height: 2;
  opacity: 0.95;
}

.features {
  padding: 100px 0;
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  transition: all 0.4s ease;
  background: var(--white);
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(201, 168, 138, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(201, 168, 138, 0.2);
  background: var(--gradient-3);
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.showcase {
  padding: 100px 0;
  background: var(--white);
}

.showcase h2 {
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--dark);
  font-size: 2.5rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.showcase-item {
  position: relative;
  overflow: hidden;
  height: 450px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(201, 168, 138, 0.2);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 168, 138, 0.9) 0%,
    rgba(200, 184, 232, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
  opacity: 1;
}

.showcase-item:hover img {
  transform: scale(1.15);
}

.showcase-overlay h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.page-hero {
  padding: 120px 0 80px;
  background: var(--gradient-2);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.page-hero h1 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.products {
  padding: 100px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.product-card {
  background: var(--white);
  border: none;
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(201, 168, 138, 0.15);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(201, 168, 138, 0.25);
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-2);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(201, 168, 138, 0.3);
}

.product-image {
  height: 350px;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-info {
  padding: 30px;
}

.product-info h3 {
  margin-bottom: 0.8rem;
  color: var(--dark);
  font-size: 1.5rem;
}

.product-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
}

.craftsmanship {
  padding: 100px 0;
  background: var(--light);
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}

.craftsmanship-text h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-size: 2.5rem;
}

.craftsmanship-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.craftsmanship-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border: none;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(201, 168, 138, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201, 168, 138, 0.2);
  background: var(--gradient-3);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
}

.custom-orders {
  padding: 80px 0;
  background: var(--gradient-1);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.custom-orders::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.custom-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.custom-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.custom-content p {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.limited-intro {
  padding: 80px 0;
  background: var(--white);
}

.limited-intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.limited-intro-content h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-size: 2.5rem;
}

.limited-intro-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.exclusivity {
  padding: 80px 0;
  background: var(--light);
}

.exclusivity-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.exclusivity-content h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-size: 2.5rem;
}

.exclusivity-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.waitlist {
  padding: 100px 0;
  background: var(--gradient-2);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.waitlist::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.waitlist-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.waitlist-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.waitlist-content p {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
  font-size: 2.5rem;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 2.5rem;
  padding: 20px;
  background: var(--light);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: var(--accent);
  transform: translateX(10px);
}

.info-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-size: 1.1rem;
}

.info-item p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form-wrapper h2 {
  margin-bottom: 2rem;
  color: var(--dark);
  font-size: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 15px 20px;
  border: 2px solid var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-radius: 15px;
  background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 5px 20px rgba(201, 168, 138, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
}

.checkbox-label span {
  flex: 1;
  color: var(--text-light);
}

.map-section {
  padding: 100px 0;
  background: var(--light);
}

.map-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
  font-size: 2.5rem;
}

.map-wrapper {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(201, 168, 138, 0.2);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.thankyou-section,
.error-section {
  padding: 100px 0;
  min-height: calc(100vh - 50px);
  display: flex;
  align-items: center;
  background: var(--light);
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(201, 168, 138, 0.2);
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.error-content h1 {
  font-size: 6rem;
  color: var(--primary);
}

.error-content h2 {
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.thankyou-content p,
.error-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.policy-section {
  padding: 120px 0 100px;
  background: var(--white);
}

.policy-section h1 {
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.policy-date {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 3rem;
}

.policy-content {
  max-width: 900px;
}

.policy-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 2;
}

.footer {
  background: var(--gradient-2);
  color: var(--white);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.footer-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  font-size: 0.9rem;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.copyright {
  font-size: 0.9rem;
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 768px) {
  .logo {
    font-size: 1.4rem;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle span {
    background: var(--dark);
  }

  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 30px 20px;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(201, 168, 138, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    border-radius: 0 0 30px 30px;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-content {
    padding: 20px 15px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-features {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .hero-feature {
    min-width: 120px;
  }

  .hero-buttons {
    gap: 15px;
  }

  .hero-buttons a {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .intro-grid,
  .contact-grid,
  .craftsmanship-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .showcase-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

  .thankyou-actions a,
  .error-actions a {
    width: 100%;
  }

  .craftsmanship-grid {
    grid-template-columns: 1fr;
  }

  .craftsmanship-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .intro-image::before {
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
  }

  .intro-image img {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero {
    min-height: auto;
    padding: 90px 0 50px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero-badge {
    padding: 8px 20px;
    font-size: 0.75rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .feature-number {
    font-size: 1.5rem;
  }

  .feature-text {
    font-size: 0.8rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-light {
    padding: 12px 25px;
    font-size: 0.85rem;
  }

  .intro,
  .features,
  .showcase,
  .products,
  .craftsmanship,
  .contact-section,
  .policy-section {
    padding: 60px 0;
  }

  .philosophy,
  .custom-orders,
  .waitlist {
    padding: 50px 0;
  }

  .page-hero {
    padding: 100px 0 60px;
  }

  .product-image,
  .showcase-item {
    height: 280px;
  }

  .craftsmanship-stats {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .thankyou-content,
  .error-content {
    padding: 40px 25px;
  }

  .intro-image::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }

  .intro-image img {
    height: 300px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 13px;
  }

  .logo {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .hero-badge {
    padding: 6px 15px;
    font-size: 0.7rem;
  }

  .feature-number {
    font-size: 1.3rem;
  }

  .feature-text {
    font-size: 0.75rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .btn-primary,
  .btn-secondary,
  .btn-light {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}
