@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  background: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 991px) {
  h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 2.25rem;
}
@media (max-width: 991px) {
  h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.875rem;
}
@media (max-width: 991px) {
  h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h4 {
    font-size: 1.25rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}

a {
  color: #0F4C75;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
a:hover {
  color: rgb(9.2045454545, 46.6363636364, 71.7954545455);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.gs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 991px) {
  .gs-container {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .gs-container {
    padding: 0 1rem;
  }
}

.gs-section {
  padding: 6rem 0;
}
@media (max-width: 991px) {
  .gs-section {
    padding: 4rem 0;
  }
}
@media (max-width: 767px) {
  .gs-section {
    padding: 3rem 0;
  }
}

.gs-section--small {
  padding: 3rem 0;
}
@media (max-width: 767px) {
  .gs-section--small {
    padding: 2rem 0;
  }
}

.gs-grid {
  display: grid;
  gap: 2rem;
}
.gs-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .gs-grid--2 {
    grid-template-columns: 1fr;
  }
}
.gs-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .gs-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gs-grid--3 {
    grid-template-columns: 1fr;
  }
}
.gs-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1199px) {
  .gs-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .gs-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gs-grid--4 {
    grid-template-columns: 1fr;
  }
}

.gs-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 calc(-1 * 1rem);
}
.gs-row > * {
  padding: 0 1rem;
}

.gs-col {
  flex: 1;
}
.gs-col--half {
  flex: 0 0 50%;
}
@media (max-width: 767px) {
  .gs-col--half {
    flex: 0 0 100%;
  }
}
.gs-col--third {
  flex: 0 0 33.333%;
}
@media (max-width: 991px) {
  .gs-col--third {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .gs-col--third {
    flex: 0 0 100%;
  }
}
.gs-col--quarter {
  flex: 0 0 25%;
}
@media (max-width: 991px) {
  .gs-col--quarter {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .gs-col--quarter {
    flex: 0 0 100%;
  }
}

.gs-header {
  background-color: #F2E8D8;
  border-bottom: 1px solid #F2E8D8;
  padding: 1rem 0;
  position: relative;
  z-index: 100;
}
.gs-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 991px) {
  .gs-header__container {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .gs-header__container {
    padding: 0 1rem;
  }
}
.gs-header__container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
}
@media (max-width: 991px) {
  .gs-header__container {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .gs-header__container {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }
}
.gs-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 991px) {
  .gs-header__nav {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .gs-header__nav {
    display: none;
  }
}
.gs-header__nav .primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
.gs-header__nav .primary-menu li {
  position: relative;
}
.gs-header__nav .primary-menu li.menu-item-has-children > a::after {
  content: "▾";
  margin-left: 0.25rem;
  font-size: 0.7em;
  vertical-align: middle;
}
.gs-header__nav .primary-menu li a {
  color: #333333;
}
.gs-header__nav .primary-menu li .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  background: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
}
.gs-header__nav .primary-menu li .sub-menu a {
  padding: 0.5rem 1rem;
  display: block;
  color: #333333;
}
.gs-header__nav .primary-menu li.open .sub-menu {
  display: block;
  position: static;
}
.gs-header__nav .primary-menu li.current-menu-item > a,
.gs-header__nav .primary-menu li.current-page-ancestor > a {
  color: #0F4C75;
  font-weight: 600;
  position: relative;
}
.gs-header__nav .primary-menu li.current-menu-item > a::before,
.gs-header__nav .primary-menu li.current-page-ancestor > a::before {
  content: "";
  position: absolute;
  bottom: calc(0rem - 4px);
  left: 0;
  right: 0;
  height: 2px;
  background-color: #0F4C75;
}
.gs-header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gs-header__nav li {
  position: relative;
}
.gs-header__nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  background: #FFFFFF;
  color: #333333;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  z-index: 1000;
}
.gs-header__nav .sub-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333333;
  text-decoration: none;
}
.gs-header__nav .sub-menu a:hover {
  background: #F2E8D8;
}
.gs-header__nav .sub-menu::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: transparent;
  pointer-events: auto;
}
.gs-header__nav li:hover > .sub-menu {
  display: block;
}
@media (max-width: 767px) {
  .gs-header__nav .sub-menu {
    position: static;
    display: block;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .gs-header__nav .sub-menu a {
    padding: 1rem 0;
  }
}
.gs-header__nav-link {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  transition: color 300ms ease-in-out;
  position: relative;
}
.gs-header__nav-link:hover {
  color: #0F4C75;
}
.gs-header__nav-link--active {
  color: #0F4C75;
}
.gs-header__nav-link--active::after {
  content: "";
  position: absolute;
  bottom: calc(-1rem - 1px);
  left: 0;
  right: 0;
  height: 2px;
  background-color: #0F4C75;
}
.gs-header__logo {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.5rem;
  color: #333333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gs-header__logo-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gs-header__logo-global {
  font-weight: 300;
}
.gs-header__logo-sweet {
  font-weight: 700;
}
.gs-header__logo-image {
  max-height: 100px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.gs-header__logo-image--secondary {
  max-height: 100px;
  max-width: 200px;
  width: auto;
  opacity: 0.95;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .gs-header__logo {
    font-size: 1.25rem;
  }
  .gs-header__logo-image {
    max-height: 80px;
    max-width: 150px;
  }
}
.gs-header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .gs-header__actions {
    gap: 1rem;
  }
}
.gs-header__action-link {
  display: flex;
  align-items: center;
  color: #333333;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-header__action-link:hover {
  color: #0F4C75;
}
.gs-header__icon {
  width: 24px;
  height: 24px;
  display: block;
}
.gs-header__cart-count {
  position: relative;
}
.gs-header__cart-count::after {
  content: attr(data-count);
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #0F4C75;
  color: #FFFFFF;
  border-radius: 9999px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.gs-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #333333;
  transition: color 300ms ease-in-out;
  z-index: 1001;
}
@media (max-width: 767px) {
  .gs-header__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.gs-header__mobile-toggle:hover, .gs-header__mobile-toggle:focus {
  color: #0F4C75;
  outline: none;
}
.gs-header__mobile-toggle[aria-expanded=true] {
  color: #0F4C75;
}
.gs-header__mobile-toggle .gs-header__icon {
  width: 28px;
  height: 28px;
  transition: transform 300ms ease-in-out;
}
.gs-header__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #F2E8D8;
  padding: 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.gs-header__mobile-menu--open {
  display: block;
  padding: 1.5rem;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gs-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gs-header__mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gs-header__mobile-nav li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(242, 232, 216, 0.5);
}
.gs-header__mobile-nav li:last-child {
  border-bottom: none;
}
.gs-header__mobile-nav a {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1rem;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  transition: color 300ms ease-in-out;
}
.gs-header__mobile-nav a:hover, .gs-header__mobile-nav a:focus {
  color: #0F4C75;
}
.gs-header__mobile-nav a.current-menu-item, .gs-header__mobile-nav a.current-page-ancestor {
  color: #0F4C75;
  font-weight: 600;
}
.gs-header__gtranslate {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .gs-header__gtranslate--desktop {
    display: none !important;
  }
}
.gs-header__gtranslate--mobile {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(242, 232, 216, 0.5);
}
.gs-header__gtranslate .gt_container_309531 {
  display: inline-block;
  vertical-align: middle;
}

.gs-footer {
  background-color: rgb(9.2045454545, 46.6363636364, 71.7954545455);
  color: #F2E8D8;
  padding: 6rem 0 2rem;
}
.gs-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 991px) {
  .gs-footer__container {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .gs-footer__container {
    padding: 0 1rem;
  }
}
.gs-footer__main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 0;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.2);
}
@media (max-width: 1199px) {
  .gs-footer__main {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 767px) {
  .gs-footer__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.gs-footer__brand .gs-footer__logo {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.5rem;
  color: #F2E8D8;
  margin-bottom: 1rem;
  display: block;
}
.gs-footer__brand .gs-footer__logo-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gs-footer__brand .gs-footer__logo-global {
  font-weight: 300;
}
.gs-footer__brand .gs-footer__logo-sweet {
  font-weight: 700;
}
.gs-footer__brand .gs-footer__logo-image {
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
@media (max-width: 767px) {
  .gs-footer__brand .gs-footer__logo-image {
    max-width: 100px;
  }
}
.gs-footer__brand .gs-footer__logo-image--secondary {
  max-width: 120px;
  height: auto;
  opacity: 0.95;
  margin-left: 0.5rem;
}
@media (max-width: 767px) {
  .gs-footer__brand .gs-footer__logo-image--secondary {
    max-width: 100px;
    margin-left: 0.25rem;
  }
}
.gs-footer__brand .gs-footer__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.gs-footer__brand .gs-footer__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  width: 120px;
  height: 120px;
  justify-content: center;
  gap: 0.5rem;
}
.gs-footer__brand .gs-footer__badge-icon {
  width: 32px;
  height: 32px;
  fill: #F2E8D8;
}
.gs-footer__brand .gs-footer__badge-text {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.3;
}
.gs-footer__section-title {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.125rem;
  color: #F2E8D8;
  margin-bottom: 1.5rem;
}
.gs-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gs-footer__nav-link {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.9);
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-footer__nav-link:hover {
  color: #F2E8D8;
}
.gs-footer__separator {
  height: 1px;
  background-color: rgba(245, 241, 232, 0.2);
  margin: 1.5rem 0;
}
.gs-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(245, 241, 232, 0.9);
}
.gs-footer__contact-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: #F2E8D8;
}
.gs-footer__social-wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .gs-footer__social-wrapper {
    gap: 1.5rem;
  }
}
.gs-footer__social-group {
  flex: 1;
  min-width: 150px;
}
.gs-footer__social-group .gs-footer__section-title {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.gs-footer__social-group .gs-footer__social {
  margin-top: 0;
}
.gs-footer__social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: center;
  filter: brightness(0) invert(1);
}
.gs-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 241, 232, 0.9);
  text-decoration: none;
  transition: all 300ms ease-in-out;
  padding: 0.25rem;
}
.gs-footer__social-link:hover {
  color: #F2E8D8;
  transform: translateY(-2px);
}
.gs-footer__social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 300ms ease-in-out;
  fill: currentColor;
}
.gs-footer__social-icon[src] {
  opacity: 0.9;
}
.gs-footer__social-link:hover .gs-footer__social-icon {
  transform: scale(1.1);
}
.gs-footer__social-link:hover .gs-footer__social-icon[src] {
  opacity: 1;
}
.gs-footer__newsletter-description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.gs-footer__newsletter-form-wrapper {
  margin-bottom: 1rem;
}
.gs-footer__newsletter-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gs-footer__newsletter-form-wrapper form input[type=submit],
.gs-footer__newsletter-form-wrapper form button[type=submit],
.gs-footer__newsletter-form-wrapper form button {
  width: 100% !important;
  display: block !important;
  box-sizing: border-box !important;
  white-space: normal !important;
}
.gs-footer__newsletter-form-wrapper label {
  display: none !important;
}
.gs-footer__newsletter-form-wrapper input[type=email],
.gs-footer__newsletter-form-wrapper input[type=text] {
  width: 100%;
  padding: 1rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid rgba(245, 241, 232, 0.3);
  border-radius: 8px;
}
.gs-footer__newsletter-form-wrapper input[type=email]:focus,
.gs-footer__newsletter-form-wrapper input[type=text]:focus {
  outline: none;
  border-color: #F2E8D8;
}
.gs-footer__newsletter-form-wrapper input[type=email]::placeholder,
.gs-footer__newsletter-form-wrapper input[type=text]::placeholder {
  color: #666666;
}
.gs-footer__newsletter-form-wrapper input[type=submit],
.gs-footer__newsletter-form-wrapper button[type=submit],
.gs-footer__newsletter-form-wrapper button {
  padding: 0.7rem 1.5rem !important;
  background-color: #5a7d5a !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background-color 300ms ease-in-out !important;
  white-space: nowrap !important;
}
.gs-footer__newsletter-form-wrapper input[type=submit]:hover, .gs-footer__newsletter-form-wrapper input[type=submit]:focus, .gs-footer__newsletter-form-wrapper input[type=submit]:active,
.gs-footer__newsletter-form-wrapper button[type=submit]:hover,
.gs-footer__newsletter-form-wrapper button[type=submit]:focus,
.gs-footer__newsletter-form-wrapper button[type=submit]:active,
.gs-footer__newsletter-form-wrapper button:hover,
.gs-footer__newsletter-form-wrapper button:focus,
.gs-footer__newsletter-form-wrapper button:active {
  background-color: #5a7d5a !important;
  color: #FFFFFF !important;
}
.gs-footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.gs-footer__newsletter-input {
  width: 100%;
  padding: 1rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid rgba(245, 241, 232, 0.3);
  border-radius: 8px;
}
.gs-footer__newsletter-input:focus {
  outline: none;
  border-color: #F2E8D8;
}
.gs-footer__newsletter-input::placeholder {
  color: #666666;
}
.gs-footer__newsletter-button {
  padding: 0.7rem 1.5rem !important;
  background-color: #5a7d5a !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background-color 300ms ease-in-out !important;
  white-space: normal !important;
  width: 100% !important;
  margin-top: 0.5rem;
  align-self: stretch !important;
  text-align: center;
}
.gs-footer__newsletter-button:hover, .gs-footer__newsletter-button:focus, .gs-footer__newsletter-button:active {
  background-color: #5a7d5a !important;
  color: #FFFFFF !important;
}
.gs-footer__newsletter-legal {
  font-size: 0.75rem;
  color: rgba(245, 241, 232, 0.7);
  line-height: 1.5;
}
.gs-footer__funding {
  text-align: center;
  padding: 3rem 0;
}
.gs-footer__funding-text {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.9);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.gs-footer__funding-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .gs-footer__funding-logos {
    flex-direction: column;
    gap: 2rem;
  }
}
.gs-footer__funding-logo {
  height: 80px;
  width: auto;
  opacity: 0.9;
  transition: opacity 300ms ease-in-out;
}
.gs-footer__funding-logo:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .gs-footer__funding-logo {
    height: 60px;
  }
}
.gs-footer__funding-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .gs-footer__funding-links {
    flex-direction: column;
    gap: 1rem;
  }
}
.gs-footer__funding-link {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.9);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 300ms ease-in-out;
  padding: 0.25rem 0.5rem;
}
.gs-footer__funding-link:hover {
  color: #F2E8D8;
  text-decoration: underline;
}
.gs-footer__copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 232, 0.2);
}
.gs-footer__copyright-text {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.875rem;
  color: rgba(245, 241, 232, 0.8);
  margin-bottom: 0.5rem;
}
.gs-footer__copyright-text--small {
  font-size: 0.75rem;
  color: rgba(245, 241, 232, 0.6);
}
.gs-footer__copyright-separator {
  margin: 0 0.5rem;
  color: rgba(245, 241, 232, 0.4);
}

