.inner-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  background: var(--home-cream);
  color: var(--home-brown);
}

.inner-page *,
.inner-page *::before,
.inner-page *::after {
  box-sizing: border-box;
}

.inner-page a {
  color: var(--home-red);
}

.inner-hero {
  position: relative;
  display: flex;
  min-height: 370px;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(30, 12, 7, 0.74) 0%, rgba(30, 12, 7, 0.4) 43%, rgba(30, 12, 7, 0.03) 70%),
    url("../images/home-hero-v2.jpg");
  background-position: center 48%;
  background-size: cover;
}

.inner-hero__content {
  position: relative;
  width: 520px;
  margin-left: 74px;
  padding: 46px 0 34px;
  color: #fff;
}

.inner-hero h1 {
  margin: 0;
  color: #fff;
  font: 700 55px/1.04 Georgia, "Times New Roman", serif;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.inner-hero__divider {
  display: block;
  width: 310px;
  height: 18px;
  margin: 18px 0 14px;
  background:
    linear-gradient(#e9cbb0, #e9cbb0) left 9px / 130px 1px no-repeat,
    linear-gradient(#e9cbb0, #e9cbb0) right 9px / 130px 1px no-repeat;
}

.inner-hero__divider::after {
  display: block;
  color: #e9cbb0;
  content: "🌶︎";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
}

.inner-hero p {
  max-width: 430px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.48;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.inner-content {
  width: min(100% - 80px, 1050px);
  margin: 0 auto;
  padding: 32px 0 46px;
}

.panel {
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 3px 12px rgba(73, 37, 21, 0.04);
}

.inner-heading {
  margin-bottom: 25px;
  text-align: center;
}

.inner-heading h2 {
  margin: 0;
  color: var(--home-brown);
  font: 700 29px/1.16 Georgia, "Times New Roman", serif;
}

.inner-heading > span {
  display: block;
  width: 76px;
  height: 14px;
  margin: 8px auto 0;
  background:
    linear-gradient(var(--home-gold), var(--home-gold)) left 7px / 26px 1px no-repeat,
    linear-gradient(var(--home-gold), var(--home-gold)) right 7px / 26px 1px no-repeat;
}

.inner-heading > span::after {
  display: block;
  color: var(--home-gold);
  content: "🌶︎";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
}

.inner-heading--left {
  text-align: left;
}

.inner-heading--left > span {
  margin-right: auto;
  margin-left: auto;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
  color: var(--home-red);
}

.panel-title h2 {
  margin: 0;
  color: var(--home-brown);
  font: 700 24px/1.2 Georgia, "Times New Roman", serif;
}

.panel-title > .glyphicon {
  font-size: 25px;
}

.form-message {
  margin-bottom: 22px;
  padding: 14px 17px;
  border: 1px solid;
  border-radius: 5px;
  font-weight: 700;
}

.form-message--success {
  border-color: #9dc296;
  background: #eef8eb;
  color: #30662a;
}

.form-message--error {
  border-color: #db9e96;
  background: #fff0ed;
  color: #9d2118;
}

.modern-form label {
  display: block;
  margin: 0 0 7px;
  color: #4b3b33;
  font-size: 14px;
  font-weight: 700;
}

.modern-form label span {
  color: var(--home-red);
}

.modern-form label small {
  color: #95867d;
  font-size: 12px;
  font-weight: 400;
}

.modern-form input,
.modern-form textarea {
  display: block;
  width: 100%;
  margin: 0 0 17px;
  padding: 11px 13px;
  border: 1px solid #ddcbbb;
  border-radius: 5px;
  outline: 0;
  background: #fffdfb;
  color: #4b3b33;
  font-family: "Bariol", Arial, sans-serif;
  font-size: 14px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.modern-form input {
  height: 44px;
}

.modern-form textarea {
  resize: vertical;
  line-height: 1.45;
}

.modern-form input:focus,
.modern-form textarea:focus {
  border-color: var(--home-red);
  box-shadow: 0 0 0 3px rgba(169, 35, 24, 0.09);
}

.modern-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.modern-submit {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 0;
  border-radius: 4px;
  background: var(--home-red);
  color: #fff !important;
  font-family: "Bariol", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: background 150ms ease, transform 150ms ease;
}

.modern-submit:hover {
  background: var(--home-red-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.cart-success-notice {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1100;
  display: flex;
  min-width: 270px;
  max-width: calc(100vw - 32px);
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid #b8d8ae;
  border-radius: 6px;
  background: #f2faef;
  box-shadow: 0 8px 24px rgba(67, 48, 39, 0.18);
  color: #286222;
  font-size: 14px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cart-success-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-success-notice .glyphicon {
  font-size: 16px;
}

.cart-success-notice a {
  margin-left: auto;
  color: #286222;
  font-weight: 700;
  pointer-events: auto;
  text-decoration: underline;
  white-space: nowrap;
}

.delivery-banner {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 18px 34px;
  border: 1px solid #d8a38d;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.98), rgba(249, 239, 227, 0.88)),
    url("../images/delivery.jpg") right center / auto 100% no-repeat;
}

.delivery-banner__icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-red);
  color: #fff;
  font-size: 27px;
}

.delivery-banner h2 {
  margin: 0 0 5px;
  color: var(--home-brown);
  font: 700 24px/1.18 Georgia, "Times New Roman", serif;
}

.delivery-banner p {
  margin: 0;
  color: var(--home-muted);
  font-size: 14px;
}

.inner-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 38px;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: #fff;
  color: var(--home-muted);
  text-align: center;
}

.catalogue-filter-empty {
  margin: 0;
  padding: 34px 24px;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: #fff;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

.catalogue-filter-empty[hidden] {
  display: none;
}

/* Detalj proizvoda */
.product-detail-hero {
  position: relative;
  display: grid;
  min-height: 350px;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(31, 11, 6, 0.88) 0%, rgba(31, 11, 6, 0.67) 48%, rgba(31, 11, 6, 0.3) 100%),
    url("../images/home-hero-v2.jpg") center 49% / cover;
}

.product-detail-hero::after {
  position: absolute;
  top: -50px;
  right: 35px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--product-hero-image) center / cover;
  content: "";
  filter: blur(32px);
  opacity: 0.23;
}

.product-detail-hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-left: 74px;
  padding: 70px 0 55px;
  color: #fff;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #ead8ca;
  font-size: 12px;
}

.product-breadcrumbs a {
  color: #fff !important;
}

.product-breadcrumbs > span:last-child {
  overflow: hidden;
  max-width: 280px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-detail-hero h1 {
  margin: 0;
  color: #fff;
  font: 700 49px/1.06 Georgia, "Times New Roman", serif;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.product-detail-hero__content > p {
  display: -webkit-box;
  overflow: hidden;
  max-width: 500px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.45;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-detail-hero__product {
  position: relative;
  z-index: 2;
  justify-self: center;
  padding: 22px 62px 22px 10px;
}

.product-detail-hero__product img {
  display: block;
  width: 245px;
  height: 245px;
  border: 7px solid rgba(255, 248, 239, 0.85);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(20, 7, 3, 0.42);
}

.product-detail-content {
  padding-top: 20px;
}

.product-detail-main {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-gallery {
  min-width: 0;
}

.product-gallery__main {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.08 / 1;
  margin: 0 !important;
  border: 1px solid var(--home-border) !important;
  border-radius: 8px !important;
  background: #eee4d9;
  box-shadow: none !important;
}

.product-gallery__main img {
  display: block;
  width: 100% !important;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.product-gallery__main > .glyphicon {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.93);
  color: var(--home-brown);
  font-size: 15px;
  box-shadow: 0 3px 12px rgba(51, 24, 12, 0.17);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 118px);
  gap: 10px;
  margin-top: 11px;
}

.product-gallery__thumb {
  overflow: hidden;
  aspect-ratio: 1.15 / 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 7px;
  background: #fff;
}

.product-gallery__thumb.is-active {
  border-color: var(--home-red);
}

.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-card {
  min-width: 0;
  padding: 25px 28px !important;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(73, 37, 21, 0.05);
}

.product-detail-card__eyebrow {
  margin: 0 0 5px;
  color: var(--home-gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.product-detail-card .title {
  margin: 0 0 9px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--home-brown);
  font: 700 26px/1.18 Georgia, "Times New Roman", serif;
  text-align: left;
}

.product-detail-card .title a {
  color: var(--home-brown) !important;
  font-size: inherit;
}

.product-detail-card .product-detail-price {
  position: static;
  display: block;
  float: none;
  width: auto;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--home-red);
  font-size: 24px;
  line-height: 1.2;
  text-align: left;
}

.product-detail-card__description {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 17px;
  color: #5e514a;
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 14px 0;
  border-top: 1px solid #eaded3;
  border-bottom: 1px solid #eaded3;
}

.product-facts article {
  display: grid;
  min-width: 0;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border-right: 1px solid #eaded3;
}

.product-facts article:first-child {
  padding-left: 0;
}

.product-facts article:last-child {
  padding-right: 0;
  border-right: 0;
}

.product-facts article > .glyphicon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--home-border);
  border-radius: 50%;
  color: var(--home-red);
  font-size: 14px;
}

.product-facts strong,
.product-facts small {
  display: block;
}

.product-facts strong {
  overflow: hidden;
  color: var(--home-brown);
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.product-facts small {
  margin-top: 2px;
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.2;
}

.product-composition {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #eaded3;
}

.product-composition strong {
  color: var(--home-brown);
  font-size: 12px;
}

.product-composition p {
  margin: 0;
  color: #5e514a;
  font-size: 11px;
  line-height: 1.45;
}

.product-order {
  display: grid;
  grid-template-columns: 155px 1fr;
  align-items: end;
  gap: 14px;
  margin-top: 17px;
}

.product-order__quantity label {
  display: block;
  margin: 0 0 6px;
  color: var(--home-brown);
  font-size: 12px;
  font-weight: 700;
}

.product-order__quantity > div {
  display: grid;
  height: 44px;
  grid-template-columns: 38px 1fr 38px;
  border: 1px solid var(--home-border);
  border-radius: 4px;
  background: #fff;
}

.product-order__quantity button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--home-red);
  font-size: 18px;
}

.product-order__quantity .quantityField {
  width: 100%;
  height: 42px;
  margin: 0;
  padding: 0;
  border-width: 0 1px;
  border-style: solid;
  border-color: var(--home-border);
  background: #fff;
  color: var(--home-brown);
  font-size: 15px;
  text-align: center;
}

.product-order .modern-submit {
  height: 44px;
}

.product-call-order {
  display: inline-flex;
  width: calc(100% - 169px);
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 0 169px;
  border: 1px solid var(--home-red);
  border-radius: 4px;
  color: var(--home-red) !important;
  font-size: 13px;
  font-weight: 700;
}

.product-service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  padding: 17px 25px;
}

.product-service-strip article {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  padding: 0 26px;
  border-right: 1px solid #eaded3;
}

.product-service-strip article:first-child {
  padding-left: 0;
}

.product-service-strip article:last-child {
  padding-right: 0;
  border-right: 0;
}

.product-service-strip article > .glyphicon {
  color: var(--home-red);
  font-size: 34px;
  text-align: center;
}

.product-service-strip h3 {
  margin: 0 0 4px;
  color: var(--home-brown);
  font: 700 19px/1.2 Georgia, "Times New Roman", serif;
}

.product-service-strip p {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.4;
}

.product-information {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 18px;
}

.product-information article {
  padding: 22px 26px;
  border-right: 1px solid #eaded3;
}

.product-information article:last-child {
  border-right: 0;
}

.product-information h2 {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--home-red);
  color: var(--home-brown);
  font: 700 19px/1.2 Georgia, "Times New Roman", serif;
}

.product-information p {
  margin: 0 0 9px;
  color: #5d5049;
  font-size: 14px;
  line-height: 1.55;
}

.product-information a {
  font-size: 14px;
  font-weight: 700;
}

.related-products {
  margin-top: 28px;
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 240px));
  justify-content: center;
  gap: 17px;
}

