/**
* Set up a decent box model on the root element
*/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #fff;
}

/**
* Make all elements from the DOM inherit from the parent box-sizing
* Since `*` has a specificity of 0, it does not override the `html` value
* making all elements inheriting from the root box-sizing value
* See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
*/
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
}

body {
  background: #fff;
}

body, ul, ol, dl {
  margin: 0;
}

article, aside, audio,
footer, header, nav, section, video {
  display: block;
}

p {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* sets hyphenation by default on paragraphs */
textarea {
  resize: vertical;
}

/* changes textarea resizing from "both" (UA default) to vertical only */
table {
  border-collapse: collapse;
}

img {
  border: none;
  max-width: 100%;
}

input[type=submit]::-moz-focus-inner,
input[type=button]::-moz-focus-inner {
  border: 0px;
}

/* removes the inner border effect from focused buttons for form elements in Firefox */
input[type=search] {
  -webkit-appearance: textfield;
}

input[type=submit] {
  -webkit-appearance: none;
}

/* removes the OS X appearance from HTML5 search inputs and submit buttons when viewed in Safari */
input:required:after {
  color: #f00;
  content: " *";
}

/* sets up required form fields with the conventional following red asterix */
input[type=email]:invalid {
  background: #f00;
}

sub, sup {
  line-height: 0;
}

/**
* Basic styles for links
*/
a {
  color: #305fab;
  text-decoration: none;
}

.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

html.has-scroll-smooth, [data-scroll-container] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform: translateZ(0);
}

@media only screen and (max-width: 600px) {
  html {
    font-size: 14px;
  }
}
/**
* Basic typography style for copy text
*/
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
  font-family: "Cocogoose Light";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_light.woff") format("woff"), url("./fonts/Cocogoose_light.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose Pro";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_pro.woff") format("woff"), url("./fonts/Cocogoose_pro.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose Semilight";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_semilight.woff") format("woff"), url("./fonts/Cocogoose_semilight.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose thin";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_thin.woff") format("woff"), url("./fonts/Cocogoose_thin.woff2") format("woff2");
}
@font-face {
  font-family: "Cocogoose ultralight";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("./fonts/Cocogoose_ultralight.woff") format("woff"), url("./fonts/Cocogoose_ultralight.woff2") format("woff2");
}
body {
  font-size: 14px;
  font-family: "Cocogoose light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-smooth: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/**
* Clear inner floats
*/
.ultrathin {
  font-family: "Cocogoose ultralight";
}

.pro {
  font-family: "Cocogoose Pro";
}

.semilight {
  font-family: "Cocogoose Semilight";
}

.light {
  font-family: "Cocogoose Light";
}

.thin {
  font-family: "Cocogoose thin";
}

.default-text {
  font-family: "Inter", sans-serif;
}

.numbers {
  font-size: 18px;
  font-weight: 500;
}

.special-text {
  font-family: "Tinos", cursive;
}

.blue-colored {
  color: #305fab;
}

.yellow-colored {
  color: #edae49;
}

.shadowed {
  text-shadow: 2px 1px 0px #ccdde2;
}

.bg-1 {
  background-color: #ccdde2;
}

.bg-2 {
  background-color: #f5f4ed;
}

.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.primary-button {
  font-size: 13px;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 16px 32px;
  background-color: #305fab;
  transition: all 0.45s ease-out;
  color: #f5f4ed;
  border-radius: 50px;
}
.primary-button.cancel {
  background-color: rgb(163, 35, 35);
}
.primary-button span {
  position: relative;
  z-index: 4;
}
.primary-button:hover {
  background-color: #edae49;
  color: #305fab;
}

/* From uiverse.io */
.learn-more {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  width: 12rem;
  height: auto;
}

.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #201d1f;
  border-radius: 1.625rem;
}

.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #201d1f;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.learn-more:hover .circle {
  width: 100%;
}

.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

.learn-more:hover .button-text {
  color: #fff;
}

@media only screen and (max-width: 600px) {
  .learn-more .button-text {
    margin: 0 0 0 3rem;
  }
}
header {
  padding: 10px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.header-nav #logo {
  margin-right: 48px;
}
.header-nav #logo img {
  height: 90px;
}
.header-nav .header-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.header-nav .header-menu ul li {
  display: inline-block;
  margin: 0 12px;
}
.header-nav .header-menu ul li a {
  display: block;
  font-size: 16px;
  position: relative;
  color: #201d1f;
}
.header-nav .header-menu ul li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #edae49;
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.header-nav .header-menu ul li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #edae49;
}