.gs-button, .gs-contact-form-section__form .wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.gs-button:hover, .gs-contact-form-section__form .wpcf7-form .wpcf7-submit:hover {
  transform: translateY(-2px);
}
.gs-button:active, .gs-contact-form-section__form .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}
.gs-button--primary, .gs-contact-form-section__form .wpcf7-form .wpcf7-submit {
  background-color: #0F4C75;
  color: #FFFFFF;
}
.gs-button--primary:hover, .gs-contact-form-section__form .wpcf7-form .wpcf7-submit:hover {
  background-color: rgb(9.2045454545, 46.6363636364, 71.7954545455);
  color: #FFFFFF;
}
.gs-button--secondary {
  background-color: #6B4F3F;
  color: #FFFFFF;
}
.gs-button--secondary:hover {
  background-color: rgb(74.9, 55.3, 44.1);
  color: #FFFFFF;
}
.gs-button--brown {
  background-color: #6B4F3F;
  color: #FFFFFF;
}
.gs-button--brown:hover {
  background-color: rgb(74.9, 55.3, 44.1);
  color: #FFFFFF;
}
.gs-button--outline {
  background-color: transparent;
  color: #333333;
  border: 2px solid #333333;
}
.gs-button--outline:hover {
  background-color: #333333;
  color: #FFFFFF;
}
.gs-button--white {
  background-color: #FFFFFF;
  color: #333333;
}
.gs-button--white:hover {
  background-color: #F2E8D8;
  color: #333333;
}
.gs-button--large, .gs-contact-form-section__form .wpcf7-form .wpcf7-submit {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.gs-button--small {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}
.gs-button--icon {
  gap: 0.5rem;
}
.gs-button--icon::after {
  content: "→";
  display: inline-block;
  transition: transform 300ms ease-in-out;
}
.gs-button--icon:hover::after {
  transform: translateX(4px);
}

.gs-card {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.gs-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.gs-card {
  background: #FFFFFF;
  transition: all 300ms ease-in-out;
  overflow: hidden;
}
.gs-card--product {
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}
.gs-card--product:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 76, 117, 0.3);
}
.gs-card--product .gs-card__image {
  position: relative;
  overflow: hidden;
}
.gs-card--product .gs-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-card--product .gs-card__image {
  position: relative;
  overflow: hidden;
}
.gs-card--product .gs-card__image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gs-card--product .gs-card__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-card--product .gs-card__image {
  background: #F2E8D8;
  overflow: hidden;
  position: relative;
}
.gs-card--product .gs-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 76, 117, 0);
  transition: background 300ms ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.gs-card--product .gs-card__image:hover::after {
  background: rgba(15, 76, 117, 0.1);
}
.gs-card--product .gs-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.gs-card--product .gs-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.gs-card--product .gs-card__image:hover img {
  transform: scale(1.15);
}
.gs-card--product .gs-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F2E8D8;
  color: #666666;
  min-height: 400px;
}
.gs-card--product .gs-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gs-card--product .gs-card__title {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #333333;
}
.gs-card--product .gs-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-card--product .gs-card__title a:hover {
  color: #0F4C75;
}
.gs-card--product .gs-card__subtitle {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 1rem;
}
.gs-card--product .gs-card__price {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.25rem;
  color: #333333;
  margin-top: auto;
  margin-bottom: 1rem;
}
.gs-card--product .gs-card__button {
  width: 100%;
  margin-top: auto;
  transition: all 300ms ease-in-out;
}
.gs-card--product .gs-card__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.gs-card--feature {
  text-align: center;
  padding: 2rem;
  background: #FFFFFF;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}
.gs-card--feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 76, 117, 0.2);
}
.gs-card--feature .gs-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms ease-in-out;
}
.gs-card--feature:hover .gs-card__icon {
  transform: scale(1.1) rotate(5deg);
}
.gs-card--feature .gs-card__title {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.gs-card--feature .gs-card__description {
  font-size: 0.875rem;
  color: #666666;
}
.gs-card--post {
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.gs-card--post:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.gs-card--post {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}
.gs-card--post:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 76, 117, 0.3);
}
.gs-card--post .gs-card__image {
  position: relative;
  overflow: hidden;
}
.gs-card--post .gs-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-card--post .gs-card__image {
  position: relative;
  overflow: hidden;
}
.gs-card--post .gs-card__image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.gs-card--post .gs-card__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-card--post .gs-card__image {
  background: #F2E8D8;
  overflow: hidden;
  position: relative;
}
.gs-card--post .gs-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 76, 117, 0);
  transition: background 300ms ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.gs-card--post .gs-card__image img {
  transition: transform 500ms ease-in-out;
}
.gs-card--post .gs-card__image:hover::after {
  background: rgba(15, 76, 117, 0.1);
}
.gs-card--post:hover .gs-card__image img {
  transform: scale(1.15);
}
.gs-card--post .gs-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.gs-card--post .gs-card__date {
  font-size: 0.75rem;
  color: #666666;
  margin-bottom: 0.5rem;
}
.gs-card--post .gs-card__title {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.gs-card--post .gs-card__title a {
  color: #333333;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-card--post .gs-card__title a:hover {
  color: #0F4C75;
}
.gs-card--post .gs-card__tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: #F2E8D8;
  color: rgb(74.9, 55.3, 44.1);
  border-radius: 9999px;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}
.gs-card--post .gs-card__description {
  flex: 1;
  margin-bottom: 1rem;
  color: #666666;
  font-size: 0.875rem;
  line-height: 1.6;
}
.gs-card--post .gs-card__link {
  align-self: flex-start;
  margin-top: auto;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #0F4C75;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease-in-out;
  font-size: 0.875rem;
}
.gs-card--post .gs-card__link:hover {
  background: rgb(9.2045454545, 46.6363636364, 71.7954545455);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.gs-card--contact {
  text-align: center;
  padding: 2rem;
  background: #FFFFFF;
  transition: all 300ms ease-in-out;
  cursor: pointer;
}
.gs-card--contact:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 76, 117, 0.2);
}
.gs-card--contact .gs-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 300ms ease-in-out;
}
.gs-card--contact:hover .gs-card__icon {
  transform: scale(1.15);
}
.gs-card--contact .gs-card__title {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.gs-card--contact .gs-card__content {
  color: #666666;
}

.gs-form__group {
  margin-bottom: 1.5rem;
}
.gs-form__label {
  display: block;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #333333;
}
.gs-form__input, .gs-form__textarea, .gs-form__select {
  width: 100%;
  padding: 1rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 8px;
  transition: border-color 300ms ease-in-out;
}
.gs-form__input:focus, .gs-form__textarea:focus, .gs-form__select:focus {
  outline: none;
  border-color: #0F4C75;
}
.gs-form__input::placeholder, .gs-form__textarea::placeholder, .gs-form__select::placeholder {
  color: #666666;
}
.gs-form__textarea {
  min-height: 120px;
  resize: vertical;
}
.gs-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2rem;
}
.gs-form__checkbox, .gs-form__radio {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  cursor: pointer;
}
.gs-form__checkbox-label, .gs-form__radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.875rem;
}
.gs-form__error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.gs-search {
  position: relative;
  display: flex;
  align-items: center;
}
.gs-search__input {
  flex: 1;
  padding: 1rem 1rem 1rem 4rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 8px;
}
.gs-search__input:focus {
  outline: none;
  border-color: #0F4C75;
}
.gs-search__icon {
  position: absolute;
  left: 1rem;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.gs-tabs__list {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid #CCCCCC;
  margin-bottom: 2rem;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .gs-tabs__list {
    gap: 0.25rem;
  }
}
.gs-tabs__item {
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #666666;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .gs-tabs__item {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.gs-tabs__item:hover {
  color: #333333;
}
.gs-tabs__item--active {
  color: #333333;
  border-bottom-color: #0F4C75;
}
.gs-tabs__content {
  display: none;
}
.gs-tabs__content--active {
  display: block;
}

.gs-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gs-filters__group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .gs-filters__group {
    width: 100%;
  }
}
.gs-filters__select {
  min-width: 180px;
  padding: 0.5rem 1rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 0.875rem;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
  transition: all 300ms ease-in-out;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .gs-filters__select {
    flex: 1;
    min-width: 0;
  }
}
.gs-filters__select:hover {
  border-color: #0F4C75;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.gs-filters__select:focus {
  outline: none;
  border-color: #0F4C75;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.gs-filters__actions {
  display: flex;
  gap: 0.5rem;
}

