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

/* Base typography & layout */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: radial-gradient(circle at top, #fbe3c7, #f5e2d4 45%, #e5d4c5 100%);
  font-size: 16px;
  line-height: 1.6;
}


.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */

.site-header,
.site-footer {
  text-align: center;
  padding: 24px 0;
}

.site-header {
  padding-top: 28px;
  padding-bottom: 12px;
}

.site-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 6px;
}

.site-header h1 {
  font-size: 2.4rem;
  margin-bottom: 6px;
  color: #7c2d12;
  font-weight: 700;
}

.site-header p {
  font-size: 0.98rem;
  color: #6b7280;
}

main {
  padding: 0 0 32px;
}

/* Hero */

.hero {
  padding: 32px 0 40px;
  background: radial-gradient(circle at top left, #fee9d6, #fdf7f2 55%, #fefce8 100%);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(251, 146, 60, 0.18);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b45309;
  margin-bottom: 8px;
}

.hero-copy h2 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #7c2d12;
}

.hero-copy p {
  margin: 0 0 12px;
  line-height: 1.6;
  color: #4b5563;
}

.hero-cta {
  margin-top: 10px;
  margin-bottom: 10px; /* novi razmak ispod dugmeta */
}


.hero-note {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #6b7280;
}

/* placeholder za buduću sliku */

.hero-visual {
  min-height: 180px;
  border-radius: 28px;
  background: radial-gradient(circle at top left, #fff7ed, #fde68a);
  box-shadow: 0 22px 60px rgba(251, 146, 60, 0.25);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}


/* Buttons */

.btn-primary {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #f97316);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(249, 115, 22, 0.55);
}

.btn-ghost {
  margin-top: 4px;
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #1d4ed8;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: #ffffff;
  transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.btn-ghost:hover {
  background: #eff6ff;
  border-color: #1d4ed8;
  color: #1d4ed8;
}

.product-actions {
  margin-top: 6px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-small {
  padding: 7px 14px;
  font-size: 0.82rem;
}

/* Trust bar */

.trust-bar {
  padding: 10px 0 6px;
  background: transparent;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: #4b5563;
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #f59e0b);
}

/* Section titles */

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 4px;
  color: #0f172a;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 20px;
}

/* Product grid */

.product-grid {
  padding: 16px 0 40px;
  background: linear-gradient(180deg, #fff7ed 0%, #fdf7f2 40%, #fff 100%);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.product-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 16px 16px 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
  border-color: #fed7aa;
}

/* zona za sliku – sada je samo blagi gradient dok ne dodaš <img> */

.product-media {
  width: 100%;
  max-width: 170px;
  height: 140px;
  border-radius: 18px;
  background: radial-gradient(circle at top, #fefce8, #fee2e2);
  margin-bottom: 2px;
}

/* ako dodaš sliku: <img class="product-thumb"> */

.product-thumb {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: contain;
  display: block;
}

.product-card h3 {
  font-size: 1.05rem;
  color: #111827;
  text-align: center;
}

.product-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
  text-align: center;
  min-height: 3.9em;   /* ~2.5–3 reda teksta */
  overflow: hidden;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 600;
}

/* mali badge za popuste/ponude */

.deal-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #f97316;
  color: #fff7ed;
}

.deal-pill.secondary {
  background: #22c55e;
  color: #ecfdf3;
}

/* About section */

.about-offers {
  margin-top: 26px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-offers h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #111827;
}

.about-offers p {
  font-size: 0.95rem;
  color: #4b5563;
}

/* Product detail layout */

.product-shell {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
  padding: 28px 26px 32px;
  margin-top: 24px;
}

.product-label {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #e0f2fe;
  color: #1d4ed8;
}

.label-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #fb923c);
}

.label-pill.secondary {
  background: #ecfdf3;
  color: #15803d;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
}

.product-main h2 {
  margin: 20px 0 10px;
  font-size: 1.3rem;
  color: #111827;
}

.product-main h2:not(:first-child) {
  padding-top: 6px;
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.product-main h3 {
  margin: 10px 0 6px;
  font-size: 1.05rem;
  color: #1f2937;
}

.product-main p {
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 0.96rem;
  color: #111827;
}

.product-main ul {
  margin-left: 18px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-main li {
  margin-bottom: 4px;
}

/* Premium sidebar */

.product-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-box {
  background: radial-gradient(circle at top left, #fefce8, #ffffff);
  border-radius: 18px;
  padding: 16px 18px 18px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  font-size: 0.9rem;
  border: 1px solid rgba(234, 179, 8, 0.45);
}

.product-box h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #111827;
}

.product-box .btn-small {
  display: block;
  width: 100%;
  text-align: center;
  margin: 8px 0 14px;  /* razmak iznad i ispod gumba */
}


.product-box ul {
  margin-left: 16px;
  margin-bottom: 10px;
}

.product-box li {
  margin-bottom: 5px;
}

.highlight-box {
  background: radial-gradient(circle at top left, #eef2ff, #ffffff);
  border-color: rgba(79, 70, 229, 0.6);
}

.box-note {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Product images on detail pages */

.product-hero-image {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.28);
  margin-bottom: 18px;
  display: block;
}

.product-bottle-thumb {
  width: 100%;
  max-width: 160px;
  display: block;
  margin: 0 auto 10px;
}

/* Footer */

.site-footer p {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Responsive */

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy h2 {
    font-size: 2rem;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero {
    padding: 28px 0 32px;
  }

  .trust-inner {
    justify-content: flex-start;
    align-items: flex-start;
  }
}
