:root {
  --frp-green: #00532f;
  --frp-green-dark: #003f23;
  --frp-text: #050505;
  --frp-white: #ffffff;
  --frp-border: #dfe9e3;
  --frp-soft: #f4faf7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--frp-text);
}

.frp-header {
  width: 100%;
  background: var(--frp-white);
  position: relative;
  z-index: 1000;
}

/* Promo Bar */
.frp-header__promo {
  min-height: 45px;
  padding: 6px 56px;
  background: linear-gradient(
    90deg,
    #e8f2ec 0%,
    #fbfdfc 28%,
    #edf6f1 58%,
    #fbfdfc 80%,
    #e5f1eb 100%
  );
  border-bottom: 1px solid var(--frp-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.frp-header__promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  color: #000;
}

.frp-header__promo-badge {
  height: 27px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--frp-green);
  color: var(--frp-white);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 83, 47, 0.14);
}

.frp-header__promo-discount {
  height: 28px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #d8e8df;
  color: var(--frp-green);
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.frp-header__promo-btn {
  min-height: 30px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--frp-green);
  color: var(--frp-white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  transition: 0.25s ease;
}

.frp-header__promo-btn:hover {
  background: var(--frp-green-dark);
  transform: translateY(-1px);
}

.frp-header__promo-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: var(--frp-green);
  color: var(--frp-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.frp-header__promo-close i {
  font-size: 17px;
}

/* Main Header */
.frp-header__main {
  height: 88px;
  background: var(--frp-white);
  display: flex;
  align-items: center;
}

.frp-header__container {
  width: min(100%, 1488px);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  column-gap: 32px;
}

.frp-header__logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  text-decoration: none;
}

.frp-header__logo img {
  width: 207px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Center Nav */
.frp-header__nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 43px;
}

.frp-header__nav-link,
.frp-header__dropdown-toggle {
  border: 0;
  background: transparent;
  color: #000;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.frp-header__nav-link:hover,
.frp-header__dropdown:hover .frp-header__dropdown-toggle {
  color: var(--frp-green);
}

.frp-header__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 44px;
}

.frp-header__dropdown-toggle i {
  font-size: 17px;
  transition: transform 0.2s ease;
}

.frp-header__dropdown:hover .frp-header__dropdown-toggle i {
  transform: rotate(180deg);
}

.frp-header__dropdown-menu {
  min-width: 210px;
  padding: 10px;
  border: 1px solid #e5eee9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 40, 22, 0.12);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.22s ease;
}

.frp-header__dropdown:hover .frp-header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.frp-header__dropdown-menu a {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.frp-header__dropdown-menu a:hover {
  background: var(--frp-soft);
  color: var(--frp-green);
}

/* Actions */
.frp-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 21px;
  justify-self: end;
}

.frp-header__icon-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease;
}

.frp-header__icon-btn:hover {
  color: var(--frp-green);
}

.frp-header__icon-btn i {
  font-size: 25px;
  line-height: 1;
}

/* Professional custom cart icon */
.frp-header__cart-btn {
  color: #000;
}

.frp-header__cart-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.frp-header__cart-btn:hover {
  color: var(--frp-green);
}

@media (max-width: 767px) {
  .frp-header__cart-icon {
    width: 27px;
    height: 27px;
  }
}

.frp-header__divider {
  width: 1px;
  height: 24px;
  background: #d7d7d7;
}