.related-products .catalogue-card {
  width: 100%;
}

/* Probni paket */
.trial-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(34, 12, 7, 0.86) 0%, rgba(34, 12, 7, 0.59) 49%, rgba(34, 12, 7, 0.25) 100%),
    url("../images/home-hero-v2.jpg") center / cover;
}

.trial-hero__content {
  position: relative;
  z-index: 2;
  max-width: 530px;
  margin-left: 74px;
  padding: 50px 0 40px;
  color: #fff;
}

.trial-hero h1 {
  margin: 0;
  color: #fff;
  font: 700 55px/1.04 Georgia, "Times New Roman", serif;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.trial-hero__content > p {
  max-width: 430px;
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.48;
}

.trial-hero__actions {
  display: flex;
  gap: 15px;
  margin-top: 27px;
}

.trial-hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 35px 70px 35px 20px;
}

.trial-hero__image-frame {
  position: relative;
  width: 285px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 14px;
  background: rgba(250, 243, 232, 0.18);
  box-shadow: 0 18px 42px rgba(20, 7, 3, 0.44);
  transform: rotate(2deg);
}

.trial-hero__image-frame::before {
  position: absolute;
  top: -22px;
  left: 50%;
  width: 115px;
  height: 34px;
  border-radius: 3px;
  background: rgba(211, 174, 128, 0.78);
  content: "";
  transform: translateX(-50%) rotate(-3deg);
}