.gs-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .gs-hero {
    min-height: 500px;
  }
}
.gs-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.gs-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-hero__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}
.gs-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}
@media (max-width: 767px) {
  .gs-hero__content {
    padding: 1.5rem;
  }
}
.gs-hero__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .gs-hero__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .gs-hero__title {
    font-size: 1.875rem;
  }
}
.gs-hero__subtitle {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #FFFFFF;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .gs-hero__subtitle {
    font-size: 1rem;
  }
}
.gs-hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gs-motto {
  text-align: center;
  padding: 4rem 0;
  position: relative;
}
.gs-motto__line {
  width: 200px;
  height: 1px;
  background-color: #CCCCCC;
  margin: 0 auto 1.5rem;
  position: relative;
}
.gs-motto__line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-color: #F2E8D8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236B8E5A'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.gs-motto__text {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #333333;
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}
@media (max-width: 767px) {
  .gs-motto__text {
    font-size: 1rem;
  }
}

.gs-intro {
  background-color: #FFFFFF;
  padding: 6rem 0;
}
.gs-intro__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .gs-intro__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.gs-intro__text .gs-intro__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #333333;
}
.gs-intro__text .gs-intro__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.gs-intro__image {
  position: relative;
  overflow: hidden;
}
.gs-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-intro__image {
  position: relative;
  overflow: hidden;
}
.gs-intro__image::before {
  content: "";
  display: block;
  padding-top: 125%;
}
.gs-intro__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-intro__image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gs-intro__image img {
  transition: transform 500ms ease-in-out;
}
.gs-intro__image:hover img {
  transform: scale(1.1);
}
.gs-intro__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0);
  transition: background 300ms ease-in-out;
  border-radius: 12px;
  pointer-events: none;
}
.gs-intro__image:hover::after {
  background: rgba(51, 51, 51, 0.05);
}

.gs-specialties {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.gs-specialties__header {
  text-align: center;
  margin-bottom: 4rem;
}
.gs-specialties__header .gs-specialties__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #333333;
}
.gs-specialties__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}
@media (max-width: 1199px) {
  .gs-specialties__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .gs-specialties__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gs-specialties__grid {
    grid-template-columns: 1fr;
  }
}
.gs-specialties__grid.slick-initialized {
  display: block;
  margin: 0 -1rem;
  overflow: visible;
}
.gs-specialties__grid.slick-initialized .slick-track {
  display: flex !important;
  padding-bottom: 24px;
}
.gs-specialties__grid.slick-initialized .slick-slide {
  height: inherit !important;
  display: flex !important;
}
.gs-specialties__grid.slick-initialized .slick-slide > div {
  display: flex;
  width: 100%;
}
.gs-specialties__grid.slick-initialized .gs-card--product {
  margin: 0 1rem;
  height: 100%;
  width: 100%;
}
.gs-specialties__grid.slick-initialized .slick-prev,
.gs-specialties__grid.slick-initialized .slick-next {
  width: 44px;
  height: 44px;
  background: #0F4C75;
  border-radius: 50%;
  z-index: 10;
  transition: all 300ms ease-in-out;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 24px;
  border: none;
  cursor: pointer;
}
.gs-specialties__grid.slick-initialized .slick-prev:hover,
.gs-specialties__grid.slick-initialized .slick-next:hover {
  background: #333333;
}
.gs-specialties__grid.slick-initialized .slick-prev::before,
.gs-specialties__grid.slick-initialized .slick-next::before {
  display: none;
}
.gs-specialties__grid.slick-initialized .slick-prev {
  left: -60px;
}
.gs-specialties__grid.slick-initialized .slick-next {
  right: -60px;
}
.gs-specialties__grid.slick-initialized .slick-dots {
  bottom: -50px;
}
.gs-specialties__grid.slick-initialized .slick-dots li button:before {
  font-size: 12px;
  color: #0F4C75;
}
.gs-specialties__grid.slick-initialized .slick-dots li.slick-active button:before {
  color: #0F4C75;
}
@media (max-width: 1400px) {
  .gs-specialties__grid.slick-initialized .slick-prev {
    left: -30px;
  }
  .gs-specialties__grid.slick-initialized .slick-next {
    right: -30px;
  }
}
@media (max-width: 1200px) {
  .gs-specialties__grid.slick-initialized .slick-prev {
    left: 10px;
  }
  .gs-specialties__grid.slick-initialized .slick-next {
    right: 10px;
  }
}

.gs-storytelling {
  padding: 6rem 0;
  background-color: #F2E8D8;
}
.gs-storytelling__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .gs-storytelling__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.gs-storytelling__image {
  position: relative;
  overflow: hidden;
}
.gs-storytelling__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-storytelling__image {
  position: relative;
  overflow: hidden;
}
.gs-storytelling__image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.gs-storytelling__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-storytelling__image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gs-storytelling__image img {
  transition: transform 500ms ease-in-out;
}
.gs-storytelling__image:hover img {
  transform: scale(1.1);
}
.gs-storytelling__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0);
  transition: background 300ms ease-in-out;
  border-radius: 12px;
  pointer-events: none;
}
.gs-storytelling__image:hover::after {
  background: rgba(51, 51, 51, 0.05);
}
.gs-storytelling__text .gs-storytelling__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #333333;
}
.gs-storytelling__text .gs-storytelling__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
}

.gs-featured-products {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.gs-featured-products__header {
  text-align: center;
  margin-bottom: 4rem;
}
.gs-featured-products__header .gs-featured-products__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #333333;
}
.gs-featured-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 991px) {
  .gs-featured-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .gs-featured-products__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.gs-featured-products__empty {
  text-align: center;
  padding: 3rem;
  color: #666666;
  font-size: 1.125rem;
}

.gs-featured-product-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(107, 79, 63, 0.1);
  transition: all 300ms ease-in-out;
  height: 100%;
  cursor: pointer;
}
.gs-featured-product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 76, 117, 0.4);
}
.gs-featured-product-card__image {
  position: relative;
  overflow: hidden;
}
.gs-featured-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-featured-product-card__image {
  position: relative;
  overflow: hidden;
}
.gs-featured-product-card__image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.gs-featured-product-card__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-featured-product-card__image {
  overflow: hidden;
  background: #F2E8D8;
  position: relative;
}
.gs-featured-product-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 76, 117, 0);
  transition: background 300ms ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.gs-featured-product-card__image:hover::after {
  background: rgba(15, 76, 117, 0.15);
}
.gs-featured-product-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.gs-featured-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.gs-featured-product-card__image:hover img {
  transform: scale(1.2);
}
.gs-featured-product-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gs-featured-product-card__title {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333333;
  line-height: 1.3;
}
.gs-featured-product-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-featured-product-card__title a:hover {
  color: #0F4C75;
}
.gs-featured-product-card__price {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.5rem;
  color: #0F4C75;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.gs-featured-product-card__button {
  width: 100%;
  margin-top: auto;
  text-align: center;
  transition: all 300ms ease-in-out;
}
.gs-featured-product-card__button .gs-button, .gs-featured-product-card__button .gs-contact-form-section__form .wpcf7-form .wpcf7-submit, .gs-contact-form-section__form .wpcf7-form .gs-featured-product-card__button .wpcf7-submit {
  transition: all 300ms ease-in-out;
}
.gs-featured-product-card__button .gs-button:hover, .gs-featured-product-card__button .gs-contact-form-section__form .wpcf7-form .wpcf7-submit:hover, .gs-contact-form-section__form .wpcf7-form .gs-featured-product-card__button .wpcf7-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gs-special-editions {
  padding: 6rem 0;
  background-color: #F2E8D8;
}
.gs-special-editions__content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gs-special-editions__text {
  text-align: center;
  max-width: 800px;
}
.gs-special-editions__text .gs-special-editions__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #333333;
}
.gs-special-editions__text .gs-special-editions__subtitle {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 2rem;
}
.gs-special-editions__button {
  display: inline-block;
  margin-top: 1.5rem;
}

.gs-news {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.gs-news__header {
  text-align: center;
  margin-bottom: 4rem;
}
.gs-news__header .gs-news__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #333333;
}
.gs-news__header .gs-news__subtitle {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #666666;
}
.gs-news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .gs-news__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .gs-news__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.gs-news__footer {
  text-align: center;
}
.gs-news__button {
  display: inline-block;
}
.gs-news__empty {
  text-align: center;
  padding: 3rem;
  color: #666666;
  font-size: 1.125rem;
}

.gs-news-card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(107, 79, 63, 0.1);
  transition: all 300ms ease-in-out;
  height: 100%;
  cursor: pointer;
}
.gs-news-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 76, 117, 0.4);
}
.gs-news-card:hover .gs-news-card__image img {
  transform: scale(1.2);
}
.gs-news-card:hover .gs-news-card__link {
  color: #0F4C75;
  transform: translateX(5px);
}
.gs-news-card__image {
  position: relative;
  position: relative;
  overflow: hidden;
}
.gs-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-news-card__image {
  position: relative;
  overflow: hidden;
}
.gs-news-card__image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.gs-news-card__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-news-card__image {
  overflow: hidden;
  background: #F2E8D8;
}
.gs-news-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 76, 117, 0);
  transition: background 300ms ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.gs-news-card__image:hover::after {
  background: rgba(15, 76, 117, 0.15);
}
.gs-news-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.gs-news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease-in-out;
}
.gs-news-card__image .gs-news-card__category {
  position: absolute !important;
  width: auto !important;
  height: auto !important;
  top: 1rem !important;
  left: 1rem !important;
}
.gs-news-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F2E8D8 0%, rgb(235.625, 220.7211538462, 196.875) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gs-news-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #0F4C75;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  z-index: 2;
  white-space: nowrap;
  max-width: calc(100% - 2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  line-height: 1.4;
  width: auto;
  height: auto;
  min-width: auto;
  min-height: auto;
}
@media (max-width: 767px) {
  .gs-news-card__category {
    top: 0.5rem !important;
    left: 0.5rem !important;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    max-width: 80%;
  }
}
.gs-news-card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gs-news-card__date {
  font-size: 0.75rem;
  color: #666666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gs-news-card__title {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333333;
  line-height: 1.3;
}
.gs-news-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-news-card__title a:hover {
  color: #0F4C75;
}
.gs-news-card__excerpt {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex: 1;
}
.gs-news-card__link {
  align-self: flex-start;
  color: #333333;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 300ms ease-in-out;
  position: relative;
  padding-bottom: 2px;
}
.gs-news-card__link::after {
  content: "→";
  margin-left: 0.25rem;
  transition: transform 300ms ease-in-out;
  display: inline-block;
}
.gs-news-card__link:hover {
  color: #0F4C75;
}
.gs-news-card__link:hover::after {
  transform: translateX(4px);
}

.gs-values {
  padding: 6rem 0;
  background-color: #F2E8D8;
}
.gs-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1199px) {
  .gs-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gs-values__grid {
    grid-template-columns: 1fr;
  }
}

