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

:root {
  --primary: #c9a5a5;
  --secondary: #d89b9b;
  --accent: #e8c4c4;
  --light: #f5e6e6;
  --text: #4a4a4a;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text);
  font-size: 14px;
}

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

header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 15px 0;
  box-shadow: var(--shadow);
  z-index: 99;
  position: relative;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  gap: 25px;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 6px;
  transition: all 0.3s;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
}

.hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 50%,
    var(--accent) 100%
  );
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(139, 111, 92, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--light);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 111, 92, 0.4);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

section {
  padding: 50px 0;
}

section:nth-child(even) {
  background: #f8f9fa;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary);
  font-weight: 700;
}

h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
  font-weight: 600;
}

p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.section-intro {
  font-size: 15px;
  color: #666;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.feature-item {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  z-index: 1;
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card h3 {
  padding: 15px 20px 0;
}

.product-desc {
  padding: 0 20px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary);
  padding: 10px 20px;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 20px 20px;
  box-shadow: 0 4px 15px rgba(139, 111, 92, 0.25);
  letter-spacing: 0.3px;
}

.btn:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160, 116, 109, 0.35);
}

.seasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.season-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  font-style: italic;
}

.testimonial-author {
  margin-top: 15px;
  font-weight: 600;
  color: var(--secondary);
  font-style: normal;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.info-card {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.page-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 15px;
  opacity: 0.9;
}

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

.policy-content h2 {
  margin-top: 30px;
  font-size: 22px;
}

.policy-content h3 {
  margin-top: 20px;
}

.size-table-wrapper {
  overflow-x: auto;
  margin: 25px 0;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 13px;
}

.size-table th,
.size-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.size-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.size-table tr:nth-child(even) {
  background: #f8f9fa;
}

.contact-form {
  max-width: 600px;
  margin: 30px auto;
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
}

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

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.checkbox-group input[type='checkbox'] {
  width: auto;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 16px 35px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(139, 111, 92, 0.3);
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(160, 116, 109, 0.4);
}

.map-container {
  margin-top: 25px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.contact-item {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 20px;
  font-size: 13px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s;
  font-size: 13px;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  opacity: 0.8;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--white);
  padding: 18px;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}

.privacy-content button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(212, 165, 165, 0.3);
}

.privacy-content button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(160, 116, 109, 0.4);
}

.thankyou-page,
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 50%,
    var(--accent) 100%
  );
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.thankyou-container,
.error-container {
  max-width: 600px;
}

.thankyou-container h1,
.error-container h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.error-container h1 {
  font-size: 80px;
}

.error-container h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 15px;
}

.thankyou-container p,
.error-container p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.cta-btn::after {
  content: '→';
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
  background: var(--light);
}

.cta-btn:hover::after {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 15px;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
    border-radius: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-image {
    order: -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    order: -1;
  }

  h2 {
    font-size: 24px;
  }

  .feature-grid,
  .product-grid,
  .seasons-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .thankyou-container h1 {
    font-size: 32px;
  }

  .error-container h1 {
    font-size: 64px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  .logo {
    font-size: 16px;
  }

  section {
    padding: 35px 0;
  }

  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 17px;
  }

  .feature-item,
  .product-card,
  .season-card,
  .testimonial-card,
  .info-card {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }

  .page-header {
    padding: 30px 0;
  }

  .page-header h1 {
    font-size: 26px;
  }

  footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    gap: 25px;
  }
}

@media (max-width: 320px) {
  .logo {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  .product-grid,
  .feature-grid {
    gap: 20px;
  }
}