#left-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-right: 55px;
}
#left-menu li {
  position: relative;
}
#left-menu li .cart-number {
  position: absolute;
  top: -4px;
  right: 4px;
  background-color: #305fab;
  color: #f5f4ed;
  padding: 5px 6px;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}
#left-menu li a {
  margin: 0 12px;
}
#left-menu li a img {
  height: 32px;
}

#menu-click {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#mainMenu {
  padding-top: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 8;
  background-color: #ccdde2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(0, -100%);
}
#mainMenu:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/bg1.png");
  background-size: contain;
  background-position: right center;
  opacity: 0.15;
  z-index: 0;
}
#mainMenu .main-menu-list {
  list-style: none;
}
#mainMenu .main-menu-list li a {
  font-size: 32px;
  display: inline-block;
  margin: 14px 0;
  letter-spacing: 1px;
  position: relative;
}
#mainMenu .main-menu-list li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #edae49;
  transform: scaleY(1.001);
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#mainMenu .main-menu-list li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #edae49;
}
#mainMenu .sub-menu {
  list-style: none;
}
#mainMenu .sub-menu li a {
  font-size: 18px;
  display: inline-block;
  margin: 10px 0;
  letter-spacing: 1px;
  position: relative;
}
#mainMenu .sub-menu li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #edae49;
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: scaleY(1.001);
}
#mainMenu .sub-menu li a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #edae49;
  transform: scaleY(1.001);
}

.menu-contact-box {
  padding: 10px;
}
.menu-contact-box .c-title {
  font-size: 1.75rem;
  margin-bottom: 15px;
}
.menu-contact-box p {
  font-size: 14px;
  line-height: 2;
}
.menu-contact-box .direction-link {
  font-size: 18px;
}
.menu-contact-box .direction-link a {
  position: relative;
}
.menu-contact-box .direction-link a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  background-color: #edae49;
  height: 2px;
}
.menu-contact-box .default-text {
  font-size: 16px;
  margin-left: 10px;
}
.menu-contact-box .default-text a {
  position: relative;
}
.menu-contact-box .default-text a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #edae49;
  transform: scaleY(1.001);
  transition: width 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.menu-contact-box .default-text a:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #edae49;
}

@media only screen and (max-width: 1400px) {
  .header-nav .header-menu ul li a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-menu {
    display: none;
  }
  #mainMenu {
    justify-content: flex-start;
    overflow-y: scroll;
    padding-top: 120px;
  }
  #mainMenu .main-menu-list li a {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  #left-menu {
    padding-left: 0;
  }
  #left-menu li a img {
    width: 24px;
  }
  .header-nav #logo {
    margin-right: 15px;
  }
}
footer {
  padding: 60px 0 0 0;
  background-color: #305fab;
  color: #f5f4ed;
  position: relative;
}
footer .footer-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer .footer-flex .footer-item {
  width: 33.33%;
  margin-bottom: 48px;
}
footer .footer-flex .footer-item .footer-item-title {
  font-size: 1rem;
  font-weight: bold;
}
footer .footer-flex .footer-item ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer .footer-flex .footer-item ul li a {
  display: inline-block;
  line-height: 2.3;
  position: relative;
  font-size: 13px;
  color: #f5f4ed;
}
footer .footer-flex .footer-item ul li a:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 0;
  transition: all 0.25s ease-in-out;
  height: 2px;
  background-color: #edae49;
  transform: scaleY(1.001);
}
footer .footer-flex .footer-item ul li a:hover:before {
  width: 100%;
}
footer .footer-flex .footer-item ul li a .default-text {
  font-size: 15px;
}
footer .foot-end {
  padding: 15px 0;
  margin-top: 30px;
}
footer .foot-end #seperator {
  position: relative;
}
footer .foot-end #seperator:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(1.001);
  width: 100%;
  height: 1px;
  background-color: #edae49;
  z-index: 0;
}
footer .foot-end #seperator .d-inline-flex {
  background-color: #305fab;
  position: relative;
  padding: 4px;
}
footer #footer-image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 33.33%;
}
footer #footer-image img {
  max-width: none;
  max-height: 450px;
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 600px) {
  footer .footer-flex {
    flex-wrap: wrap;
  }
  footer .footer-flex .footer-item {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
  }
  footer #footer-image {
    width: 100%;
    opacity: 0.05;
  }
  footer #footer-image img {
    max-height: 100vh;
  }
}
#shop-wrap {
  padding: 80px 0;
}
#shop-wrap .dropdown-item {
  font-size: 12px;
}
#shop-wrap .learn-more {
  transform: scale(0.65);
}

