/* Provitana shared site styles. Brand palette extracted from
   wp-content/uploads/elementor/css/post-*.css (Elementor kit). */

:root {
  --green:       #0EB229;
  --green-dark:  #60AD56;
  --green-light: #61CE70;
  --green-lime:  #75C32C;
  --navy:        #111E26;
  --navy-deep:   #0B1A20;
  --body:        #3B3B3B;
  --muted:       #7A7A7A;
  --border:      #DADDE0;
  --footer-text: #B6BFC4;
  --required:    #E94B2B;
  --link-red:    #C23B5E;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--body);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Poppins', 'Lato', sans-serif;
  color: var(--body);
}
a { color: var(--green); }

/* ============ Promo top bar ============ */
.promo-bar {
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 16px;
  letter-spacing: 0.2px;
}

/* ============ Header / Nav ============ */
.site-header {
  background: var(--navy);
  color: #fff;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  color: var(--green);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.5px;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
}
.primary-nav {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding-bottom: 6px;
  transition: color 0.15s ease;
}
.primary-nav a:hover { color: var(--green); }
.primary-nav a.active {
  color: var(--green);
  border-bottom: 2px solid var(--green);
}
.cart-link {
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.cart-link svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
}

/* ============ Hero ============ */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 24px;
  text-align: center;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
  margin-bottom: 32px;
}
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb .sep { color: var(--muted); }
.breadcrumb .current { color: var(--green); font-weight: 600; }
.hero h1 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 18px;
}
.hero p.lead {
  font-size: 16px;
  color: #555;
  max-width: 540px;
  margin: 0 auto;
}

/* ============ Article-style content (long-form pages) ============ */
.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}
.content .meta { color: var(--muted); font-size: 14px; margin: -8px 0 24px; font-style: italic; }
.content h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 36px 0 12px;
  color: var(--body);
}
.content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 10px;
}
.content p { font-size: 16px; margin: 0 0 14px; }
.content ul { padding-left: 22px; margin: 0 0 16px; }
.content li { margin-bottom: 8px; }
.content a { color: var(--green); font-weight: 600; }
.content a:hover { text-decoration: underline; }
.content strong { color: var(--body); font-weight: 700; }

/* ============ Form (shared by subscribe + unsubscribe) ============ */
.form-wrap {
  max-width: 440px;
  margin: 32px auto 80px;
  padding: 0 24px;
}
.form-wrap h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 20px;
}
.field { margin-bottom: 14px; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  color: var(--body);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa3a8; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(14,178,41,0.18);
}

.consent {
  margin: 22px 0 14px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}
.consent input[type="checkbox"] {
  margin-top: 3px;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  accent-color: var(--green);
}
.consent .label { font-size: 14px; font-weight: 600; }
.consent .required { color: var(--required); font-weight: 700; margin-left: 4px; }

.fine {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  margin: 8px 0 4px;
}
.fine strong { color: var(--body); font-weight: 700; }
.fine a { color: var(--link-red); text-decoration: none; font-weight: 600; }
.fine a:hover { text-decoration: underline; }

