:root {
  --padding-section: 60px;
  --transition: 0.3s;
  --main-color: #826300;
}

/* Global overflow fix */
html,
body {
  overflow-x: hidden;
}

/* Images responsive */
img {
  max-width: 100%;
  height: auto;
}

/* ================= Header ================= */
header .top-header {
  height: 40px;
  background-color: var(--main-color);
  padding: 5px;
}
header .navbar {
  background-color: #faeddf !important;
  height: 70px;
  padding-bottom: 0.25rem;
}
@media (max-width: 992px) {
  header .navbar {
    height: auto;
  }
}
header .navbar img {
  max-height: 100px;
  width: auto;
}
header .navbar .navbar-collapse span {
  background-color: red;
  padding: 2px;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  position: absolute;
  top: 2px;
}
@media (max-width: 992px) {
  header .navbar .navbar-collapse {
    position: relative;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.9);
    padding: 12px 0;
  }
  header .navbar .navbar-collapse a {
    color: #fff !important;
    padding: 10px 16px;
  }
}

/* ================= Filter Section ================= */
.filter-section {
  gap: 3rem;
  width: 100%;
  overflow-x: hidden;
  padding-inline: 0;
}
.filter-section .filter {
  max-width: 270px;
  width: 100%;
}
.filter-section .filter .head {
  border: 1px solid #ccc;
  width: 100px;
  padding: 10px;
  height: 40px;
  border-radius: 5px;
  box-shadow: 2px 2px 2px #ccc;
  transition: 0.3s;
}
.filter-section .filter .head:hover {
  background-color: var(--main-color);
  color: white;
  box-shadow: 3px 3px 3px rgba(130, 99, 0, 0.6588235294);
  transform: translateX(15px) scale(1.1);
}
.filter-section .filter .head h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
.filter-section .filter .head i {
  font-size: 18px;
}
.filter-section .filter .accordion-button {
  background-color: #cfe2ff;
  color: #000;
  border-radius: 5px;
  font-weight: 500;
  margin-bottom: 15px;
}
.filter-section .filter .accordion-button:focus {
  box-shadow: none;
}
.filter-section .filter .accordion {
  width: 100%;
}
.filter-section .filter form div {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.filter-section .filter form div input[type=checkbox] {
  accent-color: #0075ff;
  margin-right: 8px;
  cursor: pointer;
}
.filter-section .filter form div label {
  cursor: pointer;
  font-size: 15px;
  color: #333;
}
.filter-section .filter .accordion-body i {
  margin: 10px 15px 0 0;
  color: var(--main-color);
}
.filter-section .filter .accordion-body span {
  font-size: 14px;
  color: var(--main-color);
  cursor: pointer;
}
.filter-section .filter .accordion-body span:hover {
  text-decoration: underline;
}
.filter-section .product .row {
  --bs-gutter-x: 1rem;
  margin-inline: 0;
}
.filter-section .product .img {
  width: 320px;
  height: 350px;
}
.filter-section .product .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.filter-section .product .col-lg-3 {
  display: grid;
  place-items: center;
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
  .filter-section {
    flex-direction: column;
    gap: 1.5rem;
    padding-inline: 12px;
  }
  .filter-section .filter {
    max-width: 100%;
    padding: 15px;
  }
  .filter-section .product .row > [class*=col] {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .filter-section .product .img {
    width: 100%;
    height: auto;
  }
  .filter-section .product .img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* ================= Footer ================= */
footer {
  background-color: #515050;
  padding: 20px;
}
footer .info-one p {
  width: 186px;
}
footer .info-one input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid;
  outline: none;
}

/* ================= Utilities ================= */
.hide {
  display: none !important;
}

.show {
  display: block !important;
}

/* ================= Offcanvas ================= */
.offcanvas {
  overflow-y: auto;
  overflow-x: hidden;
}
.offcanvas .offcanvas-footer {
  width: auto;
  height: 50px;
  border: 2px solid var(--main-color);
  padding: 23px;
  border-radius: 16px;
  bottom: 10px;
}
.offcanvas .offcanvas-footer p {
  margin: 0 auto 0 0;
  font-size: 20px;
  font-weight: bold;
}
.offcanvas .offcanvas-footer span {
  font-size: 20px;
  font-weight: bold;
  color: darkgoldenrod;
}

.area-message {
  position: absolute;
  top: 0;
  left: 5px;
}/*# sourceMappingURL=wedding.css.map */