@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700&family=Poppins:wght@300;400;500&display=swap");

:root {
  margin: 0;
  padding: 0;
  --lg-font: "Kaisei Tokumin", serif;
  --sm-font: "Poppins", sans-serif;
  --pink: #fcb69f;
}

body {
  font-family: var(--sm-font);
}

/* button */
.bg-primary {
  background-color: var(--pink) !important;
}

.btn:not(.nav-btns button) {
  background-color: #fff;
  color: rgb(218, 66, 29);
  padding: 10px 28px;
  border-radius: 25px;
  border: 1px solid rgb(85, 85, 85);
}

.btn:not(.nav-btns button):hover {
  background-color: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

.btn i {
  color: white;
}

/* text color */
.text-primary {
  color: var(--pink) !important;
}

/* navbar */
.navbar {
  -webkit-box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 9px 3px rgba(0, 0, 0, 0.1);
  /* background-color: #ffecd2; */
  background-color: #0a0619;
}

/*   custom style to hide the navbar */

.navbar.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.navbar-brand img {
  width: 100px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
}

.navbar-brand span {
  letter-spacing: 2px;
  font-family: var(--lg-font);
}

.nav-link:hover {
  font: bold;
  color: var(--pink) !important;
  background-color: rgb(57, 214, 241);
  border-radius: 10px;
}

.nav-item {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-icon img {
  width: 70px;
  height: 70px;
}

@media  (max-width: 912px), (max-width: 820px), (max-width: 768px) {
  .title h2 {
    font-size: 1.8rem;
  }
  .title p {
    text-align: center;
    font-size: 1rem;
  }
}

/* Media Query for Mobile Devices */
@media (max-width: 912px),  (max-width: 820px), (max-width: 576px) {
  .title h2 {
    font-size: 1.5rem;
  }
  .title p {
    font-size: 0.9rem;
  }
}

/* title */

.title {
  margin: 20px;
  padding: 10px;
  text-align: center; /* Center-align the text within the title div */
}

.title p {
  margin: 20px;
}

.title h2::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 50px;
  background-color: #0a0619;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* collection */
.active-filter-btn {
  background-color: var(--pink) !important;
  color: #fff !important;
  border-color: var(--pink) !important;
}

.filter-button-group .btn:hover {
  color: #fff !important;
}

/* about */
#about {
  background-color: rgba(179, 179, 179, 0.05);
}

/* footer */
footer .brand {
  font-family: var(--lg-font);
  letter-spacing: 2px;
}

footer a {
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--pink) !important;
}

/* bed container start  */

header {
  margin-top: 110px;
  /* margin-bottom: 5rem;
    margin-left: 20px;
    margin-right: 10;
    padding: 0; */
  width: 100%;
  display: inline-block;
  background-color: #fcb69f;
}

.bed {
  background-color: #fcb69f;
  margin: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.product-container {
  width: 1200px;
  margin: 0 auto;
  background-color: #524047;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border: 1px solid rgb(25, 87, 202);
}

.product-container h1 {
  margin-top: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  text-align: center;
  color: white;
}

.product-content {
  display: flex;
  align-items: center;
}

.product-image img {
  width: 350px;
  height: 350px;
  margin-right: 15px;
  /* box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1); */

  pointer-events: none;

  -moz-user-drag: none;
  -webkit-user-drag: none;
}

.product-image h3 {
  color: white;
}

.product-details {
  flex: 1;
  padding: 20px;
  box-shadow: -4px 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #0a0619;
  border-radius: 10px;
}

.product-details ul {
  list-style: none;
  padding: 0;
}

.product-details li {
  margin-bottom: 10px;
  position: relative;
  color: white;
}

.product-details li::before {
  content: "•";
  position: absolute;
  left: 0;

  color: #ffffff;
}

.product-features li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

/* footer */
footer .brand {
  font-family: var(--lg-font);
  letter-spacing: 2px;
}

footer a {
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--pink) !important;
}

footer p {
  font-size: 12px;
  color: white;
}

footer {
  margin-top: 20px;
  background-color: #0a0619;
}

@media (max-width: 912px), (max-width: 820px), (max-width: 768px) {
  .product-container {
    padding: 10px;
    width: 95%;
  }

  .product-content {
    flex-direction: column;
  }

  .product-image img {
    max-width: 100%;
  }

  .product-details {
    margin-top: 15px;
  }

  .product-features {
    font-size: 14px;
  }

  .product-container h1 {
    font-size: 1.5rem;
  }
}

/* bed container end  */


/* media queries */
@media(min-width: 992px) {
  .nav-item {
      border-bottom: none;
  }
}

