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

:root {
  --primary: #2d5016;
  --secondary: #7fb069;
  --accent: #e8c547;
  --dark: #1a1a1a;
  --light: #f5f5f0;
  --white: #ffffff;
  --gray: #6b6b6b;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

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(--dark);
  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;
}

.privacy-content p {
  flex: 1;
  font-size: 13px;
}

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

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

.privacy-buttons button {
  background: var(--accent);
  color: var(--dark);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.header {
  background: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  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;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: var(--secondary);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image-left {
  order: -1;
}

.hero-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 45%;
  height: 100%;
  background: var(--secondary);
  opacity: 0.08;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  z-index: 0;
}

.hero-content {
  max-width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
}

.hero-badge span:first-child {
  font-size: 18px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--primary);
  line-height: 1.15;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--gray);
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--dark);
}

.hero-icon {
  width: 24px;
  height: 24px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

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

.hero-image {
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  height: 450px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

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

.hero-stats {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
}

.hero-stat {
  background: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 100px;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Syne', sans-serif;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 11px;
  color: var(--gray);
  font-weight: 500;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 14px 35px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

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

.features {
  padding: 70px 0;
  background: var(--white);
}

.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: 12px;
  transition: all 0.3s ease;
}

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

.feature-icon-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

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

.feature-card p {
  font-size: 14px;
  color: var(--gray);
}

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

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

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

.showcase-text p {
  margin-bottom: 15px;
  color: var(--gray);
}

.showcase-text .btn-secondary {
  margin-top: 15px;
}

.showcase-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.collection {
  padding: 70px 0;
  background: var(--white);
}

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

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

.collection-item {
  background: var(--light);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.collection-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.collection-icon-emoji {
  font-size: 3.5rem;
  display: block;
  margin: 0 auto 20px;
}

.collection-item h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.collection-item p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}

.collection-item a {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.collection-item a i {
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.collection-item:hover a i {
  margin-left: 10px;
}

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

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

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

.benefit-item {
  position: relative;
  padding-left: 60px;
}

.benefit-number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
}

.benefit-item h3 {
  margin-bottom: 10px;
  color: var(--accent);
}

.benefit-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

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

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: var(--secondary);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: var(--primary);
  opacity: 0.05;
  border-radius: 50%;
  z-index: 0;
}

.cta-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.cta-main h2 {
  margin-bottom: 15px;
  color: var(--primary);
  font-size: 2.2rem;
}

.cta-main p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--gray);
  line-height: 1.7;
}

.cta-main p:last-of-type {
  margin-bottom: 30px;
}

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

.stat-item {
  text-align: center;
  padding: 20px 10px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
  font-family: 'Syne', sans-serif;
}

.stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.cta-features {
  display: grid;
  gap: 25px;
}

.cta-feature {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.cta-feature:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-feature h4 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.1rem;
}

.cta-feature p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

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

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 40px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent);
}

.footer-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

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

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

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

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

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
}

.products {
  padding: 70px 0;
  background: var(--white);
}

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

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

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

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.product-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--white);
}

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

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

.product-info {
  padding: 25px;
}

.product-info h3 {
  margin-bottom: 12px;
  color: var(--primary);
}

.product-info p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
}

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

.care-tips {
  padding: 70px 0;
  background: var(--light);
}

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

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

.tip-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.tip-icon-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

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

.tip-card p {
  font-size: 14px;
  color: var(--gray);
}

.info-section {
  padding: 70px 0;
  background: var(--white);
}

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

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

.info-text p {
  margin-bottom: 15px;
  color: var(--gray);
}

.info-text .btn-primary {
  margin-top: 15px;
}

.gift-occasions {
  padding: 70px 0;
  background: var(--light);
}

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

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

.occasion-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.occasion-icon-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}

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

.occasion-card p {
  font-size: 14px;
  color: var(--gray);
}

.gift-benefits {
  padding: 70px 0;
  background: var(--white);
}

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

.benefits-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 25px;
}

.benefit-item-alt {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-check-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 5px;
}

