:root{
  --h1:40px;  
  --h2:36px;  
  --h3:30px;  
  --h4:24px;  
  --h5:20px;  
  --h6:14px;  
  
  --body-size: 18px;
  --small-size:12px;
  --btn-size: 16px;
  
  --body-font: 'Montserrat', sans-serif;
  --heading-font: 'Playfair Display', serif;
  
  --body-weight: 400;
  --heading-weight: 500;
  
  --weight-regular:400;
  --weight-medium:500;
  --weight-semi-bold:600;
  --weight-bold:700;
  
  --p-color: #444444;
  --s-color: #005278 ;
  --color-black:#000;
  --color-white:#FFF;
  --color-shadow: #95959580;
  --orange: #EF5A24;
  
  --p-btn-bg-text:var(--color-white);
  --p-btn-bg: var(--p-color);
  --p-btn-border:var(--p-color);
  --p-btn-bg-text-hover: var(--p-color);
  --p-btn-bg-hover: var(--color-white);
  --p-btn-border-hover:var(--p-color);
  
  --s-btn-bg-text:var(--p-color);
  --s-btn-bg: var(--color-white);
  --s-btn-border: var(--p-color);
  --s-btn-bg-text-hover: var(--color-white);
  --s-btn-bg-hover: var(--p-color);
  --s-btn-border-hover:var(--p-color);
  
  
  --p-bg-color: #FFF;
  --s-bg-color: #82B1C7;

  --p-color-gift: #EF5A24;
  --p-bg-color-nav-link: #E6E6E6;
  --video-bg: rgba(130, 177, 199, 0.2);
  --video-bg-mobile: rgba(224, 224, 224, 0.2);
  --eat-bg: rgba(130, 177, 199, 0.2);
  
}
html{
  scroll-behavior: smooth;
}
body{
  line-height: 1.5;
  font-family: var(--body-font);
  font-weight: var(--weight-light);
}
.heading{
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
}
h1,h2,h3,h4,h5,h6{
  font-family: var(--heading-font);
  font-weight: var(--heading-weight);
}

h1,.h1,.h1-style{
  font-size: var(--h1);
}
h2,.h2,.h2-style{
  font-size: var(--h2);
}
h3,.h3,.h3-style{ 
  font-size: var(--h3);
}
h4,.h4,.h4-style{
  font-size: var(--h4);
}
h5,.h5,.h5-style{
  font-size: var(--h5);
}
h6,.h6,.h6-style{
  font-size: var(--h6);
}

.button, a.button, .btn, a.btn, button {
  font-family: var(--body-font);
  font-size: var(--btn-size);
  font-weight: var(--body-weight);
  padding: 8px 35px;
  border: 1px solid;
}

h1, 
.h1-style, 
h2, 
h3, 
h4, 
h5, 
h6, 
.heading-font{
  font-family: var(--heading-font);
  font-weight: var(--heading-font);
}
.btn.btn--primary {
  color: var(--p-btn-bg-text);
  background-color: var(--p-btn-bg);
  border-color: var(--p-btn-border);
}
.btn.btn--primary:hover,
.product-form .quantity-submit-row.has-spb .button:hover{
  color: var(--p-btn-bg-text-hover);
  background-color: var(--p-btn-bg-hover);
  border-color: var(--p-btn-border-hover);
}

.btn.btn--secondary,
.product-form .quantity-submit-row.has-spb .shopify-payment-button__button--unbranded {
  color: var(--s-btn-bg-text);
  background-color: var(--s-btn-bg);
  border-color: var(--s-btn-border);
}
.btn.btn--secondary:hover,
.product-form .quantity-submit-row.has-spb .shopify-payment-button__button--unbranded:hover{
  color: var(--s-btn-bg-text-hover);
  background-color: var(--s-btn-bg-hover);
  border-color: var(--s-btn-border-hover);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: var(--body-size);
  line-height: 1.3;
  color: var(--p-color);
}

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

a:hover {
  text-decoration: none;
}

.container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 15px;
}
@media(max-width:1259px) {
  .container {
    max-width: 1024px;
  }
}
header .content-wrapper {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: 90px auto 320px 180px;
  align-items: center;
  position: relative;
}

.hamburger-wrapper {
  position: relative;
  display: flex;
}

input+label {
  position: relative;
  left: 30px;
  height: 22px;
  width: 32px;
  z-index: 5;
}

