@font-face {
  font-family: Lexend;
  src: url(fonts/Lexend[wght].ttf);
}
@font-face {
  font-family: "Cormorant Infant";
  src: url(fonts/CormorantInfant-Regular.ttf);
}
:root {
  --primary: #956b29;
  --primary-text-color: #333;
  --font-color: #333;
  --theme-color: #956b29;
  --body-font-size: 16px;
  --body-font-family: Lexend;
  --body-font-weight: 400;
  --body-line-height: 2;
  --body-background-color: #fff;
  --modal-bg-color: #fff;
  --bg-color: #fff;
  --btn-active-bg-color: #956b29;
  --box-shadow-primary: none;
  --border-color: #ccc;
  --btn-active-border-color: #956b29;
  --btn-border-color: transparent;
  --btn-background-color: #956b29;
  --btn-hover-background-color: #956b29;
  --btn-text-color: #fff;
  --btn-hover-text-color: #fff;
  --btn-active-color: #fff;
  --btn-font-family: Lexend;
  --btn-font-size: 15px;
  --btn-text-transform: none;
  --btn-border: none;
  --btn-padding: 10px 20px;
  --btn-border-radius: 0px;
  --btn-hover-opacity: 1;
  --btn-letter-spacing: 0;
  --anounce-color: #ff3333;
  --inputs-text-color: #212529;
  --anchors-color: #956b29;
  --anchors-hover-color: #333;
  --highlights-color: #333;
  --highlights-font-family: Cormorant Infant;
  --highlights-font-weight: 400;
  --highlights-line-height: 1.4;
  --container-max-width: 1440px;
  --popup-text-color: #000;
  --wine-information-alt-row-bg: #eee;
  --overlay-bg-color: rgba(0, 0, 0, 0.8);
  --cart-summary-top: 10px;
  --modal-header-color: #fff;
  --group-menu-font-size: 16px;
  --product-title-color: #956b29;
}

body {
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  line-height: var(--body-line-height);
  font-weight: var(--body-font-weight);
  background-color: var(--body-background-color);
}

a {
  color: var(--anchors-color);
}

a:hover {
  color: var(--anchors-hover-color);
}

button {
  background-color: transparent;
  padding: 0;
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
}

body,
.ui-widget-content {
  color: var(--primary-text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--highlights-color);
  font-family: var(--highlights-font-family);
  line-height: var(--highlights-line-height);
  font-weight: var(--highlights-font-weight);
}

.btn {
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  line-height: 20px;
  text-transform: var(--btn-text-transform);
  background: var(--btn-background-color);
  color: var(--btn-text-color);
  border: var(--btn-border);
  letter-spacing: var(--btn-letter-spacing);
  border-radius: var(--btn-border-radius);
  padding: var(--btn-padding);
}

.btn:focus,
.btn:hover {
  background: var(--btn-hover-background-color);
  color: var(--btn-hover-text-color);
  opacity: var(--btn-hover-opacity);
  border-color: var(--btn-hover-background-color);
}

.ord-container,
#pageContent {
  margin: 0 auto;
  max-width: var(--container-max-width);
}

#authStatus a:hover {
  text-decoration: none;
}

.ui-widget-header,
.activeCart .cartHeader,
.shop-left-menu .menu-header,
#accountContent .header,
#checkout .header,
#basket .header,
.bootstrapWizard li.complete .step,
.bootstrapWizard li.active .step,
.bootstrapWizard li.active.complete .step,
#tabs-product ul a,
#tabs-product .ui-tabs-nav a {
  background: var(--theme-color);
}

#tabs-product .tabs-container a.btn {
  color: var(--btn-text-color);
}

#tabs-product .tabs-container a.btn:hover {
  color: var(--btn-hover-text-color);
}

.txt,
.txtbig,
.ddl,
.select_box select,
input[type=text],
input[type=password],
select,
textarea {
  color: var(--inputs-text-color);
}

.popup h1,
.popup h2,
.popup h3,
.popup h4,
.popup h5,
.popup h6 {
  color: var(--popup-text-color);
}

header p,
footer p {
  margin: 0;
}

body.open {
  overflow: hidden;
}
body.open .site-navigation {
  transform: translate(0);
}
body.open.has-overlay .ord-overlay {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  background-color: var(--overlay-bg-color);
  width: 100%;
  height: 100%;
}

header {
  --banner-height: 260px;
}
@media (min-width: 768px) {
  header {
    --banner-height: 450px;
  }
}
@media (min-width: 1367px) {
  header {
    --banner-height: 600px;
  }
}

