/* Base Styles */
:root {
  /* Colors */
  --tzedek-green: rgb(34, 197, 94);
  --tzedek-green-dark: rgb(22, 163, 74);
  --tzedek-green-light: rgb(187, 247, 208);
  --tzedek-gold: rgb(234, 179, 8);
  --tzedek-gold-dark: rgb(202, 138, 4);
  --tzedek-gold-light: rgb(254, 240, 138);
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Border Radius */
  --radius-sm: 0.125rem;
  --radius: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: var(--gray-700);
  background-color: var(--white);
}

.hidden {
  display: none !important;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

button{
    border: none;
    outline: none;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--tzedek-green);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  background-color: var(--tzedek-green-dark);
}

.btn-secondary {
  display: inline-block;
  background-color: var(--tzedek-gold);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  background-color: var(--tzedek-gold-dark);
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--gray-700);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-300);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-outline:hover {
  border-color: var(--tzedek-green);
  color: var(--tzedek-green);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.full-width {
  width: 100%;
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader-logo {
  font-size: 2.5rem;
  font-weight: bold;
  color: #4CAF50;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease;
}

.preloader-subtitle {
  color: #4CAF50;
  margin-bottom: 2rem;
  opacity: 0.8;
  animation: fadeIn 1.2s ease;
}

.preloader-progress {
  width: 200px;
  height: 4px;
  background-color: rgba(76, 175, 80, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-progress-bar {
  height: 100%;
  background-color: #4CAF50;
  width: 0%;
  transition: width 0.3s ease;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

/* Improved Navbar Styles */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 0;
}

.navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

.navbar-logo .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tzedek-green);
  text-decoration: none;
  z-index: 1001;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
}

.navbar-links {
  display: flex;
  gap: 2rem;
}

.navbar-auth {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--tzedek-green);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--tzedek-green);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--tzedek-green);
}

.nav-link.active::after {
  width: 100%;
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--gray-100);
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.3s;
}

.cart-icon:hover {
  background-color: var(--tzedek-green-light);
  color: var(--tzedek-green);
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ef4444;
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-button {
  display: none;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.menu-toggle i {
  font-size: 1.5rem;
}

.mobile-cart {
  display: none;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-nav.show {
  transform: translateX(0);
}

.mobile-nav-content {
  display: flex;
  flex-direction: column;
  padding: 5rem 1.5rem 2rem;
  height: 100%;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-weight: 500;
  text-decoration: none;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--tzedek-green);
  background-color: var(--tzedek-green-light);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-btn {
  margin: 1rem 0;
  text-align: center;
  width: 100%;
  padding: 1rem;
}

.hidden {
  display: none !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar-content {
    padding: 0.75rem 0;
  }
  
  .desktop-nav {
    display: none !important;
  }
  
  .mobile-menu-button {
    display: flex;
  }
  
  .mobile-cart {
    display: flex;
  }
  
  .navbar-logo .logo {
    font-size: 1.25rem;
  }
  
  /* Prevent body scroll when menu is open */
  body.no-scroll {
    overflow: hidden;
  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}

/* Improved container for mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .navbar-content {
    padding: 0.75rem 1rem;
  }
}


/* Hero Section */
.hero {
  padding: 7rem 0;
  background: linear-gradient(to right, var(--white), var(--gray-50), var(--white));
}

.hero-content {
  display: grid;
  gap: 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.hero h1 .text-tzedek-green {
  color: var(--tzedek-green);
}

.hero p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.image-container {
  aspect-ratio: 13/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  background: linear-gradient(to bottom right, var(--tzedek-green-light), var(--tzedek-green));
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  display: flex;
  align-items: flex-end;
}

.overlay-text {
  padding: 1.5rem;
  color: var(--white);
}

.overlay-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.overlay-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.promo-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: var(--tzedek-gold);
  padding: 1rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  display: none;
}

.promo-badge p {
  color: var(--white);
  font-weight: 700;
  margin: 0;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: row;
  }
  
  .promo-badge {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--gray-50);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--gray-900);
}

.section-intro {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 3rem;
  color: var(--gray-600);
}
/* Marketplace Section */
.marketplace {
  padding: 5rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--gray-900);
}

.section-header {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 10px 0;
}

.section-top h2{
  transition: 0.5s ease;
}

.section-top h2:hover{
  text-decoration: underline;
  color: var(--tzedek-green);
}


.search-container {
  position: relative;
  flex-grow: 1;
  max-width: 500px;
}

.search-container input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 40px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-container input:focus {
  outline: none;
  border-color: var(--tzedek-green);
  box-shadow: 0 0 0 3px rgba(90, 121, 101, 0.034);
}

.search-container i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);  
  color: var(--gray-500);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  position: relative;
  border: 1px solid rgba(228, 255, 238, 0.219);
  cursor: pointer;
}

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