input+label span {
  position: absolute;
  width: 100%;
  height: 3px;
  top: 42%;
  margin-top: -1px;
  left: 0;
  display: block;
  background: #2C739F;
  transition: 0.5s;
}

input+label span:first-child {
  top: 1px;
}

input+label span:last-child {
  top: 16px;
}

label:hover {
  cursor: pointer;
}

input:checked+label span {
  opacity: 0;
  top: 50%;
}

input:checked+label span:first-child {
  opacity: 1;
  transform: rotate(405deg);
}

input:checked+label span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}

input~nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 20%;
  height: 100px;
  z-index: 3;
  transition: 0.5s;
  transition-delay: 0.5s;
  overflow: hidden;
}

input~nav>ul {
  text-align: center;
  position: absolute;
  top: 33%;
  left: 0;
  right: 20%;
}

input~nav>ul>li {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0s;
}

input~nav>ul>li>a {
  text-decoration: none;
  text-transform: uppercase;
  color: gray;
  font-weight: 700;
  font-family: sans-serif;
  display: block;
  padding: 30px;
}

input#burger {
  visibility: hidden;
}

input:checked~nav {
  height: 100%;
  transition-delay: 0s;
}

input:checked~nav>ul>li {
  opacity: 1;
  transition-delay: 0.5s;
}



section.hero-module .content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px auto 0;
  position: relative;
}

section.hero-module .content-wrapper .item img {
  border-radius: 10px;
  max-width: 100%;
  max-height: 100%;
}

section.hero-module .content-wrapper .col-left {
  -ms-flex: 1 0 18.7%;
  flex: 1 0 18.7%;
  max-width: 18.7%;
  width: 100%;
  padding: 0;
}

section.hero-module .content-wrapper .col-left .item {
  width: 100%;
  margin-bottom: 10px;
}

/* Slot Module A */
.slot-module {
  padding: 40px 0;
}

.slot-module .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}

.slot-module .section-title {
  font-size: 36px;
  padding-top: 0px;
  font-weight: 600;
  color: var(--p-color);
  font-family: 'Playfair Display', serif;
}

.slot-module .line {
  flex: 1;
  width: 100%;
  margin-left: 15px;
}

.slot-module .line span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--s-color);
  flex: 1;
}

.slot-module .line span:first-child {
  margin-bottom: 5px;
  height: 2px;
}

.slot-module .section-title h2 {
  margin: 0;
  font-size: 36px;
}
.header-newsletter a.sign-up-newsletter1 {
  display: none;
}
svg.bi.bi-arrow-right {
  width: 13px;
  height: 13px;
}
.slot-module .slot-module-wrp {
  display: flex;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}

.slot-module .slot-module-block {
  flex: 1;
  padding-left: 14px;
  padding-right: 14px;
}

.slot-module .slot-img-wrp {
  position: relative;
  border-radius: 10px;
}

.slot-module .slot-img-wrp img {
  width: 100%;
  border-radius: 10px;
}

.slot-module .overly-icon {
  position: absolute;
  bottom: 24px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000000f5;
  line-height: 38px;
  text-align: center;
}

.slot-module .overly-icon svg {
  width: 20px;
  height: 13px;
}

.slot-module .slot-info {
  font-size: 18px;
  font-weight: 400;
  color: var(--p-color);
  margin: 20px 0 0;
  font-family: 'Montserrat', sans-serif;
}

.slot-module .slot-info p {
  margin: 0;
}

/* slot-module end */

/* editor-explore-section */
.editor-explore-section {
  padding: 30px 0;
}

.editor-explore-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.editor-pick,
.explore-pick {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.editor-pick-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 48px 32px;
}

.editor-pick-items li {
  margin: 0 9px 13px 0;
}

.editor-pick-items a {
  background: var(--s-color);
  padding: 8px 10px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s;
}

.editor-explore-title h3 {
  font-size: 30px;
  font-weight: 500;
  color: var(--p-color);
}

.editor-pick-wrapper {
  position: relative;
  height: 100%;
}

.editor-pick-wrapper:before,
.editor-pick-wrapper:after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  bottom: 6px;
  right: 6px;
  border: 2px solid var(--s-color);
  z-index: -1;
}

.editor-pick-items a:hover {
  color: var(--s-color);
  background: var(--color-white);
  border: 1px solid var(--s-color);
}