.header-banner {
  min-height: var(--banner-height);
  background-image: url(Images/header.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.header-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.29;
  background-color: #000;
  z-index: 1;
}

.header-banner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-banner h1 {
  color: #fff;
  font-size: 42px;
  margin: 0;
  position: relative;
  z-index: 2;
  display: none;
}

form[action*="/wines"] .header-banner h1.shop-title,
form[action*="/product-details"] .header-banner h1.shop-title,
form[action*="/wine-club"] .header-banner h1.wineclub-title,
form[action*="/auth"] .header-banner h1.auth-title,
form[action*="/account"] .header-banner h1.account-title,
form[action*="/newsletter"] .header-banner h1.newsletter-title {
  display: block;
}

.logo-wrap {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
}

.logo {
  width: 30%;
  text-align: center;
  padding: 10px;
  margin-left: 20px;
}
.logo img {
  width: 80px;
}

.header-right {
  display: flex;
  width: 60%;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.store-menu {
  display: flex;
}
.store-menu a {
  color: #fff;
  font-size: 20px;
  padding: 10px;
}

.btn-menu-wrap {
  width: 20%;
}

.burger {
  font-size: 20px;
  padding: 10px;
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .desktop-label {
    display: none;
  }
  .site-navigation {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    height: 100%;
    z-index: 1040;
    background-color: #333;
    transform: translateX(-100%);
    max-width: 400px;
    transition: transform 0.3s ease;
  }
  .site-navigation .store-menu {
    display: none;
  }
  .navigation-row {
    display: flex;
    flex-direction: column;
  }
  .nav-logo {
    order: 0;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
  }
  .nav-logo img {
    width: 90px;
  }
  .nav-logo button {
    color: #fff;
    font-size: 30px;
    color: #fff;
    line-height: 38px;
    font-family: Lexend;
  }
  .main-navigation {
    order: 1;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-navigation-1 {
    margin-top: 10px;
    padding-top: 10px;
  }
  .main-menu a {
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    line-height: 20px;
    display: flex;
  }
  .main-menu .has-child.open .sub-menu {
    display: block;
  }
  .main-menu .sub-menu {
    display: none;
  }
  .main-menu .sub-menu a {
    font-size: 11.05px;
  }
}
@media (min-width: 1025px) {
  .mobile-label,
  .button-close,
  .logo-wrap {
    display: none;
  }
  .site-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
  }
  .main-navigation {
    padding: 10px;
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    width: 50%;
  }
  .nav-logo {
    padding: 10px;
    width: 20%;
    text-align: center;
    flex: 0 1 auto;
  }
  .nav-logo img {
    width: 120px;
  }
  .navigation-row {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-navigation-1 {
    justify-content: flex-end;
  }
  .main-menu {
    display: flex;
  }
  .main-menu .has-child {
    position: relative;
  }
  .main-menu .has-child:hover .sub-menu {
    display: block;
  }
  .main-menu .sub-menu {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 1040;
    background-color: #fff;
  }
  .main-menu .sub-menu a {
    color: #212529;
    padding: 13px 20px;
    font-size: 13px;
  }
  .main-menu a {
    white-space: nowrap;
    display: flex;
    padding: 13px 12px;
    line-height: 20px;
    font-size: 16px;
    color: #fff;
  }
  .main-menu a:hover {
    color: #956b29;
  }
}
@media (min-width: 1367px) {
  .main-menu a {
    font-size: 18px;
    padding: 13px 20px;
  }
}
.btn-toggle-sub-menu {
  padding: 10px 0 10px 10px;
  color: #fff;
  margin: -10px 0;
  font-size: 16px;
}

@media (min-width: 768px) {
  .logo {
    width: 20%;
  }
  .logo img {
    width: 120px;
  }
  .header-right {
    flex: 1;
    padding: 10px;
  }
  .btn-menu-wrap {
    width: 10%;
    text-align: right;
  }
}
footer.footer {
  --list-spacing: 5.5px;
}

.footer-newsletter {
  min-height: 250px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(Images/Newsletter-Bg.jpg);
  background-size: cover;
  background-position: center;
}
.footer-newsletter::after {
  filter: brightness(93%) contrast(100%) saturate(100%) blur(4.9px) hue-rotate(0deg);
  content: "";
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.29;
  z-index: 1;
}

.btn-newsletter {
  position: relative;
  z-index: 9;
  display: inline-block;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  background-color: #956b29;
  color: #fff;
}
.btn-newsletter:hover {
  color: #956b29;
  background-color: #fff;
}

.footer-main {
  background-color: #956b29;
  padding: 0 20px;
}

.footer-cols {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 0 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col-title {
  color: #fff;
  margin: 0;
  line-height: 1;
  font-size: 28px;
  font-weight: 500;
}

.footer-col-2 {
  padding-right: 50px;
}

.icon-list {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}
.icon-list li:not(:last-child) {
  padding-bottom: var(--list-spacing);
}
.icon-list li + li {
  margin-top: var(--list-spacing);
}
.icon-list a {
  color: #fff;
  display: flex;
}
.icon-list .icon-item {
  width: 17.5px;
  position: relative;
  top: 4px;
}
.icon-list .icon-empty {
  font-size: 14px;
}
.icon-list .text-item {
  padding-left: 5px;
}

.iframe-block iframe {
  border: none;
  height: 150px;
  width: 100%;
}

.footer-bottom {
  background-color: #000;
  padding: 20px;
}

.footer-logo {
  display: none;
}

@media (min-width: 768px) {
  .footer-cols {
    flex-direction: row;
    padding: 60px 0;
  }
  .footer-col {
    flex: 0 1 auto;
  }
  .footer-col-1 {
    width: 60%;
  }
  .footer-col-2 {
    width: 56%;
  }
  .footer-col-3 {
    width: 55%;
  }
  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    background-image: url(Images/footer-logo.webp);
    background-size: cover;
    background-position: center;
    padding: 10px;
    position: relative;
  }
  .footer-logo::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.58;
  }
  .footer-logo img {
    position: relative;
    z-index: 9;
    width: 180px;
  }
}
@media (min-width: 1367px) {
  .footer-newsletter {
    min-height: 400px;
  }
  .footer-main {
    padding: 0 15px;
  }
  .footer-cols {
    padding: 80px 0;
  }
  .footer-bottom {
    padding: 0;
  }
  .btn-newsletter {
    font-size: 20px;
    line-height: 1;
    padding: 20px 50px;
  }
}/*# sourceMappingURL=ws-style.css.map */