.product-image {
  height: 200px;
  width: 100%;
  background-color: var(--gray-100);
  position: relative;
  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 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 1.25rem;
}

.product-category {
  color: var(--tzedek-green);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.product-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.product-description {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-price {
  font-weight: 700;
  color: var(--tzedek-green);
  font-size: 1.25rem;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--gray-500);
}

.no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.no-results button{
  margin-top: 15px;
  padding: 8px 20px;
}

/* Top Shops Section */
.top-shops {
  padding: 5rem 0;
  background-color: var(--gray-50);
}

.shops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.shop-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.shop-header {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  gap: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.shop-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--tzedek-green);
}

.shop-info h3 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.shop-rating {
  color: var(--tzedek-gold);
  font-size: 0.875rem;
}

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

.shop-product {
  height: 80px;
  background-color: var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.shop-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-stats {
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background-color: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--tzedek-green);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Promotion Section */
.promotion-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.promotion-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.promotion-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.promotion-container {
  position: relative;
  z-index: 1;
}

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

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--tzedek-green), var(--tzedek-green-dark));
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.promotion-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

/* Main Featured Promotion */
.promo-featured {
  background: linear-gradient(135deg, var(--tzedek-green) 0%, var(--tzedek-green-dark) 100%);
  border-radius: 1.5rem;
  padding: 3rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.promo-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.promo-featured-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.promo-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.promo-highlight {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.promo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.promo-feature i {
  font-size: 1.25rem;
}

.promo-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-block;
  background-color: var(--white);
  color: var(--tzedek-green);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 2px solid var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.promo-image {
  position: relative;
  text-align: center;
}

.promo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.promo-timer {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.timer-label {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.timer-display {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.timer-unit {
  text-align: center;
}

.timer-value {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.timer-text {
  font-size: 0.75rem;
  opacity: 0.8;
  text-transform: uppercase;
}

/* Secondary Promotions */
.promo-secondary-grid {
  display: grid;
  gap: 1.5rem;
}

.promo-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--tzedek-green), var(--tzedek-gold));
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--tzedek-green);
}

.promo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--tzedek-green-light), var(--tzedek-green));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.promo-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.promo-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  color: var(--tzedek-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.promo-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.promo-link:hover i {
  transform: translateX(5px);
}

.promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--tzedek-gold);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Responsive */
@media (min-width: 768px) {
  .promo-featured-content {
      grid-template-columns: 1fr 1fr;
  }

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

@media (min-width: 1024px) {
  .section-title {
      font-size: 3rem;
  }

  .promo-secondary-grid {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .promotion-section {
      padding: 3rem 0;
  }

  .section-header {
      margin-bottom: 2rem;
      display: flex;
      flex-direction: column;
  }

  .section-badge {
      font-size: 0.75rem;
      padding: 0.4rem 1rem;
  }

  .section-title {
      font-size: 1.75rem;
      padding: 0 0.5rem;
  }

  .section-subtitle {
      font-size: 1rem;
      padding: 0 1rem;
  }

  .promo-featured {
      padding: 1.5rem;
  }

  .promo-text h3 {
      font-size: 1.25rem;
  }

  .promo-highlight {
      font-size: 2rem;
  }

  .promo-description {
      font-size: 1rem;
  }

  .promo-features {
      flex-direction: column;
      gap: 0.75rem;
  }

  .promo-feature {
      font-size: 0.875rem;
  }

  .promo-cta {
      flex-direction: column;
  }

  .btn-white,
  .btn-outline-white {
      width: 100%;
      text-align: center;
      padding: 0.875rem 1.5rem;
  }

  .promo-image {
      display: none;
  }

  .promo-timer {
      padding: 1rem;
      margin-top: 1.5rem;
  }

  .timer-label {
      font-size: 0.75rem;
  }

  .timer-display {
      gap: 0.75rem;
  }

  .timer-value {
      font-size: 1.5rem;
  }

  .timer-text {
      font-size: 0.625rem;
  }

  .promo-card {
      padding: 1.5rem;
  }

  .promo-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 1rem;
  }

  .promo-icon i {
      font-size: 1.5rem;
  }

  .promo-card h4 {
      font-size: 1.125rem;
  }

  .promo-card p {
      font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .promo-highlight {
    font-size: 1.75rem;
  }

  .timer-display {
    gap: 0.5rem;
  }

  .timer-unit {
      flex: 1;
  }

  .timer-value {
      font-size: 1.25rem;
  }
}


/* Seller Registration Form */
.form-container {
  max-width: 600px;
  margin: 3rem auto;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  padding: 2rem;
}

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

.form-header h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--gray-700);
}