.product-wrapper {
  margin-bottom: 32px;
}
.product-wrapper .product-image {
  padding: 30px;
  border: 1px solid #eaeaea;
  margin-bottom: 16px;
}
.product-wrapper .product-content {
  text-align: center;
}
.product-wrapper .product-content .product-name {
  font-size: 0.975rem;
  line-height: 1;
  margin-bottom: 0;
  min-height: 35px;
}
.product-wrapper .product-content .product-type {
  font-size: 0.75rem;
  margin-bottom: 6px;
}
.product-wrapper .product-content .product-price {
  font-size: 1rem;
  margin-bottom: 6px;
}
.product-wrapper .product-content .product-price ins {
  font-weight: 600;
  text-decoration: none;
  color: #305fab;
}
.product-wrapper .product-content .product-price del {
  font-size: 0.875rem;
  color: #edae49;
  margin-left: 5px;
}

.shop-filter {
  position: -webkit-sticky;
  position: sticky;
  top: 30px;
  padding: 15px;
  border: 1px solid #eaeaea;
}
.shop-filter .filter-box {
  list-style-type: none;
  margin-bottom: 24px;
}
.shop-filter .filter-box li input {
  display: none;
}
.shop-filter .filter-box li label {
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  display: block;
  margin: 4px 0;
  padding-left: 24px;
  position: relative;
}
.shop-filter .filter-box li label:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #201d1f;
}
.shop-filter .filter-box li label:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url("../images/tick.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}
.shop-filter .filter-box .title {
  font-size: 0.975rem;
  margin-bottom: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #eaeaea;
}

.filter-box li input:checked ~ label:after {
  opacity: 1;
}

#gal1 img {
  border: 2px solid white;
}

/*Change the colour*/
.active img {
  border: 2px solid #333 !important;
}

#gal1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 4px;
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
}
#gal1 a {
  padding: 10px;
}

#product-wrap {
  padding: 60px 0;
}
#product-wrap .product-single-image {
  padding: 10px 12px;
  padding-left: 90px;
  overflow: hidden;
}
#product-wrap .product-single-image .zoomWrapper img {
  position: static !important;
}
#product-wrap #coffee-type-list {
  margin: 16px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
#product-wrap #coffee-type-list li {
  margin: 16px 24px;
  margin: 0 10px;
  display: inline-block;
}
#product-wrap #coffee-type-list li input {
  display: none;
}
#product-wrap #coffee-type-list li label {
  border: 1px solid #ccdde2;
  display: inline-block;
  padding: 16px 48px;
  background-color: transparent;
  position: relative;
  border-radius: 4px;
}
#product-wrap #coffee-type-list li label:hover {
  cursor: pointer;
}
#product-wrap #coffee-type-list li label svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
#product-wrap #coffee-type-list li label span {
  font-size: 16px;
}
#product-wrap #coffee-type-list li label .price {
  position: absolute;
  top: 115%;
  left: 50%;
  transform: translateX(-50%);
}
#product-wrap #coffee-type-list li label .price ins {
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
}
#product-wrap #coffee-type-list2 {
  margin: 16px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
#product-wrap #coffee-type-list2 li {
  margin: 0 10px;
  display: inline-block;
}
#product-wrap #coffee-type-list2 li input {
  display: none;
}
#product-wrap #coffee-type-list2 li label {
  border: 1px solid #ccdde2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 32px;
  background-color: transparent;
  position: relative;
  border-radius: 4px;
  height: 100%;
}
#product-wrap #coffee-type-list2 li label .discount {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4px 0;
  background-color: #edae49;
  text-align: center;
  font-size: 11px;
}
#product-wrap #coffee-type-list2 li label:hover {
  cursor: pointer;
}
#product-wrap #coffee-type-list2 li label svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
#product-wrap #coffee-type-list2 li label span {
  font-size: 16px;
  display: block;
  text-align: center;
}
#product-wrap #coffee-type-list2 li label .price {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
  color: #305fab;
}
#product-wrap #coffee-type-list2 li label .price ins {
  font-size: 24px;
  text-decoration: none;
  font-weight: 700;
  display: block;
}
#product-wrap #coffee-type-list2 li label .price del {
  font-size: 16px;
  display: block;
}
#product-wrap #coffee-type-list3 {
  margin: 16px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