.editor-explore-title {
  position: absolute;
  top: -15px;
  left: 3%;
  background: var(--color-white);
  z-index: 1;
  padding: 0px 15px;
}

.editor-pick-wrapper:before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.editor-wrapper-item {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 32px;
}

.explore-title {
  margin-top: 8px;
  padding: 3px 10px;
  background: var(--s-color);
  display: inline-block;
  color: var(--color-white);
  font-size: 14px;
}

.explore-item {
  padding-left: 0px;
  padding-right: 0px;
  flex: 0 0 33.33%;
  padding-bottom: 20px;
  text-align: center;
}

.explore-img img {
  width: 100%;
  border-radius: 50%;
  image-rendering: -webkit-optimize-contrast;
}

.explore-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
}

/* editor-explore-section end */

@media(max-width: 1199px) {
  .col-middle h2 {
    font-size: 28px;
  }
  
  .editor-wrapper-item {
    padding: 40px 15px;
  }
}

@media(max-width: 991px) {
  
  .editor-pick,
  .explore-pick {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 40px;
  }
  
  .slot-module .slot-module-block {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 28px;
  }
}

@media(max-width: 767px) {
  .slot-module .section-header {
    margin-bottom: 5px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  
  .slot-module .section-title {
    font-size: 30px;
  }
  
  .slot-module .line {
    margin: 0;
  }
  
  .slot-module .slot-info {
    margin-top: 14px;
    flex: 1;
    margin-left: 9px;
  }
  
  .slot-module .slot-module-block {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 0;
  }
  
  .slot-module .slot-module-block:first-child .slot-inner {
    border: 0;
    margin-bottom: 0;
  }
  
  .slot-module .slot-module-block:not(:first-child) .slot-inner {
    display: flex;
  }
  
  .slot-module .overly-icon {
    bottom: 7px;
    left: 8px;
    width: 20px;
    height: 20px;
    line-height: 17px;
  }
  
  .slot-module .slot-module-block:first-child .slot-info {
    font-weight: 600;
    margin-left: 0;
  }
  
  .slot-module .slot-inner {
    margin: 15px 0 9px;
    border-bottom: 1px solid gray;
    padding-bottom: 15px;
  }
  
  .slot-module .slot-img-wrp {
    flex: 0 0 100px;
  }
  
  .slot-module {
    padding: 10px 0 0;
  }
  
  .slot-module .overly-icon svg {
    width: 7px;
    height: 7px;
  }
  
  .slot-module .section-title h2 {
    font-size: 30px;
    margin-top: 3px;
  }
}

@media(max-width: 576px) {
  .editor-explore-title {
    top: -25px;
    left: 0;
    right: 0;
    text-align: center;
    background: transparent;
    padding: 0;
  }
  
  .editor-explore-title h3 {
    display: inline-block;
    background: #fff;
    padding: 10px 15px;
  }
  
  .editor-pick-items {
    padding: 40px 15px;
  }
  
  .editor-wrapper-item {
    padding: 40px 8px;
  }
  
  .explore-item {
    flex: 0 0 50%;
    padding-left: 5px;
    padding-right: 5px;
  }
  .explore-title {
    padding: 3px 6px;
  }
}

@media screen and (max-width: 991px) {
  section.hero-module .content-wrapper .col-left .item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 991px) {
  section.hero-module .content-wrapper .col-left {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 15%;
  }
  
  section.hero-module .content-wrapper .col-left .col-left-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
}

@media screen and (max-width: 767px) {
  section.hero-module .content-wrapper .col-left {
    margin-top: 32%;
  }
}

@media screen and (max-width: 576px) {
  section.hero-module .content-wrapper .col-left {
    padding-left: 15px;
    padding-right: 15px;
  }
}

section.hero-module .content-wrapper .col-middle {
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  padding-right: 45px;
  padding-left: 45px;
}

@media screen and (max-width: 991px) {
  section.hero-module .content-wrapper .col-middle {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    order: -1;
  }
}

section.hero-module .content-wrapper .col-middle h2 {
  font-size: 36px;
  margin-top: 5px;
  color: var(--color-black);
}

@media screen and (max-width: 1199px) {
  section.hero-module .content-wrapper .col-middle h2 {
    font-size: 28px;
  }
}

section.hero-module .content-wrapper .col-middle .item {
  position: relative;
}

@media screen and (max-width: 767px) {
  section.hero-module .content-wrapper .col-middle .item img {
    border-radius: 0;
  }
}

@media screen and (max-width: 576px) {
  section.hero-module .content-wrapper .col-middle .item {
    border-radius: 0;
  }
}

section.hero-module .content-wrapper .col-middle .item .category {
  position: absolute;
  bottom: -10%;
  max-width: 88%;
  background: #ffffff;
  padding: 17px 10px;
  border-radius: 0px 8px 0px 0px;
}

@media screen and (max-width: 991px) {
  section.hero-module .content-wrapper .col-middle .item .category {
    bottom: -10%;
    left: 20px;
    border-radius: 8px 8px 0px 0px;
    padding: 18px;
  }
}

@media screen and (max-width: 767px) {
  section.hero-module .content-wrapper .col-middle .item .category {
    bottom: -120px;
    padding: 10px 18px;
  }
}

section.hero-module .content-wrapper .col-right {
  -ms-flex: 0 0 27.16%;
  flex: 0 0 27.16%;
  max-width: 27.16%;
  width: 100%;
  padding: 0;
}

@media screen and (max-width: 991px) {
  section.hero-module .content-wrapper .col-right {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  section.hero-module .content-wrapper .col-right .col-right-wrapper {
    margin-top: 40px;
  }
}

@media screen and (max-width: 576px) {
  section.hero-module .content-wrapper .col-right {
    padding-left: 15px;
    padding-right: 15px;
  }
}

section.hero-module .content-wrapper .col-right .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 27px 0 9px;
  border-bottom: 0.5px solid rgba(149, 149, 149, 0.5019607843);
}

section.hero-module .content-wrapper .col-right .item:first-child {
  padding-top: 0;
}

section.hero-module .content-wrapper .col-right .img-wrapper {
  flex: 0 0 100px;
  max-width: 100px;
}

section.hero-module .content-wrapper .col-right .float-right {
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  padding-left: 8px;
}

section.hero-module .content-wrapper .col-right .float-right .category {
  padding: 0 0 3px;
}

section.hero-module .content-wrapper .item .category {
  padding: 10px 0 7px;
}

section.hero-module .content-wrapper .item .category span {
  background: var(--s-color);
  color: var(--color-white);
  padding: 0px 10px;
  font-weight: 600;
  font-size: 12px;
  line-height: 2;
  display: inline-block;
}

section.hero-module .content-wrapper .col-middle span.author {
  color: var(--s-color);
  background: transparent;
  font-weight: 500;
  padding: 0;
}
section.hero-module .content-wrapper .item p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  section.hero-module .content-wrapper .item p {
    font-size: 16px;
  }
}

