/* [project]/src/app/globals.css [app-client] (css) */
.age-gate {
  z-index: 9999;
  background: #000000e6;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.age-gate__card {
  background: var(--white);
  text-align: center;
  width: 100%;
  max-width: 34rem;
  padding: 3rem 2.5rem;
}

.age-gate__logo {
  width: 12rem;
  margin: 0 auto 1.5rem;
  display: block;
}

.age-gate__card h2 {
  margin-bottom: 1rem;
}

.age-gate__card p {
  margin-bottom: 1.5rem;
}

.age-gate__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.age-gate__deny {
  border: .1rem solid var(--grey);
  color: var(--grey);
  cursor: pointer;
  background: none;
}

.age-gate__denied {
  color: var(--white);
  text-align: center;
  max-width: 34rem;
  padding: 2rem;
}

.wine-grid {
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  display: grid;
}

.wine-card {
  background: var(--white);
  border: .1rem solid var(--light-grey);
  flex-direction: column;
  display: flex;
}

.wine-card__media {
  background: var(--black);
}

.wine-card__media img {
  object-fit: cover;
  width: 100%;
  height: 24rem;
  display: block;
}

.wine-card__body {
  flex-direction: column;
  flex: 1;
  padding: 2rem 2.5rem 2.5rem;
  display: flex;
}

.wine-card__body ul {
  margin-bottom: 1rem;
}

.wine-card__cta {
  margin-top: auto;
  padding-top: 1.5rem;
}

.form {
  gap: 1.25rem;
  max-width: 40rem;
  display: grid;
}

.form label {
  color: var(--grey);
  margin-bottom: .4rem;
  font-size: .95rem;
  display: block;
}

.form input, .form select, .form textarea {
  border: .1rem solid var(--light-grey);
  background: var(--light-grey);
  width: 100%;
  font-family: var(--ff-2);
  color: var(--black);
  padding: .85rem 1rem;
  font-size: 1rem;
}

.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}

.form .form__row {
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  display: grid;
}

.form button[type="submit"] {
  justify-self: start;
}

.form__note {
  color: var(--grey);
  font-size: .85rem;
}

.form__hp {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -9999px;
  overflow: hidden;
}

.form__message {
  font-size: .95rem;
}

.form__message--ok {
  color: #2e7d32;
}

.form__message--error {
  color: #c62828;
}

.contact-info-block ul.li li {
  margin-bottom: .75rem;
}

.contact-info-block a {
  color: inherit;
}

.social-max {
  font-family: var(--ff-2);
  letter-spacing: .05em;
  font-size: .9rem;
  font-weight: 800;
}

.legal-note {
  color: var(--grey);
  margin-top: 1rem;
  font-size: .8rem;
}

@media (max-width: 600px) {
  .form .form__row {
    grid-template-columns: 1fr;
  }
}

.swiper-image.photo {
  padding: 0;
}

.swiper-image.photo img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 480px;
  display: block;
}

.wine-card__media, .swiper-image.photo {
  position: relative;
}

.wg-arrow {
  color: #faf6ee;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  background: #26201b8c;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.6rem;
  line-height: 1;
  transition: opacity .2s, background .2s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.wine-card__media:hover .wg-arrow, .swiper-image.photo:hover .wg-arrow {
  opacity: 1;
}

.wg-arrow:hover {
  background: var(--primary);
}

.wg-prev {
  left: .6rem;
}

.wg-next {
  right: .6rem;
}

.wg-dots {
  z-index: 2;
  justify-content: center;
  gap: .4rem;
  display: flex;
  position: absolute;
  bottom: .8rem;
  left: 0;
  right: 0;
}

.wg-dots button {
  cursor: pointer;
  background: #faf6ee8c;
  border: none;
  border-radius: 50%;
  width: .5rem;
  height: .5rem;
  padding: 0;
  transition: background .2s, transform .2s;
}

.wg-dots button.active {
  background: var(--primary);
  transform: scale(1.25);
}

@media (max-width: 800px) {
  .wg-arrow {
    opacity: 1;
  }
}

.event-cover {
  object-fit: cover;
  width: 100%;
  height: 460px;
  display: block;
}

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

.event-gallery img {
  object-fit: cover;
  cursor: pointer;
  width: 100%;
  height: 240px;
  transition: opacity .2s;
  display: block;
}

.event-gallery img:hover {
  opacity: .85;
}

.event-meta {
  font-family: var(--ff-2);
  letter-spacing: .05em;
  color: var(--primary);
  text-transform: uppercase;
  font-size: .9rem;
  font-weight: 800;
}

@media (max-width: 800px) {
  .swiper-image.photo img {
    height: 340px;
  }

  .event-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-gallery img {
    height: 180px;
  }

  .event-cover {
    height: 300px;
  }
}

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