#product-wrap #coffee-type-list3 li {
  margin: 0 10px;
  display: inline-block;
  margin-bottom: 4px;
}
#product-wrap #coffee-type-list3 li input {
  display: none;
}
#product-wrap #coffee-type-list3 li label {
  border: 1px solid #ccdde2;
  display: inline-block;
  padding: 16px 32px;
  background-color: transparent;
  position: relative;
  border-radius: 4px;
}
#product-wrap #coffee-type-list3 li label:hover {
  cursor: pointer;
}
#product-wrap #coffee-type-list3 li label svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
#product-wrap #coffee-type-list3 li label span {
  font-size: 16px;
  display: block;
  text-align: center;
}
#product-wrap #coffee-type-list3 li label .price {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
}
#product-wrap #coffee-type-list3 li label .price ins {
  font-size: 24px;
  text-decoration: none;
  font-weight: 700;
  display: block;
}
#product-wrap #coffee-type-list3 li label .price del {
  font-size: 16px;
  display: block;
}
#product-wrap #coffee-type-list2 li input:checked ~ label {
  background-color: #ccdde2;
}
#product-wrap #coffee-type-list2 li input:checked ~ label svg {
  display: block;
}
#product-wrap #coffee-type-list3 li input:checked ~ label {
  background-color: #ccdde2;
}
#product-wrap #coffee-type-list3 li input:checked ~ label svg {
  display: block;
}
#product-wrap #coffee-type-list li input:checked ~ label {
  background-color: #ccdde2;
}
#product-wrap #coffee-type-list li input:checked ~ label svg {
  display: block;
}

.scaked-button {
  transform: scale(0.75);
}

.product-single-details {
  padding: 0px 30px;
}
.product-single-details h2 {
  margin-bottom: 8px;
}
.product-single-details > p {
  margin-bottom: 12px;
}

.product-details {
  background-color: #f5f4ed;
  padding: 40px 0;
}
.product-details .feature-icons {
  padding: 30px 35px;
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 24px;
}
.product-details .feature-icons img {
  width: 64px;
  margin-bottom: 12px;
}
.product-details .feature-icons p {
  font-size: 0.875rem;
}

#landing-shop {
  padding: 40px 0 40px 0;
}

.home-shop .swiper-button-next {
  background-color: #edae49;
  padding: 16px 24px;
}
.home-shop .swiper-button-next:after {
  font-size: 14px;
  color: #fff;
}
.home-shop .swiper-button-prev {
  background-color: #edae49;
  padding: 16px 24px;
}
.home-shop .swiper-button-prev:after {
  font-size: 14px;
  color: #fff;
}

.slide-shop {
  position: relative;
  transition: all 0.5s ease-in-out;
}
.slide-shop img {
  display: block;
  height: 450px;
  margin: auto auto;
}
.slide-shop .coffee-cat {
  position: absolute;
  bottom: 15%;
  right: -15%;
  width: 375px;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  z-index: 9;
}
.slide-shop .coffee-cat .coffee-cat-title {
  font-size: 17px;
}
.slide-shop .coffee-cat .coffee-cat-price {
  font-size: 16px;
  margin: 16px 0;
}
.slide-shop .coffee-cat .coffee-cat-price ins {
  text-decoration: none;
  font-weight: bold;
  margin-left: 16px;
}
.slide-shop .coffee-cat .coffee-cat-desc {
  font-size: 12px;
}

.swiper-slide-active .slide-shop {
  margin-left: -20%;
}
.swiper-slide-active .slide-shop .coffee-cat {
  opacity: 1;
}

.shop-button {
  display: flex;
}
.shop-button .learn-more {
  transform: scale(0.75);
}

