/* FONTS */
@font-face {
  font-display: swap;
  font-family: fancyFont;
  src: url("../fonts/DancingScript-Regular.woff2");
}

@font-face {
  font-display: swap;
  font-family: symbola;
  src: url("../fonts/Symbola.woff2");
}

@font-face {
  font-display: swap;
  font-family: poppins;
  src: url("../fonts/Comforta.woff2");
  font-weight: 800;
}

.fancy-font {
  font-family: fancyFont;
}

@keyframes translate_keyframes_y{
  from{
    transform: translate(0,100vh);
  }
  to{
    transform: translate(0,0);
  }
}


@keyframes translate_keyframes_x{
  from{
    transform: translate(100vw);
  }
  to{
    transform: translate(0);
  }
}
@keyframes translate_keyframes_x_2{
  from{
    transform: translate(-100vw) scaleY(-1);;

  }

  to{
    transform: translate(0) scaleY(-1);

  }
}

@keyframes bird_keyframes{
  from{
    transform: translate(0,0);

  }
  to{
    transform:  translate(0,-12px);
  }
}


@keyframes picture_wall_keyframes {
  from {
    transform: scale(0.8);
    filter: saturate(0%) ;
  }

  to {
    transform: scale(1);
     filter: saturate(100%);
  }
}

@keyframes zoom_keyframes {
  from {
    transform: scale(0.9)
  }

  to {
    transform: scale(1)
  }
}

@keyframes zoom_keyframes_title {
  from {
    transform: scale(0.5)
  }

  to {
    transform: scale(1)
  }
}


@keyframes slider_reveal_background {
  from {
    filter: saturate(0);
    opacity: 0.25;

  }

  to {
      filter: saturate(1);
    opacity: 1;

  }
}

@keyframes text_keyframes {
  from {
    top: -6px
  }

  to {
    top: +6px
  }
}
@keyframes reveal_keyframes {
  from{
    transform: scale(0.9);
    filter: blur(2px);
  }
  to{
    transform: scale(1);
    filter: blur(0px);
  }
}

html {
  scroll-behavior: smooth
}

body {
  --gold: #e8c28b;
  --pink: #ff006c;
  --pearl-height:25px;
  position: relative;
  font-family: fancyFont;
  color: #0c0c0c;
  background-color: #ffffff;
  cursor: url("../images/cursor.gif"), auto !important;
}

.bg-pattern {
  background-color: #fffdfe;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='64' viewBox='0 0 48 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M48 28v-4L36 12 24 24 12 12 0 24v4l4 4-4 4v4l12 12 12-12 12 12 12-12v-4l-4-4 4-4zM8 32l-6-6 10-10 10 10-6 6 6 6-10 10L2 38l6-6zm12 0l4-4 4 4-4 4-4-4zm12 0l-6-6 10-10 10 10-6 6 6 6-10 10-10-10 6-6zM0 16L10 6 4 0h4l4 4 4-4h4l-6 6 10 10L34 6l-6-6h4l4 4 4-4h4l-6 6 10 10v4L36 8 24 20 12 8 0 20v-4zm0 32l10 10-6 6h4l4-4 4 4h4l-6-6 10-10 10 10-6 6h4l4-4 4 4h4l-6-6 10-10v-4L36 56 24 44 12 56 0 44v4z' fill='%23ff006c' fill-opacity='0.015' fill-rule='evenodd'/%3E%3C/svg%3E");
}


/* SWITCH BUTTON */

label{
  font-family: poppins;
  color: var(--pink);
  vertical-align: middle;
}

 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d3bfdb;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: var(--pink);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--pink);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} 

/* END SWITCH */

.legal{
  padding: 5vw;
  background-image: url(../images/main-bg.webp);
  background-size: cover;
  height: 100vh;
  font-family: poppins;
}

.legal-container{
  padding:16px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 20px white;
}
.legal h1{
  color: var(--pink);
  font-family: fancyFont;
}


button:hover{
  transform: scale(1.1);
  transition: 0.5s;
}

.unsaturated{
  filter: saturate(0)
}
.blurry{
  filter: blur(16px);
}

h2 {
  color: var(--pink);
}