.submit-btn {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.15s ease;
}
.submit-btn:hover { background: var(--green-dark); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-status {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 4px;
  font-size: 14px;
  display: none;
}
.form-status.success {
  background: #E8F7EB;
  color: #1E7D2C;
  border: 1px solid var(--green);
  display: block;
}
.form-status.error {
  background: #FEECE7;
  color: #B83A1A;
  border: 1px solid var(--required);
  display: block;
}

/* ============ Subscribe & Save banner ============ */
.save-banner-wrap {
  background: var(--navy);
  padding: 28px 24px 0;
}
.save-banner {
  max-width: 1080px;
  margin: 0 auto;
  background-image:
    linear-gradient(rgba(14,178,41,0.85), rgba(14,178,41,0.85)),
    url('/wp-content/uploads/2025/02/healthy-eating-concept-flat-lay-mediterranean-die-2021-09-01-06-31-06-1-utc.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0 0;
  padding: 40px 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.save-banner h3 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.15;
  color: #fff;
  font-family: 'Poppins', 'Lato', sans-serif;
}
.save-banner p {
  margin: 0;
  font-size: 14px;
  max-width: 380px;
  color: #fff;
}
.save-banner-btn {
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.save-banner-btn:hover { background: #000; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy);
  color: var(--footer-text);
  padding: 56px 32px 24px;
}
.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  color: var(--footer-text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-family: 'Lato', sans-serif;
}
.footer-col .logo {
  font-size: 24px;
  margin-bottom: 18px;
  display: inline-block;
  color: var(--green);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--footer-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: #fff; }
.footer-col .meta-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 14px;
}
.footer-col .meta-row svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--green); }

.fda-disclaimer {
  max-width: 1080px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 11px;
  color: #6e7a80;
  line-height: 1.7;
}
.copyright {
  background: var(--navy-deep);
  color: #8a939a;
  text-align: center;
  padding: 18px 24px;
  font-size: 12px;
  border-top: 2px solid var(--green);
}

/* ============ Shop grid + product card ============ */
.shop-grid {
  max-width: 1080px;
  margin: 24px auto 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 20px 24px;
  text-align: center;
  text-decoration: none;
  color: var(--body);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.product-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 12px;
}
.product-card .name {
  font-family: 'Poppins', 'Lato', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
}
.product-card .price {
  font-size: 18px;
  color: var(--green);
  font-weight: 700;
  margin: 0 0 14px;
}
.product-card .cta {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 4px;
  margin-top: auto;
}
.product-card:hover .cta { background: var(--green-dark); }

/* ============ Product detail page ============ */
.product-detail {
  max-width: 1080px;
  margin: 24px auto 64px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.2fr;
  gap: 48px;
  align-items: start;
}
.product-detail .pd-image {
  background: #F6F8F7;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.product-detail .pd-image img {
  max-width: 100%;
  height: auto;
}
.product-detail .pd-info h1 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.2;
}
.product-detail .pd-info .pd-price {
  font-size: 26px;
  color: var(--green);
  font-weight: 700;
  margin: 0 0 22px;
}
.product-detail .pd-info p {
  font-size: 16px;
  margin: 0 0 14px;
}
.product-detail .pd-info ul {
  padding-left: 22px;
  margin: 0 0 22px;
}
.product-detail .pd-info li { margin-bottom: 6px; }
.product-detail .pd-cta {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  margin-right: 12px;
  transition: background 0.15s ease;
}
.product-detail .pd-cta:hover { background: var(--green-dark); }
.product-detail .pd-cta.secondary {
  background: transparent;
  color: var(--body);
  border: 1px solid var(--border);
}
.product-detail .pd-cta.secondary:hover {
  background: #F6F8F7;
  color: var(--body);
}

/* ============ Info grid (location/contact 2-column meta blocks) ============ */
.info-grid {
  max-width: 1080px;
  margin: 24px auto 48px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.info-card {
  background: #F6F8F7;
  border-radius: 12px;
  padding: 28px 32px;
}
.info-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
}
.info-card .row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}
.info-card .row svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.info-card .row a { color: var(--body); text-decoration: none; }
.info-card .row a:hover { color: var(--green); }
.info-card .row strong { display: block; font-weight: 700; }

/* ============ Map ============ */
.map-wrap {
  max-width: 1080px;
  margin: 0 auto 64px;
  padding: 0 24px;
}
.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 12px;
  display: block;
}

/* ============ Empty-state (cart) ============ */
.empty-state {
  max-width: 560px;
  margin: 24px auto 80px;
  padding: 0 24px;
  text-align: center;
}
.empty-state svg {
  width: 64px;
  height: 64px;
  color: var(--green);
  margin-bottom: 18px;
}
.empty-state h2 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 12px;
}
.empty-state p { color: #555; margin: 0 0 24px; }
.empty-state .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.empty-state .btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 4px;
  transition: background 0.15s ease;
}
.empty-state .btn:hover { background: var(--green-dark); }
.empty-state .btn.secondary {
  background: transparent;
  color: var(--body);
  border: 1px solid var(--border);
}
.empty-state .btn.secondary:hover { background: #F6F8F7; }

/* ============ Responsive ============ */
@media (max-width: 720px) {
  .product-detail { grid-template-columns: 1fr; gap: 24px; }
  .product-detail .pd-image { padding: 24px; }
  .product-detail .pd-info h1 { font-size: 26px; }
  .info-grid { grid-template-columns: 1fr; gap: 20px; }
  .map-wrap iframe { height: 320px; }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .primary-nav {
    gap: 20px;
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .hero { padding: 36px 20px 16px; }
  .hero h1 { font-size: 26px; }
  .form-wrap { margin: 24px auto 56px; }
  .content { padding: 16px 20px 48px; }
  .content h2 { font-size: 19px; }
  .save-banner {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .save-banner h3 { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 40px 20px 16px; }
}