@media only screen and (max-width: 600px) {
  #product-wrap #coffee-type-list {
    flex-wrap: wrap;
  }
  .swiper-slide-active .slide-shop {
    margin-left: 0;
  }
  .slide-shop .coffee-cat {
    padding: 40px;
    position: static;
    opacity: 1;
    text-align: center;
  }
  .slide-shop .coffee-cat .coffee-cat-desc {
    display: none;
  }
  .slide-shop .coffee-cat {
    width: auto;
    padding: 10px;
  }
  .slide-shop .coffee-cat .coffee-cat-title {
    font-size: 16px;
  }
  .shop-filter {
    display: none;
  }
  #shop-wrap {
    padding: 30px 0;
  }
}
#our-products {
  padding: 60px 0 0 0;
  position: relative;
  overflow: hidden;
}
#our-products .mySwiper {
  position: relative;
  margin-bottom: 60px;
}
#our-products .mySwiper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #eaeaea;
}
#our-products .mySwiper .swiper-slide {
  flex-grow: 1;
}
#our-products .mySwiper2 .swiper-slide-prev {
  opacity: 0 !important;
}
#our-products .mySwiper2 .swiper-slide {
  opacity: 0 !important;
}
#our-products .mySwiper2 .swiper-slide-active {
  opacity: 1 !important;
}
#our-products .swiper-slide-thumb-active .roast-type {
  border-color: #edae49;
}
#our-products .roast-type {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 3px solid transparent;
}
#our-products .roast-type:hover {
  cursor: pointer;
}
#our-products .roast-type img {
  max-width: 18px;
  display: block;
  margin-right: 16px;
}
#our-products .roast-type p {
  font-size: 14px;
  margin-bottom: 0;
}
#our-products .product-content .productName {
  font-size: 32px;
  margin-bottom: 24px;
}
#our-products .product-content p {
  line-height: 1.8;
}
#our-products .product-content #coffee-type-list {
  margin: 16px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
#our-products .product-content #coffee-type-list li {
  margin: 16px 24px;
  margin: 0 10px;
  display: inline-block;
}
#our-products .product-content #coffee-type-list li input {
  display: none;
}
#our-products .product-content #coffee-type-list li label {
  border: 1px solid #ccdde2;
  display: inline-block;
  padding: 16px 48px;
  background-color: transparent;
  position: relative;
  border-radius: 4px;
}
#our-products .product-content #coffee-type-list li label:hover {
  cursor: pointer;
}
#our-products .product-content #coffee-type-list li label svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
#our-products .product-content #coffee-type-list li label span {
  font-size: 16px;
}
#our-products .product-content #coffee-type-list li label .price {
  position: absolute;
  top: 115%;
  left: 50%;
  transform: translateX(-50%);
}
#our-products .product-content #coffee-type-list li label .price ins {
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
}
#our-products .product-content #coffee-type-list2 {
  margin: 16px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
#our-products .product-content #coffee-type-list2 li {
  margin: 0 10px;
  display: inline-block;
}
#our-products .product-content #coffee-type-list2 li input {
  display: none;
}
#our-products .product-content #coffee-type-list2 li label {
  border: 1px solid #ccdde2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 6px 32px;
  background-color: transparent;
  position: relative;
  border-radius: 4px;
  height: 100%;
}
#our-products .product-content #coffee-type-list2 li label .discount {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4px 0;
  background-color: #edae49;
  text-align: center;
  font-size: 11px;
}
#our-products .product-content #coffee-type-list2 li label:hover {
  cursor: pointer;
}
#our-products .product-content #coffee-type-list2 li label svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
#our-products .product-content #coffee-type-list2 li label span {
  font-size: 16px;
  display: block;
  text-align: center;
}
#our-products .product-content #coffee-type-list2 li label .price {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
  color: #305fab;
}
#our-products .product-content #coffee-type-list2 li label .price ins {
  font-size: 24px;
  text-decoration: none;
  font-weight: 700;
  display: block;
}
#our-products .product-content #coffee-type-list2 li label .price del {
  font-size: 16px;
  display: block;
}
#our-products .product-content #coffee-type-list3 {
  margin: 16px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
