* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@view-transition {
  navigation: auto;
}

@keyframes page-transition-out {
  to {
    opacity: 0;
  }
}

@keyframes page-transition-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

@keyframes page-transition-fade-in {
  from {
    opacity: 0;
  }
}

::view-transition-old(root) {
  animation: 120ms ease-out both page-transition-out;
}

::view-transition-new(root) {
  animation: 320ms cubic-bezier(.22,.61,.36,1) both page-transition-in;
}

::view-transition-group(site-logo) {
  animation-duration: 0s;
}

::view-transition-old(site-logo),
::view-transition-new(site-logo) {
  animation: none;
  mix-blend-mode: normal;
}

body {
  margin: 0;
  background: #947d54 url('/assets/body-tail.webp') center top repeat;
  color: #8e8e8e;
  font: 14px/21px Arial,Helvetica,sans-serif;
  min-width: 1024px;
}

a {
  color: #a6a336;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}

p {
  margin: 0 0 21px;
}

h1 {
  color: #6d8e56;
  font: 300 45px/45px 'Open Sans',sans-serif;
  margin: 0 0 30px;
}

h2 {
  color: #6d8e56;
  font: 300 28px/37px 'Open Sans',sans-serif;
  margin: 0 0 20px;
}

h3 {
  color: #373737;
  font: 400 22px/26px 'Open Sans',sans-serif;
  margin: 0 0 25px;
}

h4 {
  color: #a1974f;
  font: 400 20px/26px 'Open Sans',sans-serif;
  margin: 0 0 8px;
}

h5 {
  color: #a6a336;
  font: 400 14px/21px 'Open Sans',sans-serif;
  margin: 0 0 16px;
  text-transform: uppercase;
}

h6 {
  color: #bcbf6f;
  font: 14px/21px Arial,Helvetica,sans-serif;
  margin: 0;
}

h1 a,h2 a,h3 a,h4 a {
  color: inherit;
}

#page-wrapper {
  background: #fff;
  margin: 0 auto 94px;
  width: 960px;
  position: relative;
}

#page {
  width: 1000px;
  margin-left: -20px;
}

#header {
  padding-top: 15px;
  text-align: center;
}

.logo-wrapper {
  height: 222px;
  margin-bottom: 10px;
  view-transition-name: site-logo;
}

.logo-wrapper img {
  width: 500px;
  height: 222px;
}

nav {
  height: 31px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  gap: 55px;
}

nav a {
  color: #8f8f8f;
  display: block;
  isolation: isolate;
  margin: -6px -4px;
  padding: 6px 4px;
  position: relative;
  white-space: nowrap;
  transition: color .18s ease;
}

nav a::before {
  content: "";
  position: absolute;
  inset: 0 -14px;
  z-index: -1;
  background: linear-gradient(90deg,transparent 0,#7e9800 14px,#7e9800 calc(100% - 14px),transparent 100%);
  opacity: 0;
  transition: opacity .18s ease;
}

nav a:hover,nav a:focus-visible,nav a.active {
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 1px rgba(0,0,0,.22);
}

nav a:hover::before,nav a:focus-visible::before,nav a.active::before {
  opacity: 1;
}

nav a:focus-visible {
  outline: 2px solid #7e9800;
  outline-offset: 2px;
}

.slider {
  height: 440px;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.slider>img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 440px;
  object-fit: cover;
  animation: slider-fade .6s ease;
}

@keyframes slider-fade {
  from {
    opacity: .35;
  }
  to {
    opacity: 1;
  }
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 74px;
  width: 39px;
  border: 0;
  cursor: pointer;
  z-index: 2;
}

.slider-prev {
  left: 0;
  background: #fff url('/assets/slider-prev.png') 8px 29px no-repeat;
  border-radius: 0 100% 100% 0;
}

.slider-next {
  right: 0;
  background: #fff url('/assets/slider-next.png') 20px 29px no-repeat;
  border-radius: 100% 0 0 100%;
}

.ribbon {
  height: 164px;
  background: url('/assets/ribbon-bg.png') center top repeat;
  color: #fff;
  position: relative;
}

.ribbon:before,.ribbon:after {
  content: "";
  position: absolute;
  top: 30px;
  width: 32px;
  height: 164px;
  background-size: 32px 164px;
}

.ribbon:before {
  left: -32px;
  background-image: url('/assets/ribbon-left.png');
}

.ribbon:after {
  right: -32px;
  background-image: url('/assets/ribbon-right.png');
}

.ribbon p {
  margin: 0;
  padding: 30px 20px 54px;
  font: 400 60px/60px 'Pinyon Script',cursive;
}

#main-wrapper {
  padding-bottom: 82px;
}