.gs-cta-final {
  padding: 9rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F2E8D8;
  position: relative;
  overflow: hidden;
}
.gs-cta-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0.4);
  pointer-events: none;
}
.gs-cta-final__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.gs-cta-final__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 4rem;
  line-height: 1.2;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .gs-cta-final__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .gs-cta-final__title {
    font-size: 1.875rem;
    margin-bottom: 3rem;
  }
}
.gs-cta-final__button {
  display: inline-block;
  box-shadow: 0 8px 20px rgba(15, 76, 117, 0.3);
  transition: all 300ms ease-in-out;
}
.gs-cta-final__button:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 76, 117, 0.4);
}

.gs-about-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 767px) {
  .gs-about-hero {
    height: 400px;
  }
}
.gs-about-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.gs-about-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.gs-about-hero__image:hover img {
  transform: scale(1.1);
}
.gs-about-hero__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  transition: opacity 300ms ease-in-out;
}
.gs-about-hero__image:hover::after {
  opacity: 0.8;
}
.gs-about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}
.gs-about-hero__slider {
  position: relative;
  width: 100%;
  height: 500px;
}
@media (max-width: 767px) {
  .gs-about-hero__slider {
    height: 400px;
  }
}
.gs-about-hero__slider .gs-about-hero__slide {
  position: relative;
  min-height: inherit;
  height: 100% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
}
.gs-about-hero__slider .gs-about-hero__slide .gs-about-hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  z-index: 1;
  overflow: hidden;
}
.gs-about-hero__slider .gs-about-hero__slide .gs-about-hero__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 500ms ease-in-out;
}
.gs-about-hero__slider .gs-about-hero__slide .gs-about-hero__content {
  position: relative;
  z-index: 2;
}
.gs-about-hero__slider .slick-list,
.gs-about-hero__slider .slick-track {
  height: 100% !important;
}
.gs-about-hero__slider .slick-slide {
  height: 100% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.gs-about-hero__slider .slick-prev,
.gs-about-hero__slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gs-about-hero__slider .slick-prev {
  left: 16px;
}
.gs-about-hero__slider .slick-next {
  right: 16px;
}
.gs-about-hero__slider .slick-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.gs-about-hero__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .gs-about-hero__title {
    font-size: 1.875rem;
  }
}
.gs-about-hero__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.gs-origin {
  padding: 6rem 0;
  background-color: #FFFFFF;
  margin-bottom: 10rem;
}
@media (max-width: 767px) {
  .gs-origin {
    margin-bottom: 5rem;
  }
}
.gs-origin .slick-dots {
  bottom: -90px;
}
.gs-origin .slick-dots li button {
  background: rgba(0, 0, 0, 0.5882352941);
  border-radius: 50%;
}
.gs-origin .slick-dots li button::before {
  color: transparent !important;
}
.gs-origin .slick-dots li.slick-active button {
  background: white;
}
.gs-origin__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .gs-origin__content {
    grid-template-columns: 1fr;
  }
}
.gs-origin__text .gs-origin__year {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.25rem;
  color: #666666;
  margin-bottom: 0.5rem;
}
.gs-origin__text .gs-origin__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #333333;
  position: relative;
  padding-bottom: 1rem;
}
.gs-origin__text .gs-origin__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #0F4C75;
}
.gs-origin__text .gs-origin__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.gs-origin__image {
  position: relative;
  overflow: hidden;
}
.gs-origin__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-origin__image {
  position: relative;
  overflow: hidden;
}
.gs-origin__image::before {
  content: "";
  display: block;
  padding-top: 125%;
}
.gs-origin__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-origin__image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 300ms ease-in-out;
}
.gs-origin__image:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.gs-origin__image img {
  transition: transform 500ms ease-in-out;
}
.gs-origin__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 76, 117, 0);
  transition: background 300ms ease-in-out;
  z-index: 1;
  pointer-events: none;
  border-radius: 12px;
}
.gs-origin__image:hover::after {
  background: rgba(15, 76, 117, 0.1);
}
.gs-origin__slider {
  width: 500px !important;
  height: 500px !important;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .gs-origin__slider {
    width: 300px !important;
    margin: 0 auto;
    height: 350px !important;
  }
}
.gs-origin__slider .gs-origin__image {
  position: relative;
  overflow: hidden;
}
.gs-origin__slider .gs-origin__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-origin__slider .gs-origin__image {
  position: relative;
  overflow: hidden;
}
.gs-origin__slider .gs-origin__image::before {
  content: "";
  display: block;
  padding-top: 125%;
}
.gs-origin__slider .gs-origin__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-origin__slider .gs-origin__image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 300ms ease-in-out;
}
.gs-origin__slider .gs-origin__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}
.gs-origin__slider .slick-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.gs-origin__slider .slick-list,
.gs-origin__slider .slick-track {
  height: auto !important;
}

.gs-family-support {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  padding: 6rem 0;
}
.gs-family-support__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.gs-family-support__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.gs-family-support__image:hover img {
  transform: scale(1.1);
}
.gs-family-support__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  transition: opacity 300ms ease-in-out;
}
.gs-family-support__image:hover::after {
  opacity: 0.8;
}
.gs-family-support__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}
.gs-family-support__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.gs-family-support__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.gs-land {
  padding: 6rem 0;
  background-color: #F2E8D8;
}
.gs-land__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .gs-land__content {
    grid-template-columns: 1fr;
  }
}
.gs-land__image {
  position: relative;
  overflow: hidden;
}
.gs-land__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-land__image {
  position: relative;
  overflow: hidden;
}
.gs-land__image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.gs-land__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-land__image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 300ms ease-in-out;
}
.gs-land__image:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.gs-land__image img {
  transition: transform 500ms ease-in-out;
}
.gs-land__image:hover img {
  transform: scale(1.15);
}
.gs-land__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 76, 117, 0);
  transition: background 300ms ease-in-out;
  z-index: 1;
  pointer-events: none;
  border-radius: 12px;
}
.gs-land__image:hover::after {
  background: rgba(15, 76, 117, 0.1);
}
.gs-land__text .gs-land__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #333333;
  position: relative;
  padding-bottom: 1rem;
}
.gs-land__text .gs-land__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #0F4C75;
}
.gs-land__text .gs-land__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
}

.gs-nature-production {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.gs-nature-production__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .gs-nature-production__content {
    grid-template-columns: 1fr;
  }
}
.gs-nature-production__image {
  position: relative;
  overflow: hidden;
}
.gs-nature-production__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-nature-production__image {
  position: relative;
  overflow: hidden;
}
.gs-nature-production__image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.gs-nature-production__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-nature-production__image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 300ms ease-in-out;
}
.gs-nature-production__image:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.gs-nature-production__image img {
  transition: transform 500ms ease-in-out;
}
.gs-nature-production__image:hover img {
  transform: scale(1.15);
}
.gs-nature-production__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 76, 117, 0);
  transition: background 300ms ease-in-out;
  z-index: 1;
  pointer-events: none;
  border-radius: 12px;
}
.gs-nature-production__image:hover::after {
  background: rgba(15, 76, 117, 0.1);
}
.gs-nature-production__text .gs-nature-production__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #333333;
}
.gs-nature-production__text .gs-nature-production__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.gs-nature-production__text .gs-nature-production__list {
  list-style: none;
  padding: 0;
}
.gs-nature-production__text .gs-nature-production__list-item {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.8;
  transition: transform 300ms ease-in-out, color 300ms ease-in-out;
}
.gs-nature-production__text .gs-nature-production__list-item:hover {
  transform: translateX(8px);
  color: #333333;
}
.gs-nature-production__text .gs-nature-production__list-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5A7D5A;
  font-weight: 700;
  transition: transform 300ms ease-in-out;
}
.gs-nature-production__text .gs-nature-production__list-item:hover::before {
  transform: scale(1.2);
}

.gs-closing {
  padding: 6rem 0;
  background-color: #F2E8D8;
  text-align: center;
}
.gs-closing__text {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #333333;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}
.gs-closing__text--italic {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.gs-closing__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
@media (max-width: 991px) {
  .gs-closing__row {
    grid-template-columns: 1fr;
    text-align: left;
  }
}
.gs-closing__row--reverse {
  direction: ltr;
}
.gs-closing__row--reverse .gs-closing__text-block {
  order: 2;
}
.gs-closing__row--reverse .gs-closing__image-block {
  order: 1;
}
@media (max-width: 991px) {
  .gs-closing__row--reverse .gs-closing__text-block {
    order: 1;
  }
  .gs-closing__row--reverse .gs-closing__image-block {
    order: 2;
  }
}
.gs-closing__row .gs-closing__text-block {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  line-height: 1.8;
  padding: 0 0.5rem;
}
.gs-closing__row .gs-closing__text-block p,
.gs-closing__row .gs-closing__text-block h2,
.gs-closing__row .gs-closing__text-block h3,
.gs-closing__row .gs-closing__text-block ul,
.gs-closing__row .gs-closing__text-block ol {
  margin-bottom: 1rem;
}
.gs-closing__row .gs-closing__image-block {
  position: relative;
  overflow: hidden;
}
.gs-closing__row .gs-closing__image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-closing__row .gs-closing__image-block {
  border-radius: 12px;
}
.gs-closing__row .gs-closing__image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.gs-closing__row .gs-closing__image-block {
  justify-content: flex-end;
  padding: 0 0.5rem;
  max-width: 380px;
}
@media (max-width: 991px) {
  .gs-closing__row .gs-closing__image-block {
    justify-content: center;
    max-width: 100%;
    padding: 0;
  }
}

.gs-blog-hero {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.gs-blog-hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.gs-blog-hero__text .gs-blog-hero__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #333333;
}
.gs-blog-hero__text .gs-blog-hero__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.8;
}

.gs-blog-filters {
  padding: 2rem 0;
  background-color: #F2E8D8;
  border-bottom: 1px solid #F2E8D8;
}

.gs-blog-grid {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.gs-blog-grid__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 991px) {
  .gs-blog-grid__container {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .gs-blog-grid__container {
    padding: 0 1rem;
  }
}
.gs-blog-grid .gs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1199px) {
  .gs-blog-grid .gs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gs-blog-grid .gs-grid {
    grid-template-columns: 1fr;
  }
}
.gs-blog-grid .gs-no-posts {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: #666666;
  font-size: 1.125rem;
}

.gs-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}
.gs-pagination__button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 8px;
  color: #333333;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}
.gs-pagination__button:hover {
  border-color: #0F4C75;
  color: #0F4C75;
}
.gs-pagination__button--active {
  background-color: #0F4C75;
  border-color: #0F4C75;
  color: #FFFFFF;
}
.gs-pagination__button--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.gs-pagination__button--disabled:hover {
  border-color: #CCCCCC;
  color: #333333;
}

.gs-editorial-highlights {
  padding: 6rem 0;
  background-color: #F2E8D8;
}
.gs-editorial-highlights__header {
  text-align: center;
  margin-bottom: 4rem;
}
.gs-editorial-highlights__header .gs-editorial-highlights__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  color: #333333;
}
.gs-editorial-highlights__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .gs-editorial-highlights__grid {
    grid-template-columns: 1fr;
  }
}