.benefit-item-alt h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.benefit-item-alt p {
  font-size: 14px;
  color: var(--gray);
}

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

.contact-modern {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.contact-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-form-modern {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

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

.contact-info-modern h3 {
  margin-bottom: 25px;
  color: var(--primary);
}

.contact-cards {
  display: grid;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-card h4 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1rem;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

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

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

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

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
  background: var(--white);
}

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

.checkbox-group {
  display: block;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
}

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

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

.contact-form button {
  justify-self: start;
}

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

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

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.thankyou-icon,
.error-icon {
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thankyou-icon i {
  font-size: 3rem;
  color: var(--white);
}

.error-icon {
  background: var(--accent);
}

.error-icon i {
  font-size: 3rem;
  color: var(--dark);
}

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

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

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

.thankyou-content p,
.error-content p {
  margin-bottom: 30px;
  color: var(--gray);
  font-size: 1.05rem;
}

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

.policy-section {
  padding: 70px 0;
  background: var(--white);
  word-break: break-all;
}

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

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

.policy-date {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 40px;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary);
}

.policy-content h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  color: var(--secondary);
}

.policy-content p {
  margin-bottom: 15px;
  color: var(--gray);
  line-height: 1.8;
}

.policy-content ul {
  margin: 15px 0 15px 30px;
}

.policy-content li {
  margin-bottom: 10px;
  color: var(--gray);
  line-height: 1.8;
}

.policy-content a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.cookie-table td {
  font-size: 14px;
  color: var(--gray);
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  .nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  .nav.active {
    left: 0;
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding: 60px 0 50px;
  }
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-left {
    order: 0;
  }
  .hero-shape {
    width: 100%;
    height: 40%;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  }
  .hero-image {
    order: -1;
  }
  .hero-image-placeholder {
    height: 350px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }
  .hero-stats {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase-image {
    order: -1;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-modern {
    padding: 30px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    gap: 25px;
  }
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
  .privacy-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .privacy-buttons {
    width: 100%;
    justify-content: space-between;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .thankyou-section,
  .error-section {
    padding: 60px 0;
  }
  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }
  .thankyou-actions a,
  .error-actions a {
    width: 100%;
    text-align: center;
  }
  .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .cta-main h2 {
    font-size: 1.8rem;
  }
  .cta-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .stat-item {
    padding: 15px 8px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  .nav {
    padding: 20px 15px;
  }
  .nav a {
    font-size: 15px;
  }
  .hero {
    padding: 50px 0 40px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  .hero-badge span:first-child {
    font-size: 16px;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .hero-features {
    margin-bottom: 25px;
    gap: 10px;
  }
  .hero-feature-item {
    font-size: 14px;
  }
  .hero-icon {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
  .hero-image-placeholder {
    height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }
  .hero-shape {
    height: 35%;
  }
  .hero-stats {
    gap: 10px;
  }
  .hero-stat {
    padding: 12px 15px;
    min-width: 85px;
  }
  .stat-value {
    font-size: 1.4rem;
  }
  .stat-text {
    font-size: 10px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 13px;
    width: 100%;
    text-align: center;
  }
  .features,
  .showcase,
  .collection,
  .benefits,
  .products,
  .care-tips,
  .info-section,
  .gift-occasions,
  .gift-benefits,
  .contact-section,
  .map-section {
    padding: 50px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-card {
    padding: 25px 15px;
  }
  .feature-icon-emoji {
    font-size: 2.5rem;
  }
  .collection-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .collection-item {
    padding: 30px 20px;
  }
  .collection-icon-emoji {
    font-size: 3rem;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .benefit-item {
    padding-left: 50px;
  }
  .benefit-number {
    font-size: 2rem;
  }
  .cta {
    padding: 50px 0;
  }
  .cta-main h2 {
    font-size: 1.5rem;
  }
  .cta-main p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  .cta-main p:last-of-type {
    margin-bottom: 25px;
  }
  .cta-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .stat-item {
    padding: 15px 5px;
  }
  .stat-number {
    font-size: 1.3rem;
  }
  .stat-label {
    font-size: 10px;
  }
  .cta-feature {
    padding: 20px 15px;
  }
  .feature-icon {
    font-size: 1.5rem;
  }
  .cta-feature h4 {
    font-size: 1rem;
  }
  .cta-feature p {
    font-size: 12px;
  }
  .contact-form-box {
    padding: 25px;
  }
  .contact-form-modern {
    padding: 25px 20px;
  }
  .contact-card {
    padding: 20px;
  }
  .tip-card,
  .occasion-card {
    padding: 25px 15px;
  }
  .footer {
    padding: 25px 0 15px;
  }
  .footer-brand {
    font-size: 1.1rem;
  }
  .footer-info p {
    font-size: 12px;
  }
  .footer-links a {
    font-size: 12px;
  }
  .privacy-popup {
    padding: 15px;
  }
  .privacy-content p {
    font-size: 12px;
  }
  .privacy-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .privacy-buttons a,
  .privacy-buttons button {
    width: 100%;
    text-align: center;
    font-size: 12px;
  }
  .privacy-buttons button {
    padding: 10px 15px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  body {
    font-size: 13px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1rem;
  }
  .logo {
    font-size: 1rem;
  }
  .hero {
    padding: 35px 0;
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero {
    padding: 40px 0 35px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 5px 10px;
    margin-bottom: 20px;
  }
  .hero-badge span:first-child {
    font-size: 14px;
  }
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  .hero-features {
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-feature-item {
    font-size: 13px;
  }
  .hero-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .hero-image-placeholder {
    height: 280px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }
  .hero-shape {
    height: 30%;
    clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  }
  .hero-stats {
    gap: 8px;
    margin-top: 15px;
  }
  .hero-stat {
    padding: 10px 12px;
    min-width: 75px;
  }
  .stat-value {
    font-size: 1.2rem;
  }
  .stat-text {
    font-size: 9px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-newsletter {
    padding: 11px 20px;
    font-size: 12px;
  }
  .features,
  .showcase,
  .collection,
  .benefits,
  .products,
  .care-tips,
  .info-section,
  .gift-occasions,
  .gift-benefits,
  .contact-section,
  .map-section,
  .cta {
    padding: 40px 0;
  }
  .feature-card,
  .collection-item,
  .tip-card,
  .occasion-card,
  .cta-feature {
    padding: 20px 12px;
  }
  .feature-icon-emoji {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .collection-icon-emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .benefit-item {
    padding-left: 45px;
  }
  .benefit-number {
    font-size: 1.8rem;
  }
  .cta-main h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }
  .cta-main p {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  .cta-main p:last-of-type {
    margin-bottom: 20px;
  }
  .cta-stats {
    gap: 8px;
  }
  .stat-item {
    padding: 12px 5px;
  }
  .stat-number {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  .stat-label {
    font-size: 9px;
  }
  .cta-feature {
    padding: 18px 12px;
  }
  .feature-icon {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  .cta-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .cta-feature p {
    font-size: 11px;
  }
  .contact-form-box {
    padding: 20px 15px;
  }
  .contact-header {
    margin-bottom: 40px;
  }
  .contact-header h2 {
    font-size: 1.3rem;
  }
  .contact-header p {
    font-size: 0.9rem;
  }
  .contact-form-modern {
    padding: 20px 15px;
  }
  .contact-form-modern h3,
  .contact-info-modern h3 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .contact-card {
    padding: 18px 15px;
  }
  .contact-icon-emoji {
    font-size: 1.5rem;
  }
  .contact-card h4 {
    font-size: 0.95rem;
  }
  .contact-card p {
    font-size: 13px;
  }
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }
  .footer {
    padding: 20px 0 12px;
  }
  .footer-brand {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .footer-info p {
    font-size: 11px;
  }
  .footer-links a {
    font-size: 11px;
  }
  .footer-bottom p {
    font-size: 11px;
  }
  .privacy-popup {
    padding: 12px;
  }
  .privacy-content p {
    font-size: 11px;
  }
  .privacy-buttons a,
  .privacy-buttons button {
    font-size: 11px;
    padding: 8px 12px;
  }
}
