@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@1,400;1,500;1,600;1,700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.1em;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: 'Lora', serif;
  text-align: center;
}

nav {
  position: absolute;
  background-color: #0a0a0a;
  padding: 5px 20px ;
  transform: translate(-175px, 0);
  left: 50%;
  width: 350px;
  height: 2em;
  display: flex;
  justify-content: space-evenly;
  margin: 0 auto;
  color: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

nav a {
  color: white;
  text-decoration: none;
}

nav a:hover {
  border-bottom: 1px solid white;
  color: white;
  text-decoration: none;
}


.home {
  text-align: center;
}

.caption {
  background-color: whitesmoke;
  padding: 20px 10px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.testimonial-container  {
  margin: 0 auto;
  border-radius: 5px;
  bottom: 35px;

}

.slide {
  background-color: whitesmoke;
  height: 250px;
  padding: 20px 20px 40px 20px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
  cursor: pointer;
}

.testimonial-container p {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin: 0;
  overflow: auto;
}

.testimonial-container .my-slider {
  min-height: 200px;
  margin: 0;
}



.home img, .home .caption {
  margin: 0 auto;
  width: 350px;
}


.home-container {
  width: 100%;
  /* transition-property: background-image;
  transition-duration: 2s;
  transition-timing-function: ease-in; */
  background-position: center;
  background-size: auto 100%;
  background: url('/images/saffron-bg.jpg');
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

.filter {
  /* background: rgba(0,0,0,0.6); */
  width: 100%;
  height: 100vh;
  display: inline-block;
}

.info {
  max-width: 600px;
  background-color: whitesmoke;
  padding: 5px 10px;
  display: flex;
  margin: 0 auto;
  justify-content: space-around;
  border-radius: 2px;
}

.card-custom {
  width: 40px;
  text-align: center;
}

.card-custom img {
  width: 100%;
}

.order-container h2 {
  text-align: left;
}

.product-card {
  width: 90%;
  height: 100px;
  padding: 2.5%;
  border-radius: 3px;
  background-color: whitesmoke;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  margin: 2.5%;
}

.product-card .title {
  font-weight: bold;
}

.product-card .desc {
  font-weight: 300;
  font-size: 0.8em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card:hover {
  box-shadow: 0 4px 7px 0 rgba(0,0,0,0.2);
  cursor: pointer;
}

.product-card img {
  float: right;
  height: 100px;
  transform: translate(12.5%, -10.5%);
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.product-card .price {
  position: absolute;
  right: 11%;
  top: 15%;
  z-index: 10;
  background-color: rgba(245,245,245,0.8);
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: bold;
}

.qty {
  margin-bottom: 4px;
}

.qty input {
  width: 100px;
}

button.btn-outline-primary, a.btn-outline-primary {
  color: #0a0a0a;
  border-color: #0a0a0a;
}

button.btn-outline-primary:hover, a.btn-outline-primary:hover {
  color: white;
  border-color: #0a0a0a;
  background-color: #0a0a0a;
}

.contact-container h3, .contact-container h5 {
  text-align: left;
}

.contact-container img {
  width: 40px;
}

.contact-container textarea {
  width: 100%;
}

.cover {
  width: 100%;
  background-position: center;
  background-image: url('/images/cover4.jpg');
  background-size: cover;
  height: 300px;
}


.basicLightbox--visible div .image {
  background-position: center;
  background-size: cover;
}

.basicLightbox--visible div {
  background: whitesmoke;
  border-radius: 2px;

}

.product-modal-content {
  padding: 10px;
  width: 300px;
}

.product-modal-content label {
  padding-right: 5px;
}

.product-modal-container img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.product-modal-content .qty {
  width: 100px;
}

.product-modal-content textarea {
  width: 100%;
}

.product-modal-content center {
  margin-bottom: 10px;
}

.product-desc {
  font-weight: lighter;
  font-size: 1em;
  margin-bottom: 0.3em;
}

.options-group {
  display: inline-block;
}

#bag-icon {
  position: fixed;
  z-index: 11;
  background-color: whitesmoke;
  top: 80px;
  right: 10px;
  width: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
}

#bag-icon:hover {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.4);
  cursor: pointer;
  animation: wiggle 0.3s ease-in-out forwards;
}

@keyframes wiggle {
  0% {
    transform: rotate(0deg);
    right: 10px;
  }
  25% {
    transform: rotate(-10deg);
    right: 15px;
  }
  50% {
    transform: rotate(0deg);
    right: 15px;
  }
  75% {
    transform: rotate(10deg);
    right: 10px;
  }
}

.bag {
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  z-index: 12;
  background-color: rgba(0,0,0,0.8);
}

.bag-content {
  background-color: white;
  width: 500px;
  max-width: 80%;
  position: absolute;
  right: 0;
  height: 100vh;
  overflow-y: auto;
}

.order-container.bag-open {
  position: fixed;
}

.label {
  cursor: pointer;
}

.modal-title {
  background: rgba(245,245,245,0.8);
  font-weight: lighter;
  padding: 5px 10px;
  transform: translateX(-25px);
  position: absolute;
  top: 5px;
  width: 100%;
  left: 25px;
  font-weight: bold;
}

.bag-items {
  padding: 0px 10px;
}

.bag-item {
  background-color: whitesmoke;
  margin: 0 5%;
  padding: 10px;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
  border-radius: 5px;
}

.bag-item .delete {
  float: right;
}

.bag-item p {
  margin-bottom: 2px;
}

.bag-item-price {
  float: right;
}

.btn-outline-primary:active {
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
  color: white;
}

#total-container {
  display: none;
}

.bag-item-instruction {
  font-weight: lighter;
  font-size: 1em;
}

.bag-item input, .bag-item textarea {
  font-size: 1em;
  width: 100%;
  margin-bottom: 5px;
}

.checkout-desc {
  font-size: 0.7em;
  margin: 5px 0;
}

#date-input {
  margin-bottom: 15px;
}

.our-story-container p {
  text-align: justify;
}

.our-story-container img {
  max-width: 100%;
  text-align: center;
}

input[type=radio].radiogroup {
  display: inline-block;
  width: auto;
}

.deliveryoptionlabel:hover, input[type=radio].radiogroup:hover {
  cursor: pointer;
}

#modal-img {
  width: 100px;
  height: 100px;
}