.trial-hero__image-frame img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.trial-hero__visual > span {
  margin-top: 19px;
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(51, 17, 9, 0.68);
  color: #fff3e8;
  font-size: 13px;
  font-weight: 700;
}

.trial-content {
  padding-top: 30px;
}

.trial-package {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--home-border);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(65, 30, 15, 0.07);
}

.trial-package__image {
  position: relative;
  align-self: start;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0 !important;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 !important;
  background: #eee3d7;
  box-shadow: none !important;
}

.trial-package__image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.trial-package__image > span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 3px solid #f4d5c9;
  border-radius: 50%;
  background: var(--home-red);
  color: #fff;
  font: 700 15px/1.05 Georgia, "Times New Roman", serif;
  text-align: center;
}

.trial-package .trial-package__content {
  padding: 35px 40px;
}

.trial-package__eyebrow {
  margin: 0 0 8px;
  color: var(--home-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.35px;
  text-transform: uppercase;
}

.trial-package .title {
  margin: 0 0 14px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--home-brown);
  font: 700 29px/1.18 Georgia, "Times New Roman", serif;
  text-align: left;
}

.trial-package .title a {
  color: var(--home-brown) !important;
  font-size: inherit;
}

.trial-package__lead,
.trial-package__note {
  color: var(--home-muted);
  font-size: 14px;
  line-height: 1.55;
}

.trial-package__included {
  margin: 19px 0;
  padding: 17px 19px;
  border: 1px solid #ead9ca;
  border-radius: 6px;
  background: #fdf9f4;
}

.trial-package__included h3 {
  margin: 0 0 10px;
  color: var(--home-brown);
  font: 700 17px/1.2 Georgia, "Times New Roman", serif;
}

.trial-package__included ul {
  margin: 0;
  padding-left: 19px;
  color: #574a43;
  font-size: 14px;
  line-height: 1.7;
}

.trial-package__addons {
  margin: 19px 0 0;
  padding: 17px 19px;
  border: 1px solid #ead9ca;
  border-radius: 6px;
  background: #fffaf5;
}

.trial-package__addons-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 13px;
}

.trial-package__addons-heading h3 {
  margin: 0 0 4px;
  color: var(--home-brown);
  font: 700 17px/1.2 Georgia, "Times New Roman", serif;
}

.trial-package__addons-heading p {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.45;
}

.trial-package__addons-heading strong {
  flex: 0 0 auto;
  color: var(--home-red);
  font-size: 15px;
  white-space: nowrap;
}

.trial-package__addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
}

.trial-package__addon-grid label {
  display: flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid #eee0d4;
  border-radius: 5px;
  background: #fff;
  color: #574a43;
  font-size: 13px;
  line-height: 1.25;
  cursor: pointer;
}

.trial-package__addon-grid input {
  flex: 0 0 auto;
  margin: 0;
}

.trial-package__note {
  margin: 0 0 18px;
}

.trial-package__price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eaded3;
}

.trial-package__price small,
.trial-package__price strong {
  display: block;
}

.trial-package__price small {
  margin-bottom: 3px;
  color: var(--home-muted);
  font-size: 12px;
}

.trial-package__price .prace_product2 {
  position: static;
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--home-red);
  font-size: 25px;
  line-height: 1.1;
}

.trial-package__price > span {
  color: #3c7b36;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}

.trial-package .trial-package__actions {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 11px;
  margin-top: 20px;
}

.trial-package__contact {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--home-red);
  border-radius: 4px;
  color: var(--home-red) !important;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.trial-benefits {
  margin-top: 28px;
  padding: 25px 30px 28px;
}

.trial-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trial-benefits__grid article {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 25px;
  border-right: 1px dashed #dbc8b7;
}

.trial-benefits__grid article:first-child {
  padding-left: 5px;
}

.trial-benefits__grid article:last-child {
  padding-right: 5px;
  border-right: 0;
}

.trial-benefits__grid article > .glyphicon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--home-border);
  border-radius: 50%;
  background: #fff;
  color: var(--home-red);
  font-size: 25px;
}