.content-grid {
  width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 460px 460px;
  column-gap: 20px;
}

.welcome {
  border: 1px solid #e8e7ba;
  color: #b0b0b0;
  line-height: 22px;
  padding: 51px 61px 58px;
  height: 356px;
}

.services {
  display: grid;
  grid-template-columns: 220px 220px;
  column-gap: 20px;
  text-align: center;
}

.service {
  border-top: 7px solid #e8e7ba;
  padding-top: 25px;
  height: 377px;
}

.service-image {
  height: 103px;
  margin-bottom: 25px;
}

.service h2 {
  margin-bottom: 20px;
}

.service p {
  height: 63px;
  margin: 0 0 34px;
}

.button {
  background: #bcbf6f;
  color: #fff;
  display: inline-block;
  font: 700 14px/20px 'Open Sans',sans-serif;
  padding: 11px 23px;
  text-transform: uppercase;
}

.button:hover {
  background: #6d8e56;
  text-decoration: none;
}

.separator {
  grid-column: 1/-1;
  background: url('/assets/dashed-border2.png') center bottom repeat-x;
  height: 85px;
  margin: 0 -30px 22px;
}

.product-banner {
  grid-column: 1/-1;
  height: 265px;
  margin: 0 -30px 69px;
  padding: 43px 144px 44px;
  background: url('/assets/banner-bg.webp') center top/cover repeat;
  color: #fff;
  font: 600 44px/45px 'Open Sans',sans-serif;
  display: grid;
  grid-template-columns: 587px auto;
  align-items: center;
}

.product-banner>div {
  text-align: right;
}

.product-banner>a {
  justify-self: end;
  border: 4px solid #fff;
  color: #fff;
  font-size: 24px;
  line-height: 24px;
  padding: 24px 47px 24px 42px;
  text-transform: uppercase;
}

.product-banner>a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 9px;
  background: url('/assets/link-marker.png') 0 0 no-repeat;
  vertical-align: -2px;
}

.product-banner>a:hover {
  border-color: #e4ffa0;
  color: #e4ffa0;
  text-decoration: none;
}

.locations {
  grid-column: 1/-1;
  justify-self: center;
  text-align: center;
  width: 220px;
  margin-left: 0;
  color: #7c7c7c;
  font-family: 'Trebuchet MS',Arial,sans-serif;
}

.locations h3 {
  margin-bottom: 32px;
}

.small-logo {
  width: 130px;
  margin-bottom: 33px;
}

.locations address {
  font-style: normal;
  line-height: 24px;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.map-link {
  display: block;
  color: #000;
  font-style: italic;
  margin-bottom: 31px;
  padding-left: 17px;
  background: url('/assets/link-marker2.png') 3px 8px no-repeat;
}

.email {
  display: block;
  padding-left: 40px;
  background: url('/assets/email-icon.png') 0 0 no-repeat;
  font: italic 16px/22px Georgia,serif;
  color: #5f5f5f;
}

.inner-section {
  width: 940px;
  margin: 0 auto;
  padding: 65px 0 10px;
  border-top: 1px solid #e8e7ba;
  overflow: hidden;
}

.inner-section:first-of-type {
  margin-top: 70px;
}

.inner-section ol {
  padding-left: 25px;
  margin-bottom: 25px;
}

.inner-section li {
  margin-bottom: 8px;
}

.photo-grid {
  display: grid;
  gap: 20px;
  clear: both;
  margin: 30px 0;
}

.photo-grid.three {
  grid-template-columns: repeat(3,1fr);
}

.photo-grid.three img {
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.products-grid h4 {
  margin-top: 15px;
}

.event-gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.event-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top;
}

.event-gallery h3 {
  font-size: 18px;
  margin: 18px 0 5px;
}

.contacts address {
  font-style: normal;
  line-height: 25px;
  margin: 25px 0;
}

#footer {
  background: url('/assets/dashed-border3.png') center top repeat-x;
  clear: both;
  padding: 45px 0 71px;
  text-align: center;
  position: relative;
}