.name {
  color: var(--pink);
  font-size: 1.5em !important;
}

.legal-link {
  font-size: 2em;
}


.size-info-image {
  width: 100%;
}



.btn-unselected {
  filter: saturate(0);
  border: none;
}

.btn-selected {
  border: var(--pink) 2px solid;
}

#sortDropdown {
  background-color: var(--pink);
  color: white;
  font-family: poppins;
}

.dropdown button {
  font-family: poppins;
}



.sorting-options-container{
  gap:16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
}
@media (max-width:480px) {
  .sorting-options-container{
    justify-content: center;
  }
}

#btnRandom{
  background-color: var(--pink);
  color: white;
  font-family: poppins;
}

.reveal-animation{
 animation: reveal_keyframes 0.5s;
}

@media (pointer:none), (pointer:coarse) {
  /* disable for performance reasons */
  .reveal-animation{
   animation: unset
  }
}

.zoom-animation {
  animation: zoom_keyframes 1s infinite alternate;
  transform-origin: center;
}

.box-animation {
  animation: zoom_keyframes 0.5s;
  animation-delay: 0.1s;
  animation-fill-mode: forwards;
}



span.item_price {
  padding-top: 20px;
}


.about_section{
  padding: 64px;
  background: linear-gradient(180deg,#ec9dab, 10% white);
  
}

.corner-ornament{
  width: 400px;
  position: absolute;
  z-index: 2;
}

.corner-ornament.top-left{
  top: 0;
  left: 0;
  transform: scaleY(-1);
}
.corner-ornament.top-right{
  top: 0;
  right: 0;
  transform: scaleX(-1) scaleY(-1);
}

@media (max-width:1200px){
  .about_section{
    padding: 12px;
  }

  .corner-ornament{
    display: none;
  }
}

/* 360 MODAL */
.threeSixtyButton{
  transition: 0.5s
}
.threeSixtyButton:hover{
  filter: hue-rotate(-10deg);
  transform: rotate(360deg);
}

.threeSixtyView{
  width: 95%;
  margin: auto;
  position: relative;
}

.threeSixtyView canvas{
  border-radius: 64px;
  position: relative;
}

.threeSixtyView:after{
  content: "";
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  box-shadow: inset 0px 0px 20px 20px white;
  pointer-events: none;
  border-radius: 64px;
}
#modal360{
  z-index: 9999;
}

#modal360 .modal-dialog{
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  max-width: 1500px;
}

#modal360 .modal-content{
  padding-left: 0;
  padding-right: 0;
  color: var(--pink);
}

#modal360 .threeSixtyView{
  height:70vh;
  margin-left: auto;
}

#modal360 canvas{
  transition: 0.5s;
  cursor: move;
}
#modal360 .form-check{
  margin: auto;
}

#modal360 .progress{
  width: 50%;
}

#modal360 .progress-bar{
  background-color: var(--pink);
}

/* CUSTOMIZATION MODAL */

.form-modal{
  font-family: poppins;
  z-index: 9999;
}

.form-modal .btn-submit{
  background-color: var(--pink);
  border: none;
  width: 80%;
  margin: auto;
  display: block;
}
.form-modal h3{
  color:var(--pink)
}


.waiterStatus{
  color: var(--pink);
}


.waiterAnimationContainer{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modalBijouPictureContainer img{
  width: 250px;
  margin: auto;
  display: block;
}
#customizationDetails{
  text-align: center;
  color: var(--pink);
}
.waiterAnimationContainer img{
  width: 256px;
}

.customize_button {
  background-color: transparent;
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--pink);
  font-weight: bold;
  color: var(--pink);
  margin-top: 15px;
  font-family: poppins;
  /* font-size: 1.5em; */
  border-radius: 15px;
}

.customize_button:hover {
  border-color: #fbb534;
  color: #fbb534;
}

/* PICTURE MODAL */


.social-link{
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: inline-block;
  color: white;
  text-align: center;
  line-height: 32px;
  margin: 8px;
}

.social-link.facebook{
  background-color: #4267B2;
}
.social-link.twitter{
  background-color: #1DA1F2;
}
.social-link.pinterest{
  background-color:#E60023 ;
}