.trial-benefits h3,
.trial-ordering h3 {
  margin: 0 0 7px;
  color: var(--home-brown);
  font: 700 18px/1.2 Georgia, "Times New Roman", serif;
}

.trial-benefits p,
.trial-ordering p {
  margin: 0;
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.5;
}

.trial-story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 34px;
  margin-top: 28px;
}

.trial-story__copy p {
  margin: 0 0 14px;
  color: #5d5049;
  font-size: 14px;
  line-height: 1.62;
}

.trial-story__image img {
  display: block;
  width: 100%;
  height: 285px;
  border-radius: 8px;
  object-fit: cover;
}

.trial-ordering {
  margin-top: 28px;
  padding: 25px 30px 28px;
}

.trial-ordering__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.trial-ordering__grid article {
  position: relative;
  min-height: 112px;
  padding: 17px 18px 17px 58px;
  border: 1px solid #e7d6c7;
  border-radius: 6px;
  background: #fff;
}

.trial-ordering__grid b {
  position: absolute;
  top: 16px;
  left: 15px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-red);
  color: #fff;
}

.trial-contact-cta {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 20px 30px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(157, 27, 19, 0.98), rgba(157, 27, 19, 0.8)),
    url("../images/banner1.jpg") right center / cover;
  color: #fff;
}

.trial-contact-cta h2 {
  margin: 0 0 5px;
  color: #fff;
  font: 700 24px/1.2 Georgia, "Times New Roman", serif;
}

.trial-contact-cta p {
  margin: 0;
  color: #f6dfd6;
  font-size: 13px;
}

.trial-contact-cta > div:last-child {
  display: flex;
  gap: 10px;
}

.trial-contact-cta a {
  display: inline-flex;
  min-width: 145px;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  color: var(--home-red) !important;
  font-weight: 700;
}

.trial-contact-cta a:last-child {
  background: transparent;
  color: #fff !important;
}

/* Proizvodi */
.products-catalogue {
  padding-top: 30px;
}

.catalogue-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.catalogue-filter {
  min-width: 128px;
  height: 42px;
  padding: 0 18px;
  border: 1px solid var(--home-border);
  border-radius: 6px;
  background: transparent;
  color: var(--home-brown);
  font: 700 16px/1 Georgia, "Times New Roman", serif;
}

.catalogue-filter:hover,
.catalogue-filter.is-active {
  border-color: var(--home-red);
  background: var(--home-red);
  color: #fff;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.catalogue-card {
  display: flex;
  overflow: hidden;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(72, 35, 20, 0.05);
}

.catalogue-card[hidden] {
  display: none;
}

.catalogue-card.products_row .catalogue-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.1 / 1;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--home-border);
  border-radius: 0;
  background: #eee5dc;
  box-shadow: none;
}

.catalogue-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}

.catalogue-card:hover .catalogue-card__image img {
  transform: scale(1.025);
}

.catalogue-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 13px 14px 15px;
}

.catalogue-card .title {
  min-height: 42px;
  margin: 0 0 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--home-brown);
  font: 700 17px/1.18 Georgia, "Times New Roman", serif;
  text-align: left;
}

.catalogue-card .title a {
  color: var(--home-brown) !important;
  font-size: inherit;
}

.catalogue-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  color: var(--home-muted);
  font-size: 13px;
}

.catalogue-card__meta strong {
  position: static;
  top: auto;
  right: auto;
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--home-red);
  font-size: 13px;
  white-space: nowrap;
}

.catalogue-card__actions {
  margin-top: 12px;
}

.catalogue-card .product_info {
  padding: 13px 14px 15px;
}

.catalogue-card .buttons {
  text-align: center;
}