#our-products .product-content #coffee-type-list3 li {
  margin: 0 10px;
  display: inline-block;
  margin-bottom: 24px;
}
#our-products .product-content #coffee-type-list3 li input {
  display: none;
}
#our-products .product-content #coffee-type-list3 li label {
  border: 1px solid #ccdde2;
  display: inline-block;
  padding: 16px 32px;
  background-color: transparent;
  position: relative;
  border-radius: 4px;
}
#our-products .product-content #coffee-type-list3 li label:hover {
  cursor: pointer;
}
#our-products .product-content #coffee-type-list3 li label svg {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
#our-products .product-content #coffee-type-list3 li label span {
  font-size: 16px;
  display: block;
  text-align: center;
}
#our-products .product-content #coffee-type-list3 li label .price {
  display: block;
  padding-top: 4px;
  padding-bottom: 4px;
}
#our-products .product-content #coffee-type-list3 li label .price ins {
  font-size: 24px;
  text-decoration: none;
  font-weight: 700;
  display: block;
}
#our-products .product-content #coffee-type-list3 li label .price del {
  font-size: 16px;
  display: block;
}
#our-products .product-content #coffee-type-list2 li input:checked ~ label {
  background-color: #ccdde2;
}
#our-products .product-content #coffee-type-list2 li input:checked ~ label svg {
  display: block;
}
#our-products .product-content #coffee-type-list3 li input:checked ~ label {
  background-color: #ccdde2;
}
#our-products .product-content #coffee-type-list3 li input:checked ~ label svg {
  display: block;
}
#our-products .learn-more {
  transform: scale(0.8);
}

#our-products .product-content #coffee-type-list li input:checked ~ label {
  background-color: #ccdde2;
}

#our-products .product-content #coffee-type-list li input:checked ~ label svg {
  display: block;
}

@media only screen and (max-width: 1400px) {
  #our-products .roast-type {
    padding: 16px 0;
  }
}
@media only screen and (max-width: 600px) {
  #our-products .mySwiper {
    margin-bottom: 15px;
  }
  #our-products .roast-type p {
    font-size: 18px;
  }
  #our-products .coffee-product {
    width: 85%;
    margin: 0 auto;
  }
  #our-products .product-content #coffee-type-list li label, #our-products .product-content #coffee-type-list3 li label {
    padding: 12px 16px;
  }
  #our-products .product-content #coffee-type-list2 li label {
    padding: 24px 32px;
  }
  #our-products .product-content #coffee-type-list2 li {
    height: 96px;
    margin-bottom: 64px;
  }
  #our-products .product-content #coffee-type-list2 li:last-of-type {
    margin-bottom: 24px;
  }
}
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  transition-timing-function: linear;
  transition-duration: 0.15s;
  transition-property: opacity, filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger--collapse .hamburger-inner:before {
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger--collapse .hamburger-inner:after {
  top: -20px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 2px;
  transition-timing-function: ease;
  transition-duration: 0.15s;
  transition-property: transform;
  border-radius: 4px;
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(-90deg);
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #201d1f;
}

.section-title {
  margin-bottom: 32px;
}
.section-title span {
  position: relative;
  padding: 12px 0px;
  line-height: 1;
}
.section-title span img {
  height: 32px;
  margin: 0 24px;
}
.section-title span:before, .section-title span:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #edae49;
  position: absolute;
  left: 0;
  transform: scaleY(1.001);
}
.section-title span:before {
  top: 0;
}
.section-title span:after {
  bottom: 0;
}

.floating1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
  will-change: transform;
}
.floating1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.25;
}

.floating2 {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
  will-change: transform;
}
.floating2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  opacity: 0.25;
}

.line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: #edae49;
  height: 0;
  opacity: 0.75;
}

.top-line {
  top: 0;
}

.bottom-line {
  bottom: 0;
}

.form-group {
  margin-bottom: 25px;
}
.form-group label {
  margin-bottom: 4px;
  font-weight: 500;
  opacity: 0.9;
}
.form-group .form-control {
  border-radius: 0px;
  border: 1px solid #ccdde2;
  background-color: #fafafa;
  font-size: 14px;
}

#page-title {
  background-color: #f5f4ed;
  padding: 175px 0 30px 0;
}
#page-title h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #305fab;
}
#page-title p {
  font-size: 13px;
}

@media only screen and (max-width: 600px) {
  .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    width: 32px;
  }
  #page-title {
    background-color: #f5f4ed;
    padding: 120px 0 30px 0;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .section-title h2 .text:before {
    display: none;
  }
  .section-title h2 .text:after {
    display: none;
  }
}
#billing-address {
  display: none;
  margin-top: 40px;
}

#diff-address {
  display: inline-block;
}/*# sourceMappingURL=shop.css.map */