section.hero-module .content-wrapper .item p a {
  color: var(--p-color);
}

section.hero-module .content-wrapper .item p a:hover {
  text-decoration: underline;
}

section.hero-module .content-wrapper img.box-shadow {
  box-shadow: 7px 7px 3px var(--s-color);
}

section.hero-module .author {
  font-size: 12px;
  font-weight: 500;
  color: var(--s-color);
}

@media screen and (max-width: 576px) {
  section.hero-module .container {
    padding: 0;
  }
}

.editor-explore-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* Seasonal Module section */
.seasonal-module {
  padding: 50px 0;
}

.seasonal-module .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}

.seasonal-module .section-title {
  font-size: 36px;
  padding-top: 0px;
  font-weight: 600;
  color: var(--p-color);
  font-family: 'Playfair Display', serif;
}

.seasonal-module .line {
  width: 77%;
  margin-left: 15px;
  flex: 1;
}

@media(max-width: 1470px) {
  .seasonal-module .line {
    width: 74%;
  }
}

@media(max-width: 1199px) {
  .seasonal-module .line {
    width: 69%;
  }
}

@media(max-width: 991px) {
  .seasonal-module .line {
    width: 59%;
  }
}

@media(max-width: 767px) {
  .seasonal-module .section-header {
    margin-bottom: 16px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  
  .seasonal-module .section-title {
    font-size: 30px;
  }
  
  .seasonal-module .line {
    width: 100%;
    margin: 0;
  }
  
  .seasonal-module .slot-info {
    margin-top: 14px;
    flex: 1;
    margin-left: 9px;
  }
}

.seasonal-module .line span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--s-color);
  flex: 1;
}

.seasonal-module .line span:first-child {
  margin-bottom: 5px;
  height: 2px;
}

.seasonal-module .section-title h2 {
  margin: 0;
  font-size: 36px;
}