.catalogue-add,
.catalogue-details {
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 3px;
  background: var(--home-red);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.catalogue-add:hover,
.catalogue-details:hover {
  background: var(--home-red-dark);
  color: #fff !important;
}

/* O nama */
.about-story {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 36px;
}

.about-story__copy p {
  margin: 0 0 14px;
  color: #5d5049;
  font-size: 14px;
  line-height: 1.62;
}

.about-story__media img {
  display: block;
  width: 100%;
  height: 265px;
  border-radius: 7px;
  object-fit: cover;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.about-value {
  overflow: hidden;
  border: 1px solid var(--home-border);
  border-radius: 7px;
  background: #fff;
}

.about-value img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about-value div {
  padding: 17px 19px 20px;
  text-align: center;
}

.about-value h3,
.process-grid h3 {
  margin: 0 0 9px;
  color: var(--home-brown);
  font: 700 19px/1.18 Georgia, "Times New Roman", serif;
}

.about-value p,
.process-grid p {
  margin: 0;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.5;
}

.about-process {
  margin-top: 28px;
  padding: 24px 30px 28px;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid article {
  position: relative;
  min-height: 128px;
  padding: 5px 24px 5px 84px;
  border-right: 1px dashed #dfcdbd;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-icon {
  position: absolute;
  top: 3px;
  left: 11px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--home-border);
  border-radius: 50%;
  color: var(--home-red);
  font-size: 24px;
}

.about-press {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.press-card {
  padding: 24px;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: #fff;
}

.press-card p {
  color: var(--home-muted);
}

.press-card img {
  display: block;
  width: 100%;
  max-height: 252px;
  object-fit: contain;
}

.responsive-video {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.responsive-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-cta {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 28px;
  padding: 18px 38px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(157, 27, 19, 0.98), rgba(157, 27, 19, 0.74)),
    url("../images/banner1.jpg") right 45% / cover;
  color: #fff;
}

.inner-cta h2 {
  margin: 0 0 3px;
  color: #fff;
  font: 700 24px/1.2 Georgia, "Times New Roman", serif;
}

.inner-cta p {
  margin: 0;
  color: #f6dfd6;
}

.inner-cta a {
  display: inline-flex;
  min-width: 220px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  background: #fff;
  color: var(--home-red) !important;
  font-weight: 700;
}

/* Utisci */
.reviews-content {
  padding-top: 28px;
}

.featured-reviews,
.reviews-grid-page {
  display: grid;
  gap: 18px;
}

.featured-reviews {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews-grid-page {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reviews-more-heading {
  margin-top: 30px;
}

.review-extra-card[hidden] {
  display: none;
}

.reviews-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.reviews-load-more {
  display: inline-flex;
  min-width: 190px;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--home-red);
  border-radius: 4px;
  background: #fff;
  color: var(--home-red);
  font-family: "Bariol", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.reviews-load-more:hover {
  background: var(--home-red);
  color: #fff;
}

.reviews-load-more[hidden] {
  display: none;
}

.customer-review {
  position: relative;
  display: flex;
  min-height: 188px;
  flex-direction: column;
  padding: 22px 20px 18px;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: #fff;
}

.customer-review--featured {
  min-height: 230px;
  padding: 27px 25px 21px;
}

.customer-review__quote {
  height: 31px;
  color: var(--home-red);
  font: 700 46px/0.8 Georgia, "Times New Roman", serif;
}

.customer-review p {
  margin: 10px 0 19px;
  color: #554841;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-line;
}

.customer-review footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 13px;
  border-top: 1px solid #eee2d6;
}

.customer-review footer strong {
  color: var(--home-brown);
  font: 700 16px/1.2 Georgia, "Times New Roman", serif;
}

.customer-review footer time {
  color: #998980;
  font-size: 11px;
}

.review-form-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 35px;
  margin-top: 30px;
  padding: 27px 32px;
  border: 1px solid #d8a38d;
  border-radius: 8px;
  background: #fff;
}

.review-form-panel__intro {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.review-form-panel__intro > .glyphicon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-red);
  color: #fff;
  font-size: 25px;
}

.review-form-panel__intro h2 {
  margin: 4px 0 7px;
  color: var(--home-brown);
  font: 700 23px/1.2 Georgia, "Times New Roman", serif;
}

.review-form-panel__intro p {
  margin: 0;
  color: var(--home-muted);
  line-height: 1.45;
}

.review-form input {
  max-width: 100%;
}

/* Kontakt */
.contact-main-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 20px;
}

.contact-details,
.contact-form-card,
.location-card,
.support-card {
  padding: 24px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid #eadccf;
}

.contact-detail:last-child {
  border-bottom: 0;
}

.contact-detail__icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-red);
  color: #fff;
  font-size: 21px;
}

.contact-detail small,
.contact-detail strong,
.contact-detail a {
  display: block;
}

.contact-detail small {
  margin-bottom: 3px;
  color: var(--home-muted);
}

.contact-detail strong,
.contact-detail a {
  overflow-wrap: anywhere;
  color: var(--home-red) !important;
  font: 700 17px/1.25 Georgia, "Times New Roman", serif;
}

.contact-detail p {
  margin: 4px 0 0;
  color: var(--home-muted);
  font-size: 12px;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 20px;
  margin-top: 20px;
}

.location-card iframe {
  display: block;
  width: 100%;
  height: 235px;
  border: 0;
  border-radius: 6px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  color: var(--home-red) !important;
  font-weight: 700;
}

.support-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.support-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--home-red);
  color: #fff;
  font-size: 23px;
}

.support-card h2 {
  margin: 14px 0 8px;
  color: var(--home-brown);
  font: 700 22px/1.2 Georgia, "Times New Roman", serif;
}

.support-card p {
  min-height: 42px;
  margin: 0 0 13px;
  color: var(--home-muted);
  font-size: 13px;
  line-height: 1.45;
}

.support-card__phone {
  margin: 1px 0 8px;
  color: var(--home-red) !important;
  font-size: 24px;
  font-weight: 700;
}

.support-card small {
  margin-bottom: 15px;
  color: var(--home-muted);
}

.support-card__facebook-link {
  color: var(--home-red) !important;
  font-weight: 700;
}

.support-card .modern-submit,
.messenger-button {
  margin-top: auto;
}

.messenger-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 14px;
  border-radius: 4px;
  background: #1684ee;
  color: #fff !important;
  font-weight: 700;
}

.support-card--messenger .support-card__icon {
  background: #1684ee;
}

/* Dostava */
.delivery-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.delivery-step {
  position: relative;
  min-height: 180px;
  padding: 24px 30px 22px;
  border: 1px solid var(--home-border);
  border-radius: 8px;
  background: #fff;
  text-align: center;
}

.delivery-step > .glyphicon {
  display: block;
  height: 46px;
  color: var(--home-red);
  font-size: 43px;
}

.delivery-step h2 {
  margin: 11px 0 10px;
  color: var(--home-brown);
  font: 700 23px/1.2 Georgia, "Times New Roman", serif;
}

.delivery-step p {
  margin: 0;
  color: var(--home-muted);
  font-size: 15px;
  line-height: 1.55;
}

.delivery-details {
  width: 100%;
  max-width: none;
  margin: 30px 0 0;
}

.delivery-detail-row {
  margin-bottom: 15px;
}

.delivery-detail-row p {
  margin: 0;
  color: #574a43;
  font-size: 16px;
  line-height: 1.6;
}

.delivery-details + .delivery-banner {
  margin-top: 26px;
}

