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

:root {
  --primary: #2c3e50;
  --secondary: #c9a961;
  --accent: #8b7355;
  --light: #f8f9fa;
  --dark: #1a1a1a;
  --text: #333;
  --border: #e0e0e0;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  background: #fff;
}

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

h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.8rem;
}
h3 {
  font-size: 1.3rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 15px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

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

.privacy-content p {
  margin: 0;
  font-size: 13px;
  flex: 1;
  min-width: 250px;
}

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

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

.privacy-actions button {
  background: var(--secondary);
  color: var(--dark);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav a {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

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

.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;
}

.hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 80px 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

.features {
  padding: 60px 0;
  background: #fff;
}

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

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

.feature-card p {
  font-size: 13px;
  color: #666;
}

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

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

.showcase-text h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.showcase-text p {
  margin-bottom: 25px;
  color: #666;
  line-height: 1.8;
}

.showcase-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.categories {
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.categories h2 {
  margin-bottom: 40px;
  color: var(--primary);
}

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

.category-card {
  background: var(--light);
  padding: 35px 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.category-card i {
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.category-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.category-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

.category-card a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 13px;
}

.process {
  padding: 60px 0;
  background: var(--light);
}

.process h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--primary);
}

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

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

.step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.step p {
  font-size: 13px;
  color: #666;
}

.cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.footer {
  background: var(--dark);
  color: #fff;
  padding: 25px 0;
}

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

.footer-info p {
  font-size: 13px;
  opacity: 0.8;
}

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

.footer-links a {
  font-size: 12px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

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

.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.05rem;
  opacity: 0.95;
}

.products {
  padding: 60px 0;
  background: #fff;
}

.products h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.product-card {
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 25px;
}

.product-info h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.product-info p {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.product-price {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 20px;
}

.decor-categories,
.furniture-categories {
  padding: 60px 0;
  background: var(--light);
}

.decor-categories h2,
.furniture-categories h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
}

.decor-list,
.furniture-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.decor-item,
.furniture-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.decor-item:hover,
.furniture-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.decor-item i,
.furniture-item i {
  font-size: 2rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.decor-item h3,
.furniture-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.decor-item p,
.furniture-item p {
  font-size: 13px;
  color: #666;
}

.info-section {
  padding: 60px 0;
  background: #fff;
}

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

.info-content h2 {
  color: var(--primary);
  margin-bottom: 25px;
}

.info-content p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.8;
}

.contact-section {
  padding: 60px 0;
  background: #fff;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info > p {
  margin-bottom: 30px;
  color: #666;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail {
  display: flex;
  gap: 20px;
}

.contact-detail i {
  font-size: 1.5rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-detail h3 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-detail p {
  font-size: 13px;
  color: #666;
}

.contact-form-wrapper {
  background: var(--light);
  padding: 35px;
  border-radius: 8px;
}

.contact-form h2 {
  color: var(--primary);
  margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  transition: border-color 0.3s ease;
}

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

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

.checkbox-group {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

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

.checkbox-group label {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

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

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

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.thankyou-section,
.error-section {
  padding: 80px 0;
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.thankyou-content i {
  font-size: 4rem;
  color: var(--secondary);
  margin-bottom: 25px;
}

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

.error-content h1 {
  font-size: 5rem;
  color: var(--secondary);
}

.thankyou-content p,
.error-content p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

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

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

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

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

.policy-date {
  color: #999;
  font-size: 13px;
  margin-bottom: 30px;
}

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

.policy-content p {
  margin-bottom: 15px;
  color: #666;
  line-height: 1.8;
  font-size: 14px;
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.1rem;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer-links {
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .thankyou-section,
  .error-section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 50px 0;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .features,
  .showcase,
  .categories,
  .process,
  .products,
  .info-section,
  .contact-section,
  .map-section {
    padding: 40px 0;
  }

  .cta {
    padding: 50px 0;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 25px;
    font-size: 13px;
  }

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

  .privacy-actions {
    width: 100%;
    justify-content: center;
  }
}