.seasonal-module .seasonal-wrp {
  display: flex;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}

@media(max-width: 767px) {
  .seasonal-module .seasonal-wrp {
    margin-top: 5%;
  }
}

.seasonal-module .seasonal-block {
  flex: 1;
  padding-left: 14px;
  padding-right: 14px;
}

@media screen and (max-width: 991px) {
  .seasonal-module .seasonal-block {
    flex: 0 0 50%;
    max-width: 100%;
    margin-top: 0;
  }
}

.seasonal-module .seasonal-img-wrp {
  position: relative;
  border-radius: 10px;
}

.seasonal-module .seasonal-img-wrp img {
  width: 100%;
  border-radius: 10px;
}

.seasonal-module .overly-icon {
  position: absolute;
  bottom: 24px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000000f5;
  line-height: 40px;
  text-align: center;
}

.seasonal-module .overly-icon svg {
  width: 20px;
  height: 13px;
}

.seasonal-module .seasonal-info {
  font-size: 18px;
  font-weight: 400;
  color: var(--p-color);
  margin: 18px 0 0;
  font-family: 'Montserrat', sans-serif;
}

.seasonal-module .seasonal-info p {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
}

@media screen and (max-width: 767px) {
  .seasonal-module .seasonal-info p {
    font-size: 16px;
    line-height: 22px;
  }
}

@media screen and (max-width: 991px) {
  .seasonal-module .seasonal-block:last-child  {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 7%;
  }
}

.seasonal-module .seasonal-block .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 27px 0 9px;
  border-bottom: 0.5px solid rgba(149, 149, 149, 0.5019607843);
}

.seasonal-module .seasonal-block .item:first-child {
  padding-top: 0;
}

.seasonal-module .seasonal-block .img-wrapper {
  flex: 0 0 100px;
  max-width: 100px;
}

@media screen and (max-width: 991px) {
  .seasonal-module .seasonal-block .img-wrapper {
    margin-bottom: 1%;
  }
}

.seasonal-module .seasonal-block img {
  border-radius: 10px;
  width: 100%;
}

.seasonal-module .seasonal-block .float-right {
  -ms-flex: 1 1 0;
  flex: 1 1 0;
  padding-left: 8px;
}

.seasonal-module .seasonal-block .item p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 0;
}
/* Seasonal Module section end */

/* Video module */
@media screen and (max-width: 767px) {
    .video-module {
        background: var(--video-bg-mobile);
    }
    .video-module .container {
        padding: 0;
    }
}

.video-module .video-wrapper {
  background: var(--video-bg);
  display: grid;
  grid-template-columns: 57% 43%;
}

@media screen and (max-width: 767px) {
    .video-module .video-wrapper {
        background: none;
    }
}

@media screen and (max-width: 991px) {
  .video-module .video-wrapper {
    grid-template-columns: 100%;
  }
}

.video-module .video-wrapper .video-block img {
  max-width: 100%;
}

.video-module .video-wrapper .text-block {
  padding: 10%;
}

@media screen and (max-width: 1199px) {
  .video-module .video-wrapper .text-block {
    padding: 3% 7%;
  }
  .video-module .video-wrapper .text-block h2 {
    padding: 8px 0;
  }
}
@media (max-width: 991px) {
  .video-module .video-wrapper .video-block img {
   width: 100%;
  }
}
@media screen and (max-width: 767px) {
    .video-module .video-wrapper .text-block {
        padding: 3% 3% 15%;
    }
}

.video-module .video-wrapper .text-block .category span {
  background: var(--s-color);
  color: var(--color-white);
  padding: 5px 10px;
  padding: 3px 10px;
  font-weight: 600;
  font-size: 12px;
  line-height: 2;
}

.video-module .video-wrapper .text-block h2 {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 38px;
  text-decoration-line: underline;
  padding: 10px 0;
}

.video-module .video-wrapper .text-block p {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

/* Video module end */


/* Meet the Team section */
.eat-module {
  background: var(--eat-bg);
  padding-bottom: 2%;
}

.eat-module .eat-wrapper {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  padding: 0 7%;
}

@media screen and (max-width: 767px) {
  .eat-module .eat-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 7% 0 0;
  }
}

@media screen and (max-width: 767px) {
  .eat-module .eat-block-title {
    width: 100%;
  }
  .eat-module .eat-block-title h2 {
    text-align: center;
  }
}