.gs-single-post {
  padding: 4rem 0;
}
.gs-single-post__content {
  max-width: 800px;
  margin: 0 auto;
}
.gs-single-post__image {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gs-single-post__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 500ms ease-in-out;
}
.gs-single-post__image:hover img {
  transform: scale(1.05);
}
.gs-single-post__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0);
  transition: background 300ms ease-in-out;
  border-radius: 12px;
  pointer-events: none;
}
.gs-single-post__image:hover::after {
  background: rgba(51, 51, 51, 0.05);
}
.gs-single-post__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(107, 79, 63, 0.2);
}
.gs-single-post__tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: #F2E8D8;
  color: rgb(74.9, 55.3, 44.1);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.gs-single-post__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #333333;
  line-height: 1.2;
}
.gs-single-post__meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: #666666;
}
.gs-single-post__date, .gs-single-post__author {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.gs-single-post__body {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  line-height: 1.8;
}
.gs-single-post__body h2 {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.875rem;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #333333;
}
.gs-single-post__body h3 {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333333;
}
.gs-single-post__body p {
  margin-bottom: 1rem;
}
.gs-single-post__body ul,
.gs-single-post__body ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.gs-single-post__body ul li,
.gs-single-post__body ol li {
  margin-bottom: 0.25rem;
}
.gs-single-post__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.gs-single-post__body a {
  color: #0F4C75;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-single-post__body a:hover {
  color: rgb(9.2045454545, 46.6363636364, 71.7954545455);
  text-decoration: underline;
}
.gs-single-post__links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(107, 79, 63, 0.2);
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 0.875rem;
  color: #666666;
}
.gs-single-post__links a {
  color: #0F4C75;
  text-decoration: none;
  margin: 0 0.25rem;
}
.gs-single-post__links a:hover {
  color: rgb(9.2045454545, 46.6363636364, 71.7954545455);
  text-decoration: underline;
}
.gs-single-post__back {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(107, 79, 63, 0.2);
}
.gs-single-post__back .gs-button, .gs-single-post__back .gs-contact-form-section__form .wpcf7-form .wpcf7-submit, .gs-contact-form-section__form .wpcf7-form .gs-single-post__back .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.gs-single-post__back .gs-button svg, .gs-single-post__back .gs-contact-form-section__form .wpcf7-form .wpcf7-submit svg, .gs-contact-form-section__form .wpcf7-form .gs-single-post__back .wpcf7-submit svg {
  width: 16px;
  height: 16px;
}

.gs-shop-hero {
  padding: 4rem 0;
  background-color: #FFFFFF;
}
.gs-shop-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 991px) {
  .gs-shop-hero__content {
    grid-template-columns: 1fr;
  }
}
.gs-shop-hero__text .gs-shop-hero__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #333333;
}
.gs-shop-hero__text .gs-shop-hero__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  color: #666666;
  line-height: 1.8;
}
.gs-shop-hero__image {
  position: relative;
  overflow: hidden;
}
.gs-shop-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-shop-hero__image {
  position: relative;
  overflow: hidden;
}
.gs-shop-hero__image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.gs-shop-hero__image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-shop-hero__image {
  border-radius: 12px;
  overflow: hidden;
}

.gs-shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  padding: 4rem 0;
}
@media (max-width: 991px) {
  .gs-shop-layout {
    grid-template-columns: 1fr;
  }
}

.gs-sidebar {
  background-color: #F2E8D8;
  padding: 2rem;
  border-radius: 12px;
  height: fit-content;
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .gs-sidebar {
    position: static;
  }
}
.gs-sidebar__section {
  margin-bottom: 3rem;
}
.gs-sidebar__section:last-child {
  margin-bottom: 0;
}
.gs-sidebar__title {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: #333333;
}
.gs-sidebar__nav {
  list-style: none;
  padding: 0;
}
.gs-sidebar__nav-item {
  margin-bottom: 0.5rem;
}
.gs-sidebar__nav-link {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  color: #333333;
  text-decoration: none;
  border-radius: 8px;
  transition: all 300ms ease-in-out;
}
.gs-sidebar__nav-link:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #0F4C75;
}
.gs-sidebar__nav-link--active {
  background-color: #FFFFFF;
  color: #0F4C75;
  font-weight: 500;
}
.gs-sidebar__product-list {
  list-style: none;
  padding: 0;
}
.gs-sidebar__product-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.gs-sidebar__product-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.gs-sidebar__product-link {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #333333;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-sidebar__product-link:hover {
  color: #0F4C75;
}
.gs-sidebar__product-name {
  font-size: 0.875rem;
}
.gs-sidebar__product-volume {
  font-size: 0.75rem;
  color: #666666;
}

.gs-shop-main__header {
  margin-bottom: 2rem;
}
.gs-shop-main__header .gs-shop-main__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #333333;
}
.gs-shop-main__header .gs-shop-main__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}
.gs-shop-main__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1199px) {
  .gs-shop-main__products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gs-shop-main__products {
    grid-template-columns: 1fr;
  }
}

.gs-breadcrumb {
  padding: 1.5rem 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #F2E8D8;
}
.gs-breadcrumb__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 991px) {
  .gs-breadcrumb__container {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .gs-breadcrumb__container {
    padding: 0 1rem;
  }
}
.gs-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.gs-breadcrumb__item {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.875rem;
  color: #666666;
}
.gs-breadcrumb__item::after {
  content: ">";
  margin-left: 0.5rem;
  color: #CCCCCC;
}
.gs-breadcrumb__item:last-child {
  color: #333333;
  font-weight: 500;
}
.gs-breadcrumb__item:last-child::after {
  display: none;
}
.gs-breadcrumb__link {
  color: inherit;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-breadcrumb__link:hover {
  color: #0F4C75;
}

.gs-product {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.gs-product__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 991px) {
  .gs-product__container {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .gs-product__container {
    padding: 0 1rem;
  }
}
.gs-product__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-bottom: 6rem;
}
@media (max-width: 991px) {
  .gs-product__main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.gs-product__gallery-main {
  position: relative;
  overflow: hidden;
}
.gs-product__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-product__gallery-main {
  position: relative;
  overflow: hidden;
}
.gs-product__gallery-main::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gs-product__gallery-main > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-product__gallery-main {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #F2E8D8;
}
.gs-product__gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gs-product__gallery-thumbnail {
  position: relative;
  overflow: hidden;
}
.gs-product__gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-product__gallery-thumbnail {
  position: relative;
  overflow: hidden;
}
.gs-product__gallery-thumbnail::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gs-product__gallery-thumbnail > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-product__gallery-thumbnail {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  background-color: #F2E8D8;
}
.gs-product__gallery-thumbnail:hover {
  border-color: #0F4C75;
}
.gs-product__info .gs-product__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  color: #333333;
}
.gs-product__info .gs-product__subtitle {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1.5rem;
}
.gs-product__info .gs-product__price {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.875rem;
  color: #333333;
  margin-bottom: 2rem;
}
.gs-product__info .gs-product__button {
  width: 100%;
  margin-bottom: 2rem;
}
.gs-product__info .gs-product__badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.gs-product__info .gs-product__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gs-product__info .gs-product__badge-icon {
  width: 24px;
  height: 24px;
  fill: #5A7D5A;
}
.gs-product__info .gs-product__badge-text {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.875rem;
  color: #666666;
}
.gs-product__info .gs-product__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.gs-product__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}
@media (max-width: 991px) {
  .gs-product__details {
    grid-template-columns: 1fr;
  }
}
.gs-product__info-section .gs-product__info-title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333333;
}
.gs-product__info-section .gs-product__info-list {
  list-style: none;
  padding: 0;
}
.gs-product__info-section .gs-product__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}
.gs-product__info-section .gs-product__info-item-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: #5A7D5A;
}
.gs-product__info-section .gs-product__info-image {
  position: relative;
  overflow: hidden;
}
.gs-product__info-section .gs-product__info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-product__info-section .gs-product__info-image {
  position: relative;
  overflow: hidden;
}
.gs-product__info-section .gs-product__info-image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gs-product__info-section .gs-product__info-image > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-product__info-section .gs-product__info-image {
  border-radius: 12px;
  overflow: hidden;
  background-color: #F2E8D8;
}
.gs-product__suggestions {
  margin-bottom: 6rem;
}
.gs-product__suggestions .gs-product__suggestions-title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333333;
}
.gs-product__suggestions .gs-product__suggestions-list {
  list-style: none;
  padding: 0;
}
.gs-product__suggestions .gs-product__suggestions-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
}
.gs-product__suggestions .gs-product__suggestions-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: #0F4C75;
}
.gs-product__related .gs-product__related-title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.875rem;
  margin-bottom: 2rem;
  color: #333333;
  text-align: center;
}
.gs-product__related .gs-product__related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1199px) {
  .gs-product__related .gs-product__related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .gs-product__related .gs-product__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gs-product__related .gs-product__related-grid {
    grid-template-columns: 1fr;
  }
}

.gs-contact-hero {
  padding: 6rem 0;
  background-color: #FFFFFF;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  overflow: hidden;
}
@media (max-width: 767px) {
  .gs-contact-hero {
    min-height: 400px;
  }
}
.gs-contact-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
.gs-contact-hero .gs-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem;
}
.gs-contact-hero__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 991px) {
  .gs-contact-hero__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .gs-contact-hero__title {
    font-size: 1.875rem;
  }
}
.gs-contact-hero__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #FFFFFF;
  max-width: 700px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767px) {
  .gs-contact-hero__description {
    font-size: 1rem;
  }
}

.gs-contact-cards {
  padding: 6rem 0;
  background-color: #F2E8D8;
}
.gs-contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .gs-contact-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .gs-contact-cards__grid {
    grid-template-columns: 1fr;
  }
}

