
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --primarybackground: #6C7176;
  --primarylight: #E3DFD9;
  --primarydark: #7E7893;
  --softlight: #A8BDB1;
  --softdark: black;
  --reallylight: #f0f0f0;
  --itemheight: 18rem;
  --itemdetails: 15rem;
  --itemtextheight: 2rem;
  --catitemheight: 12rem;
  --catdescheight: 2.5rem;
}

html {
    font-family: "Poppins", verdana, Geneva, Tahoma, sans-serif !important;
    color: var(--primarybackground);
    font-size: 16px;
}

* {
  font-family:"Poppins", verdana, Geneva, Tahoma, sans-serif !important;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 0;
  font-size: 1rem;
  font-style: normal;
  width: 100%;          /* Full width for small screens */
  max-width: 100%;
  margin: 0 auto;
  min-height: 20rem;
}

.site-header, .site-content, .site-footer {
  margin-bottom: 1rem;
  padding: 1rem;
}

.site-header {
  background-color: var(--primarybackground);
  border-bottom-left-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}

.site-header  a, .site-header a:hover, .site-header a:active, .site-header p {
  color: white;
  text-decoration: none;
}

.site-content {
  min-height: 40rem;
}

.site-footer {
  background-color: black;
}

.site-footer  .row {
  margin-top: 0;
  padding-top: 0.5rem !important;
}

.site-footer a {
  font-size: 0.9rem;
}

.brand-image {
  height: 3rem;
}

button.dropdown-toggle {
  height: 3rem;
  padding: 0.1rem;
  margin-right: 0.5rem;
  border-radius: 0.3rem;
  border-color: var(--primarydark);
  background-color: var(--primarylight);
}

button.dropdown-toggle > img  {
  height: 90%;
}

.dropdown-menu {
  background-color: var(--primarybackground);
  border: 0.5rem solid var(--primarylight);
}

.dropdown-item:hover a {
  color: var(--primarybackground);
}

.section-title > h2 {
  color: var(--primarybackground);
  text-align: center;
  margin: 2vh 0;
  font-size: 2rem;
  text-align: left;
  font-weight: 300;
}

.section-byline > h4 {
  color: var(--softlight);
  font-size: 1rem;
  text-align: left;
  font-weight: 400;
}

.row {
  margin-top: 2rem;
}

.navMenu .nav a, .navMenu .nav p {
  padding: 0.5rem !important;
  margin: 0.5rem !important;
}

/* Form items */

.form-input-small {
  width: 50%;
  min-width: 500px;
  border: 0;
  font-size: 1.2rem;
  border-bottom: 1px dotted var(--softlight);
  border-radius: 0;
  color: var(--primarybackground);
}

.form-error {
  display: block;
  height: 1.2rem;
  min-height: 1.2rem;
}

.form-field {
  display: flex;
  margin-bottom: 0.4rem;
  flex-wrap: wrap;
}

.form-field > * {
  font-size: 0.9rem;
}

.form-field > input:focus, .form-field > input:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.form-field > textarea:focus, .form-field > textarea:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.form-field > input.editable:focus, .form-field > input.required:focus {
  border-bottom: 1px solid var(--primarybackground);
}

.form-field > textarea.editable:focus, .form-field > textarea.required:focus {
  border-bottom: 1px solid var(--primarybackground);
}

.form-field > input.readonly, .form-field > input.readonly:focus {
  background-color: var(--reallylight);
  color: var(--primarybackground);
}

.form-field > textarea.readonly, .form-field > textarea.readonly:focus {
  background-color: var(--reallylight);
  color: var(--primarybackground);
}

.form-field > img.n-icon {
  width: 2.5vh;
  height: 2.5vh;
  margin-left: 0.5vh;
  margin-top: 0.4rem;
}

.btn {
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  margin: 0.8rem 2rem;
  cursor: pointer;
  border-radius: 0;
  min-width: 180px;
}

.btn:first-child {
  margin-left: 0;
}

