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

:root {
  --primary: #2c3e50;
  --secondary: #d4a574;
  --accent: #3498db;
  --dark-accent: #c89b5f;
  --text: #333;
  --light: #f8f9fa;
  --white: #fff;
  --gray: #7f8c8d;
  --dark: #1a252f;
  --shadow: rgba(0, 0, 0, 0.1);
}

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

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

header {
  background: var(--white);
  box-shadow: 0 2px 8px var(--shadow);
  position: relative;
  z-index: 1000;
}

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

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

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

nav {
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--secondary);
}

.hero-modern {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 62, 80, 0.85) 0%,
    rgba(52, 152, 219, 0.75) 100%
  );
  z-index: 1;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--primary);
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  max-width: 650px;
  color: var(--white);
  text-align: left;
}

.hero-label {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

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

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--dark-accent);
}

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

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

.btn-secondary {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

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

section {
  padding: 40px 15px;
}

h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--primary);
  text-align: center;
}

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

h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
}

.features {
  background: var(--light);
}

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

.feature-item {
  background: var(--white);
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 2px 6px var(--shadow);
}

.about {
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-image {
  height: 450px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  background-color: var(--gray);
}

.about-content h2 {
  text-align: left;
  margin-bottom: 20px;
}

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

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--light);
  border-radius: 6px;
}

.stat-item strong {
  display: block;
  font-size: 28px;
  color: var(--secondary);
  margin-bottom: 5px;
}

.stat-item span {
  font-size: 13px;
  color: var(--text);
}

.collections {
  background: var(--light);
}

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

.collection-card {
  background: var(--white);
  padding: 0;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
  overflow: hidden;
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  background-color: var(--gray);
}

.collection-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  color: var(--white);
}

.collection-overlay h3 {
  color: var(--white);
  margin-bottom: 10px;
}

.collection-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
}

.testimonials {
  background: var(--white);
}

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

.testimonial {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 2px 8px var(--shadow);
}

.testimonial-stars {
  color: var(--secondary);
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial span {
  font-weight: 600;
  color: var(--primary);
  font-size: 13px;
}

.why-choose {
  background: var(--light);
}

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

.reason {
  background: var(--white);
  padding: 20px;
  border-radius: 6px;
}

.process {
  background: var(--light);
}

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

.process-step {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow);
}

.process-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 15px;
  opacity: 0.3;
}

.values {
  background: var(--white);
}

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

.value-card {
  background: var(--light);
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid var(--secondary);
}

.value-card h3 {
  margin-bottom: 15px;
}

.cta-unique {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 60px 15px;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  margin-bottom: 25px;
  font-size: 16px;
  opacity: 0.95;
}

.location {
  background: var(--light);
  text-align: center;
}

#map {
  width: 100%;
  height: 350px;
  margin-top: 25px;
  border-radius: 6px;
  background: var(--gray);
}

footer {
  background: var(--dark);
  color: var(--white);
  padding: 35px 15px 15px;
}

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

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

.footer-section p {
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-section a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.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: 13px;
  opacity: 0.8;
}

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

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

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

.popup-content p {
  font-size: 13px;
  margin: 0;
}

.popup-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-shrink: 0;
}

.popup-buttons a {
  color: var(--white);
  font-size: 13px;
  text-decoration: underline;
}

.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 50px 15px;
  text-align: center;
}

.page-hero h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

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

.products {
  background: var(--light);
}

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

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
  position: relative;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  z-index: 10;
}

.product-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--light) 0%, var(--gray) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

.product-card p {
  padding: 0 15px;
  font-size: 13px;
  margin-bottom: 12px;
}

.price {
  padding: 0 15px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.old-price {
  text-decoration: line-through;
  color: var(--gray);
  font-size: 14px;
}

.new-price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 18px;
}

.product-card .btn {
  margin: 0 15px 15px;
  display: block;
  text-align: center;
}

.offer-info {
  background: var(--white);
}

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

.offer-feature {
  background: var(--light);
  padding: 20px;
  border-radius: 6px;
  text-align: center;
}

.size-guide {
  background: var(--white);
}

.measurement-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.tip {
  background: var(--light);
  padding: 18px;
  border-radius: 6px;
}

.size-tables {
  background: var(--light);
}

.table-section {
  margin-top: 30px;
}