.eat-module .eat-block-title h2 {
  font-family: 'Playfair Display', serif;
}

.eat-module .eat-block-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0 30px;
  margin-left: -15px;
}

@media screen and (max-width: 767px) {
  .eat-module .eat-block-wrapper {
    margin-left: 0;
  }
}

.eat-module .eat-item {
  flex: 0 0 25%;
}

@media screen and (max-width: 767px) {
  .eat-module .eat-item {
    flex: 0 0 50%;
    text-align: center;
  }
}

.eat-module .eat-img {
  border-radius: 50%;
  padding: 10px;
}

.eat-module .eat-img img {
  max-width: 100%;
  border-radius: 50%;
  image-rendering: -webkit-optimize-contrast;
}
/* Meet the team end */

/* Editorial Product */
.editorial-cm-product {
  background: var(--eat-bg);
  padding: 2%;
  position: relative;
}
.editorial-cm-product:before {
  content: '';
  background-image: url(../images/dots.png);
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  background-size: 100%;
  height: 100%;
  background-repeat: no-repeat;
}
.editorial-cm-product:after {
  content: '';
  background-image: url(../images/bottom-dots.png);
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  z-index: 0;
  background-size: 100%;
  height: 42%;
  background-repeat: no-repeat;
}
.editorial-cm-product .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .editorial-cm-product:after {
    height: 14%;
  }
}
@media screen and (max-width: 767px) {
  .editorial-cm-product {
    padding: 40px 0 65px;
  }
  .editorial-cm-product:after {
    height: 8%;
  }
}

.editorial-cm-product .editorial-cm-product-wrapper {
  background-color: #ffffff;
  padding: 5% 10%;
}

.product-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
  align-items: stretch;
}

.product-inner-wrapper {
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.product-img-wrapper {
  background: #E0E0E0;
  text-align: center;
  padding: 25px;
  max-height: 100%;
  position: relative;
}
.sale-label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 10px;
  background: var(--s-color);
  color: var(--white);
  font-size: var(--btn-size);
  font-weight: var(--weight-bold);
}
.product-detail {
  text-align: center;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}

.product-img-wrapper img {
  max-width: 100%;
  max-height: 100%;
}
.product-detail .btn {
  padding: 8px 10px;
  width: 100%;
  align-self: flex-end;
}
.section-header {
  text-align: center;
  margin-bottom: 32px;
}
.product-detail .product-price {
  font-weight: var(--weight-semi-bold);
  display: block;
  margin: 5px 0 10px;
  width: 100%;
}
.product-wrapper .product-inner {
  flex: 0 0 25%;
  padding-left: 15px;
  padding-right: 15px;
  height: auto;
}
.more-product-wrapper {
  background-color: #ffffff;
  padding: 0 10% 5%;
} 

/* most-popular-section */

