/* ========== PROPERTY CARD POLISH ========== */
.property-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--orange);
}

.property-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card:hover .property-card-image img {
  transform: scale(1.08);
}

.property-card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.property-badge {
  background: white;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.property-badge-available {
  background: #dcfce7;
  color: #166534;
}

.property-badge-rent {
  background: #dbeafe;
  color: #1e40af;
}

.property-badge-sale {
  background: #fef3c7;
  color: #92400e;
}

.property-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.property-card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.property-card-duration {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.property-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.property-card-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.property-card-location svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}

.property-card-features {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.property-card-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.property-card-feature svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.property-card-action {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.property-card-action:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 15px rgba(11, 93, 59, 0.2);
  transform: translateY(-2px);
}

/* ========== MARKETPLACE PRODUCT CARD POLISH ========== */
.product-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--orange);
}

.product-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-100);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #166534;
  background: #dcfce7;
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-seller {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card-seller svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.product-card-price {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 1rem;
}

.product-card-action {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
}

.product-card-action:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 15px rgba(11, 93, 59, 0.2);
  transform: translateY(-2px);
}

/* ========== FOOD CARD POLISH ========== */
.food-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.food-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--orange);
}

.food-card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: var(--gray-100);
}

.food-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.food-card:hover .food-card-image img {
  transform: scale(1.08);
}

.food-card-rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: white;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.food-card-rating svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.food-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.food-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.food-card-restaurant {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}

.food-card-category {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.food-card-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  margin-top: auto;
}

.food-card-add {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.food-card-add:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 15px rgba(11, 93, 59, 0.2);
  transform: translateY(-2px);
}

/* ========== CONSISTENT CARD GRID ========== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========== HERO IMAGE POLISH ========== */
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

.hero-bg-image.fade-out {
  opacity: 0;
}

.hero-bg-image.fade-in {
  opacity: 1;
}