.btn-tiny {
  padding: 0.1rem 0.1rem;
  cursor: pointer;
  min-width: 2rem !important;
  width: 2rem !important;
  max-width: 2rem !important;
  min-height: 2rem !important;
  height: 2rem !important;
  max-height: 2rem !important;
  margin: 0.5rem !important;
  border: 1px solid white;
}

.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
  background-color: var(--primarybackground) !important;
  color: var(--primarylight);
}

.btn-secondary, .btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus {
  background-color: var(--primarydark) !important;
  color: var(--primarylight);
}

.btn-minicart, .btn-minicart:hover, .btn-minicart:active, .btn-minicart:focus {
  background-color: var(--primarydark) !important;
  color: var(--primarylight);
  padding: 0.1rem !important;
  margin: 0.1rem !important;
  min-width: none !important;
  width: 2rem !important;
  max-width: 2rem !important;
  min-height: 2rem !important;
  height: 2rem !important;
  max-height: 2rem !important;
}

.cart-wrapper > table {
  table-layout: fixed;
}

.btn-col {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  padding: 0;
  width: 1.5rem;
  min-width: 1.5rem;
  max-width: 1.5rem;
  cursor: pointer;
}

.btn-col > img {
  width: 100%;
}

.minicart-item, .fullcart-item {
  width: 40%;
}

.minicart-price, .fullcart-price {
  width: 18%;
  text-align: right;
  align-content: right;
}

.minicart-qty, .fullcart-qty {
  width: 18%;
  text-align: center;
  align-content: center;
}

.minicart-total, .fullcart-total {
  width: 18%;
  text-align: right;
  align-content: right;
}

.minicart-del, .fullcart-del {
  width: 6%;
  text-align: left;
  align-content: left;
}

.fullcart-cart-total, .minicart-cart-total, .fullcart-footer, .minicart-footer {
  text-align: right;
  align-content: right;
}

.fullcart-qty > span{
  display: inline-block;
  width: 2rem;
  min-width: 2rem;
  max-width: 2rem;
  text-align: center;
}

.fullcart-total > span{
  display: inline-block;
  width: 5rem;
  min-width: 5rem;
  max-width: 5rem;
}



