/* ===================== SKS FOOD UNITS ===================== */
.sks-food-units-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.sks-food-tag {
  color: var(--brand-secondary);
  font-weight: 800;
  text-transform: uppercase;
}

.sks-food-title {
  color: var(--brand-primary);
  font-weight: 800;
}

/* card */
.sks-food-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.5rem;
  border: 1px solid rgba(31,77,58,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  height: 100%;
  transition: 0.3s;
}

.sks-food-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.sks-food-card h4 {
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 5px;
}

.sks-food-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.sks-food-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* contact */
.sks-food-contact {
  margin-bottom: 10px;
}

.sks-food-contact a {
  display: inline-block;
  margin: 4px 6px 4px 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31,77,58,0.08);
  color: var(--brand-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
}

.sks-food-contact a:hover {
  background: var(--brand-primary);
  color: #fff;
}

/* button */
.sks-food-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-secondary);
}

.sks-food-btn:hover {
  gap: 10px;
}

/* ===================== FOOD PRODUCT SHOWCASE ===================== */
.sks-food-products-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
}

.sks-food-products-tag {
  display: inline-block;
  color: var(--brand-secondary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.sks-food-products-title {
  color: var(--brand-primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sks-food-products-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Card */
.sks-food-product-card {
  height: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(31, 77, 58, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
}

.sks-food-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

/* Image button */
.sks-food-product-img-btn {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.sks-food-product-img-btn img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.sks-food-product-card:hover .sks-food-product-img-btn img {
  transform: scale(1.06);
}

.sks-food-product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 77, 58, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  opacity: 0;
  transition: 0.3s ease;
}

.sks-food-product-img-btn:hover .sks-food-product-overlay {
  opacity: 1;
}

/* Body */
.sks-food-product-body {
  padding: 1.3rem;
}

.sks-food-product-body h4 {
  color: var(--brand-primary);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.sks-food-product-body p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.sks-food-product-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--brand-primary);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.3s ease;
}

.sks-food-product-details-btn:hover {
  background: var(--brand-secondary);
  color: #111;
  gap: 12px;
}

/* ===================== FOOD PRODUCT POPUP ===================== */
.sks-food-product-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 20, 15, 0.9);
  padding: 2rem;
}

.sks-food-product-popup.active {
  display: flex;
}

.sks-food-popup-content {
  width: min(900px, 100%);
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.sks-food-popup-content img {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
  background: #f7faf8;
  display: block;
}

.sks-food-popup-text {
  padding: 1.4rem;
}

.sks-food-popup-text h4 {
  color: var(--brand-primary);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sks-food-popup-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.sks-food-popup-close,
.sks-food-popup-nav {
  position: absolute;
  border: none;
  background: #fff;
  color: var(--brand-primary);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: 0.3s ease;
  z-index: 2;
}

.sks-food-popup-close {
  top: 22px;
  right: 22px;
}

.sks-food-popup-prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.sks-food-popup-next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.sks-food-popup-close:hover,
.sks-food-popup-nav:hover {
  background: var(--brand-secondary);
  color: #111;
}

/* Responsive */
@media (max-width: 767.98px) {
  .sks-food-products-title {
    font-size: 1.55rem;
  }

  .sks-food-product-img-btn img {
    height: 210px;
  }

  .sks-food-popup-content {
    border-radius: 18px;
  }

  .sks-food-popup-prev {
    left: 10px;
  }

  .sks-food-popup-next {
    right: 10px;
  }

  .sks-food-popup-close {
    top: 12px;
    right: 12px;
  }
}