.form-group input, 
.form-group textarea, 
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
}

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

.package-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.package-option {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-option:hover, 
.package-option.selected {
  border-color: var(--tzedek-green);
  background-color: var(--tzedek-green-light);
}

.package-option h3 {
  margin-bottom: 0.5rem;
}

.package-price {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--tzedek-green);
  margin-bottom: 1rem;
}

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

/* Dashboard */
.dashboard {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
}

.sidebar {
  background-color: var(--gray-800);
  color: white;
  padding: 1.5rem;
}

.sidebar-menu {
  list-style: none;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-menu a {
  display: block;
  padding: 0.75rem;
  color: var(--gray-300);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.sidebar-menu a:hover, 
.sidebar-menu a.active {
  background-color: var(--gray-700);
  color: white;
}

.dashboard-content {
  padding: 2rem;
  background-color: var(--gray-50);
}

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

.stat-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.stat-card h3 {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.stat-card .value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--tzedek-green);
}

.dashboard-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

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

.section-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
}



/* About Section */
.about-intro {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 3rem;
  color: var(--gray-600);
  font-size: 1.125rem;
}

.about-cards {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card */
.card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

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

.card-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon i {
  font-size: 2rem;
  color: var(--tzedek-green);
}

.card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.values-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.values-list li {
  max-width: 700px;
  margin: 0.5rem 0;
}

.values-list li:before {
  content: "•";
  color: var(--tzedek-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Features Section */
.features-grid {
  display: grid;
  gap: 2rem;
}

.feature-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  text-align: center;
}

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

.feature-icon {
  margin-bottom: 1rem;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--tzedek-green);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.feature-card p {
  color: var(--gray-600);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Shop Section */
.grid-4-cols {
  display: grid;
  gap: 1.5rem;
}

.shop-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--gray-200);
}

.shop-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

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

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

.shop-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.shop-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.shop-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--tzedek-green);
  margin-bottom: 0.75rem;
}

.shop-description {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.shop-features {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.shop-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.shop-feature i {
  margin-right: 0.5rem;
  margin-top: 0.25rem;
}

.text-tzedek-green {
  color: var(--tzedek-green);
}

@media (min-width: 640px) {
  .grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Packages Section */
.packages-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

.package-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.package-card.recommended {
  border: 2px solid var(--tzedek-green);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.package-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--tzedek-green);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.package-header {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.package-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.package-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--tzedek-green);
  margin-bottom: 0.5rem;
}

.package-description {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.package-features {
  padding: 1.5rem;
  flex-grow: 1;
}

.package-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--gray-700);
}

.package-features li i {
  color: var(--tzedek-green);
  margin-right: 0.5rem;
  font-size: 0.875rem;
}

.package-cta {
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--gray-200);
}

.package-card.recommended .package-cta .btn-primary {
  background-color: var(--tzedek-green);
}

.package-card.recommended .package-cta .btn-primary:hover {
  background-color: var(--tzedek-green-dark);
}