.copyright {
  color: #252525;
  font-family: 'Open Sans',sans-serif;
}

.copyright span {
  color: #92970f;
}

.to-top {
  position: absolute;
  bottom: -28px;
  right: 50%;
  margin-right: -39px;
  width: 79px;
  height: 79px;
  border-radius: 50%;
  background: #fff url('/assets/totop.png') center 38px no-repeat;
}

.to-top:hover {
  background-position: center -22px;
}

@media (max-width:1099px) {
  body {
    min-width: 0;
    padding: 0 12px;
  }
  #page-wrapper {
    width: 100%;
    max-width: 960px;
  }
  #page {
    width: 100%;
    margin: 0;
  }
  .logo-wrapper {
    height: auto;
  }
  .logo-wrapper img {
    width: min(500px,90%);
    height: auto;
  }
  nav {
    height: auto;
    padding: 8px 15px;
  }
  nav ul {
    gap: 10px 22px;
    flex-wrap: wrap;
  }
  .slider,.slider>img {
    height: min(44vw,440px);
  }
  .ribbon {
    height: auto;
    min-height: 130px;
  }
  .ribbon:before,.ribbon:after {
    display: none;
  }
  .ribbon p {
    font-size: clamp(38px,7vw,60px);
    line-height: 1;
    padding: 30px 20px 45px;
  }
  .content-grid {
    width: 94%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .welcome {
    height: auto;
    padding: 40px;
  }
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .product-banner {
    padding: 40px;
    grid-template-columns: 1fr auto;
    height: auto;
  }
  .product-banner>div {
    width: auto;
  }
  .locations {
    width: auto;
  }
  .inner-section {
    width: 94%;
  }
}

@media (max-width:700px) {
  h1 {
    font-size: clamp(26px,11vw,38px);
    line-height: 1.12;
  }
  nav {
    overflow-x: clip;
  }
  nav a::before {
    inset: 0 -12px;
  }
  .content-grid {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0 14px;
  }
  .content-grid>* {
    min-width: 0;
  }
  .welcome,.services,.locations {
    grid-column: 1;
  }
  .welcome {
    padding: 34px 18px;
  }
  .services {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 25px;
  }
  .service {
    height: auto;
    padding-bottom: 35px;
  }
  .service p {
    height: auto;
  }
  .separator,.product-banner {
    grid-column: 1;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .product-banner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 25px;
    margin-bottom: 50px;
    padding: 32px 18px;
    font-size: clamp(30px,11vw,44px);
    line-height: 1.08;
  }
  .product-banner>div {
    min-width: 0;
    text-align: center;
    width: 100%;
  }
  .product-banner>a {
    justify-self: center;
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 18px 12px;
    font-size: 20px;
  }
  .photo-grid.three,.event-gallery {
    grid-template-columns: 1fr;
  }
  .locations {
    margin: 60px 0 0;
  }
  .event-gallery img {
    height: auto;
  }
}

@media (prefers-reduced-motion:reduce) {
  ::view-transition-old(root) {
    animation: 100ms linear both page-transition-out;
  }
  ::view-transition-new(root) {
    animation: 180ms linear both page-transition-fade-in;
  }
  ::view-transition-group(site-logo) {
    animation-duration: 0s;
  }
}

/* Regolamento, contatti e galleria fotografica */

.inner-section img:not([data-no-lightbox="true"]) {
  cursor: zoom-in;
}

.contacts>h2 {
  margin: 18px 0 22px;
}

.map-frame {
  width: 100%;
  height: 400px;
  margin-bottom: 55px;
  background: #eee;
  box-shadow: 0 0 0 1px #e2e2e2;
}

.map-frame iframe {
  display: block;
  border: 0;
}

.contact-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-columns h2 {
  margin: 0 0 22px;
}

.contact-form .form-item {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  color: #5f5f5f;
  font-weight: 700;
}

.contact-form label span {
  color: #a1974f;
}

