﻿p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75em;
    color: #777;
    margin-bottom: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.25em;
    margin: 0 0 20px 0;
    color: #1b1b1b;
}




/* ======= Shop style ======= */
.shop {
    overflow: hidden;
}
.shop .item {
    margin-bottom: 15px;
    border-radius: 10px;
}
.shop .item .wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
.shop .item .wrap .img {
  position: relative;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  border-radius: 10px;
}
.shop .item .wrap .img img {
  width: 100%;
  margin: 0;
  transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
  background-size: cover;
  border-radius: 10px;
}
.shop .item .wrap:hover img {
  opacity: 1;
}
.shop .item .wrap:hover .img {
  transform: scale(0.95);
}
.shop .item .wrap:hover .price {
  opacity: 1;
  transform: translateX(0px);
}
.shop .item .wrap .price {
    background: #91a538;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    position: absolute;
    opacity: 0;
    transform: translateX(-20px);
    transition: 700ms cubic-bezier(0.17, 0.67, 0, 1.01);
    padding: 10px;
    text-align: center;
}
.shop .item .wrap .price h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
  color: #fff;
}
.shop .item .wrap .price h4 span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    display: block;
    text-transform: uppercase;
}
.shop .text {
    padding: 15px;
    text-align: center;
}
.shop .text h5 {
    color: #152229;
    font-size: 21px;
    margin-bottom: 0;
}
.shop .text p {
    font-family: 'Montserrat', sans-serif;
    color: #5e717b;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}


/* ======= Shop Details style ======= */
.shop-details {
    position: relative;
}
.shop-details .card {
    border: none;
    overflow: hidden
}
.shop-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 32px;
    color: #152229;
    margin-bottom: 5px;
}
.shop-details h2 {
   font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 46px;
    color: #152229;
    margin-bottom: 5px;
}
.shop-details .thumbnail_images ul {
    list-style: none;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding: 0;
    outline: none;
    overflow: hidden;
}
.shop-details .thumbnail_images ul li {
    margin: 10px;
    padding: 0px;
    cursor: pointer;
    transition: all 0.5s;
    border-radius: 20px;
}
.shop-details .thumbnail_images ul li img {
    border-radius: 20px;
    width: 140px;
    height: 140px;
}
.shop-details .main_image {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 20px;
    width: 100%;
    overflow: hidden
}

.hide0 {
display:none;
}
.hide1 {
display:visibility;
}