.pickup-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 35px;
  margin-top: 28px;
  padding: 27px 31px;
}

.pickup-copy p {
  margin: 0 0 13px;
  color: #5a4d46;
  font-size: 16px;
  line-height: 1.55;
}

.pickup-schedule {
  padding-left: 28px;
  border-left: 2px solid var(--home-red);
}

.pickup-schedule section + section {
  margin-top: 24px;
}

.pickup-schedule h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 11px;
  color: var(--home-red);
  font: 700 21px/1.2 Georgia, "Times New Roman", serif;
}

.pickup-schedule h3 .glyphicon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--home-border);
  border-radius: 50%;
  font-size: 17px;
}

.pickup-schedule p {
  margin: 0 0 12px;
  color: #5a4d46;
  font-size: 12px;
  line-height: 1.5;
}

.pickup-schedule p strong {
  margin-right: 5px;
}

.pickup-schedule p a {
  display: block;
  margin: 3px 0 0 94px;
  font-weight: 700;
}

/* Korpa */
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.8fr);
  align-items: start;
  gap: 20px;
}

.checkout-main {
  display: grid;
  gap: 20px;
}

.cart-panel,
.order-form-panel,
.order-summary,
.checkout-benefits {
  padding: 22px;
}

.cart-table-wrap {
  overflow-x: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  color: #534740;
  font-size: 13px;
}

.cart-table th,
.cart-table td {
  padding: 12px 8px;
  border-bottom: 1px solid #e9dcd0;
  text-align: left;
  vertical-align: middle;
}

.cart-table th {
  color: #4c3b33;
  font-weight: 700;
}

.cart-product-image img {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 4px;
  object-fit: cover;
}

.cart-product-name {
  max-width: 150px;
  color: var(--home-red);
  font-weight: 700;
}

.cart-product-name strong {
  display: block;
}

.cart-product-details {
  display: block;
  margin-top: 4px;
  color: #6d5e55;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.quantity-controls {
  display: inline-flex;
  height: 36px;
  align-items: center;
  border: 1px solid var(--home-border);
  border-radius: 4px;
  background: #fff;
}

.quantity-controls button {
  width: 30px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--home-brown);
  font-size: 17px;
}

.quantity-controls span {
  min-width: 28px;
  text-align: center;
}

.cart-row-total {
  color: var(--home-red);
  font-weight: 700;
}

.cart-page-remove {
  width: 29px;
  height: 29px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f7e8e4;
  color: var(--home-red);
  font-size: 20px;
  line-height: 28px;
}

.cart-total {
  padding-top: 16px;
  text-align: right;
}

.cart-total > div {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  font-size: 16px;
}

.cart-total strong {
  color: var(--home-red);
  font-size: 19px;
}

.additionalCosts {
  position: static;
  right: auto;
  margin: 7px 0 0;
  color: #8b7c73;
  font-size: 12px;
  font-style: italic;
  text-align: right;
}

.additionalCosts.is-free {
  color: #34702e;
  font-weight: 700;
}

.cart-empty {
  padding: 28px;
  color: var(--home-muted);
  text-align: center;
}

.cart-empty .glyphicon {
  color: var(--home-red);
  font-size: 37px;
}

.cart-empty p {
  margin: 10px 0;
  font-size: 16px;
}

.cart-empty a {
  font-weight: 700;
}

.order-form-panel {
  padding: 25px 24px 26px;
}

.checkout-sidebar {
  display: grid;
  gap: 20px;
}

.order-summary {
  position: sticky;
  top: 92px;
}

.order-summary > p {
  margin: 0 0 10px;
}

.summary-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid #e9dcd0;
  font-size: 12px;
}

.summary-item img {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
}

.summary-item strong {
  color: var(--home-red);
  white-space: nowrap;
}

.summary-item-name strong {
  display: block;
  color: #574a43;
  white-space: normal;
}

.summary-item-name small {
  display: block;
  margin-top: 3px;
  color: #6d5e55;
  font-size: 11px;
  line-height: 1.3;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 13px;
  color: var(--home-muted);
  font-size: 13px;
}

.summary-total {
  margin: 18px 0 13px;
  padding: 14px 12px;
  border: 1px solid #e7cdb4;
  border-radius: 5px;
  background: #fff8ed;
  text-align: center;
}

.summary-total span,
.summary-total strong {
  display: block;
}

.summary-total strong {
  margin-top: 5px;
  color: var(--home-red);
  font: 700 18px/1.25 Georgia, "Times New Roman", serif;
}

.summary-continue {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 10px;
  border: 1px solid var(--home-red);
  border-radius: 4px;
  color: var(--home-red) !important;
  font-weight: 700;
}

.checkout-benefits article {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed #dbc8b7;
}

.checkout-benefits article:last-child {
  border-bottom: 0;
}

.checkout-benefits article > .glyphicon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--home-border);
  border-radius: 50%;
  color: var(--home-red);
  font-size: 22px;
}

.checkout-benefits h3 {
  margin: 0 0 5px;
  color: var(--home-brown);
  font: 700 18px/1.2 Georgia, "Times New Roman", serif;
}

