/* Page-specific styles only. Shared styles are in ../style.css. */

.hero {
  background: var(--t950);
  padding: 80px 48px 96px;
  position: relative;
  overflow: hidden;
  background-image: url("../../images/grinje-i-alergeni.webp");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.allergen-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.allergen-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 0.5px solid var(--t100);
  border-radius: var(--rmd);
}

.allergen-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t800);
  flex-shrink: 0;
  margin-top: 7px;
}

.allergen-item p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
  margin: 0;
}

.allergen-item p strong {
  color: var(--dark);
  font-weight: 600;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.location-card {
  background: var(--white);
  border: 0.5px solid var(--t100);
  border-radius: var(--rlg);
  padding: 22px 24px;
}

.location-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-card h3 svg {
  width: 15px;
  height: 15px;
  stroke: var(--t800);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  flex-shrink: 0;
}

.location-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 900px) {
    .hero {
        padding: 40px 20px 20px;
        background-position: 60% center;
        background-size: cover;
    }
    .hero::before {
        background: linear-gradient(
            90deg,
            rgba(6, 21, 20, 0.95) 0%,
            rgba(6, 21, 20, 0.85) 60%,
            rgba(6, 21, 20, 0.6) 100%
        );
    }
    .hero h1 {
        font-size: 26px;
    }
    .mob-br {
        display: block;
    }
    .s-title {
        font-size: 22px;
    }
    .s-body {
        font-size: 14px;
    }
    .h3-card p {
        padding-left: 0;
    }
    .cap-grid {
        grid-template-columns: 1fr 1fr;
    }
    
}

@media (max-width: 768px) {
    .price-grid, .location-grid{ grid-template-columns: 1fr; }
    .cap-grid {
        grid-template-columns: 1fr;
    }
    .price-row {
        flex-direction: column;
        gap: 8px;
    }
    .h3-card-icon svg{
        align-items: center;
    }
}
