/* custom font  */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap");

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

body {
  font-family: "Josefin Sans", sans-serif;
}
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.primary-btn {
  padding: 10px 32px;
  border: 1px solid #f5db8b;
  font-size: 12px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  color: #303030;
  transition: 0.5s all;
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.primary-btn::before {
  position: absolute;
  content: "";
  opacity: 1;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #303030;
  clip-path: inset(0 0 0 0);
  background: #f5db8b;
  transition: 0.5s all;
}
.primary-btn:hover:before {
  clip-path: inset(0 0 0 100%);
}
.primary-btn:hover {
  color: #f5db8b;
}
.white-btn {
  border: 1px solid #fff;
  color: #303030;
}
.white-btn::before {
  color: #303030;
  background: #fff;
}
.white-btn:hover:before {
  clip-path: inset(0 0 0 100%);
}
.white-btn:hover {
  color: #fff;
}
.product-card figure .front-img {
  opacity: 1;
  display: block;
  transition: all 0.35s ease-in-out;
}
.product-card figure:hover .front-img {
  opacity: 0;
  transition: all 0.35s ease-in-out;
}
.product-card figure .back-img {
  opacity: 0;
  display: block;
  transition: all 0.35s ease-in-out;
}
.product-card figure:hover .back-img {
  opacity: 1;
  transition: all 0.35s ease-in-out;
}
.product-card span {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s ease-in-out;
  color: #595959;
  display: inline-block;
}

.product-card:hover span {
  opacity: 1;
}
/* common css end  */
/* banner section start */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 85%;
  width: 200px;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  background: transparent;
}
.swiper-pagination-bullet-active {
  background: #fff;
}
.banner-btn {
  border: 1px solid #fff;
  color: #303030;
}
.banner-btn::before {
  color: #303030;
  background: #fff;
}
.banner-btn:hover:before {
  clip-path: inset(0 0 0 100%);
}
.banner-btn:hover {
  color: #fff;
}
/* banner section end */

/* arrival section start  */

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #303030;
  color: #f5db8b;
  box-shadow: 0 2px 10px #36363626;
  line-height: 0;
  transform: scale(1.001);
  transition: background 0.15s ease-in-out, opacity 0.15s ease-in-out,
    transform 0.2s ease-in-out, color 0.2s ease-in-out;
  overflow: hidden;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 20px;
}
/* arrival section end  */

/* product section start  */

.product .card img {
  transition: all 3s;
}
.product .card:hover img {
  transform: scale(1.1);
}
.product .card.image-full:before {
  opacity: 0.5;
  border-radius: 0px;
}

/* product section end  */
/* highlight section start  */

.highlight .card-body :where(p) {
  flex-grow: 0;
}

.btn-cart {
  border: 1px solid #f5db8b;
  color: #303030;
}
.btn-cart::before {
  clip-path: inset(0 100% 0 0);
  background: #f5db8b;
}
.btn-cart:hover:before {
  clip-path: inset(0 0 0 0);
}
.btn-cart:hover {
  color: #303030;
}
/* highlight section end  */
/* new-arrials section start  */
.new-arrials {
  border-top: 1px solid #e0e0e0;
}
/* new-arrials section end  */
/* article section start  */
.article {
  border-top: 1px solid #e0e0e0;
}
.article .card img {
  transition: all 3s;
}
.article .card:hover img {
  transform: scale(1.1);
}

/* article section end  */
/* footer  */
/* Footer Bottles Page Start*/
.product_image{
  height: 500px;
}
.bottles h2{
  font-family: "DIN Neuzeit Grotesk", sans-serif;
  font-weight: 700;
  line-height: 33px;
  size: 20px;
  color: rgb(48, 48, 48);
}
/* Footer Bottles Page End */