.most-popular-section {
  padding: 50px 0;
}
.most-popular-section .section-header {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}
.most-popular-section .line {
  width: 100%;
  margin-left: 15px;
  flex: 1;
}
.most-popular-section .line span:first-child {
  margin-bottom: 5px;
  height: 2px;
}
.most-popular-section .line span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--s-color);
  flex: 1;
}
.most-popular-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.most-popular-item {
  padding-left: 15px;
  padding-right: 15px;
}
.most-popular-item.active {
  flex: 0 0 25%;
  max-width: 25%;
}
.most-popular-item-wrapper {
  flex: 0 0 75%;
  max-width: 75%;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.most-popular-item-wrapper .most-popular-item {
  flex: 0 0 45%;
  max-width: 45%;
}
.most-popular-detail {
  padding-top: 15px;
  display: flex;
}
.most-popular-detail span {
  display: block;
  margin-right: 10px;
}
.most-popular-detail h2 {
  margin-right: 10px;
  font-weight: var(--weight-medium);
  margin-top: -12px;
}
.most-popular-detail p {
  border-bottom: 1px solid var(--p-color);
  padding-bottom: 15px;
  margin-bottom: 0;
}
.active .most-popular-detail h3 {
  display: flex;
  font-family: var(--body-font);
  font-style: italic;
  font-weight: var(--weight-bold);
}
.most-popular-item img {
  width: 100%;
}
.save {
  font-weight: var(--body-weight);
  color: var(--p-color-tag);
}
/* most-popular-section end */
.slot-module.slot-module-d {
  padding: 0;
}
@media(max-width:991px) {
  .product-wrapper .product-inner {
    flex: 0 0 50%;
    margin-bottom: 30px;
  }
}
@media(max-width:991px) { 
  .more-product-wrapper {
    padding: 2%;
  }
  .most-popular-item.active, .most-popular-item-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .most-popular-item-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .most-popular-item-wrapper .most-popular-item {
    flex: 0 0 48%;
    max-width: 48%;
  }
  .most-popular-detail h4 {
    border-bottom: 1px solid var(--p-color);
    padding-bottom: 15px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .editorial-cm-product .editorial-cm-product-wrapper {
    padding: 2%;
  }
  .product-wrapper .product-inner {
    padding-left: 5px;
    padding-right: 5px;
  }
  .product-wrapper {
    margin-left: -5px;
    margin-right: -5px;
  }
  .product-detail {
    padding: 12px 10px;
  }
  .most-popular-item-wrapper .most-popular-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .most-popular-detail h2 {
    font-size: var(--h3);
    margin-top: -6px;
    margin-right: 20px;
  }
  .most-popular-item-wrapper .most-popular-item:nth-child(2) {
    order: 1;
  }
  .most-popular-item-wrapper .most-popular-item:nth-child(3) {
    order: 0;
  }
  .most-popular-item-wrapper .most-popular-item:nth-child(4) {
    order: 1;
  }
  .most-popular-item-wrapper .most-popular-item:nth-child(6) {
    order: 1;
  }
  .most-popular-section .section-header {
    margin-bottom: 16px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .most-popular-section .section-header h2 {
    font-size: var(--h3);
    margin-top: 3px;
  }
  .most-popular-section .line {
    margin: 0;
  }
  .slot-module.slot-module-d {
    padding: 10px 0;
  }
  .section-title h2 {
    font-size: var(--h3);
  }
}

.editorial-cm-product .editorial-cm-product-wrapper .section-header {
  text-align: center;
  margin-bottom: 26px;
}

@media screen and (max-width: 767px) {
  .editorial-cm-product .editorial-cm-product-wrapper .section-header {
    margin-top: 20px;
  }
}

.editorial-cm-product .section-title {
  font-size: 36px;
  padding-top: 0px;
  font-weight: 600;
  color: var(--p-color);
  font-family: 'Playfair Display', serif;
}

.editorial-cm-product .slot-module-wrp {
  display: flex;
  flex-wrap: wrap;
  margin-left: -14px;
  margin-right: -14px;
}

.editorial-cm-product .slot-module-block {
  flex: 1;
  padding-left: 14px;
  padding-right: 14px;
}

@media screen and (max-width: 991px) {
  .editorial-cm-product .slot-module-block {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 28px;
  }
  section.hero-module .content-wrapper .item img {
    width: 100%;
  }
  section.hero-module .content-wrapper .col-middle h2 {
    font-size: 32px;
  }
}

.editorial-cm-product .slot-img-wrp {
  position: relative;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 10px;
}

.editorial-cm-product .slot-img-wrp img {
  max-width: 100%;
  border-radius: 10px;
}
@media(max-width:767px){
:root {
  --body-size: 16px;
  --btn-size: 14px;
}
.editorial-cm-product .slot-module-block {
  padding-left: 5px;
  padding-right: 5px;
}
.editorial-cm-product .slot-module-wrp {
  margin-left: -5px;
  margin-right: -5px;
}
section.hero-module .content-wrapper {
  margin: 0px auto 30px;
}
.editor-explore-section {
  padding: 50px 0 0;
}
.seasonal-module {
  padding: 10px 0 30px;
}
.most-popular-section {
  padding: 20px 0 0px;
}
body {
  padding-bottom: 70px;
}
}
/* Editorial Product end */
.video-block {
  position: relative;
}
.video-block .overly-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000000f5;
  line-height: 40px;
  text-align: center;
}
.video-block .overly-icon svg {
  width: 20px;
  height: 13px;
}
.most-popular-item .img-wrapper {
  position: relative;
}
.most-popular-item .overly-icon {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000000f5;
  line-height: 36px;
  text-align: center;
}
.most-popular-item .overly-icon svg {
  width: 20px;
  height: 12px;
}
.video-block.mobile {
  display: none;
}
.slot-module .slot-module-block:nth-child(3) .overly-icon,
.slot-module .slot-module-block:nth-child(4) .overly-icon {
  display: none;
}
/*# sourceMappingURL=style.css.map */