.gs-contact-form-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.gs-contact-form-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 991px) {
  .gs-contact-form-section__container {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .gs-contact-form-section__container {
    padding: 0 1rem;
  }
}
.gs-contact-form-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}
@media (max-width: 991px) {
  .gs-contact-form-section__container {
    grid-template-columns: 1fr;
  }
}
.gs-contact-form-section__form .gs-contact-form-section__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  color: #333333;
}
.gs-contact-form-section__form .wpcf7-form br {
  display: none;
}
.gs-contact-form-section__form .wpcf7-form .gs-form__group {
  margin-bottom: 1.5rem;
}
.gs-contact-form-section__form .wpcf7-form label {
  display: block;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #333333;
}
.gs-contact-form-section__form .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.5rem;
}
.gs-contact-form-section__form .wpcf7-form input[type=text],
.gs-contact-form-section__form .wpcf7-form input[type=email],
.gs-contact-form-section__form .wpcf7-form input[type=tel],
.gs-contact-form-section__form .wpcf7-form textarea,
.gs-contact-form-section__form .wpcf7-form select {
  width: 100%;
  padding: 1rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  color: #333333;
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 8px;
  transition: border-color 300ms ease-in-out;
}
.gs-contact-form-section__form .wpcf7-form input[type=text]:focus,
.gs-contact-form-section__form .wpcf7-form input[type=email]:focus,
.gs-contact-form-section__form .wpcf7-form input[type=tel]:focus,
.gs-contact-form-section__form .wpcf7-form textarea:focus,
.gs-contact-form-section__form .wpcf7-form select:focus {
  outline: none;
  border-color: #0F4C75;
}
.gs-contact-form-section__form .wpcf7-form input[type=text]::placeholder,
.gs-contact-form-section__form .wpcf7-form input[type=email]::placeholder,
.gs-contact-form-section__form .wpcf7-form input[type=tel]::placeholder,
.gs-contact-form-section__form .wpcf7-form textarea::placeholder,
.gs-contact-form-section__form .wpcf7-form select::placeholder {
  color: #666666;
}
.gs-contact-form-section__form .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}
.gs-contact-form-section__form .wpcf7-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2rem;
}
.gs-contact-form-section__form .wpcf7-form .wpcf7-checkbox .wpcf7-list-item,
.gs-contact-form-section__form .wpcf7-form .wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.gs-contact-form-section__form .wpcf7-form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox],
.gs-contact-form-section__form .wpcf7-form .wpcf7-checkbox .wpcf7-list-item input[type=radio],
.gs-contact-form-section__form .wpcf7-form .wpcf7-radio .wpcf7-list-item input[type=checkbox],
.gs-contact-form-section__form .wpcf7-form .wpcf7-radio .wpcf7-list-item input[type=radio] {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  cursor: pointer;
}
.gs-contact-form-section__form .wpcf7-form .wpcf7-checkbox .wpcf7-list-item label,
.gs-contact-form-section__form .wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  margin-bottom: 0;
  cursor: pointer;
  font-size: 0.875rem;
}
.gs-contact-form-section__form .wpcf7-form .wpcf7-not-valid-tip {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.gs-contact-form-section__form .wpcf7-form .wpcf7-validation-errors,
.gs-contact-form-section__form .wpcf7-form .wpcf7-mail-sent-ok {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}
.gs-contact-form-section__form .wpcf7-form .wpcf7-validation-errors {
  background-color: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.gs-contact-form-section__form .wpcf7-form .wpcf7-mail-sent-ok {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.gs-contact-form-section__map {
  position: relative;
  overflow: hidden;
}
.gs-contact-form-section__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gs-contact-form-section__map {
  position: relative;
  overflow: hidden;
}
.gs-contact-form-section__map::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.gs-contact-form-section__map > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gs-contact-form-section__map {
  border-radius: 12px;
  overflow: hidden;
  background-color: #F2E8D8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 1.125rem;
  position: relative;
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
}
.gs-contact-form-section__map:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.gs-contact-form-section__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  transition: transform 500ms ease-in-out;
}
.gs-contact-form-section__map:hover iframe {
  transform: scale(1.02);
}
.gs-contact-form-section__map p {
  position: relative;
  z-index: 1;
}

.gs-contact-social {
  padding: 4rem 0;
  background-color: #F2E8D8;
  text-align: center;
}
.gs-contact-social__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #333333;
}
.gs-contact-social__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.gs-contact-social__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333333;
  text-decoration: none;
  transition: all 300ms ease-in-out;
  padding: 0.5rem;
  border-radius: 8px;
}
.gs-contact-social__link:hover {
  color: #0F4C75;
  transform: translateY(-4px);
  background-color: rgba(15, 76, 117, 0.05);
}
.gs-contact-social__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 300ms ease-in-out;
  fill: currentColor;
}
.gs-contact-social__icon[src] {
  fill: none;
}
.gs-contact-social__link:hover .gs-contact-social__icon {
  transform: scale(1.15);
}

.gs-contact-logos {
  padding: 3rem 0;
  background-color: #FFFFFF;
  text-align: center;
}
.gs-contact-logos__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.gs-contact-logos__logo {
  height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 300ms ease-in-out;
}
.gs-contact-logos__logo:hover {
  opacity: 1;
}

.gs-page {
  padding: 4rem 0;
}
.gs-page .gs-container {
  max-width: 1200px;
}
.gs-page-content {
  background: #FFFFFF;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(107, 79, 63, 0.1);
}
@media (max-width: 768px) {
  .gs-page-content {
    padding: 2rem;
  }
}
.gs-page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(107, 79, 63, 0.2);
}
.gs-page-title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.25rem;
  color: #333333;
  margin: 0;
}
.gs-page-body {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  line-height: 1.8;
}
.gs-page-body h2 {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.875rem;
  color: #333333;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.gs-page-body h3 {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.5rem;
  color: #333333;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.gs-page-body p {
  margin-bottom: 1rem;
}
.gs-page-body ul,
.gs-page-body ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.gs-page-body ul li,
.gs-page-body ol li {
  margin-bottom: 0.25rem;
}
.gs-page-body a {
  color: #0F4C75;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-page-body a:hover {
  color: rgb(9.2045454545, 46.6363636364, 71.7954545455);
  text-decoration: underline;
}
.gs-page-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.gs-page-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(107, 79, 63, 0.2);
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 0.875rem;
  color: #666666;
}
.gs-page-links a {
  color: #0F4C75;
  text-decoration: none;
  margin: 0 0.25rem;
}
.gs-page-links a:hover {
  color: rgb(9.2045454545, 46.6363636364, 71.7954545455);
  text-decoration: underline;
}

.gs-subpage {
  padding-top: 0;
}

.gs-subpage-hero {
  background: linear-gradient(135deg, #F2E8D8 0%, rgb(244.55, 236.5115384615, 223.65) 100%);
  padding: 4rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(107, 79, 63, 0.1);
}
@media (max-width: 991px) {
  .gs-subpage-hero {
    padding: 3rem 0 2rem;
  }
}
@media (max-width: 767px) {
  .gs-subpage-hero {
    padding: 2.5rem 0 1.5rem;
  }
}
.gs-subpage-hero__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.5rem;
  color: #333333;
  margin: 0;
}
@media (max-width: 991px) {
  .gs-subpage-hero__title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .gs-subpage-hero__title {
    font-size: 1.75rem;
  }
}

.gs-subpage-content {
  padding: 4rem 0;
}
@media (max-width: 991px) {
  .gs-subpage-content {
    padding: 3rem 0;
  }
}
@media (max-width: 767px) {
  .gs-subpage-content {
    padding: 2rem 0;
  }
}
.gs-subpage-content__wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.gs-subpage-section {
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .gs-subpage-section {
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .gs-subpage-section {
    margin-bottom: 2rem;
  }
}
.gs-subpage-section--full {
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .gs-subpage-section--full {
    margin-bottom: 3rem;
  }
}
.gs-subpage-section__title {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  font-size: 2rem;
  color: #333333;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #0F4C75;
}
@media (max-width: 991px) {
  .gs-subpage-section__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 767px) {
  .gs-subpage-section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }
}
.gs-subpage-section__content {
  margin-top: 1.5rem;
}
.gs-subpage-section__text {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1.125rem;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .gs-subpage-section__text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
.gs-subpage-section__text:last-child {
  margin-bottom: 0;
}
.gs-subpage-section__text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .gs-subpage-section__text p {
    margin-bottom: 1rem;
  }
}
.gs-subpage-section__text p:last-child {
  margin-bottom: 0;
}
.gs-subpage-section__text em {
  font-style: italic;
  color: #0F4C75;
}
.gs-subpage-section__text strong {
  font-weight: 600;
  color: #333333;
}
.gs-subpage-section__text ul, .gs-subpage-section__text ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .gs-subpage-section__text ul, .gs-subpage-section__text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
  }
}
.gs-subpage-section__text ul li, .gs-subpage-section__text ol li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}
.gs-subpage-section__text h1, .gs-subpage-section__text h2, .gs-subpage-section__text h3, .gs-subpage-section__text h4, .gs-subpage-section__text h5, .gs-subpage-section__text h6 {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333333;
}
@media (max-width: 767px) {
  .gs-subpage-section__text h1, .gs-subpage-section__text h2, .gs-subpage-section__text h3, .gs-subpage-section__text h4, .gs-subpage-section__text h5, .gs-subpage-section__text h6 {
    margin-top: 1.5rem;
  }
}
.gs-subpage-section__text h1:first-child, .gs-subpage-section__text h2:first-child, .gs-subpage-section__text h3:first-child, .gs-subpage-section__text h4:first-child, .gs-subpage-section__text h5:first-child, .gs-subpage-section__text h6:first-child {
  margin-top: 0;
}
.gs-subpage-section__text a {
  color: #0F4C75;
  text-decoration: underline;
  transition: color 300ms ease-in-out;
}
.gs-subpage-section__text a:hover {
  color: rgb(9.2045454545, 46.6363636364, 71.7954545455);
}
.gs-subpage-section__text img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.gs-subpage-section__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
@media (max-width: 767px) {
  .gs-subpage-section__list {
    margin: 1rem 0;
  }
}
.gs-subpage-section__list-item {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 1rem;
  color: #333333;
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .gs-subpage-section__list-item {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    font-size: 0.9rem;
  }
}
.gs-subpage-section__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0F4C75;
  font-size: 1.5rem;
  line-height: 1;
}
.gs-subpage-section__list-item strong {
  font-weight: 600;
  color: #333333;
}
.gs-subpage-section__list-item em {
  font-style: italic;
  color: #666666;
  font-size: 0.9em;
}

.gs-subpage-gallery {
  margin: 2rem 0;
}
@media (max-width: 767px) {
  .gs-subpage-gallery {
    margin: 1.5rem 0;
  }
}
.gs-subpage-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .gs-subpage-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .gs-subpage-gallery__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.gs-subpage-gallery__grid--large {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  .gs-subpage-gallery__grid--large {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .gs-subpage-gallery__grid--large {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gs-subpage-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
  background: #F2E8D8;
}
.gs-subpage-gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.gs-subpage-gallery__item--single {
  grid-column: 1/-1;
  max-width: 800px;
  margin: 0 auto;
}
.gs-subpage-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms ease-in-out;
}
.gs-subpage-gallery__item:hover .gs-subpage-gallery__image {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .gs-subpage-section__title {
    text-align: center;
  }
  .gs-subpage-section__content {
    text-align: left;
  }
  .gs-subpage-gallery__grid--large {
    grid-template-columns: 1fr;
  }
}
.gs-shop-page {
  padding: 4rem 0;
}
.gs-shop-page .gs-shop-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
}
@media (max-width: 1200px) {
  .gs-shop-page .gs-shop-wrapper {
    grid-template-columns: 1fr;
  }
}
.gs-shop-page .gs-shop-filters {
  background: #F2E8D8;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(107, 79, 63, 0.2);
  position: sticky;
  top: 100px;
  height: fit-content;
  align-self: flex-start;
}
@media (max-width: 1200px) {
  .gs-shop-page .gs-shop-filters {
    position: static;
  }
}
.gs-shop-page .gs-shop-filters h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333333;
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
}
.gs-shop-page .gs-shop-filters .gs-filter-box {
  margin-bottom: 2rem;
}
.gs-shop-page .gs-shop-filters .gs-filter-box:last-child {
  margin-bottom: 0;
}
.gs-shop-page .gs-shop-filters .gs-filter-box h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  border-left: 3px solid #0F4C75;
  padding-left: 0.5rem;
  font-weight: 600;
  color: #333333;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.gs-shop-page .gs-shop-filters .gs-filter-box .gs-filter-list,