.contact-form input,.contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #5f5f5f;
  font: 14px/1.5 Arial,Helvetica,sans-serif;
  outline: none;
  transition: border-color .2s,box-shadow .2s;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,.contact-form textarea:focus {
  border-color: #a1974f;
  box-shadow: 0 0 0 2px rgba(161,151,79,.18);
}

.form-submit {
  border: 0;
  background: #a1974f;
  color: #fff;
  padding: 12px 22px;
  font: 700 13px/1.2 'Open Sans',Arial,sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}

.form-submit:hover,.form-submit:focus {
  background: #8d843d;
}

.form-help {
  margin: 15px 0 0;
  color: #777;
  font-size: 12px;
  line-height: 1.5;
}

.form-notice {
  min-height: 20px;
  margin-top: 8px;
  color: #6f7420;
  font-weight: 700;
}

.directions p {
  line-height: 1.55;
}

.travel-row {
  position: relative;
  min-height: 30px;
  padding-left: 42px;
}

.travel-row img {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
}

.contacts address {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.93);
  color: #fff;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: zoom-out;
}

.lightbox-toolbar {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lightbox-toolbar span {
  margin-right: 8px;
  font: 600 13px/1 'Open Sans',Arial,sans-serif;
}

.lightbox-toolbar button,.lightbox-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.35);
  color: #fff;
  cursor: pointer;
}

.lightbox-toolbar button {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  font-size: 17px;
}

.lightbox-toolbar button:hover,.lightbox-toolbar button:focus,.lightbox-arrow:hover,.lightbox-arrow:focus {
  border-color: #fff;
  background: rgba(161,151,79,.85);
}

.lightbox-arrow:disabled,
.lightbox-arrow:disabled:hover,
.lightbox-arrow:disabled:focus {
  border-color: rgba(190,190,190,.25);
  background: rgba(70,70,70,.3);
  color: #8b8b8b;
  cursor: default;
  opacity: .55;
}

.lightbox-toolbar .lightbox-close {
  font-size: 29px;
  font-weight: 300;
}

.lightbox-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100vw - 180px);
  height: calc(100vh - 150px);
  overflow: auto;
}

.lightbox-image-button {
  box-sizing: border-box;
  display: grid;
  grid-template: 100%/100%;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.lightbox-image-button img {
  grid-area: 1/1;
  min-width: 0;
  min-height: 0;
  display: block;
  max-width: calc(100% - 48px);
  max-height: calc(100% - 48px);
  object-fit: contain;
  cursor: zoom-in;
  transition: transform .2s ease;
  transform-origin: center center;
  box-shadow: 0 8px 40px rgba(0,0,0,.45);
}

.lightbox-swipe-preview {
  pointer-events: none;
}

.lightbox-image-button.is-zoomed img {
  cursor: grab;
}

.lightbox-image-button.is-panning img {
  cursor: grabbing;
}

.lightbox-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 54px;
  height: 72px;
  margin-top: -36px;
  font: 300 54px/1 Arial,sans-serif;
}