.modal-footer {
  justify-content: center;
}

#share-container{
  margin: auto;
  width: fit-content;
}

.jssocials-share:hover{
  transform: scale(1.1);
  transition: 0.5s;
}
.jssocials-share-link { border-radius: 50%; }



.carousel-control-prev-icon{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff006c' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff006c'  viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators{
  position: static;
}

.carousel-indicators li{
  background-color: var(--pink);
}
.carousel.pointer-event {
  touch-action: pan-y pinch-zoom;
}


.modal-picture-wall{
  width: 70%;
  height: 70%;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-auto-rows: 33.3%; 
  flex-grow: 1;
}
.modal-picture-wall img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width:480px) {
  .modal-picture-wall{
   grid-template-columns: auto auto auto;
   grid-auto-rows: 25%; 
  }
}

.modal-loader{
  z-index: 10;
  width: 100%;
  height: 70vh;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: var(--pink);
  background-color: white;
  border-radius: 35px;
  padding: 6%;
  gap: 5%;
  left: 0;
  top: 0;
}
.modal-loader-gif{
  height: 10%;
}

.lblBijouSearch{
  font-size: 1em !important;
}

.modal-title {
  color: var(--pink);
  font-size: 5em;
}

.modal-header{
  border: none;
}

.modal-content {
   border-radius: 35px;
   box-shadow: 0px 0px 20px 5px rgb(255, 248, 225);
   border: none;
   padding: 16px;
   color: #993272;
}

.modal-content p {
  z-index: 1;
  font-size: min(4vw,1.2em);
}

.modal-content video {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
  left: 0px;
  top: 0px;
  opacity: 10%;
}

#sizeCollapse{
  padding: 4px;
}

.modal-large {
  width: 80%;
  max-width: 1200px;
  margin: 2rem auto;
}

.img-zoom-dialog {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

.modal-img-box {
  position: relative;
  border-radius: 5px;
}

#modalItemDetails {
  /* color: var(--pink); */
  padding: 16px;
  background-color: #f8f8f8;
  border-radius: 20px;
}

.paragraph-heading {
  color: var(--pink);
  padding: 8px;
}

.paragraph-heading::after {
  content: "";
  width: 60%;
  height: 4px;
  display: block;
  background-color: var(--pink);
}

.img-zoom {
  width: 350px;
  height: 250px;
  object-fit: contain;
  padding: 8px;
  transition: 1s;
}


.about-img-col {
  padding: 0;
}

.email-address,
p {
  font-size: 1.1em;
  font-family: poppins;
}

.nav-link {
  font-size: 1.5em;
}

.box {
  border-radius: 10%;
  transition: 0.5s;
}

.box:hover {
  transform: scale(1.1);
}

/* START FRAME */

.outer-border {
  border: 2px solid var(--gold);
  padding: 6px;
  margin: 0 auto;
}


.mid-border {
  border: 4px solid var(--gold);
  width: 95%;
  padding: 6px;
  margin: auto;
}

.inner-border {
  position: relative;
  border: 4px solid var(--gold);
  margin: auto;
}


/* Decorations */
.corner-decoration {
  position: absolute;
  width: 25% !important;
  margin: -3px;
  z-index: 1;
}

.corner-decoration.corner-left-top {
  left: 0;
  top: 0;
}