.gs-shop-page .gs-shop-filters .gs-filter-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gs-shop-page .gs-shop-filters .gs-filter-box .gs-filter-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #666666;
  text-decoration: none;
  transition: color 300ms ease-in-out;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.gs-shop-page .gs-shop-filters .gs-filter-box .gs-filter-link:hover {
  color: #0F4C75;
}
.gs-shop-page .gs-shop-filters .gs-filter-box .gs-filter-link.gs-is-active {
  font-weight: 600;
  color: #0F4C75;
}
.gs-shop-page .gs-shop-filters .gs-filter-box .gs-price-range {
  display: flex;
  gap: 0.5rem;
}
.gs-shop-page .gs-shop-filters .gs-filter-box .gs-price-range input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(107, 79, 63, 0.3);
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  background: #FFFFFF;
}
.gs-shop-page .gs-shop-filters .gs-filter-box .gs-price-range input:focus {
  outline: none;
  border-color: #0F4C75;
}
.gs-shop-page .gs-shop-filters .gs-filter-box .gs-btn-filter {
  margin-top: 1rem;
  width: 100%;
  background: #0F4C75;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 300ms ease-in-out;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.gs-shop-page .gs-shop-filters .gs-filter-box .gs-btn-filter:hover {
  background: rgb(9.2045454545, 46.6363636364, 71.7954545455);
}
.gs-shop-page .gs-shop-filters .gs-sub-filter {
  margin: 1rem 0 0.5rem;
}
.gs-shop-page .gs-shop-filters .gs-sub-filter h5 {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  border-left: 3px solid #0F4C75;
  padding-left: 0.5rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.gs-shop-page .gs-shop-filters .gs-sub-filter ul li {
  margin-bottom: 0.25rem;
}
.gs-shop-page .gs-shop-content .gs-products-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1200px) {
  .gs-shop-page .gs-shop-content .gs-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .gs-shop-page .gs-shop-content .gs-products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.gs-shop-page .gs-shop-content .gs-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(107, 79, 63, 0.2);
  overflow: hidden;
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
}
.gs-shop-page .gs-shop-content .gs-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px dashed rgba(15, 76, 117, 0.3);
  opacity: 0;
  transform: scale(0.97);
  pointer-events: none;
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}
.gs-shop-page .gs-shop-content .gs-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(15, 76, 117, 0.3);
}
.gs-shop-page .gs-shop-content .gs-product-card:hover::after {
  opacity: 1;
  transform: scale(1);
}
.gs-shop-page .gs-shop-content .gs-product-card__image {
  display: block;
  overflow: hidden;
  position: relative;
}
.gs-shop-page .gs-shop-content .gs-product-card__image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 76, 117, 0);
  transition: background 300ms ease-in-out;
  z-index: 1;
  pointer-events: none;
}
.gs-shop-page .gs-shop-content .gs-product-card__image:hover::before {
  background: rgba(15, 76, 117, 0.1);
}
.gs-shop-page .gs-shop-content .gs-product-card__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease-in-out;
}
@media (max-width: 1200px) {
  .gs-shop-page .gs-shop-content .gs-product-card__image img {
    height: auto;
  }
}
.gs-shop-page .gs-shop-content .gs-product-card__image:hover img {
  transform: scale(1.15);
}
.gs-shop-page .gs-shop-content .gs-product-card__content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.gs-shop-page .gs-shop-content .gs-product-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  min-height: 54px;
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
}
.gs-shop-page .gs-shop-content .gs-product-card__title a {
  color: #333333;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}
.gs-shop-page .gs-shop-content .gs-product-card__title a:hover {
  color: #0F4C75;
}
.gs-shop-page .gs-shop-content .gs-product-card__price {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  color: #333333;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.gs-shop-page .gs-shop-content .gs-product-card__price .amount {
  color: #333333;
}
.gs-shop-page .gs-shop-content .gs-product-card__price del {
  color: #666666;
  font-weight: 400;
}
.gs-shop-page .gs-shop-content .gs-product-card__price ins {
  text-decoration: none;
}
.gs-shop-page .gs-shop-content .gs-product-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  gap: 0.5rem;
}
.gs-shop-page .gs-shop-content .gs-product-card__actions .gs-add-to-cart-btn {
  flex: 1;
}
.gs-shop-page .gs-shop-content .gs-product-card__actions .gs-add-to-cart-btn .add_to_cart_button {
  background: #0F4C75 !important;
  color: #FFFFFF !important;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 300ms ease-in-out;
  border: none;
  cursor: pointer;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  width: 100%;
  height: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.gs-shop-page .gs-shop-content .gs-product-card__actions .gs-add-to-cart-btn .add_to_cart_button:hover {
  background: rgb(9.2045454545, 46.6363636364, 71.7954545455) !important;
}
.gs-shop-page .gs-shop-content .gs-product-card__actions .gs-add-to-cart-btn .add_to_cart_button.loading {
  opacity: 0.7;
  cursor: wait;
}
.gs-shop-page .gs-shop-content .gs-btn-details {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid #0F4C75;
  background: rgba(15, 76, 117, 0.05);
  color: #0F4C75;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-height: 40px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  white-space: nowrap;
}
.gs-shop-page .gs-shop-content .gs-btn-details:hover {
  background: #0F4C75;
  color: #FFFFFF;
}
.gs-shop-page .gs-shop-content .gs-no-products {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem;
  color: #666666;
  font-size: 1.125rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.gs-shop-page .gs-pagination {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.gs-shop-page .gs-pagination .page-numbers {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.gs-shop-page .gs-pagination .page-numbers li {
  margin: 0;
}
.gs-shop-page .gs-pagination .page-numbers a,
.gs-shop-page .gs-pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #333333;
  font-size: 0.875rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  transition: all 300ms ease-in-out;
  min-width: 40px;
  height: 40px;
}
.gs-shop-page .gs-pagination .page-numbers a {
  border: 1px solid rgba(107, 79, 63, 0.2);
  background: #FFFFFF;
}
.gs-shop-page .gs-pagination .page-numbers a:hover {
  background: #0F4C75;
  color: #FFFFFF;
  border-color: #0F4C75;
}
.gs-shop-page .gs-pagination .page-numbers .current {
  background: #0F4C75;
  color: #FFFFFF;
  border: 1px solid #0F4C75;
}

.gs-filter-toggle {
  display: none;
  background: #0F4C75;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  cursor: pointer;
  border: none;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  transition: background 300ms ease-in-out;
}
.gs-filter-toggle:hover {
  background: rgb(9.2045454545, 46.6363636364, 71.7954545455);
}

@media (max-width: 1200px) {
  .gs-shop-page .gs-shop-content .gs-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .gs-shop-page .gs-shop-wrapper {
    grid-template-columns: 1fr;
  }
  .gs-shop-page .gs-filter-toggle {
    display: block;
  }
  .gs-shop-page .gs-shop-filters {
    position: fixed;
    left: -100%;
    top: 0;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    overflow-y: auto;
    background: #FFFFFF;
    padding: 2rem 1.5rem 4rem;
    border-radius: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: left 300ms ease-in-out;
  }
  .gs-shop-page .gs-shop-filters.gs-open {
    left: 0;
  }
  .gs-shop-page .gs-shop-content .gs-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  body.gs-filter-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
  }
}
@media (max-width: 480px) {
  .gs-shop-page .gs-shop-content .gs-products-grid {
    grid-template-columns: 1fr;
  }
}
body.woocommerce .gs-header,
body.woocommerce-page .gs-header,
body.woocommerce-cart .gs-header,
body.woocommerce-checkout .gs-header,
body.woocommerce-account .gs-header {
  background-color: #F2E8D8;
  border-bottom: 1px solid #F2E8D8;
  padding: 1rem 0;
}
body.woocommerce .gs-footer,
body.woocommerce-page .gs-footer,
body.woocommerce-cart .gs-footer,
body.woocommerce-checkout .gs-footer,
body.woocommerce-account .gs-footer {
  background-color: rgb(9.2045454545, 46.6363636364, 71.7954545455) !important;
  color: #F2E8D8 !important;
  padding: 6rem 0 2rem !important;
}
body.woocommerce .gs-footer__main,
body.woocommerce-page .gs-footer__main,
body.woocommerce-cart .gs-footer__main,
body.woocommerce-checkout .gs-footer__main,
body.woocommerce-account .gs-footer__main {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 4rem !important;
  margin-bottom: 0 !important;
  padding-bottom: 4rem !important;
  border-bottom: 1px solid rgba(245, 241, 232, 0.2) !important;
}
@media (max-width: 1199px) {
  body.woocommerce .gs-footer__main,
  body.woocommerce-page .gs-footer__main,
  body.woocommerce-cart .gs-footer__main,
  body.woocommerce-checkout .gs-footer__main,
  body.woocommerce-account .gs-footer__main {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 3rem !important;
  }
}
@media (max-width: 767px) {
  body.woocommerce .gs-footer__main,
  body.woocommerce-page .gs-footer__main,
  body.woocommerce-cart .gs-footer__main,
  body.woocommerce-checkout .gs-footer__main,
  body.woocommerce-account .gs-footer__main {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
body.woocommerce .gs-footer__section-title,
body.woocommerce-page .gs-footer__section-title,
body.woocommerce-cart .gs-footer__section-title,
body.woocommerce-checkout .gs-footer__section-title,
body.woocommerce-account .gs-footer__section-title {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  font-size: 1.125rem !important;
  color: #F2E8D8 !important;
  margin-bottom: 1.5rem !important;
}
body.woocommerce .gs-footer__nav-link,
body.woocommerce-page .gs-footer__nav-link,
body.woocommerce-cart .gs-footer__nav-link,
body.woocommerce-checkout .gs-footer__nav-link,
body.woocommerce-account .gs-footer__nav-link {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.9) !important;
  text-decoration: none !important;
  transition: color 300ms ease-in-out !important;
}
body.woocommerce .gs-footer__nav-link:hover,
body.woocommerce-page .gs-footer__nav-link:hover,
body.woocommerce-cart .gs-footer__nav-link:hover,
body.woocommerce-checkout .gs-footer__nav-link:hover,
body.woocommerce-account .gs-footer__nav-link:hover {
  color: #F2E8D8 !important;
}
body.woocommerce .gs-footer__description,
body.woocommerce-page .gs-footer__description,
body.woocommerce-cart .gs-footer__description,
body.woocommerce-checkout .gs-footer__description,
body.woocommerce-account .gs-footer__description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.9) !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.7 !important;
}
body.woocommerce .gs-footer__contact-item,
body.woocommerce-page .gs-footer__contact-item,
body.woocommerce-cart .gs-footer__contact-item,
body.woocommerce-checkout .gs-footer__contact-item,
body.woocommerce-account .gs-footer__contact-item {
  color: rgba(245, 241, 232, 0.9) !important;
}
body.woocommerce .gs-footer__newsletter-description,
body.woocommerce-page .gs-footer__newsletter-description,
body.woocommerce-cart .gs-footer__newsletter-description,
body.woocommerce-checkout .gs-footer__newsletter-description,
body.woocommerce-account .gs-footer__newsletter-description {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.9) !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.7 !important;
}
body.woocommerce .gs-footer__newsletter-button,
body.woocommerce-page .gs-footer__newsletter-button,
body.woocommerce-cart .gs-footer__newsletter-button,
body.woocommerce-checkout .gs-footer__newsletter-button,
body.woocommerce-account .gs-footer__newsletter-button {
  padding: 0.7rem 1.5rem !important;
  background-color: #5A7D5A !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: background-color 300ms ease-in-out !important;
  white-space: nowrap !important;
}
body.woocommerce .gs-footer__newsletter-button:hover, body.woocommerce .gs-footer__newsletter-button:focus, body.woocommerce .gs-footer__newsletter-button:active,
body.woocommerce-page .gs-footer__newsletter-button:hover,
body.woocommerce-page .gs-footer__newsletter-button:focus,
body.woocommerce-page .gs-footer__newsletter-button:active,
body.woocommerce-cart .gs-footer__newsletter-button:hover,
body.woocommerce-cart .gs-footer__newsletter-button:focus,
body.woocommerce-cart .gs-footer__newsletter-button:active,
body.woocommerce-checkout .gs-footer__newsletter-button:hover,
body.woocommerce-checkout .gs-footer__newsletter-button:focus,
body.woocommerce-checkout .gs-footer__newsletter-button:active,
body.woocommerce-account .gs-footer__newsletter-button:hover,
body.woocommerce-account .gs-footer__newsletter-button:focus,
body.woocommerce-account .gs-footer__newsletter-button:active {
  background-color: #5A7D5A !important;
  color: #FFFFFF !important;
}
body.woocommerce .gs-footer__copyright-text,
body.woocommerce-page .gs-footer__copyright-text,
body.woocommerce-cart .gs-footer__copyright-text,
body.woocommerce-checkout .gs-footer__copyright-text,
body.woocommerce-account .gs-footer__copyright-text {
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.875rem !important;
  color: rgba(245, 241, 232, 0.8) !important;
  margin-bottom: 0.5rem !important;
}
body.woocommerce .gs-footer__copyright-text--small,
body.woocommerce-page .gs-footer__copyright-text--small,
body.woocommerce-cart .gs-footer__copyright-text--small,
body.woocommerce-checkout .gs-footer__copyright-text--small,
body.woocommerce-account .gs-footer__copyright-text--small {
  font-size: 0.75rem !important;
  color: rgba(245, 241, 232, 0.6) !important;
}
body.woocommerce .gs-footer__funding-logo,
body.woocommerce-page .gs-footer__funding-logo,
body.woocommerce-cart .gs-footer__funding-logo,
body.woocommerce-checkout .gs-footer__funding-logo,
body.woocommerce-account .gs-footer__funding-logo {
  width: auto !important;
  opacity: 0.9 !important;
  transition: opacity 300ms ease-in-out !important;
  max-width: 553px !important;
}
body.woocommerce .gs-footer__funding-logo:hover,
body.woocommerce-page .gs-footer__funding-logo:hover,
body.woocommerce-cart .gs-footer__funding-logo:hover,
body.woocommerce-checkout .gs-footer__funding-logo:hover,
body.woocommerce-account .gs-footer__funding-logo:hover {
  opacity: 1 !important;
}
@media (max-width: 767px) {
  body.woocommerce .gs-footer__funding-logo,
  body.woocommerce-page .gs-footer__funding-logo,
  body.woocommerce-cart .gs-footer__funding-logo,
  body.woocommerce-checkout .gs-footer__funding-logo,
  body.woocommerce-account .gs-footer__funding-logo {
    height: 60px !important;
  }
}