.table-section h3 {
  margin-bottom: 15px;
}

.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  background: var(--white);
  border-collapse: collapse;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px var(--shadow);
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--light);
  font-size: 13px;
}

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

tr:last-child td {
  border-bottom: none;
}

.size-help {
  background: var(--white);
  text-align: center;
}

.size-help p {
  margin-bottom: 15px;
}

.contact-content {
  background: var(--light);
}

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

.contact-info {
  background: var(--white);
  padding: 25px;
  border-radius: 6px;
}

.info-item {
  margin-bottom: 20px;
}

.info-item h4 {
  margin-bottom: 6px;
}

.info-item p {
  font-size: 14px;
  line-height: 1.6;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 25px;
  border-radius: 6px;
}

.contact-form-wrapper h2 {
  text-align: left;
  margin-bottom: 12px;
}

.contact-form-wrapper > p {
  margin-bottom: 20px;
  font-size: 14px;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
}

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

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

.checkbox-group input[type='checkbox'] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.checkbox-group span {
  font-size: 13px;
}

.checkbox-group a {
  color: var(--accent);
}

.map-section {
  background: var(--white);
}

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

.thankyou-content,
.error-content {
  text-align: center;
  color: var(--white);
  max-width: 600px;
}

.thankyou-icon {
  font-size: 60px;
  margin-bottom: 20px;
  background: var(--white);
  color: var(--accent);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.thankyou-content h1,
.error-content h1 {
  font-size: 28px;
  margin-bottom: 15px;
}

.error-content h1 {
  font-size: 72px;
  margin-bottom: 10px;
}

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

.thankyou-content p,
.error-content p {
  font-size: 15px;
  margin-bottom: 25px;
  opacity: 0.95;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-actions .btn-secondary,
.error-actions .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

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

.policy-page {
  background: var(--white);
  padding: 40px 15px;
}

.policy-page h1 {
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 10px;
}

.update-date {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 30px;
}

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

.policy-content h2 {
  text-align: left;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
}

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

.policy-content ul,
.policy-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.policy-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 15px;
    box-shadow: 0 4px 8px var(--shadow);
  }
  nav.active {
    display: flex;
  }
  .hero-modern {
    height: 70vh;
    min-height: 450px;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-text p {
    font-size: 16px;
  }
  h2 {
    font-size: 22px;
  }
  .popup-content {
    flex-direction: column;
    text-align: center;
  }
  .popup-buttons {
    flex-direction: column;
    width: 100%;
  }
  .popup-buttons .btn {
    width: 100%;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-image {
    height: 300px;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .collection-grid,
  .testimonial-grid,
  .reasons,
  .offer-features,
  .measurement-tips,
  .process-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }
  .logo {
    font-size: 16px;
  }
  .hero-modern {
    height: 60vh;
    min-height: 400px;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-text p {
    font-size: 15px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons .btn,
  .hero-buttons .btn-outline {
    width: 100%;
    text-align: center;
  }
  section {
    padding: 30px 15px;
  }
  h2 {
    font-size: 20px;
  }
  h3 {
    font-size: 17px;
  }
  .btn {
    padding: 9px 20px;
    font-size: 13px;
  }
  .product-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }
  .collection-card {
    height: 300px;
  }
  .about-image {
    height: 250px;
  }
  .thankyou-content h1,
  .error-content h2 {
    font-size: 22px;
  }
  .error-content h1 {
    font-size: 56px;
  }
  .policy-page h1 {
    font-size: 24px;
  }
  .policy-content h2 {
    font-size: 19px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  .logo {
    font-size: 15px;
  }
  .hero-text h1 {
    font-size: 24px;
  }
  .hero-text p {
    font-size: 14px;
  }
  h2 {
    font-size: 18px;
  }
  .btn {
    padding: 8px 18px;
    font-size: 12px;
  }
  .collection-card {
    height: 280px;
  }
  .about-image {
    height: 220px;
  }
}

@media (max-width: 320px) {
  .hero-modern {
    min-height: 380px;
  }
  .hero-text h1 {
    font-size: 22px;
  }
  .hero-label {
    font-size: 11px;
    padding: 5px 14px;
  }
  .collection-card {
    height: 260px;
  }
  .about-image {
    height: 200px;
  }
  section {
    padding: 25px 12px;
  }
}