.frp-header__shop-btn {
  height: 48px;
  padding: 0 9px 0 31px;
  border-radius: 999px;
  background: var(--frp-green);
  color: var(--frp-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.25s ease;
}

.frp-header__shop-btn:hover {
  background: var(--frp-green-dark);
  transform: translateY(-1px);
}

.frp-header__shop-btn span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--frp-white);
  color: var(--frp-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.frp-header__shop-btn i {
  font-size: 18px;
}

.frp-header__menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #dde8e1;
  border-radius: 50%;
  background: var(--frp-white);
  color: var(--frp-green);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.frp-header__menu-btn i {
  font-size: 23px;
}

/* Search Panel */
.frp-header__search-panel {
  width: 100%;
  padding: 0 28px;
  background: #fff;
  border-top: 1px solid #edf3ef;
  border-bottom: 1px solid #edf3ef;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding-top 0.28s ease, padding-bottom 0.28s ease;
}

.frp-header.is-search-open .frp-header__search-panel {
  max-height: 88px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.frp-header__search-wrap {
  width: min(100%, 980px);
  height: 54px;
  margin: 0 auto;
  padding: 0 16px;
  border: 1px solid #dfe9e3;
  border-radius: 999px;
  background: #f8fbf9;
  display: flex;
  align-items: center;
  gap: 12px;
}

.frp-header__search-wrap i {
  color: var(--frp-green);
  font-size: 22px;
}

.frp-header__search-submit {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--frp-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.frp-header__search-submit i {
  color: var(--frp-green);
  font-size: 22px;
}

.frp-header__search-wrap input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.frp-header__search-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: var(--frp-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.frp-header__search-close i {
  color: #fff;
  font-size: 18px;
}

/* Sidebar */
.frp-header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 10, 0.52);
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
  transition: 0.25s ease;
}

.frp-header__sidebar {
  width: min(380px, 88vw);
  height: 100vh;
  padding: 22px;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.frp-header.is-sidebar-open .frp-header__overlay {
  opacity: 1;
  visibility: visible;
}

.frp-header.is-sidebar-open .frp-header__sidebar {
  transform: translateX(0);
}

.frp-header__sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e7eee9;
}

.frp-header__sidebar-logo img {
  width: 170px;
  display: block;
}

.frp-header__sidebar-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--frp-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.frp-header__sidebar-close i {
  font-size: 22px;
}

.frp-header__sidebar-menu {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
}

.frp-header__sidebar-link,
.frp-header__sidebar-accordion {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid #eef3f0;
  background: transparent;
  color: #111;
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.frp-header__sidebar-accordion i {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.frp-header__sidebar-accordion.is-active i {
  transform: rotate(180deg);
}

.frp-header__sidebar-submenu {
  display: none;
  padding: 8px 0 12px 14px;
  border-bottom: 1px solid #eef3f0;
}

.frp-header__sidebar-submenu.is-open {
  display: block;
}

.frp-header__sidebar-submenu a {
  min-height: 38px;
  color: #4a4a4a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.frp-header__sidebar-submenu a:hover {
  color: var(--frp-green);
}

.frp-header__sidebar-btn {
  height: 50px;
  margin-top: auto;
  border-radius: 999px;
  background: var(--frp-green);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 1280px) {
  .frp-header__container {
    grid-template-columns: 215px 1fr auto;
    column-gap: 24px;
  }

  .frp-header__nav {
    gap: 28px;
  }

  .frp-header__logo img {
    width: 188px;
  }
}

@media (max-width: 1080px) {
  .frp-header__container {
    display: flex;
    justify-content: space-between;
  }

  .frp-header__nav {
    display: none;
  }

  .frp-header__menu-btn {
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .frp-header__promo {
    min-height: 40px;
    padding: 6px 43px 6px 10px;
    overflow: hidden;
  }

  .frp-header__promo-content {
    width: 100%;
    justify-content: center;
    gap: 7px;
    flex-wrap: nowrap;
    overflow: hidden;
    font-size: 11px;
  }

  .frp-header__promo-badge,
  .frp-header__promo-extra {
    display: none;
  }

  .frp-header__promo-discount {
    height: 24px;
    padding: 0 9px;
    font-size: 10.5px;
    flex-shrink: 0;
  }

  .frp-header__promo-btn {
    min-height: 25px;
    padding: 0 10px;
    font-size: 11px;
  }

  .frp-header__promo-close {
    width: 26px;
    height: 26px;
    right: 9px;
  }

  .frp-header__main {
    height: 72px;
  }

  .frp-header__container {
    padding: 0 16px;
  }

  .frp-header__logo img {
    width: 155px;
  }

  .frp-header__divider,
  .frp-header__shop-btn {
    display: none;
  }

  .frp-header__actions {
    gap: 12px;
  }

  .frp-header__icon-btn i {
    font-size: 23px;
  }

  .frp-header__search-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .frp-header.is-search-open .frp-header__search-panel {
    max-height: 76px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .frp-header__search-wrap {
    height: 48px;
  }
}

@media (max-width: 430px) {
  .frp-header__promo-content {
    gap: 6px;
    font-size: 10.5px;
  }

  .frp-header__promo-discount {
    font-size: 9.5px;
    padding: 0 7px;
  }

  .frp-header__promo-btn {
    padding: 0 8px;
    font-size: 10px;
  }

  .frp-header__logo img {
    width: 138px;
  }
}




.frp-footer {
  width: 100%;
  padding: 40px 20px 34px;
  background: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.frp-footer__container {
  width: min(100%, 100%);
  margin: 0 auto;
}

/* CTA */
.frp-footer__cta {
  min-height: 460px;
  margin-bottom: 24px;
  border-radius: 28px;
  background-color: #fbfbfb;
  background-image: var(--frp-media-footer-cta-bg-png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(0, 22, 15, 0.06), 0 8px 24px rgba(0, 20, 10, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background-color: rgba(249, 249, 249, 0.4);
  background-blend-mode: lighten;
}

.frp-footer__cta-content {
  width: min(100%, 1450px);
  padding: 62px 20px;
  text-align: center;
}

.frp-footer__eyebrow {
  margin-bottom: 18px;
  color: #12382a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.frp-footer__eyebrow i {
  color: #00532f;
  font-size: 16px;
}

.frp-footer__cta h2 {
  margin: 0;
  color: #00160f;
  font-size: clamp(36px, 3vw, 54px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.frp-footer__cta-buttons {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.frp-footer__btn {
  min-height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  transition: 0.25s ease;
}

.frp-footer__btn--primary {
  padding: 0 8px 0 28px;
  background: #00532f;
  color: #ffffff;
}

.frp-footer__btn--secondary {
  padding: 0 7px 0 28px;
  border: 1px solid #00160f;
  background: #ffffff;
  color: #00160f;
}

.frp-footer__btn span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.frp-footer__btn--primary span {
  background: #ffffff;
  color: #00532f;
}

.frp-footer__btn--secondary span {
  background: #00160f;
  color: #ffffff;
}

.frp-footer__btn i {
  font-size: 16px;
}

.frp-footer__btn:hover {
  transform: translateY(-2px);
}

.frp-footer__btn--primary:hover {
  background: #003f23;
}

.frp-footer__btn--secondary:hover {
  background: #f7fbf9;
}

/* Main Footer */
.frp-footer__main {
  border-radius: 28px;
  background: #00160f;
  color: #ffffff;
  padding: 62px 128px 32px;
  overflow: hidden;
}
.frp-footer__main-inner{
  width: min(100%, 1450px);
  margin: 0 auto;
}

.frp-footer__grid {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 1fr 1fr;
  gap: 68px;
  align-items: start;
}

.frp-footer__logo {
  width: 188px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 22px;
}

.frp-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.frp-footer__brand p {
  max-width: 355px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.frp-footer__partner {
  margin-top: 50px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.frp-footer__partner:hover {
    transform: translateY(-4px);
}

.frp-footer__partner img {
  width: 128px;
  height: auto;
  padding: 8px 12px;
  border-radius: 4px;
  background: #ffffff;
  display: block;
}

.frp-footer__partner span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 9px;
  font-weight: 700;
}

.frp-footer__links h3,
.frp-footer__contact h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.frp-footer__links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.frp-footer__links li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 14px;
}

.frp-footer__links li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 8px;
}

.frp-footer__links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.frp-footer__links a:hover {
  color: #ffffff;
}

.frp-footer__contact {
  min-width: 0;
}

.frp-footer__contact-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 13px;
  align-items: start;
  margin-bottom: 22px;
  cursor: pointer;
}

.frp-footer__contact-item i {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 8px;
}

.frp-footer__contact-item a,
.frp-footer__contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.frp-footer__contact-item a:hover {
  color: #ffffff;
}

.frp-footer__bottom {
  margin-top: 78px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.frp-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1180px) {
  .frp-footer__container {
    width: min(100%, 1040px);
  }

  .frp-footer__main {
    padding: 58px 78px 22px;
  }

  .frp-footer__grid {
    gap: 44px;
  }
}

@media (max-width: 991px) {
  .frp-footer {
    padding: 34px 16px 30px;
  }

  .frp-footer__cta {
    min-height: 310px;
    border-radius: 24px;
  }

  .frp-footer__cta h2 br {
    display: none;
  }

  .frp-footer__main {
    border-radius: 24px;
    padding: 54px 42px 24px;
  }

  .frp-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 56px;
  }

  .frp-footer__brand {
    grid-column: 1 / -1;
  }

  .frp-footer__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .frp-footer__brand p {
    max-width: 520px;
  }

  .frp-footer__partner {
    margin-top: 32px;
  }

  .frp-footer__bottom {
    margin-top: 48px;
  }
}

@media (max-width: 767px) {
  .frp-footer {
    padding: 28px 12px 26px;
  }

  .frp-footer__cta {
    min-height: 300px;
    border-radius: 20px;
    background-position: center bottom;
  }

  .frp-footer__cta-content {
    padding: 50px 18px;
  }

  .frp-footer__eyebrow {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .frp-footer__cta h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.12;
  }

  .frp-footer__cta-buttons {
    margin-top: 24px;
  }

  .frp-footer__btn {
    min-height: 43px;
    font-size: 12px;
    gap: 12px;
  }

  .frp-footer__btn--primary,
  .frp-footer__btn--secondary {
    padding-left: 22px;
  }

  .frp-footer__btn span {
    width: 33px;
    height: 33px;
  }

  .frp-footer__main {
    border-radius: 22px;
    padding: 44px 24px 24px;
  }

  .frp-footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .frp-footer__links li {
    width: fit-content;
  }

  .frp-footer__contact-item {
    width: fit-content;
    max-width: 260px;
    text-align: left;
  }

  .frp-footer__bottom {
    margin-top: 38px;
  }
}

@media (max-width: 430px) {
  .frp-footer__cta-buttons {
    flex-direction: column;
  }

  .frp-footer__btn {
    max-width: 260px;
  }

  .frp-footer__main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .frp-footer__logo {
    width: 170px;
  }
}

/* WordPress/accessibility helpers */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus,
.skip-link:focus {
  clip: auto !important;
  clip-path: none;
  display: block;
  height: auto;
  left: 16px;
  padding: 12px 16px;
  top: 16px;
  width: auto;
  z-index: 100000;
  background: #ffffff;
  color: #00532f;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.admin-bar .frp-header__sidebar {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .frp-header__sidebar {
    top: 46px;
  }
}

/* Reusable WooCommerce product card safety styles. Page CSS controls layout. */
.frp-product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.frp-product-card__image {
  display: block;
}

.frp-product-card__img {
  display: block;
  width: 100%;
  height: 100%;
}

/* WooCommerce notices */

.woocommerce-info {
  border-top-color: #00532f !important;
}

.woocommerce-info::before {
  color: #00532f !important;
}

.woocommerce-message {
  border-top-color: #00532f !important;
}

.woocommerce-message::before {
  color: #00532f !important;
}