.gs-single-product {
  padding: 4rem 0;
}
.gs-single-product .gs-container {
  max-width: 1200px;
}
.gs-single-product form.cart {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.gs-single-product form.cart .quantity {
  display: flex;
  align-items: center;
  margin: 0;
}
.gs-single-product form.cart .quantity label.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.gs-single-product form.cart .quantity input.input-text.qty {
  width: 80px !important;
  height: 48px !important;
  padding: 0.5rem 1rem !important;
  border: 2px solid rgba(107, 79, 63, 0.3) !important;
  border-radius: 8px !important;
  text-align: center !important;
  font-size: 1rem !important;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif !important;
  color: #333333 !important;
  background-color: #FFFFFF !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.gs-single-product form.cart .quantity input.input-text.qty::-webkit-inner-spin-button, .gs-single-product form.cart .quantity input.input-text.qty::-webkit-outer-spin-button {
  opacity: 1;
  height: auto;
}
.gs-single-product form.cart .quantity input.input-text.qty:focus {
  outline: none;
  border-color: #0F4C75 !important;
}
.gs-single-product form.cart .single_add_to_cart_button {
  flex: 1;
  min-width: 200px;
}

.woocommerce-cart .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 992px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
  }
}
.woocommerce-cart .woocommerce table.shop_table {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(107, 79, 63, 0.1);
  width: 100%;
}
.woocommerce-cart .woocommerce table.shop_table th {
  font-size: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(107, 79, 63, 0.2);
  font-weight: 600;
  color: #333333;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.woocommerce-cart .woocommerce table.shop_table td {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(107, 79, 63, 0.1);
  vertical-align: middle;
}
.woocommerce-cart .woocommerce table.shop_table td a.remove {
  color: rgb(9.2045454545, 46.6363636364, 71.7954545455);
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 300ms ease-in-out;
}
.woocommerce-cart .woocommerce table.shop_table td a.remove:hover {
  color: #0F4C75;
}
.woocommerce-cart .woocommerce table.shop_table td .product-thumbnail img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
}
.woocommerce-cart .woocommerce table.shop_table td .product-name a {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease-in-out;
}
.woocommerce-cart .woocommerce table.shop_table td .product-name a:hover {
  color: #0F4C75;
}
.woocommerce-cart .woocommerce table.shop_table td .quantity input {
  width: 60px;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(107, 79, 63, 0.3);
  border-radius: 4px;
  text-align: center;
}
.woocommerce-cart .woocommerce table.shop_table td .button {
  background: #0F4C75;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 300ms ease-in-out;
}
.woocommerce-cart .woocommerce table.shop_table td .button:hover {
  background: rgb(9.2045454545, 46.6363636364, 71.7954545455);
}
.woocommerce-cart .woocommerce .cart-collaterals {
  background: #F2E8D8;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(107, 79, 63, 0.2);
}
.woocommerce-cart .woocommerce .cart-collaterals h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #333333;
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
}
.woocommerce-cart .woocommerce .cart-collaterals table {
  width: 100%;
  margin-bottom: 1.5rem;
}
.woocommerce-cart .woocommerce .cart-collaterals table td,
.woocommerce-cart .woocommerce .cart-collaterals table th {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(107, 79, 63, 0.1);
}
.woocommerce-cart .woocommerce .cart-collaterals table th {
  font-weight: 600;
  text-align: left;
}
.woocommerce-cart .woocommerce .cart-collaterals table td {
  text-align: right;
}
.woocommerce-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout a {
  display: block;
  background: #0F4C75;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: background 300ms ease-in-out;
}
.woocommerce-cart .woocommerce .cart-collaterals .wc-proceed-to-checkout a:hover {
  background: rgb(9.2045454545, 46.6363636364, 71.7954545455);
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
}
@media (max-width: 992px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }
}
.woocommerce-checkout form.checkout .col2-set .col-1,
.woocommerce-checkout form.checkout .col2-set .col-2 {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(107, 79, 63, 0.1);
}
.woocommerce-checkout form.checkout .col2-set .col-1 h3,
.woocommerce-checkout form.checkout .col2-set .col-2 h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid #0F4C75;
  padding-left: 1rem;
  color: #333333;
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
}
.woocommerce-checkout form.checkout .col2-set .col-1 label,
.woocommerce-checkout form.checkout .col2-set .col-2 label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333333;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.woocommerce-checkout form.checkout .col2-set .col-1 input,
.woocommerce-checkout form.checkout .col2-set .col-1 select,
.woocommerce-checkout form.checkout .col2-set .col-1 textarea,
.woocommerce-checkout form.checkout .col2-set .col-2 input,
.woocommerce-checkout form.checkout .col2-set .col-2 select,
.woocommerce-checkout form.checkout .col2-set .col-2 textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(107, 79, 63, 0.3);
  margin-bottom: 1rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 0.875rem;
}
.woocommerce-checkout form.checkout .col2-set .col-1 input:focus,
.woocommerce-checkout form.checkout .col2-set .col-1 select:focus,
.woocommerce-checkout form.checkout .col2-set .col-1 textarea:focus,
.woocommerce-checkout form.checkout .col2-set .col-2 input:focus,
.woocommerce-checkout form.checkout .col2-set .col-2 select:focus,
.woocommerce-checkout form.checkout .col2-set .col-2 textarea:focus {
  outline: none;
  border-color: #0F4C75;
}
.woocommerce-checkout form.checkout #order_review {
  background: #F2E8D8;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(107, 79, 63, 0.2);
  height: fit-content;
}
.woocommerce-checkout form.checkout #order_review h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: #333333;
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
}
.woocommerce-checkout form.checkout #order_review table.shop_table {
  width: 100%;
  margin-bottom: 1.5rem;
}
.woocommerce-checkout form.checkout #order_review table.shop_table th,
.woocommerce-checkout form.checkout #order_review table.shop_table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(107, 79, 63, 0.1);
}
.woocommerce-checkout form.checkout #order_review table.shop_table th {
  font-weight: 600;
  text-align: left;
}
.woocommerce-checkout form.checkout #order_review table.shop_table td {
  text-align: right;
}
.woocommerce-checkout form.checkout #order_review #payment {
  margin-top: 1.5rem;
}
.woocommerce-checkout form.checkout #order_review #payment .place-order button {
  width: 100%;
  background: #0F4C75;
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 300ms ease-in-out;
}
.woocommerce-checkout form.checkout #order_review #payment .place-order button:hover {
  background: rgb(9.2045454545, 46.6363636364, 71.7954545455);
}

.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
}
.woocommerce-account .woocommerce::before {
  display: none !important;
}
@media (max-width: 992px) {
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation {
  background: #F2E8D8;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(107, 79, 63, 0.2);
  height: fit-content;
  width: 100%;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li {
  margin-bottom: 1rem;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  color: #333333;
  font-weight: 600;
  text-decoration: none;
  transition: color 300ms ease-in-out;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  display: block;
  padding: 0.25rem 0;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li a:hover {
  color: #0F4C75;
}
.woocommerce-account .woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #0F4C75;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(107, 79, 63, 0.1);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #333333;
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form input,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form select,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(107, 79, 63, 0.3);
  margin-bottom: 1rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
  font-size: 0.875rem;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form input:focus,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form select:focus,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content form textarea:focus {
  outline: none;
  border-color: #0F4C75;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content button,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .button {
  background: #0F4C75;
  color: #FFFFFF;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 300ms ease-in-out;
  text-decoration: none;
  display: inline-block;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content button:hover,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .button:hover {
  background: rgb(9.2045454545, 46.6363636364, 71.7954545455);
}

.woocommerce .product_title {
  font-size: 32px;
}
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button {
  background: #0F4C75;
  color: #FFFFFF;
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 300ms ease-in-out;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: rgb(9.2045454545, 46.6363636364, 71.7954545455);
}
.woocommerce a {
  color: #0F4C75;
  transition: color 300ms ease-in-out;
}
.woocommerce a:hover {
  color: rgb(9.2045454545, 46.6363636364, 71.7954545455);
}
.woocommerce h1, .woocommerce h2, .woocommerce h3 {
  font-family: "Poppins", "Helvetica Neue", "Arial", sans-serif;
  color: #333333;
}
.woocommerce input[type=text],
.woocommerce input[type=email],
.woocommerce input[type=tel],
.woocommerce input[type=number],
.woocommerce select,
.woocommerce textarea {
  border: 1px solid rgba(107, 79, 63, 0.3);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: "Inter", "Lato", "Helvetica Neue", "Arial", sans-serif;
}
.woocommerce input[type=text]:focus,
.woocommerce input[type=email]:focus,
.woocommerce input[type=tel]:focus,
.woocommerce input[type=number]:focus,
.woocommerce select:focus,
.woocommerce textarea:focus {
  outline: none;
  border-color: #0F4C75;
}

/*# sourceMappingURL=main.css.map */