.lightbox-previous {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-caption {
  position: absolute;
  z-index: 2;
  top: calc(100% - 55px);
  left: 90px;
  right: 90px;
  margin: 0;
  text-align: center;
  color: #fff;
  font: italic 15px/1.4 Georgia,serif;
}

.lightbox-mobile-hint {
  display: none;
}

@media (max-width:700px) {
  .contact-columns {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .map-frame,.map-frame iframe {
    height: 330px;
  }
  .lightbox-stage {
    width: calc(100vw - 30px);
    height: calc(100vh - 170px);
  }
  .lightbox-arrow {
    display: none;
  }
  .lightbox-image-button {
    touch-action: none;
    user-select: none;
  }
  .lightbox-image-button img {
    max-width: 100%;
    max-height: 100%;
  }
  .lightbox-toolbar {
    top: 12px;
    right: 12px;
  }
  .lightbox-toolbar span {
    display: none;
  }
  .lightbox-toolbar [data-zoom-out],
  .lightbox-toolbar [data-reset-zoom],
  .lightbox-toolbar [data-zoom-in] {
    display: none;
  }
  .lightbox-toolbar button {
    min-width: 35px;
    height: 35px;
    padding: 0 8px;
  }
  .lightbox-caption {
    left: 20px;
    right: 20px;
    font-size: 13px;
  }
  .lightbox-mobile-hint {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: block;
    margin: 0;
    text-align: center;
    color: rgba(255,255,255,.82);
    font: italic 13px/1.4 Georgia,serif;
  }
}

/* Fedeltà alle pagine interne originali */

.internal-main {
  padding-top: 25px;
}

.internal-main .inner-section {
  width: 940px;
  margin: 0 auto;
  padding: 0 0 10px !important;
  border-top: 0 !important;
}

.internal-main .inner-section>h1 {
  color: #6d8e56;
  font: 300 28px/37px 'Open Sans',sans-serif;
  margin: 0 0 20px;
}

.restaurant-content>p:first-child {
  margin-bottom: 21px;
}

.restaurant-image {
  clear: both;
  margin: 0 0 7px;
}

.restaurant-image img {
  display: block;
  float: none;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
}

.restaurant-content h2 {
  margin: 0 0 20px;
}

.regulation {
  max-width: none;
}

.regulation h4 {
  margin: 0 0 8px;
  color: #a1974f;
  font: 400 20px/26px 'Open Sans',sans-serif;
}

.regulation ol {
  margin: 0 0 21px;
  padding: 0;
  list-style-position: inside;
}

.regulation li {
  margin: 0;
  padding: 0;
  line-height: 21px;
}

@media (min-width:1100px) {
  #page-wrapper {
    width: 1000px;
  }
  #page {
    width: 1000px;
    margin-left: 0;
  }
}

@media (max-width:1099px) {
  .internal-main .inner-section {
    width: 94%;
  }
  .photo-grid.three {
    grid-template-columns: repeat(2,300px);
    justify-content: center;
  }
  .photo-grid.three img {
    width: 300px;
  }
}

/* Flusso fotografico originale */

.structure-row {
  display: flex;
  gap: 20px;
  margin: 10px 0;
}

.structure-row img {
  flex: 0 0 290px;
  width: 290px;
  height: auto;
  margin: 0;
}

.about-flow p {
  margin-bottom: 0;
}

@media (max-width:1099px) {
  .structure-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
  }
  .structure-row img {
    width: 100%;
    height: auto;
  }
}

@media (max-width:700px) {
  .photo-grid.three {
    grid-template-columns: 300px;
    justify-content: center;
  }
  .structure-row {
    grid-template-columns: 1fr;
  }
  .about-flow p {
    margin-bottom: 10px;
  }
}

/* Masseria, prodotti e nuovi collegamenti social */

.masseria-columns {
  display: grid;
  grid-template-columns: repeat(2,48.75%);
  column-gap: 1.5%;
  align-items: start;
}

.masseria-description,.masseria-photo {
  min-width: 0;
}

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

.masseria-logo img {
  display: block;
  width: 236px;
  height: 220px;
  margin: 0 auto;
}

.masseria-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.masseria-columns+p {
  margin-top: 7px;
}

.products-grid {
  grid-template-columns: repeat(3,300px);
  gap: 20px;
}

.products-grid article {
  width: 300px;
}

.products-grid img {
  display: block;
  width: 300px;
  height: 220px;
  object-fit: contain;
}

.social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.social .social-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  background-color: #cfd1aa;
  color: #fff;
  font: 700 16px/1 'Open Sans',Arial,sans-serif;
  text-decoration: none;
  transition: background-color .2s;
}

.social .social-badge:hover,.social .social-badge:focus {
  background-color: #a6a336;
}

.social .facebook {
  background-image: none;
}

.social .facebook span {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  color: #fff;
  font: 700 18px/1 Arial,sans-serif;
}

.social svg {
  width: 24px;
  height: 24px;
  overflow: visible;
}

.social .instagram svg {
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

.social .instagram .social-dot {
  fill: #fff;
  stroke: none;
}

.social .booking span {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  color: #fff;
  font: 700 16px/1 'Open Sans',Arial,sans-serif;
}

.social .tripadvisor svg {
  fill: #fff;
}

@media (max-width:1099px) {
  .products-grid {
    grid-template-columns: repeat(2,300px);
  }
}

@media (max-width:700px) {
  .masseria-columns {
    grid-template-columns: 1fr;
  }
  .masseria-columns+p {
    margin-top: 0;
  }
  .products-grid {
    grid-template-columns: 300px;
    justify-content: center;
  }
}
