/* Default/Basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "acumin-pro", system-ui, sans-serif;
}

/* Heading styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  margin: 0;
  font-weight: bold;
}

h1 {
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
}
h2 {
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
}
h3 {
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
}
h4 {
  margin-top: 1.33em;
  margin-bottom: 1.33em;
}
h5 {
  font-size: 0.83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
}
h6 {
  font-size: 0.67em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
}

/* Body styles */
body {
  width: 100%;
}

p {
  font-family: "Courier New", Courier, monospace, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 10px;
}

.logo {
  width: 120px;
  height: auto;
}

/* Navbar styles */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: ivory;
  position: sticky;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 10;
}
#header input[type="text"] {
  width: 300px;
  padding: 8px 12px;
  border: 1px solid #2f2f2f;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 16px;
}

#header input[type="text"]:focus {
  outline: none;
  border-color: dodgerblue;
}
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  margin: 0;
  padding: 8px 12px;
}

#navbar li {
  list-style-type: none;
  padding: 0px 20px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  font-size: large;
  font-weight: 600;
  color: #1a1a1a;
  transition: 0.2s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}
#navbar li a.active {
  text-decoration: underline;
}

#navbar li a.active::after,
#navbar li a:hover::after {
  content: "";
  width: 30%;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
}

#navbar {
  margin-bottom: 0;
}

/* Hero section styles */
#hero {
  background-image: url("Img/Bg/home_bg.jpg");
  color: antiquewhite;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#hero h1 {
  font-size: 50px;
}

#hero p {
  color: #bf0a0a;
  font-weight: 700;
  font-size: 20px;
}

.save {
  background-image: url(Img/Logo/save_bg.png);
  background-color: transparent;
  background-size: cover;
  background-position: center;
  padding: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  width: 150px;
  height: 130px;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.save p {
  margin: 0;
}

#hero a {
  background-color: transparent;
  color: #660000;
  text-align: center;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero a:hover {
  color: #ff0000;
  transition: 0.2s ease-in-out;
}

/* Features Section */

.section-p1 {
  padding: 40px 60px;
}

#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.25);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
  position: relative;
  overflow: hidden;
}

#feature .fe-box:hover {
  transition: 0.3s ease;
  box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box .feature-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
}

#feature .fe-box h4 {
  display: inline-block;
  padding: 9px 8px 12px 8px;
  line-height: 1;
  margin-top: 10px;
  text-align: center;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}

/*Features section khatam*/
/*##############################################################*/
/*Product section suru*/

#product1 {
  text-align: center;
}

#product1 h2 {
  font-size: 100px;
  text-shadow: 20px 20px 30px rgba(0, 0, 0, 0.5);
}

#product1 p {
  font-size: 50px;
  text-shadow: 20px 20px 30px rgba(0, 0, 0, 1);
}

#product1 .product_container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#product1 .pro {
  width: 23%;
  min-width: 250px;
  padding: 10px 12px;
  border: 1px solid #cce7d0;
  border-radius: 25px;
  cursor: pointer;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.25);
  margin: 15px 0;
  transition: 0.1s ease-in-out;
  position: relative;
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.1);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #606063;
  font-size: 20px;
}

#product1 .pro .des h3 {
  font-family: cursive;
  padding-top: 7px;
  color: #1a1a1a;
  font-size: 20px;
}
#product1 .pro .des h3:hover {
  transition: 0.5s ease;
  color: #ff0800;
}

#product1 .pro .des h4 {
  font-size: 15px;
  font-weight: 700;
  color: #088178;
}
.add-to-cart-btn {
  background-color: #088178;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.add-to-cart-btn:hover {
  background-color: #065c4c;
}

/*shopping cart css*/
#product1 .pro .cart {
  width: 50px;
  height: 50px;
  line-height: 60px;
  border-radius: 50px;
  background-color: rgb(247, 238, 238);
  font-weight: 500;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 30px;
}

/*Product section Khatam*/
/*##############################################################*/
/*offer section suru*/

#banner {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* Background Image settings */
  background-image: url(Img/Bg/offer.jpg);
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  box-sizing: border-box;
}

#banner h4 {
  font-size: 40px;
  color: #8ee53f;
  margin-bottom: 10px;
}