.corner-decoration.corner-right-top {
  top: 0;
  right: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.corner-decoration.corner-right-bottom {
  right: 0;
  bottom: 0;
  -webkit-transform: scale(-1);
  transform: scale(-1);
}

.corner-decoration.corner-left-bottom {
  left: 0;
  bottom: 0;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.vertical-decoration {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 11em;
}


.vertical-decoration.bottom {
  bottom: 0;
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

/* END FRAME */


.layout_padding {
  padding: 75px 0;
}

.layout_padding2 {
  padding: 45px 0;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}

.layout_padding-top {
  padding-top: 75px;
}

.layout_padding-bottom {
  padding-bottom: 75px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.heading_container h2 {
  position: relative;
}


/*header section*/
.hero_area {
  height: calc(100vh + var(--pearl-height));
  min-height: 500px; 
  position: relative;
  /* background-image: url(../images/main-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

@media (max-width:768px) {
  .hero_area {
     /* background-image: url(../images/main-bg-mobile.webp); */
  }
}

.header_section{
  position: absolute;
  top: 0;
  width: 100%;
}

.header_section .container-fluid {
  padding-right: 25px;
  padding-left: 25px;
}

.header_section .nav_container {
  margin: 0 auto;
}

.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link {
  padding: 10px 30px;
  color: #c81360;
  text-shadow: 5px 2px 5px rgba(244, 189, 238, 0.593);
  text-align: center;
  transition: 0.25s;
}
.custom_nav-container.navbar-expand-lg .navbar-nav .nav-link:hover {
  transform: scale(1.1);
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-brand img {
  width: 64px;
  margin-right: 5px;
}

.navbar-brand span {
  font-size: 22px;
  font-weight: 700;
  color: #191919;
  text-transform: uppercase;
}

.custom_nav-container {
  z-index: 99999;
  padding: 5px 0;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/menu.png);
  background-size: 45px;
}

.quote_btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.quote_btn-container a {
  color: #000000;
  position: relative;
}

.quote_btn-container a .cart_number {
  position: absolute;
  top: 68%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 12px;
}

.quote_btn-container a img {
  width: 20px;
  margin: 0 25px;
}

/*end header section*/
/* slider section */
.slider_section {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}

.slider_section .background{
    width: 100%;
    height: 100%;
    animation: slider_reveal_background 2s backwards 0.1s; 
    position: absolute;
    top: 0;
    z-index: -1;
}

.slider_section .bird{
  opacity: 0.5;
  animation: bird_keyframes 1.5s infinite alternate;
}

.slider_section .background img{
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.slider_section video{
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  object-fit: cover;
}

/* @media (max-width: 768px) {
  .slider_section {
    align-items: flex-start;
  }
} */

.slider_section .cursor{
  fill: var(--pink);
  z-index:99;
}

.slider_section .ornament{
  width: 50vw;
  max-width: 100px;
  font-size: 9vw;
  font-family: fancyFont;
  color: var(--pink);
 
}

.slider_section .ornament.margin-bottom{
  margin-bottom: -6vw;
  animation: translate_keyframes_x 1s 1s backwards;
}
.slider_section .ornament.margin-top{
  margin-top: -3vw;
  animation: translate_keyframes_x_2 1s 1s backwards;
}

@media (max-width:480px) {
.slider_section .ornament.margin-top{
  margin-top: -3vw;
}
}

.logo-title {
  font-size: 22vmin;
  font-family: fancyFont;
  color: var(--pink);
  text-shadow: 5px 2px 10px #ea4b8da6;
  animation: zoom_keyframes_title 2s backwards 0.1s;
}


.logo-text {
  color: var(--pink);
  margin-bottom: 32px;
  font-size: 2em;
  font-weight: 500;
  text-shadow: 5px 5px 5px rgb(255, 255, 255);
  animation: translate_keyframes_y 1s 1.5s backwards;
}

@media (max-width: 800px) {
  .logo-text {
    font-size: 8vw;
  }

}

.filters_section {
  position: absolute;
  top: 150px;
  right: 0;
  height: 100%;
  z-index: 10;
}


.filters_section .filters_container {
  position: sticky;
  /* transform: translateY(25%); */
  top: 0;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: fit-content;
  height: 100vh;
  padding: 10px;
  /* overflow-y: scroll; */
}



.filters_section .filters_container .box {
  width: 125px;
  height: 125px;
  max-width: 300px;
  margin: 10px 10px;
  padding: 30px;
  -webkit-box-shadow: 0px 0px 2px 0.5px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 2px 0.5px rgba(0, 0, 0, 0.15);
  background-color: white;
}


.filters_section .filters_container .box .img-box {
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ornament-vertical{
  width: 80px;
}
.flip-y{
  transform: scaleY(-1);
}
.ornament-horizontal{
  display: none;
}


@media (max-width: 1700px) or (max-height:700px) {

  .ornament-horizontal{
    display: block;
    width: 64px;
  }

  .ornament-horizontal.left{
    transform: rotate(-90deg)
  }

  .ornament-horizontal.right{
    transform: rotate(90deg)
  }

  .ornament-vertical{
    display: none;
  }
  
  .filters_section {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: #fffdfe;
    padding: 0;
  }

  .filters_section .filters_container {
    position: sticky;
    flex-direction: row;
    transform: none;
    top: 0;
    width: 100%;
    height: fit-content;
    padding: 0;
    border-radius: 15px;
    box-shadow: 6px 6px 6px 5px rgba(0, 0, 0, 0.05);
    overflow-y: hidden;
  }

  .filters_section .filters_container .box {
    width: 12vw;
    height: 12vw;
    max-width: 68px;
    max-height: 68px;
    padding: 0;
  }

  .filters_section .filters_container .box .img-box {
    width: 100%;
    height: 100%;
    margin: auto;
    margin-top: auto;
  }

  .filters_section .filters_container .box .img-box img {
    width: 100%;
    height: 100%;
  }

  .filters_section .filters_container .box .name {
    display: none;
  }
}

@media (max-width:600px) {
  .ornament-horizontal{
    display: none;
  }
}

.filters_section .filters_container .box h6 {
  color: #fbb534;
  text-transform: uppercase;
}

.filters_section .filters_container .box:hover {
  -webkit-box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.1);
}

.about_section {
  position: relative;
}

.about_section .pearl-banner{
  position: absolute;
  top: calc(-1 * var(--pearl-height));
  left: 0;
  background-image: url("../images/pearl.webp");
  height: calc(var(--pearl-height) * 2  );
  width: 100%;
}


.about_section .design-box {
  position: absolute;
  height: 100%;
  width: 150px;
  top: 0;
  right: 0;
  overflow: hidden;
  z-index: 2;
}

@media (max-width: 1200px) {
  .about_section .design-box {
    display: none;
  }
}

.about_section .design-box img {
  height: 100%;
}

.about_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about_section .detail-box p {
  margin-top: 35px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 8px 40px;
  background-color: #0d0806;
  border: 1px solid #0d0806;
  color: #ffffff;
  border-radius: 0;
  margin-top: 35px;
}

.about_section .detail-box a:hover {
  background-color: transparent;
  color: #0d0806;
}

.about_section .img-box img {
  width: 100%;
}


/* ITEM BOX */

.price_section .container{
  max-width: 1450px;
}

.price_section {
  position: relative;
}

.input-search {
  width: 100%;
  border: none;
  text-align: center;
  font-size: 2em;
  border-radius: 15px;
  color: var(--pink);
  font-family: poppins;
  outline: none;
  box-shadow: 0px 0px 10px 2px #ff006c21;
}

.input-search:focus {
  border: 1px var(--pink) solid;
}

.price_section .design-top{
  z-index: 0;
  width: 600px;
  margin: auto;
  display: block;
}

@media (max-width:600px) {
  .price_section .design-top{
    width: 100%;
  }
  
}

.price_section .price-bottom-container{
  height: 128px;
  display: relative;
}

.price_section .flowers-bottom{
  position: absolute;
  bottom: 0px;
  width: 300px;
}

.price_section .flowers-bottom.right{
  right: 0px;
  transform: scaleX(-1);
} 


.price_section .price_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-content: flex-start;
  padding: 40px 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  min-height: 100vh;
  transition: 0.1s;
}


.price_section .price_container .box {
  width: min(90vw,325px);
  height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: top;
  margin: 35px 10px;
  padding: 45px 0 45px 0;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0px 0px 6px 6px rgba(97, 52, 87, 0.05);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  font-family: fancyFont;
  transform: scale(0.9);
}

.price-ornament{
  font-size: medium;
  font-family: symbola;
}

.price_section .price_container .box .img-box {
  height: 300px;
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.price_section .price_container .box .img-box img {
 width: 95%;
 filter: saturate(1.3);
}

.price_section .price_container .box h6 {
  font-weight: bold;
  font-size: 18px;
}

.price_section .price_container .box .detail-box h5 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 22px;
}

.price_section .price_container .box .detail-box h5 span {
  color: #fbb534;
}


.item_summary {
  padding: 5%;
  font-style: italic;
  height: 100px;
  font-size: medium;
  color: #da5870;
  text-shadow: 0px 0px 5px #5f0b2726;
}

.buy_button {
  display: inline-block;
  padding: 5px 15px;
  border: 1px solid var(--pink);
  font-weight: bold;
  color: var(--pink);
  margin-top: 15px;
  font-family: poppins;
  /* font-size: 1.5em; */
  border-radius: 15px;
}

.buy_button:hover {
  border-color: #fbb534;
  color: #fbb534;
}

.buy_button:focus {
  background-color: unset;
   color: var(--pink);
}

.buy_links{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}



.free_shipping{
  color: rgb(223, 164, 27);
  font-size: x-small;
  margin-bottom: 0;
  font-family: poppins;
  /* text-shadow: 1px 1px 5px rgb(226, 220, 204); */
}

.customizable{
  color: var(--pink);
  font-size: x-small;
  margin-bottom: 0;
  font-family: poppins;
  cursor:pointer;
  /* text-shadow: 1px 1px 5px rgb(226, 220, 204); */
}


.variation-selector {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  gap: 12px;
}

.variation-button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.25s;
  position: relative;
}

.variation-sold::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: red;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: rotate(-45deg);
}

.variation-button:hover {
  transform: scale(1.3);
}

.discounted-price {
  color: var(--pink);
}

.discount {
  background-color: var(--pink);
  color: white;
  position: absolute;
  left: -25px;
  top: 0;
  transform: rotate(-45deg);
  z-index: 10;
  font-size: 2em;
  width: fit-content;
  padding-left: 12px;
  padding-right: 12px;
}



.price_section .bijou_gallery{
  margin-top: 10vh;
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  background-color: rgb(255, 255, 255);
  border-radius: 32px;
}

.price_section .bijou_gallery picture{
  width: 250px;
  height: 250px;
  transform: scale(0.9);
  transition: transform 0.5s !important;
}

.price_section .bijou_gallery picture:hover{
  transform: scale(1.1) !important;
}
.price_section .bijou_gallery picture img{
  width: 250px;
  height: 250px;
  object-fit:contain;
  filter: saturate(1.3);
}

@media (max-width:640px){
  .price_section .bijou_gallery picture{
    width: 150px;
    height: 150px;
  }
  .price_section .bijou_gallery picture img{
    width: 150px;
    height: 150px;
  }
}



.see_more_button {
  display: inline-block;
  padding: 8px 40px;
  background-color: var(--gold);
  border: 1px solid var(--gold);
  color: #ffffff;
  border-radius: 0;
  font-size: 2em;
}

.see_more_button:hover {
  background-color: transparent;
  transform: scale(1.1);
  transition: 1s;
  color: #0d0806;
}


.contact_section {
  position: relative;
}



.info_section {
  background-color: #363636;
  color: #ffffff;
}

.info_section .info_container .info_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px 10px 20px 10px;
  background-color: #ffffff;
  width: 100px;
  border-radius: 0 0 50px 50px;
}

.info_section .info_container .info_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.info_section .info_container .info_logo a img {
  width: 64px;
  margin-right: 10px;
}


.info_section .info_container .info_contact {
  padding: 115px 10px 45px 10px;
}

.info_section .info_container .info_contact a {
  color: #ffffff;
}

.info_section .info_container .info_contact a img {
  margin-right: 10px;
}

.info_section .info_heading {
  margin: 20px 0;
  position: relative;
  font-size: 2em;
  font-family: poppins;
}

.info_section .info_heading::before {
  content: "";
  width: 45px;
  height: 5px;
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 5px;
  background-color: #f8bf46;
}

.info_section .info_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.info_section .info_form form .email_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info_section .info_social {
  padding-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.info_section .info_social .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 15px auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.info_section .info_social .social_box img {
  min-width: 10px;
  margin: 0 10px;
}

/* footer section*/
.footer_section {
  background-color: #363636;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}


.footer_section a {
  color: #9c9b9b;
}

/*# sourceMappingURL=style.css.map */