* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
body {
  margin: 0;
  background: #fffdf7;
  color: #223321;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #c69237;
  outline-offset: 3px;
}
.wrap {
  width: min(1230px, calc(100% - 34px));
  margin: 0 auto;
}
.topbar {
  background: #244f1d;
  color: #fff;
  font-size: 14px;
}
.topbar-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header {
  position: sticky;
  top: 0;
  background: #fffdf8;
  border-bottom: 1px solid #eee4d0;
  z-index: 30;
  box-shadow: 0 8px 22px rgba(52, 65, 44, 0.06);
}
.nav {
  height: 96px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #244f1d;
  min-width: max-content;
}
.logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.logo b {
  font-family: Georgia, serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 0.9;
}
.logo small {
  display: block;
  color: #b5832e;
  letter-spacing: 0.26em;
  font-size: 15px;
  font-weight: 700;
}
.mainnav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}
.mainnav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.mainnav a:hover {
  color: #b5832e;
}
.search {
  display: flex;
  align-items: center;
  border: 0;
  min-width: 120px;
}
.search input {
  width: 112px;
  border: 1px solid #e5d7bd;
  border-radius: 999px;
  padding: 11px 12px;
  background: #fff;
  font-size: 16px;
}
.search button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: #172715;
}
.buy-now,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 7px;
  font-weight: 800;
}
.buy-now {
  background: #bd862c;
  color: #fff;
  padding: 16px 26px;
  box-shadow: 0 7px 18px rgba(189, 134, 44, 0.22);
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    background-color 180ms ease-out;
}
.buy-now:hover {
  background: #a87524;
  transform: translateY(-1px);
}
.hero {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #efe4ce;
}
.hero-inner {
  padding: 70px 0;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.05;
  color: #244f1d;
  margin: 0 0 26px;
  max-width: 620px;
  font-weight: 600;
}
.hero p {
  max-width: 590px;
  font-size: 20px;
  color: #2d392b;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
}
.btn {
  min-height: 56px;
  padding: 12px 32px;
  font-size: 16px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    background-color 180ms ease-out,
    opacity 180ms ease-out;
}
.btn-primary {
  background: #244f1d;
  color: #fff;
}
.btn-primary:hover {
  background: #1c4217;
  box-shadow: 0 10px 24px rgba(36, 79, 29, 0.18);
}
.btn:active,
.buy-now:active,
.cart-btn:active {
  transform: translateY(1px);
}
.btn:disabled {
  cursor: wait;
  opacity: 0.72;
}
.btn-light {
  background: #fffdf8;
  border-color: #cdbb9a;
  color: #283520;
}
.hero-badges {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-badges span {
  position: relative;
  font-weight: 700;
  color: #2f462c;
  padding-left: 22px;
}
.hero-badges span:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b5832e;
}
.categories {
  padding: 34px 0 26px;
  text-align: center;
}
.categories h2,
.products h2,
.articles h2,
.testimonials h2,
.order-section h2,
.newsletter h2 {
  font-family: Georgia, serif;
  color: #25431d;
  font-size: 34px;
  line-height: 1.15;
  margin: 0;
}
.ornament {
  width: 74px;
  height: 1px;
  background: #cba86b;
  margin: 13px auto 26px;
  position: relative;
}
.ornament:after {
  content: "◆";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  background: #fffdf7;
  color: #c39844;
  padding: 0 9px;
  font-size: 13px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 28px;
}
.category-card {
  text-decoration: none;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.cat-circle {
  width: 128px;
  height: 128px;
  border: 1px solid #cda96b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fffaf0;
  box-shadow: inset 0 0 0 9px #fbf6e8;
}
.cat-circle svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: #315a24;
  stroke-width: 1.7;
}
.category-card strong {
  font-family: Georgia, serif;
  font-size: 19px;
  color: #24381f;
}
.category-card span {
  font-size: 14px;
  color: #53614e;
}
.products,
.articles,
.order-section,
.product-page,
.article-layout {
  padding: 30px 0 44px;
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title a {
  font-weight: 700;
  text-decoration: none;
  color: #415239;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 19px;
}
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #e3d7c2;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(48, 58, 39, 0.06);
  display: flex;
  flex-direction: column;
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out;
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: #d7bf93;
  box-shadow: 0 14px 32px rgba(48, 58, 39, 0.09);
}
.wishlist {
  position: absolute;
  right: 16px;
  top: 14px;
  text-decoration: none;
  color: #b88731;
  font-size: 27px;
  z-index: 2;
}
.product-media {
  height: 226px;
  background: linear-gradient(#fff, #fcf6ea);
  display: grid;
  place-items: center;
  padding: 22px;
}
.product-media img {
  max-height: 188px;
  object-fit: contain;
}
.product-copy {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-cat {
  font-size: 12px;
  font-weight: 900;
  color: #b88731;
  text-transform: uppercase;
}
.product-card h3 {
  margin: 0;
  font-size: 19px;
  color: #172715;
}
.product-card p {
  margin: 0;
  color: #465340;
  font-size: 14px;
}
.price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-top: auto;
}
.price strong {
  font-size: 22px;
  color: #172715;
}
.price del {
  color: #6f665b;
}
.price.big strong {
  font-size: 40px;
  color: #244f1d;
}
.cart-btn {
  margin-top: 10px;
  background: #285a20;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  padding: 10px 14px;
  min-height: 43px;
  display: grid;
  place-items: center;
  font-weight: 800;
  transition:
    background-color 180ms ease-out,
    transform 180ms ease-out;
}
.cart-btn:hover {
  background: #1f491a;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 22px;
}
.article-card {
  position: relative;
  background: #fff;
  border: 1px solid #e1d5c0;
  border-radius: 7px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(48, 58, 39, 0.06);
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    border-color 180ms ease-out;
}
.article-card:hover {
  transform: translateY(-2px);
  border-color: #d7bf93;
  box-shadow: 0 14px 32px rgba(48, 58, 39, 0.09);
}
.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.article-card span {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #285a20;
  color: #fff;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
}
.article-card h3 {
  font-family: Georgia, serif;
  font-size: 21px;
  margin: 14px 17px 7px;
  color: #1c2e19;
}
.article-card p {
  margin: 0 17px 18px;
  color: #4c5949;
}
.article-card em {
  display: block;
  margin: 0 17px 18px;
  color: #49633f;
  font-weight: 800;
  font-style: normal;
}
.trust-strip {
  background: #fbf3e4;
  border-top: 1px solid #f0dfbd;
  border-bottom: 1px solid #f0dfbd;
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.trust-grid div {
  position: relative;
  padding-right: 26px;
}
.trust-grid div::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: rgba(120, 95, 42, 0.24);
}
.trust-grid div:last-child::after {
  display: none;
}
.trust-grid b {
  display: block;
  font-size: 18px;
  color: #244f1d;
}
.trust-grid span {
  color: #5b6655;
}
.order-section {
  display: grid;
  grid-template-columns: 1fr 470px;
  gap: 46px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: #b5832e;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 12px;
}
.order-section p,
.page-hero p,
.product-page p {
  font-size: 20px;
  color: #485344;
}
.order-card {
  background: #fff;
  border: 1px solid #dfcfb2;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(48, 58, 39, 0.12);
  padding: 22px;
  display: grid;
  gap: 14px;
}
.order-card.is-submitting {
  opacity: 0.96;
}
.order-head span {
  display: block;
  color: #b5832e;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}
.order-head strong {
  display: block;
  font-size: 25px;
  color: #20351b;
}
.order-head p {
  font-size: 16px;
  margin: 6px 0 0;
  color: #53604e;
}
.order-card label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: #20351b;
}
.order-card input,
.order-card select {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d7c6a8;
  border-radius: 6px;
  padding: 12px 13px;
  background: #fff;
  font-size: 17px;
}
.chosen-product {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fbf4e7;
  border-radius: 7px;
  padding: 12px;
}
.chosen-product img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
}
.chosen-product span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  color: #b5832e;
}
.chosen-product b {
  display: block;
  font-size: 20px;
}
.chosen-product p {
  margin: 0;
}
.chosen-product strong {
  color: #244f1d;
  font-size: 23px;
}
.safe-note {
  font-size: 14px !important;
  margin: 0 !important;
}
.testimonials {
  background: #fffaf0;
  padding: 28px 0 40px;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  text-align: left;
  align-items: stretch;
}
.testimonial-grid article {
  background: #fff;
  border: 1px solid #dfcfb2;
  border-radius: 7px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(48, 58, 39, 0.05);
}
.stars {
  color: #c9912d;
  letter-spacing: 2px;
}
.person {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 20px;
}
.person img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.person b,
.person small {
  display: block;
}
.footer {
  background: linear-gradient(135deg, #173f18, #0f3219);
  color: #fff;
  padding: 34px 0;
}
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 34px;
}
.newsletter h2 {
  color: #fff;
  font-size: 30px;
}
.newsletter p,
.footer p {
  color: #dce8d8;
}
.newsletter form {
  display: flex;
}
.newsletter input {
  flex: 1;
  min-height: 55px;
  border: 0;
  border-radius: 7px 0 0 7px;
  padding: 0 19px;
  font-size: 16px;
}
.newsletter button {
  border: 0;
  background: #c69237;
  color: #fff;
  border-radius: 0 7px 7px 0;
  padding: 0 34px;
  font-weight: 900;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 30px;
}
.footer a {
  display: block;
  text-decoration: none;
  color: #eef8eb;
  margin-top: 7px;
}
.footer-logo img {
  width: 58px;
  height: 58px;
}
.footer-logo b {
  color: #fff;
  font-size: 30px;
}
.countries {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.countries a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  padding: 8px 10px;
}
.page-hero {
  background: #fbf3e4;
  padding: 70px 0 62px;
}
.page-hero h1,
.product-page h1 {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 1.08;
  color: #244f1d;
  margin: 0 0 14px;
}
.product-page {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 55px;
  align-items: center;
}
.product-page > div:last-child {
  max-width: 60ch;
}
.product-shot {
  background: #fff;
  border: 1px solid #e1d5c0;
  border-radius: 8px;
  padding: 38px;
  display: grid;
  place-items: center;
}
.product-shot img {
  max-height: 380px;
  object-fit: contain;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 38px;
}
.content-card {
  background: #fff;
  border: 1px solid #e1d5c0;
  border-radius: 8px;
  padding: 30px;
  font-size: 19px;
}
.content-card h2 {
  font-family: Georgia, serif;
  color: #244f1d;
}
.alert,
.empty {
  background: #fff4d9;
  border: 1px solid #dec284;
  border-radius: 8px;
  padding: 15px 18px;
  margin-top: 18px;
  font-weight: 800;
}
@media (max-width: 980px) {
  .topbar-inner span:nth-child(2) {
    display: none;
  }
  .nav {
    height: auto;
    min-height: 86px;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 12px;
  }
  .mainnav {
    order: 5;
    width: 100%;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 8px;
  }
  .search {
    margin-left: auto;
  }
  .buy-now {
    padding: 13px 16px;
  }
  .hero {
    background-position: 62% center;
  }
  .hero-inner {
    padding: 48px 0;
  }
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-grid,
  .testimonial-grid,
  .trust-grid,
  .order-section,
  .newsletter,
  .footer-grid,
  .product-page,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    gap: 16px;
  }
  .trust-grid div {
    border-bottom: 1px solid #e3c98d;
    padding-bottom: 14px;
  }
  .trust-grid div::after {
    display: none;
  }
  .trust-grid div:last-child {
    border-bottom: 0;
  }
  .logo b {
    font-size: 28px;
  }
  .logo img {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .wrap {
    width: min(100% - 24px, 1230px);
  }
  .topbar {
    font-size: 12px;
  }
  .topbar-inner {
    height: auto;
    min-height: 30px;
    justify-content: center;
  }
  .topbar-inner span:nth-child(3) {
    display: none;
  }
  .logo small {
    font-size: 11px;
  }
  .search input {
    display: none;
  }
  .hero {
    min-height: 560px;
    background-position: 73% center;
  }
  .hero h1 {
    font-size: 44px;
    max-width: 330px;
  }
  .hero p {
    font-size: 18px;
    max-width: 330px;
  }
  .hero-actions {
    flex-direction: column;
    max-width: 260px;
  }
  .hero-badges {
    display: grid;
    gap: 9px;
  }
  .categories h2,
  .products h2,
  .articles h2,
  .testimonials h2,
  .order-section h2 {
    font-size: 30px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cat-circle {
    width: 104px;
    height: 104px;
  }
  .product-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    align-items: start;
    gap: 10px;
    flex-direction: column;
  }
  .newsletter form {
    display: grid;
    gap: 10px;
  }
  .newsletter input,
  .newsletter button {
    border-radius: 7px;
  }
  .page-hero h1,
  .product-page h1 {
    font-size: 40px;
  }
  .order-card {
    padding: 17px;
  }
  .mainnav a {
    font-size: 14px;
  }
  .buy-now {
    display: none;
  }
}
#proizvodi,
#narudzba,
#clanci,
#kategorije {
  scroll-margin-top: 150px;
}
@media (max-width: 560px) {
  html {
    scroll-padding-top: 118px;
  }
  #proizvodi,
  #narudzba,
  #clanci,
  #kategorije {
    scroll-margin-top: 118px;
  }
  .nav {
    min-height: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 9px 0 7px;
    gap: 8px 12px;
  }
  .logo img {
    width: 52px;
    height: 52px;
  }
  .logo b {
    font-size: 28px;
  }
  .logo small {
    font-size: 12px;
    letter-spacing: 0.22em;
  }
  .search {
    display: none;
  }
  .mainnav {
    grid-column: 1/3;
    order: 2;
    width: 100%;
    display: flex;
    gap: 18px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 4px 0 2px;
    margin: 0;
  }
  .mainnav a {
    font-size: 15px;
    line-height: 1.1;
    flex: 0 0 auto;
  }
  .buy-now {
    display: none;
  }
  .hero {
    min-height: 520px;
    background-position: 69% center;
  }
  .hero-inner {
    padding: 38px 0;
  }
  .hero h1 {
    font-size: 39px;
    max-width: 315px;
  }
  .hero p {
    font-size: 18px;
    line-height: 1.48;
    max-width: 330px;
  }
  .hero-actions {
    max-width: 260px;
    margin-bottom: 22px;
  }
  .hero-badges span {
    font-size: 17px;
  }
  .categories {
    padding-top: 28px;
  }
  .product-media {
    height: 210px;
  }
}

