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

body {
  font-family: "Poppins", sans-serif;
  background-color: #dad7cd;
  color: #344e41;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(135deg, #588157, #3a5a40);
  color: white;
  padding: 0.8rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  animation: slideDown 0.5s ease;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.announcement-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.announcement-text {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  animation: pulse 2s infinite;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 1001;
  background: rgba(218, 215, 205, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(163, 177, 138, 0.3);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(218, 215, 205, 0.98);
}

.checkout-navbar {
  top: 50px;
  z-index: 1001;
}

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

.nav-logo h2 {
  color: #588157;
  font-weight: 800;
  font-size: 1.8rem;
  margin: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #344e41;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #588157;
  transform: translateY(-2px);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: #588157;
  border-radius: 1px;
}

.mobile-nav-right {
  display: none;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #588157;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: 130px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(52, 78, 65, 0.7), rgba(88, 129, 87, 0.5));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
  animation: heroContentSlideUp 1s ease-out;
}

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

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff, #a3b18a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 0;
  opacity: 0.9;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Search and Filter Section */
.search-section {
  padding: 3rem 0;
  background: white;
  border-bottom: 1px solid rgba(163, 177, 138, 0.2);
}

.search-filter-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.search-wrapper {
  width: 100%;
  max-width: 600px;
}

.search-bar {
  position: relative;
  width: 100%;
  background: white;
  border: 3px solid #a3b18a;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(163, 177, 138, 0.1);
}

.search-bar:focus-within {
  border-color: #588157;
  box-shadow: 0 5px 20px rgba(88, 129, 87, 0.2);
  transform: translateY(-2px);
}

.search-bar i {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #588157;
  font-size: 1.2rem;
  z-index: 2;
}

.search-bar input {
  width: 100%;
  padding: 1.2rem 4rem 1.2rem 4rem;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  color: #344e41;
  outline: none;
}

.search-bar input::placeholder {
  color: #a3b18a;
}

.search-clear {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: #a3b18a;
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-clear:hover {
  background: #588157;
  transform: translateY(-50%) scale(1.1);
}

.filter-wrapper {
  width: 100%;
  max-width: 400px;
}

.filter-tabs {
  display: flex;
  background: #f8fdf8;
  border-radius: 20px;
  padding: 0.5rem;
  border: 2px solid #a3b18a;
  box-shadow: 0 5px 15px rgba(163, 177, 138, 0.1);
}

.filter-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  color: #588157;
}

.filter-tab:hover {
  background: rgba(88, 129, 87, 0.1);
  transform: translateY(-2px);
}

.filter-tab.active {
  background: linear-gradient(135deg, #588157, #3a5a40);
  color: white;
  box-shadow: 0 5px 15px rgba(88, 129, 87, 0.3);
  transform: translateY(-2px);
}

.tab-text {
  font-size: 0.9rem;
}

/* Products Section */
.products-section {
  padding: 4rem 0;
  background: #dad7cd;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #344e41;
  font-weight: 800;
}

.results-count {
  color: #588157;
  font-weight: 600;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 2px solid #a3b18a;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(52, 78, 65, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(52, 78, 65, 0.2);
}

.product-image {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #f8fdf8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
  aspect-ratio: 1 / 1;
  max-width: 300px;
  max-height: 300px;
}

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

.product-info {
  padding: 2rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #344e41;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stars {
  color: #f39c12;
}

.rating-count {
  color: #666;
  font-size: 0.9rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #588157;
}

.original-price {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
}

.product-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.buy-now-btn {
  width: 100%;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Page Hero Styles */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #588157, #3a5a40);
  color: white;
  text-align: center;
  margin-top: 80px;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* FAQ Styles */
.faq-section {
  padding: 4rem 0;
  background: white;
}

.faq-search {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.category-btn {
  background: #f8fdf8;
  border: 2px solid #a3b18a;
  color: #588157;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background: #588157;
  color: white;
  transform: translateY(-2px);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #a3b18a;
  box-shadow: 0 5px 15px rgba(163, 177, 138, 0.1);
}

.faq-item.active {
  border-color: #588157;
  box-shadow: 0 5px 20px rgba(88, 129, 87, 0.2);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fdf8;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f0f8f0;
}

.faq-question h3 {
  color: #344e41;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-question i {
  color: #588157;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
}

.faq-answer ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
  color: #666;
}

/* Reviews Styles */
.reviews-stats {
  padding: 3rem 0;
  background: #f8fdf8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(163, 177, 138, 0.1);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #a3b18a;
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #588157;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-weight: 600;
}

.rating-breakdown {
  padding: 3rem 0;
  background: white;
}

.rating-breakdown h2 {
  text-align: center;
  color: #344e41;
  margin-bottom: 2rem;
}

.breakdown-container {
  max-width: 500px;
  margin: 0 auto;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rating-row .stars {
  min-width: 60px;
  color: #f39c12;
  font-weight: 600;
}

.progress-bar {
  flex: 1;
  height: 10px;
  background: #f0f0f0;
  border-radius: 5px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, #588157, #3a5a40);
  transition: width 0.3s ease;
}

.percentage {
  min-width: 40px;
  text-align: right;
  font-weight: 600;
  color: #588157;
}

.reviews-list {
  padding: 3rem 0;
  background: white;
}

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
}

.review-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: #a3b18a;
  box-shadow: 0 5px 15px rgba(163, 177, 138, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.reviewer-avatar {
  width: 50px;
  height: 50px;
  background: #f0f8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.reviewer-details h4 {
  color: #344e41;
  margin-bottom: 0.3rem;
}

.review-rating .stars {
  color: #f39c12;
  font-size: 1rem;
}

.review-content p {
  color: #666;
  line-height: 1.6;
}

/* Contact Styles */
.contact-methods {
  padding: 3rem 0;
  background: #f8fdf8;
}

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

.method-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(163, 177, 138, 0.1);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: #a3b18a;
  transform: translateY(-5px);
}

.method-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.method-card h3 {
  color: #344e41;
  margin-bottom: 0.5rem;
}

.method-card p {
  color: #666;
  margin-bottom: 1rem;
}

.method-card a {
  color: #588157;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.method-card a:hover {
  text-decoration: underline;
}

.response-time {
  display: block;
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.5rem;
}

.contact-form-section {
  padding: 4rem 0;
  background: white;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-header h2 {
  color: #344e41;
  margin-bottom: 1rem;
}

.form-header p {
  color: #666;
}

.contact-form {
  background: #f8fdf8;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid #a3b18a;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #344e41;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #588157;
  box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.1);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #588157, #3a5a40);
  color: white;
  border: none;
  padding: 1.2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(88, 129, 87, 0.3);
}

.quick-help {
  padding: 3rem 0;
  background: #f8fdf8;
  text-align: center;
}

.quick-help h2 {
  color: #344e41;
  margin-bottom: 1rem;
}

.quick-help p {
  color: #666;
  margin-bottom: 2rem;
}

.help-topics {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.help-topic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  text-decoration: none;
  color: #588157;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  min-width: 120px;
}

.help-topic:hover {
  border-color: #588157;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(88, 129, 87, 0.2);
}

.help-topic i {
  font-size: 2rem;
}

.help-topic span {
  font-weight: 600;
}

.map-section {
  padding: 3rem 0;
  background: white;
  text-align: center;
}

.map-section h2 {
  color: #344e41;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
}

.map-placeholder {
  background: #f8fdf8;
  border: 2px solid #a3b18a;
  border-radius: 15px;
  padding: 4rem 2rem;
  color: #666;
}

.map-placeholder i {
  font-size: 3rem;
  color: #588157;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #344e41, #3a5a40);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #a3b18a;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #a3b18a;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #a3b18a;
}

.newsletter-signup {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-signup input {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
}

.newsletter-signup input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-signup button {
  background: #a3b18a;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-signup button:hover {
  background: #588157;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(163, 177, 138, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

/* Modal Styles - Updated for better mobile */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: 20px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #344e41;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  backdrop-filter: blur(10px);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 1);
}

/* Checkout Styles */
.modern-checkout-section {
  padding: 2rem 0 4rem;
  background: #f8fdf8;
  margin-top: 130px;
  min-height: 100vh;
}

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

.checkout-header h1 {
  color: #344e41;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.checkout-header p {
  color: #666;
  font-size: 1.1rem;
}

.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step.active .step-circle {
  background: linear-gradient(135deg, #588157, #3a5a40);
  color: white;
  transform: scale(1.1);
}

.step.completed .step-circle {
  background: #588157;
  color: white;
}

.step span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

.step.active span {
  color: #588157;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.checkout-form-container {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(88, 129, 87, 0.1);
  border: 2px solid #a3b18a;
  height: fit-content;
}

.modern-checkout-form {
  position: relative;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: slideInRight 0.3s ease;
}

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

.step-header {
  text-align: center;
  margin-bottom: 2rem;
}

.step-header h2 {
  color: #344e41;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.step-header p {
  color: #666;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-field label {
  color: #344e41;
  font-weight: 600;
  font-size: 0.9rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.input-wrapper input:focus {
  outline: none;
  border-color: #588157;
  background: white;
  box-shadow: 0 0 0 4px rgba(88, 129, 87, 0.1);
}

.input-wrapper i {
  position: absolute;
  left: 1rem;
  color: #a3b18a;
  z-index: 2;
  transition: color 0.3s ease;
}

.field-status {
  position: absolute;
  right: 1rem;
  color: #588157;
}

.delivery-options {
  margin-top: 2rem;
}

.delivery-options h3 {
  color: #344e41;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.delivery-cards {
  display: grid;
  gap: 1rem;
}

.delivery-option {
  cursor: pointer;
}

.option-card {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  background: white;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.option-card:hover {
  border-color: #a3b18a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 129, 87, 0.1);
}

.delivery-option input[type="radio"]:checked + .option-card {
  border-color: #588157;
  background: #f0f8f0;
}

.option-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.option-info {
  flex: 1;
}

.option-info h4 {
  color: #344e41;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.option-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.option-info .price {
  color: #588157;
  font-weight: 700;
  font-size: 1rem;
}

.simple-app-required {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.app-message {
  background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
  border: 2px solid #588157;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.app-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.app-message h3 {
  color: #344e41;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.app-message p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
}

.download-app-btn {
  background: linear-gradient(135deg, #588157, #3a5a40);
  color: white;
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 250px;
  margin: 2rem auto 0;
}

.download-app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(88, 129, 87, 0.3);
}

.confirmation-sections {
  display: grid;
  gap: 1.5rem;
}

.confirmation-card {
  background: #f8fdf8;
  border: 2px solid #a3b18a;
  border-radius: 12px;
  padding: 1.5rem;
}

.confirmation-card h3 {
  color: #344e41;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.confirmation-card p {
  color: #666;
  margin-bottom: 0.5rem;
}

.final-cta {
  text-align: center;
  margin-top: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
  border-radius: 15px;
  border: 2px solid #588157;
}

.final-cta h3 {
  color: #344e41;
  margin-bottom: 0.5rem;
}

.final-cta p {
  color: #666;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.nav-btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 140px;
  justify-content: center;
}

.prev-btn {
  background: #f0f0f0;
  color: #666;
}

.prev-btn:hover:not(:disabled) {
  background: #e0e0e0;
  transform: translateY(-2px);
}

.prev-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.next-btn,
.submit-btn {
  background: linear-gradient(135deg, #588157, #3a5a40);
  color: white;
}

.next-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 129, 87, 0.3);
}

.modern-order-summary {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(88, 129, 87, 0.1);
  border: 2px solid #a3b18a;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.summary-header h3 {
  color: #344e41;
  font-size: 1.3rem;
}

.order-number {
  color: #588157;
  font-weight: 600;
  font-size: 0.9rem;
}

.summary-content {
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: #f8fdf8;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.summary-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 1;
}

.item-info {
  flex: 1;
}

.item-info h4 {
  color: #344e41;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.item-info .price {
  color: #588157;
  font-weight: 700;
  font-size: 1.1rem;
}

.promo-section {
  margin-bottom: 1.5rem;
}

.promo-input {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.promo-input input {
  flex: 1;
  padding: 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
}

.promo-input input:focus {
  outline: none;
  border-color: #588157;
}

.promo-input button {
  background: #588157;
  color: white;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.promo-input button:hover {
  background: #3a5a40;
}

.summary-breakdown {
  border-top: 2px solid #f0f0f0;
  padding-top: 1rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.breakdown-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: #344e41;
  border-top: 2px solid #f0f0f0;
  padding-top: 0.8rem;
  margin-top: 0.8rem;
}

.breakdown-row.discount {
  color: #e74c3c;
}

/* Error Modal */
.error-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.error-modal.active {
  opacity: 1;
  visibility: visible;
}

.error-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.error-modal.active .error-content {
  transform: scale(1);
}

.error-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.error-content h3 {
  color: #e74c3c;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.error-content p {
  color: #666;
  margin-bottom: 2rem;
}

.error-close-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.error-close-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Celebration Modal */
.celebration-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.celebration-modal.active {
  opacity: 1;
  visibility: visible;
}

.celebration-content {
  background: linear-gradient(135deg, #27ae60, #2ecc71, #58d68d);
  border-radius: 25px;
  padding: 3rem;
  text-align: center;
  max-width: 500px;
  width: 90%;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  color: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.celebration-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.celebration-text {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.celebration-offer {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.offer-badge {
  background: #ffffff;
  color: #27ae60;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 1.5rem;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 1rem;
  animation: pulse 2s infinite;
}

.free-text {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.celebration-details {
  margin-bottom: 2rem;
}

.celebration-details p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.celebration-close {
  background: rgba(255, 255, 255, 0.9);
  color: #27ae60;
  border: none;
  padding: 1.2rem 2rem;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.celebration-close:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* App Download Modal Styles */
.app-download-modal-content {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid #588157;
}

.app-download-modal-content h3 {
  color: #344e41;
  margin-bottom: 1rem;
}

.app-download-modal-content p {
  color: #495057;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .announcement-bar {
    padding: 0.6rem 0;
  }

  .announcement-text {
    font-size: 0.8rem;
  }

  .navbar {
    top: 40px;
  }

  .hero {
    margin-top: 120px;
  }

  .modern-checkout-section {
    margin-top: 120px;
  }

  .nav-menu {
    position: fixed;
    top: 120px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 120px);
    background: rgba(218, 215, 205, 0.98);
    backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    transition: left 0.3s ease;
    gap: 1rem;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 2rem;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 1rem;
  }

  .mobile-nav-right {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    height: 80vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .search-filter-container {
    gap: 1.5rem;
  }

  .filter-tabs {
    padding: 0.3rem;
  }

  .filter-tab {
    padding: 0.8rem 1rem;
  }

  .tab-text {
    font-size: 0.8rem;
  }

  .modal {
    width: 95%;
    margin: 0.5rem;
    max-height: 95vh;
    border-radius: 15px;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  /* Make modal content stack vertically on mobile */
  .modal-content > div[style*="grid-template-columns"] {
    display: block !important;
  }

  .modal-content .product-thumbnails {
    justify-content: center;
    margin-top: 1rem;
  }

  .modal-content .product-thumbnails > div {
    width: 60px !important;
    height: 60px !important;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .help-topics {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .modern-order-summary {
    position: static;
    order: -1;
  }

  .checkout-form-container {
    padding: 1.5rem;
  }

  .progress-steps {
    gap: 1rem;
  }

  .step span {
    display: none;
  }

  .form-navigation {
    flex-direction: column;
  }

  .nav-btn {
    width: 100%;
  }

  .celebration-content {
    padding: 2rem;
  }

  .celebration-content h2 {
    font-size: 2rem;
  }

  .celebration-text {
    font-size: 1.1rem;
  }

  .free-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .nav-container {
    padding: 0 15px;
  }

  .nav-logo h2 {
    font-size: 1.5rem;
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .search-section {
    padding: 2rem 0;
  }

  .search-bar input {
    padding: 1rem 3.5rem 1rem 3.5rem;
    font-size: 1rem;
  }

  .filter-tab {
    padding: 0.6rem 0.8rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card {
    min-height: 400px;
  }

  .product-image {
    height: 250px;
  }

  .product-image img {
    max-width: 250px;
    max-height: 250px;
  }

  .product-info {
    padding: 1rem;
  }

  .product-title {
    font-size: 1rem;
  }

  .current-price {
    font-size: 1.2rem;
  }

  .product-buttons {
    gap: 0.5rem;
  }

  .buy-now-btn {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

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

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

  .stat-card {
    padding: 1.5rem;
  }

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

  .help-topics {
    grid-template-columns: 1fr;
  }

  .newsletter-signup {
    flex-direction: column;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .checkout-form-container {
    padding: 1rem;
  }

  .step-circle {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .progress-steps {
    gap: 0.5rem;
  }

  .delivery-cards {
    grid-template-columns: 1fr;
  }

  .option-card {
    padding: 1rem;
  }

  .modern-order-summary {
    padding: 1.5rem;
  }

  .celebration-content {
    padding: 1.5rem;
  }

  .celebration-content h2 {
    font-size: 1.8rem;
  }

  .celebration-text {
    font-size: 1.1rem;
  }

  .free-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .modal {
    width: 95%;
    margin: 0.5rem;
    max-height: 95vh;
    border-radius: 15px;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  /* Make modal content stack vertically on mobile */
  .modal-content > div[style*="grid-template-columns"] {
    display: block !important;
  }

  .modal-content .product-thumbnails {
    justify-content: center;
    margin-top: 1rem;
  }

  .modal-content .product-thumbnails > div {
    width: 60px !important;
    height: 60px !important;
  }
}

@media (max-width: 480px) {
  .modal {
    width: 98%;
    margin: 0.25rem;
    max-height: 98vh;
    border-radius: 10px;
  }

  .modal-content {
    padding: 1rem !important;
  }

  .modal-content > div[style*="padding: 2rem"] {
    padding: 1rem !important;
  }

  .modal-content h2 {
    font-size: 1.3rem !important;
  }

  .modal-content .product-thumbnails > div {
    width: 50px !important;
    height: 50px !important;
  }

  /* Stack color options vertically on very small screens */
  .modal-content div[style*="flex-wrap: wrap"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .modal-content .color-option {
    margin-bottom: 0.5rem !important;
    text-align: center !important;
  }
}