#banner h2 {
  font-size: 60px;
  color: #ffc324;
  padding: 10px 0;
  margin-top: 0;
  margin-bottom: 10px;
}

#banner h2 span {
  color: #c7372f;
}

#banner button {
  font-size: 25px;
  font-weight: 600;
  padding: 15px 30px;
  color: #ffffff;
  background-color: #f95700ff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: 0.2s;
}

#banner button:hover {
  background: #fff;
  color: #f95700ff;
}

/*offer section Khatam*/
/*##############################################################*/
/* Footer Section */

body {
  font-size: 14px;
}

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 30px;
  color: #2f2f2f;
  background-color: ivory;
  border-top: 1px solid #e5e5e5;
}

.footer > * {
  flex: 1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  text-transform: lowercase;
  font-size: 1.5rem;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 400;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgb(33, 33, 33, 0.07);
  border-radius: 100px;
  color: #2f2f2f;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 1rem;
  padding: 0 1.3em;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
  flex-flow: row wrap;
}

.footer__nav > * {
  flex: 1 50%;
  margin-right: 1.25em;
}

.nav__ul a {
  color: #999;
}

.nav__ul--extra {
  column-count: 2;
  column-gap: 1.25em;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  color: #999;
}

.legal__links {
  display: flex;
  align-items: center;
}

.heart {
  color: #2f2f2f;
}

/*To make the website responsive*/

@media (min-width: 24.375em) {
  .legal .legal__links {
    margin-left: auto;
  }
}

@media (min-width: 40.375em) {
  .footer__nav > * {
    flex: 1;
  }

  .nav__item--extra {
    flex-grow: 2;
  }

  .footer__addr {
    flex: 1 0;
  }

  .footer__nav {
    flex: 2 0;
  }
}
/*Shop Section Offer Page-Header Suru */

#page-header {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(Img/Bg/offer.jpg);
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  box-sizing: border-box;
  padding: 14px;
}

#page-header h2,
#page-header p {
  color: rgb(34, 139, 34);
  font-size: 50px;
}
#page-header a {
  font-family: cursive;
  font-size: 30px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #90ee90;
  color: purple;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    font-size 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#page-header a:hover {
  font-size: 40px;
  color: #ff6347;
}

/*Shop Section Offer Page-Header Khatam */

#bbo-banner .banner-box {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 660px;
  height: 55vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 50px;
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.25);
}

#bbo-banner .banner-box {
  background-image: url(Img/Bg/common-image.jpg);
}

#bbo-banner .banner-box:nth-child(1) {
  background-image: url(Img/Bg/pap.jpg);
}

#bbo-banner .banner-box:nth-child(2) {
  background-image: url(Img/Bg/ibiscus.jpg);
}

#bbo-banner .banner-box:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.5);
  transition: 0.2s ease;
}

#bbo-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#bbo-banner h4 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 10px;
}
#bbo-banner h2 {
  font-size: 60px;
  color: #800080;
  padding: 10px 0;
  margin-top: 0;
  margin-bottom: 10px;
}
#bbo-banner h3 {
  font-size: 60px;
  color: #800080;
  padding: 5px 0;
  margin-top: 0;
  margin-bottom: 10px;
}

#bbo-banner span {
  color: #8b0000;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 15px;
}

#bbo-banner button {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #8b0000;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #8b0000;
  outline: none;
  transition: 0.2s;
}

#bbo-banner button:hover {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #000;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #8b0000;
  outline: none;
  transition: 0.2s;
}

button.normal {
  font-size: 20px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

/*#######################################################################################*/
/*##############################################################*/
/*Shop Section Offer Page-Header Suru */

#page-header2 {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url(Img/Bg/spices_bg.jpg);
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  box-sizing: border-box;
}

#page-header2 h2,
#page-header2 p {
  color: #fff;
  font-size: 50px;
}
#page-header2 a {
  font-family: cursive;
  font-size: 30px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  background-color: #ffd700;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    font-size 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#page-header2 a:hover {
  font-size: 40px;
  color: #ff0000;
}

.popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(76, 175, 80, 0.8);
  color: white;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-family: Arial, sans-serif;
  font-size: 16px;
  z-index: 1000;
  opacity: 0;
  animation: fadeInOut 3s forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
