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

:root {
  --primary-color: #1a1a2e;
  --secondary-color: #e94560;
  --accent-color: #0f3460;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 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: 14px;
  flex: 1;
  min-width: 250px;
}

.privacy-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-buttons a {
  color: var(--secondary-color);
  font-size: 14px;
  text-decoration: underline;
}

.privacy-buttons button {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 10px 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  transition: var(--transition);
}

.privacy-buttons button:hover {
  background: var(--accent-color);
  color: var(--white);
}

.header {
  background: rgba(255, 255, 255, 0.98);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.nav {
  display: flex;
  gap: 10px;
}

.nav-link {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link i {
  font-size: 14px;
}

.nav-link:hover {
  background: var(--bg-light);
  color: var(--secondary-color);
  transform: translateY(-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-color);
  transition: var(--transition);
}

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 0.8s ease;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content .highlight {
  color: var(--secondary-color);
  position: relative;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 14px 35px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-block;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-features {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
}

.hero-feature i {
  color: var(--secondary-color);
  font-size: 16px;
}

.hero-visual {
  position: relative;
  height: 500px;
  animation: fadeInRight 0.8s ease;
}

.hero-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.hero-card:hover {
  transform: scale(1.05) rotate(2deg);
  z-index: 10;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-1 {
  width: 280px;
  height: 350px;
  top: 0;
  left: 0;
  z-index: 3;
}

.hero-card-2 {
  width: 250px;
  height: 300px;
  top: 50px;
  right: 50px;
  z-index: 2;
}

.hero-card-3 {
  width: 200px;
  height: 250px;
  bottom: 0;
  left: 150px;
  z-index: 1;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 35px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: #d63850;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

.intro-section {
  padding: 80px 0;
  background: var(--white);
}

.section-label {
  display: inline-block;
  background: rgba(233, 69, 96, 0.1);
  color: var(--secondary-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.intro-stats {
  display: grid;
  gap: 30px;
}

.stat-item {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.stat-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.featured-products {
  padding: 80px 0;
}

.featured-products h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-info {
  padding: 25px;
  text-align: center;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.product-info p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.process-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.process-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 15px;
  transition: var(--transition);
  border: 2px solid var(--bg-light);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.process-step p {
  font-size: 14px;
  color: var(--text-light);
}

.testimonials {
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: 15px;
  position: relative;
  border: 2px solid var(--bg-light);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

.gallery-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.gallery-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 300px;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-tall {
  grid-row: span 2;
  height: 620px;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px 20px;
  color: var(--white);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.gallery-overlay p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

.values-section {
  padding: 80px 0;
  background: var(--white);
}

.values-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.values-text h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.values-text > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.values-list {
  display: grid;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition);
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-text h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.value-text p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
}

.values-stats {
  display: grid;
  gap: 20px;
}

.stat-box {
  background: linear-gradient(135deg, var(--secondary-color), #d63850);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.stat-box:hover {
  transform: scale(1.05);
}

.stat-box h3 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.stat-box p {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
  letter-spacing: 0.5px;
}

.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 30px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info p {
  margin: 0;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
}

.collection-intro,
.bestsellers-intro {
  padding: 60px 0;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.intro-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.products-showcase {
  padding: 60px 0;
  background: var(--bg-light);
}

.products-showcase h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.showcase-grid {
  display: grid;
  gap: 60px;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  padding: 40px;
  border-radius: 5px;
}

.showcase-item:nth-child(even) {
  direction: rtl;
}

.showcase-item:nth-child(even) > * {
  direction: ltr;
}

.showcase-image img {
  border-radius: 5px;
}

.showcase-details h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.showcase-details p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.showcase-details ul {
  list-style: none;
  margin-bottom: 2rem;
}

.showcase-details ul li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 14px;
}

.showcase-details ul li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.care-guide {
  padding: 60px 0;
}

.care-guide h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.care-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-light);
  border-radius: 5px;
}

.care-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.care-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.care-item p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.products-list {
  padding: 60px 0;
}

.product-list-grid {
  display: grid;
  gap: 60px;
}

.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-detail-image img {
  border-radius: 5px;
}

.product-detail-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-detail-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.product-specs {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 5px;
  margin-bottom: 2rem;
}

.spec-item {
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-item strong {
  color: var(--primary-color);
  margin-right: 10px;
}

.why-choose {
  padding: 60px 0;
  background: var(--bg-light);
}

.why-choose h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-box {
  background: var(--white);
  padding: 35px;
  border-radius: 5px;
  text-align: center;
}

.feature-box i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.feature-box p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.contact-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact-modern-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-modern h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.contact-info-modern p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  align-items: start;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-color), #d63850);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-card-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-card-content p {
  margin: 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-form-modern {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.modern-form {
  display: grid;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  background: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 16px 35px;
  font-size: 15px;
}

.checkbox-group {
  display: block;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: start;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-light);
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.map-section {
  padding: 60px 0;
  background: var(--white);
}

.map-section h2 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.thankyou-section,
.error-section {
  padding: 100px 0;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.thankyou-content h1,
.error-content h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.thankyou-content p,
.error-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.error-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--secondary-color);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1rem;
}

.policy-section {
  padding: 60px 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.policy-date {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 2rem;
}

.policy-content h2 {
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-content h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content strong {
  color: var(--primary-color);
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-visual {
    height: 400px;
    margin: 0 auto;
    max-width: 500px;
  }
  .hero-card-1 {
    width: 250px;
    height: 300px;
  }
  .hero-card-2 {
    width: 220px;
    height: 270px;
    right: 30px;
  }
  .hero-card-3 {
    width: 180px;
    height: 220px;
    left: 120px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-tall {
    grid-row: span 1;
    height: 300px;
  }
  .gallery-wide {
    grid-column: span 1;
  }
  .values-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-item {
    grid-template-columns: 1fr;
  }
  .showcase-item:nth-child(even) {
    direction: ltr;
  }
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-detail-card {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .contact-modern-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  body {
    font-size: 14px;
  }
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 80px 20px 20px;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    max-height: 100vh;
    overflow-y: auto;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-link {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    padding: 60px 0 50px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .hero-visual {
    height: 350px;
  }
  .hero-card-1 {
    width: 200px;
    height: 250px;
  }
  .hero-card-2 {
    width: 180px;
    height: 220px;
    right: 20px;
    top: 80px;
  }
  .hero-card-3 {
    width: 150px;
    height: 180px;
    left: 80px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .intro-section,
  .featured-products,
  .process-section,
  .testimonials,
  .gallery-section,
  .values-section {
    padding: 50px 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .care-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-modern {
    padding: 30px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .error-number {
    font-size: 5rem;
  }
  .thankyou-icon {
    font-size: 4rem;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  body {
    font-size: 13px;
  }
  .hero {
    padding: 50px 0 40px;
  }
  .hero-content h1 {
    font-size: 1.7rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  .hero-visual {
    height: 300px;
  }
  .hero-card-1 {
    width: 170px;
    height: 210px;
  }
  .hero-card-2 {
    width: 150px;
    height: 180px;
    right: 10px;
    top: 100px;
  }
  .hero-card-3 {
    width: 130px;
    height: 150px;
    left: 60px;
  }
  .hero-features {
    flex-direction: column;
    gap: 15px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 12px 25px;
    font-size: 13px;
  }
  .intro-section,
  .featured-products,
  .process-section,
  .testimonials,
  .gallery-section,
  .values-section {
    padding: 40px 0;
  }
  .stat-item,
  .process-step,
  .testimonial-card,
  .feature-box {
    padding: 20px;
  }
  .showcase-item {
    padding: 25px;
  }
  .product-info {
    padding: 20px;
  }
  .contact-form-modern {
    padding: 25px;
  }
  .contact-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .contact-card-icon {
    margin: 0 auto;
  }
  .stat-box {
    padding: 30px 20px;
  }
  .stat-box h3 {
    font-size: 2.5rem;
  }
  .value-item {
    flex-direction: column;
    text-align: center;
  }
  .value-icon {
    margin: 0 auto;
  }
  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }
  .privacy-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .privacy-buttons {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  body {
    font-size: 12px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
  .hero-visual {
    height: 280px;
  }
  .hero-card-1 {
    width: 150px;
    height: 190px;
  }
  .hero-card-2 {
    width: 130px;
    height: 160px;
  }
  .hero-card-3 {
    width: 110px;
    height: 130px;
    left: 50px;
  }
  .logo {
    font-size: 1.3rem;
  }
  .logo i {
    font-size: 1.1rem;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 12px;
  }
  .contact-form-modern {
    padding: 20px;
  }
  .stat-box h3 {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
  h1 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  h3 {
    font-size: 1rem;
  }
  body {
    font-size: 12px;
  }
  .hero {
    padding: 40px 0 30px;
  }
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .hero-content p {
    font-size: 0.85rem;
  }
  .hero-badge {
    font-size: 11px;
    padding: 5px 14px;
  }
  .hero-visual {
    height: 250px;
  }
  .hero-card-1 {
    width: 130px;
    height: 170px;
  }
  .hero-card-2 {
    width: 110px;
    height: 140px;
    right: 5px;
  }
  .hero-card-3 {
    width: 90px;
    height: 110px;
    left: 40px;
  }
  .logo {
    font-size: 1.2rem;
  }
  .logo i {
    font-size: 1rem;
  }
  .nav {
    gap: 8px;
    padding: 15px;
  }
  .nav-link {
    padding: 10px 15px;
    font-size: 13px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 10px 18px;
    font-size: 12px;
  }
  .intro-section,
  .featured-products,
  .process-section,
  .testimonials,
  .gallery-section,
  .values-section {
    padding: 30px 0;
  }
  .stat-item i,
  .care-item i,
  .feature-box i {
    font-size: 2rem;
  }
  .step-number {
    font-size: 2.5rem;
  }
  .contact-form-modern {
    padding: 18px;
    border-radius: 15px;
  }
  .contact-card {
    padding: 18px;
  }
  .contact-card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  .stat-box {
    padding: 25px 18px;
  }
  .stat-box h3 {
    font-size: 1.8rem;
  }
  .value-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  .error-number {
    font-size: 4rem;
  }
  .thankyou-icon {
    font-size: 3rem;
  }
}