.form-error {
  color: red;
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.form-field-desc {
  color: var(--primarybackground);
  font-size: 0.8rem;
  text-align: left;
  font-weight: 300;
}

.break {
  flex-basis: 100%;
  width: 0;
}

.secondary-nav a, .secondary-nav a:hover, .secondary-nav a:active {
  color: var(--primarybackground);
}
.catitem-col {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  cursor: pointer;
}
.category-item {
  min-height: var(--catitemheight);
  height: var(--catitemheight);
  max-height: var(--catitemheight);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
.cat-description {
  min-height: var(--catdescheight);
  height: var(--catdescheight);
  max-height: var(--catdescheight);
  line-height: var(--catdescheight);
  background-color: rgba(120,120,120,0.5);
  width: 100%;
  text-align: center;
  margin-top: -3.0rem;
  font-weight: bold;
}
.shopitem-col {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
.shopitem-col-item-top {
  height: var(--itemheight);
  min-height: var(--itemheight);
  max-height: var(--itemheight); 
  background-color: var(--primarylight);
  cursor: pointer;
}
.shopitem-col-item-bottom {
  height: var(--itemdetails);
  min-height: var(--itemdetails);
  max-height: var(--itemdetails);
  background-color: var(--primarydark);
  padding: 0.5rem;
  color: white;
}
.shopitem-title, .shopitem-price {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  min-height: var(--itemtextheight);
  max-height: var(--itemtextheight);
  height: var(--itemtextheight);
  line-height: var(--itemtextheight);
}
.shopitem-title {
  font-weight: 400;
  font-size: 1.1rem;
}
.shopitem-sdescription {
  margin-top: 0.4rem;
  margin-bottom: 0.2rem;
  min-height: 6rem;
  max-height: 6rem;
  height: 6rem;
  line-height: 1.2rem;
  overflow: hidden;
  color: var(--primarylight);
  font-size: 0.95rem;
}
.shopitem-price {
  font-weight: bold;
  font-size: 1.05rem;
}
.shopitem-image {
  height: var(--itemheight);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.shopitem-addtocart {
  padding: 0.2rem 1rem;
  margin-top: 0.3rem;
  border-radius: 0.4rem;
  border-color: var(--primarylight);
}
.modal-dialog {
  background-color: white;
}

#shopCart {
  background-color: white;
  left: 50%!important;
  top:  0!important;
  height: 100% !important;
  width:   50% !important;
}

.shopCart-body {
  margin: 4% 2%;
  height: 70%;
  min-height: 70%;
  max-height: 70%;
  overflow:scroll;
  scroll-behavior:smooth;
  padding: 4% 2%;
}

.offcanvas-title {
  color: var(--primarylight);
  font-size: 1.5rem;
  font-weight: 400;
  width: 90%;
}

.offcanvas-footer {
  padding: 0.2rem;
  background-color: black;
  color: var(--primarylight);
  text-align: right;
  height: 15%;
  min-height: 15%;
  max-height: 15%;
}

.offcanvas-header {
  padding: 1rem;
  background-color: var(--primarybackground);
  color: var(--primarylight);
  height: 10%;
  min-height: 10%;
  max-height: 10%;
}

.footer-col.row {
  margin: 0;
}
.footer-col > .d-flex {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.footer-col > .d-flex > img {
  width: 1.8rem !important;;  
  height: 1.8rem !important;
  margin-right: 0.5rem;
}

.featured-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: 380px;
  min-height: 380px;
  max-height: 380px;
  background-color: var(--primarylight);
  background-image: url("/~gani/site/assets/featured-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-position-x: 75%;
}

.featured-items-left-nav, .featured-items-right-nav {
  display: inline-flex;
  flex-direction: column-reverse;
  justify-content:center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.featured-items-image > img {
  height: 80%;
  max-height: 80%;
}

.featured-items-details {
  flex-direction: row;
  flex-wrap: wrap;
}

#featured-item-name {
  margin-top: 2rem;
  font-size: 2rem;
  height: 20%;
  vertical-align: auto;
  line-height: 3.1rem;
}

#featured-item-desc {
  font-size: 1rem;
  height: 50%;
  vertical-align: auto;
  color: var(--primarydark);
}

#featured-item-price {
  font-size: 2rem;
  height: 20%;
  line-height: 100%;
  color: var(--primarydark);
}

.featured-items > * {
  height: 100%;
  /* border: 1px solid var(--primarydark); */
}

.btn-featured-nav {
  color: white;
  background-color: var(--primarydark);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  max-width: 3rem;
  min-height: 3rem;
  display: inline-block;
  padding: 0;
  margin: 0;
}

.btn-featured-nav:hover {
  background-color: var(--primarybackground);
  box-shadow:green 0px 0px 10px;
}

@media (max-width: 575px) {
  /* -xs */
  html {
    font-size: 2vh !important;
  }
  body {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .hideOnSmall {
    display: none !important;
  }
  .hideOnLarge {
    display: inline-block !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  /* -sm */
  html {
    font-size: 2vh !important;
  }
  body {
    min-width: 96% !important;
    max-width: 96% !important;
    width: 96% !important;
  }
  .hideOnSmall {
    display: none !important;
  }
  .hideOnLarge {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* -md */
  body {
    min-width: 90% !important;
    max-width: 90% !important;
    width: 90% !important;
  }
  .hideOnSmall {
    display: inline-block !important;
  }
  .hideOnLarge {
    display: none !important;
  }

}

@media (min-width: 992px) and (max-width: 1199px) {
  /* -lg */
  body {
    min-width: 80% !important;
    max-width: 80% !important;
    width: 80% !important;
  }
  .hideOnSmall {
    display: inline-block !important;
  }
  .hideOnLarge {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* -xl */
  body {
    min-width: 70% !important;
    max-width: 70% !important;
    width: 70% !important;
  }
  .hideOnSmall {
    display: inline-block !important;
  }
  .hideOnLarge {
    display: none !important;
  }
}