.checkout-benefits p {
  margin: 0;
  color: var(--home-muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .inner-hero__content {
    margin-left: 48px;
  }

  .inner-content {
    width: calc(100% - 56px);
  }

  .catalogue-grid,
  .reviews-grid-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalogue-filters {
    flex-wrap: wrap;
  }

  .catalogue-filter {
    min-width: 115px;
  }

  .contact-main-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .contact-support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .location-card {
    grid-column: 1 / -1;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .order-summary {
    position: static;
  }

  .product-detail-hero__content {
    margin-left: 48px;
  }

  .product-detail-hero__product {
    padding-right: 36px;
  }

  .product-detail-hero__product img {
    width: 220px;
    height: 220px;
  }

  .product-detail-main {
    grid-template-columns: 0.84fr 1.16fr;
  }

  .product-detail-card {
    padding: 22px !important;
  }

  .product-service-strip article {
    padding: 0 15px;
  }

  .trial-hero__visual {
    padding-right: 35px;
  }

  .trial-package {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .trial-package .trial-package__content {
    padding: 30px;
  }

  .trial-benefits__grid article {
    grid-template-columns: 54px 1fr;
    padding: 0 14px;
  }

  .trial-benefits__grid article > .glyphicon {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }
}

@media (max-width: 820px) {
  .inner-hero {
    min-height: 350px;
    background-position: 64% center;
  }

  .inner-hero::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(29, 10, 6, 0.82), rgba(29, 10, 6, 0.47) 60%, rgba(29, 10, 6, 0.08));
    content: "";
  }

  .inner-hero h1 {
    font-size: 48px;
  }

  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .about-story__media {
    order: -1;
  }

  .about-values,
  .process-grid,
  .featured-reviews,
  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-value:last-child {
    grid-column: 1 / -1;
  }

  .process-grid article {
    min-height: 105px;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px dashed #dfcdbd;
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .reviews-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-form-panel {
    grid-template-columns: 1fr;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .delivery-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .delivery-step {
    min-height: 210px;
    padding: 23px 16px 18px;
  }

  .pickup-panel {
    grid-template-columns: 1fr;
  }

  .pickup-schedule {
    padding: 24px 0 0;
    border-top: 2px solid var(--home-red);
    border-left: 0;
  }

  .product-detail-hero {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .product-detail-hero h1 {
    font-size: 43px;
  }

  .product-detail-hero__product {
    padding-right: 26px;
  }

  .product-detail-hero__product img {
    width: 185px;
    height: 185px;
  }

  .product-detail-main {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    width: min(100%, 560px);
    margin: 0 auto;
  }

  .product-gallery__thumbs {
    justify-content: center;
  }

  .product-detail-card {
    padding: 26px !important;
  }

  .product-service-strip {
    padding: 17px;
  }

  .product-service-strip article {
    grid-template-columns: 38px 1fr;
    gap: 9px;
    padding: 0 12px;
  }

  .product-service-strip article > .glyphicon {
    font-size: 27px;
  }

  .product-service-strip h3 {
    font-size: 17px;
  }

  .trial-hero {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .trial-hero__content {
    margin-left: 48px;
  }

  .trial-hero h1 {
    font-size: 48px;
  }

  .trial-hero__image-frame {
    width: 230px;
  }

  .trial-package {
    grid-template-columns: 0.68fr 1.32fr;
  }

  .trial-package__image {
    min-height: 0;
  }

  .trial-package .trial-package__actions {
    grid-template-columns: 1fr;
  }

  .trial-benefits__grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .trial-benefits__grid article,
  .trial-benefits__grid article:first-child,
  .trial-benefits__grid article:last-child {
    padding: 0 0 17px;
    border-right: 0;
    border-bottom: 1px dashed #dbc8b7;
  }

  .trial-benefits__grid article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .trial-contact-cta {
    display: block;
  }

  .trial-contact-cta > div:last-child {
    margin-top: 17px;
  }
}

@media (max-width: 620px) {
  .inner-hero {
    min-height: 390px;
    align-items: flex-start;
    background-position: 75% center;
  }

  .inner-hero::before {
    background:
      linear-gradient(180deg, rgba(28, 10, 6, 0.38), rgba(28, 10, 6, 0.18) 60%, rgba(28, 10, 6, 0.5)),
      linear-gradient(90deg, rgba(28, 10, 6, 0.84), rgba(28, 10, 6, 0.3) 84%);
  }

  .inner-hero__content {
    width: auto;
    margin: 0;
    padding: 72px 23px 30px;
  }

  .inner-hero h1 {
    max-width: 345px;
    font-size: 42px;
    line-height: 1.06;
  }

  .inner-hero__divider {
    width: 255px;
    background:
      linear-gradient(#e9cbb0, #e9cbb0) left 9px / 103px 1px no-repeat,
      linear-gradient(#e9cbb0, #e9cbb0) right 9px / 103px 1px no-repeat;
  }

  .inner-hero p {
    max-width: 330px;
    font-size: 16px;
  }

  .inner-content {
    width: calc(100% - 30px);
    padding: 24px 0 32px;
  }

  .inner-heading h2 {
    font-size: 26px;
  }

  .panel-title h2 {
    font-size: 22px;
  }

  .modern-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .delivery-banner {
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
  }

  .delivery-banner__icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    font-size: 21px;
  }

  .delivery-banner h2 {
    font-size: 19px;
  }

  .delivery-banner p {
    font-size: 12px;
    line-height: 1.4;
  }

  .catalogue-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-bottom: 20px;
  }

  .catalogue-filter {
    min-width: 0;
    height: 40px;
    font-size: 14px;
  }

  .catalogue-filter:first-child {
    grid-column: 1 / -1;
  }

  .catalogue-grid {
    gap: 10px;
  }

  .catalogue-card__body {
    padding: 11px 10px 12px;
  }

  .catalogue-card .title {
    min-height: 36px;
    font-size: 15px;
  }

  .catalogue-card__meta {
    display: block;
  }

  .catalogue-card__meta strong {
    display: block;
    margin-top: 4px;
  }

  .about-story__media img {
    height: 220px;
  }

  .about-values,
  .about-press {
    grid-template-columns: 1fr;
  }

  .about-value:last-child {
    grid-column: auto;
  }

  .about-process {
    padding: 22px 18px;
  }

  .inner-cta {
    display: block;
    padding: 23px;
  }

  .inner-cta a {
    width: 100%;
    min-width: 0;
    margin-top: 17px;
  }

  .reviews-grid-page {
    grid-template-columns: 1fr;
  }

  .customer-review,
  .customer-review--featured {
    min-height: 175px;
  }

  .review-form-panel {
    padding: 22px 18px;
  }

  .review-form-panel__intro {
    display: block;
  }

  .review-form-panel__intro > .glyphicon {
    margin-bottom: 12px;
  }

  .contact-details,
  .contact-form-card,
  .location-card,
  .support-card {
    padding: 20px 17px;
  }

  .contact-support-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-column: auto;
  }

  .location-card iframe {
    height: 220px;
  }

  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .delivery-step {
    min-height: 0;
  }

  .pickup-panel {
    padding: 22px 18px;
  }

  .pickup-schedule p a {
    margin-left: 0;
  }

  .checkout-sidebar {
    grid-template-columns: 1fr;
  }

  .product-detail-hero {
    display: block;
    min-height: 500px;
  }

  .product-detail-hero__content {
    width: 100%;
    margin: 0;
    padding: 45px 22px 205px;
  }

  .product-breadcrumbs {
    margin-bottom: 23px;
  }

  .product-detail-hero h1 {
    max-width: 340px;
    font-size: 40px;
  }

  .product-detail-hero__content > p {
    max-width: 330px;
    font-size: 15px;
    -webkit-line-clamp: 3;
  }

  .product-detail-hero__product {
    position: absolute;
    right: 15px;
    bottom: 19px;
    padding: 0;
  }

  .product-detail-hero__product img {
    width: 165px;
    height: 165px;
    border-width: 5px;
  }

  .product-detail-hero::after {
    top: auto;
    right: -60px;
    bottom: -90px;
    width: 300px;
    height: 300px;
  }

  .product-gallery__main {
    aspect-ratio: 1 / 1;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(2, 100px);
  }

  .product-detail-card {
    padding: 22px 17px !important;
  }

  .product-detail-card .title {
    font-size: 24px;
  }

  .product-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-facts article,
  .product-facts article:first-child,
  .product-facts article:last-child {
    padding: 0 0 12px;
    border-right: 0;
    border-bottom: 1px solid #eaded3;
  }

  .product-facts article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .product-facts strong {
    font-size: 14px;
  }

  .product-order {
    grid-template-columns: 1fr;
  }

  .product-call-order {
    width: 100%;
    margin-left: 0;
  }

  .product-service-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-service-strip article,
  .product-service-strip article:first-child,
  .product-service-strip article:last-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid #eaded3;
  }

  .product-service-strip article:last-child {
    border-bottom: 0;
  }

  .product-information {
    grid-template-columns: 1fr;
  }

  .product-information article,
  .product-information article:last-child {
    padding: 20px 17px;
    border-right: 0;
    border-bottom: 1px solid #eaded3;
  }

  .product-information article:last-child {
    border-bottom: 0;
  }

  .related-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .trial-hero {
    display: flex;
    min-height: 610px;
    align-items: flex-start;
    flex-direction: column;
    background-position: 72% center;
  }

  .trial-hero::before {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(28, 10, 6, 0.48), rgba(28, 10, 6, 0.33) 56%, rgba(28, 10, 6, 0.68)),
      linear-gradient(90deg, rgba(28, 10, 6, 0.82), rgba(28, 10, 6, 0.25));
    content: "";
  }

  .trial-hero__content {
    width: 100%;
    margin: 0;
    padding: 55px 22px 16px;
  }

  .trial-hero h1 {
    font-size: 42px;
  }

  .trial-hero__content > p {
    font-size: 16px;
  }

  .trial-hero__actions {
    gap: 9px;
    margin-top: 21px;
  }

  .trial-hero__actions .button {
    min-width: 0;
    flex: 1;
    padding: 0 11px;
    font-size: 13px;
  }

  .trial-hero__visual {
    width: 100%;
    margin-top: auto;
    padding: 10px 20px 27px;
  }

  .trial-hero__image-frame {
    width: 205px;
  }

  .trial-hero__visual > span {
    margin-top: 12px;
  }

  .trial-package {
    grid-template-columns: 1fr;
  }

  .trial-package__image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .trial-package .trial-package__content {
    padding: 24px 18px;
  }

  .trial-package .title {
    min-height: 0;
    font-size: 25px;
  }

  .trial-package__price {
    display: block;
  }

  .trial-package__price > span {
    display: block;
    margin-top: 7px;
    text-align: left;
  }

  .trial-package__addons-heading {
    flex-direction: column;
    gap: 6px;
  }

  .trial-package__addon-grid {
    grid-template-columns: 1fr;
  }

  .trial-benefits,
  .trial-ordering {
    padding: 22px 18px;
  }

  .trial-story {
    grid-template-columns: 1fr;
  }

  .trial-story__image {
    order: -1;
  }

  .trial-story__image img {
    height: 220px;
  }

  .trial-ordering__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trial-contact-cta {
    padding: 23px 18px;
  }

  .trial-contact-cta > div:last-child {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trial-contact-cta a {
    width: 100%;
  }

  .cart-panel,
  .order-form-panel,
  .order-summary,
  .checkout-benefits {
    padding: 18px 14px;
  }

  .cart-table th:nth-child(4),
  .cart-table td:nth-child(4) {
    display: none;
  }

  .cart-table th,
  .cart-table td {
    padding: 10px 5px;
    font-size: 11px;
  }

  .cart-product-image img {
    width: 46px;
    height: 46px;
  }

  .quantity-controls {
    height: 32px;
  }

  .quantity-controls button {
    width: 24px;
    height: 30px;
  }

  .quantity-controls span {
    min-width: 20px;
  }

  .cart-total > div {
    font-size: 14px;
  }

  .cart-total strong {
    font-size: 17px;
  }
}