@media (min-width: 768px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.testimonial-image {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.testimonial-image img {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  object-fit: cover;
  margin-right: 1rem;
}

.testimonial-rating {
  display: flex;
  align-items: center;
}

.testimonial-rating i {
  color: var(--tzedek-gold);
  margin-right: 0.25rem;
  font-size: 0.875rem;
}

.testimonial-text {
  flex-grow: 1;
}

.testimonial-text p {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.testimonial-author h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.testimonial-author p {
  color: var(--tzedek-green);
  font-size: 0.875rem;
  margin: 0;
  font-style: normal;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-content {
    flex-direction: row;
  }
  
  .testimonial-image {
    flex-direction: column;
    width: 25%;
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
  
  .testimonial-text {
    width: 75%;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Partner Section */
#partners{
  padding: 5rem 0;
  background-color: var(--gray-900);
  color: var(--white);
}

#partners .container h2{
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

#partners .container p{
  color: var(--gray-400);
  text-align: center;
  margin-bottom: 3rem;
}

.partners-grid{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-logo img {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 0 auto;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.partner-logo:nth-child(3){
  background-color: red;
  border-radius: 9999px;
  width: 200px;
  height: 200px;
}
.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

/* FAQ Section */
.faq-container {
  display: grid;
  gap: 2rem;
}

.faq-category {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--tzedek-green);
}

.mt-6 {
  margin-top: 1.5rem;
}

.accordion {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
}

.accordion-header span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--gray-900);
}

.accordion-content {
  padding: 0 1rem 1rem;
  display: none;
}

.accordion-content p {
  color: var(--gray-600);
}

.faq-more {
  margin-top: 2rem;
  text-align: center;
}

.text-tzedek-green {
  color: var(--tzedek-green);
  text-decoration: none;
}

.text-tzedek-green:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .faq-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact Section */
.contact-content {
  display: grid;
  gap: 2rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.method-icon {
  margin-top: 0.25rem;
}

.method-icon i {
  font-size: 1.5rem;
  color: var(--tzedek-green);
}

.method-details {
  margin-left: 1rem;
}

.method-details h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--gray-900);
}

.method-details p {
  color: var(--gray-600);
}

.community-section h4 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.community-section p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  color: var(--tzedek-green);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--tzedek-green-dark);
}

.form-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 2rem;
}

.form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.form-success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--tzedek-green-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.3s ease;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--tzedek-green);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
}

.footer-column h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}


.footer-column p {
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: flex;
  align-items: center;
  color: var(--gray-400);
  transition: color 0.3s ease;
  font-size: 18px;
  background: #22C55E;
  padding: 10px 12px;
  border-radius: 50%;
  color: #ffffff;
  transition: 0.5s ease-in;
}

.social-icon:hover {
  color: #ffffff;
  background: #088636a4;
}

.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact li {
  color: var(--gray-400);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-400);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3rem;
  height: 3rem;
  background-color: var(--tzedek-green);
  color: var(--white);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background-color: var(--tzedek-green-dark);
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Company Policy Page */
.policy-page {
  min-height: 100vh;
  background-color: var(--white);
}

.policy-content {
  padding: 3rem 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: var(--tzedek-green);
  margin-bottom: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}

.back-link i {
  margin-right: 0.5rem;
}

.back-link:hover {
  color: var(--tzedek-green-dark);
}

.policy-header {
  margin-bottom: 2rem;
}

.policy-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.policy-header p {
  color: var(--gray-700);
  font-size: 1.125rem;
}

.policy-sections {
  margin-top: 2rem;
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.policy-list {
  list-style-type: decimal;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-list li {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.policy-footer {
  margin-top: 2rem;
  color: var(--gray-700);
}

 
/* Toast Notification Styles */
.toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: var(--white, #ffffff);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 300px;
}

.toast-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-success {
  border-left: 4px solid rgb(34, 197, 94);
}

.toast-error {
  border-left: 4px solid #ef4444;
}

.toast-warning {
  border-left: 4px solid #f59e0b;
}

.toast-info {
  border-left: 4px solid #3b82f6;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-700, #374151);
}

.toast-success .toast-content i {
  color: rgb(34, 197, 94);
  font-size: 20px;
}

.toast-error .toast-content i {
  color: #ef4444;
  font-size: 20px;
}

.toast-warning .toast-content i {
  color: #f59e0b;
  font-size: 20px;
}

.toast-info .toast-content i {
  color: #3b82f6;
  font-size: 20px;
}

.toast-content span {
  font-weight: 500;
  flex: 1;
}

/* Mobile Responsiveness for Toast */
@media (max-width: 768px) {
  .toast-notification {
    right: 10px;
    left: 10px;
    top: 10px;
    min-width: auto;
  }
}