.reviewed-by {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
  background: #fbf4e7;
  border: 1px solid #dfcfb2;
  border-radius: 9px;
  padding: 18px;
  margin-bottom: 24px;
}
.reviewed-by img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}
.reviewed-by span {
  display: block;
  color: #b5832e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.reviewed-by strong {
  display: block;
  color: #20351b;
  font-size: 22px;
}
.reviewed-by small {
  display: block;
  color: #61705b;
  font-weight: 800;
  margin-bottom: 7px;
}
.reviewed-by p {
  margin: 0 !important;
  font-size: 16px !important;
  color: #465340;
}
.lead-copy {
  font-size: 22px !important;
  line-height: 1.55;
  color: #263b20 !important;
  font-weight: 650;
}
.content-card h3 {
  font-family: Georgia, serif;
  color: #244f1d;
  font-size: 25px;
  margin: 24px 0 8px;
}
.content-card p {
  font-size: 19px;
  line-height: 1.72;
  color: #344232;
}
.content-card ul {
  font-size: 19px;
  line-height: 1.65;
}
.article-checks {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  display: grid;
  gap: 11px;
}
.article-checks li {
  position: relative;
  background: #fffaf0;
  border: 1px solid #e5d5b9;
  border-radius: 8px;
  padding: 14px 16px 14px 44px;
}
.article-checks li:before {
  content: "✓";
  position: absolute;
  left: 17px;
  top: 13px;
  color: #b5832e;
  font-weight: 900;
}
.conversion-box,
.final-cta {
  background: linear-gradient(135deg, #244f1d, #173f18);
  color: #fff;
  border-radius: 10px;
  padding: 24px;
  margin: 28px 0;
  box-shadow: 0 18px 40px rgba(23, 63, 24, 0.14);
}
.conversion-box strong {
  display: block;
  font-size: 25px;
  font-family: Georgia, serif;
}
.conversion-box p,
.final-cta p {
  color: #edf5e9 !important;
  margin: 8px 0 16px !important;
}
.conversion-box a {
  display: inline-flex;
  background: #c69237;
  color: #fff;
  text-decoration: none;
  border-radius: 7px;
  padding: 13px 18px;
  font-weight: 900;
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  margin: 22px 0 28px;
}
.order-steps div {
  background: #fbf4e7;
  border: 1px solid #dfcfb2;
  border-radius: 8px;
  padding: 16px;
}
.order-steps b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #244f1d;
  color: #fff;
  margin-bottom: 10px;
}
.order-steps span {
  font-weight: 800;
  color: #24351e;
}
.final-cta h2 {
  color: #fff !important;
  margin-bottom: 10px;
}
.article-page-hero p {
  max-width: 820px;
}
.article-page-hero .eyebrow {
  text-transform: none;
  letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .reviewed-by {
    grid-template-columns: 64px 1fr;
    padding: 14px;
  }
  .reviewed-by img {
    width: 64px;
    height: 64px;
  }
  .reviewed-by strong {
    font-size: 19px;
  }
  .order-steps {
    grid-template-columns: 1fr;
  }
  .lead-copy {
    font-size: 20px !important;
  }
  .content-card p,
  .content-card ul {
    font-size: 18px;
  }
  .content-card {
    padding: 21px;
  }
  .footer-logo img,
  .logo img {
    background: transparent !important;
  }
}
.testimonials {
  background: linear-gradient(180deg, #fffaf0, #fbf2e3);
  padding: 42px 0 48px;
}
.testimonial-lead {
  max-width: 760px;
  margin: 10px auto 0;
  color: #4d5948;
  font-size: 19px;
}
.testimonial-points {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 4px;
}
.testimonial-points span {
  background: #fff;
  border: 1px solid #dfcfb2;
  border-radius: 999px;
  padding: 10px 15px;
  color: #25431d;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(48, 58, 39, 0.05);
}
.testimonial-grid {
  gap: 22px;
}
.testimonial-grid article {
  position: relative;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(48, 58, 39, 0.08);
  display: flex;
  flex-direction: column;
}
.testimonial-grid article:before {
  content: "“";
  position: absolute;
  right: 18px;
  top: 4px;
  font-family: Georgia, serif;
  font-size: 72px;
  color: #ead8b8;
  line-height: 1;
}
.testimonial-grid article p {
  font-size: 17px;
  color: #31402d;
  margin: 14px 0 0;
  position: relative;
}
.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
}
.testimonial-top span {
  background: #f8efdf;
  color: #8c641f;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}
.person {
  margin-top: auto;
  padding-top: 20px;
}
.hero-badges span:first-child {
  max-width: 330px;
}
@media (max-width: 560px) {
  .testimonial-points {
    justify-content: flex-start;
  }
  .testimonial-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .testimonial-grid article p {
    font-size: 16px;
  }
}

.footer-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.product-page-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.product-page-badges span {
  background: #fff7e8;
  border: 1px solid #dec284;
  border-radius: 999px;
  padding: 9px 13px;
  color: #25431d;
  font-weight: 900;
  font-size: 14px;
}
.product-story {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 34px;
  align-items: start;
  padding-top: 16px;
}
.product-story-main,
.product-facts,
.decision-card,
.product-faq article {
  background: #fff;
  border: 1px solid #dfcfb2;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(48, 58, 39, 0.06);
}
.product-story-main {
  padding: 28px;
}
.product-story h2,
.product-decision h2,
.product-faq h2 {
  font-family: Georgia, serif;
  color: #244f1d;
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 14px;
}
.product-story p,
.product-decision p,
.product-faq p {
  font-size: 18px;
  color: #374832;
  line-height: 1.68;
  max-width: 62ch;
}
.product-proof {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  background: #fbf4e7;
  border: 1px solid #ead8b8;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
}
.product-proof img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}
.product-proof b,
.product-proof span {
  display: block;
}
.product-proof span {
  color: #6b765f;
  font-weight: 800;
}
.product-proof p {
  font-size: 15px !important;
  margin: 5px 0 0 !important;
  line-height: 1.45;
}
.product-facts {
  padding: 24px;
  position: sticky;
  top: 124px;
}
.product-facts h3,
.decision-card h3,
.product-faq h3 {
  font-family: Georgia, serif;
  color: #244f1d;
  font-size: 24px;
  margin: 0 0 12px;
}
.product-facts ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 12px;
}
.product-facts li {
  position: relative;
  padding-left: 26px;
  font-weight: 850;
  color: #2b3b27;
}
.product-facts li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b5832e;
  font-weight: 900;
}
.product-decision {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  padding-top: 10px;
}
.product-decision > div:first-child {
  background: #fff;
  border: 1px solid #dfcfb2;
  border-radius: 8px;
  padding: 24px;
}
.decision-card {
  padding: 24px;
}
.decision-card.muted {
  background: #fffaf0;
}
.product-faq {
  padding-top: 10px;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-faq article {
  padding: 22px;
}
@media (max-width: 980px) {
  .product-story,
  .product-decision,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .product-facts {
    position: static;
  }
  .product-story h2,
  .product-decision h2,
  .product-faq h2 {
    font-size: 30px;
  }
}
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
}
.article-hero-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #dfcfb2;
  box-shadow: 0 16px 36px rgba(48, 58, 39, 0.1);
}
.article-focus {
  margin: 20px 0;
  background: #fff8e8 !important;
}
.category-advice .article-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .article-hero-grid,
  .category-advice .article-grid {
    grid-template-columns: 1fr;
  }
  .article-hero-grid img {
    height: 220px;
  }
}
.article-index {
  padding: 34px 0 54px;
}
.article-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.article-filter-row a {
  text-decoration: none;
  background: #fff;
  border: 1px solid #dfcfb2;
  border-radius: 999px;
  padding: 10px 14px;
  color: #25431d;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(48, 58, 39, 0.04);
}
.article-index .article-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .article-index .article-grid {
    grid-template-columns: 1fr;
  }
}

.article-summary {
  display: grid;
  gap: 8px;
  background: #fff8ec;
  border: 1px solid #ead8b8;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(198, 146, 55, 0.08);
  padding: 18px 20px;
  margin: 28px 0;
}
.article-summary strong {
  font-family: Georgia, serif;
  color: #244f1d;
  font-size: 23px;
}
.article-summary span {
  font-size: 19px;
  line-height: 1.62;
  color: #344232;
}
