@import "tailwindcss";
@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");

@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap");
/* "Amatic SC" */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html,
body {
  width: 100%;
  overflow-x: hidden;
}
:root {
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* --orange: #7f5112; */
  --orange: #b9722c;
  --bg-glass: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.3);
  --box-sha1: 0 4px 12px rgba(0, 0, 0, 0.1);
  --box-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
}

a {
  text-decoration: none;
}
ul {
  list-style: none;
}

/* Badge Styling */
sup {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  line-height: 18px;
  text-align: center;
  font-weight: 600;
  z-index: 10;
  pointer-events: none;
}

/* Mobile Fix */
@media (max-width: 480px) {
  sup {
    top: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    font-size: 9px;
    line-height: 16px;
  }
}

/* sup {
  position: absolute;
  top: 11%;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 15px;
  text-align: center;
  padding: 0.1rem;
} */

.btn,
a .btn {
  padding: 0.8rem 1.5rem;
  text-transform: uppercase;
  background: #fff;
  color: var(--orange);
  border-radius: 10px;
  cursor: pointer;
}
.btn:hover,
a .btn {
  background: var(--orange);
  color: white;
}
.title {
  text-align: center;
  margin-bottom: 1rem;
}

.title h1 {
  font-size: 3rem;
  text-transform: uppercase;
}
.title span {
  font-size: 1.2rem;
  text-transform: uppercase;
  line-height: 2;
  color: var(--orange);
}
.line,
.line4 {
  background-image: url();
  width: 100%;
  height: 100px;
  margin-top: -3.6rem;
}

.line {
  margin-bottom: 10rem;
}

.line2,
.line3 {
  background-image: url("img/line3.jpeg");
  width: 100%;
  height: 100px;
  margin-top: -3.5rem;
}

.line3 {
  margin-top: -3.5rem;
  margin-bottom: 7rem;
}

.message,
.empty {
  text-align: center;
  text-transform: capitalize;
  margin: 0 auto;
  margin-bottom: 3rem;
  width: 59%;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  background: var(--orange);
  color: #fff;
  z-index: 108;
}

.empty {
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.message i {
  font-size: 1.2rem;
  cursor: pointer;
}
.message.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

input,
button,
textarea,
select {
  outline: none;
  border: 1px solid #55555544;
  background: transparent;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin: 1rem 0;
}

button {
  cursor: pointer;
}

input[type="submit"] {
  cursor: pointer;
}
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1rem));
  justify-content: center;
  align-items: center;
}
/* banner -------------------------------------- */
.banner {
  width: 100%;
  height: 50vh;
  position: relative;
  z-index: 1;
}
.banner::before {
  position: absolute;
  content: "";
  bottom: -18%;
  right: 0;
  width: 316px;
  height: 245px;
  background-size: 216px;
}
.banner .detail {
  position: absolute;
  padding: 7rem 0;
  left: 29%;
  text-align: center;
  z-index: 200;
}
.banner .detail h1 {
  font-family: "Inter";
  font-size: 2rem;
  color: black;
  text-transform: capitalize;
}
.banner .detail p {
  font-size: 18px;
  line-height: 2;
}
.banner .detail a {
  text-transform: uppercase;
  color: #000;
}
.banner .detail span {
  color: #ccc;
  text-transform: uppercase;
  cursor: pointer;
}

/* header ------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  transition: 0.3s;
  box-shadow: var(--box-shadow);
}
.header.scrolled {
  background: #fff;
  box-shadow: 0 5px 20px 0.1px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}
.header.scrolled a:hover {
  color: var(--orange);
}

.header .flex {
  /* max-width: 1200px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  background: #fff;
}

.navbar a {
  margin: 0 1rem;
  font-size: 1rem;
  color: #000;
  text-transform: uppercase;
}

.header .icons {
  padding-right: 4rem;
}
.header img {
  height: 1px;
}
.navbar a:hover {
  color: #856044;
  text-decoration: none;
}
.navbar a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 41%;
  background: #85604473;
  z-index: -1;
  transition: width 0.3s ease;
}
.header .icons {
  display: flex;
}
.header .icons i {
  margin-left: 1.2rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
}
.header .icons a i,
.header .icons i {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  vertical-align: middle;
  margin: 0 0.5rem;
}

.header .icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#menu-btn {
  display: none;
}
.header .user-box {
  position: absolute;
  top: 106%;
  right: 2rem;
   /*background: rgb(255 255 255/5%); */
   /*box-shadow: var(--box-shadow); */
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  width: 14rem;
  transform: scale(0);
  transform-origin: top right;
  line-height: 2;
}
.logout-btn {
  background: #000;
  color: #fff;
  text-transform: uppercase;
  width: 10rem;
}

.header .user-box.active {
  transform: scale(1);
  transition: 0.2s linear;
  background: #fff; 
   box-shadow: var(--box-shadow);
}
.header .logo {
  align-items: flex-start;
  margin: 1rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #000;
}
/* footer  -------------------------------*/
/* .footer {
  background: #7f5112;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 25%;
  margin: 10px;
}

.footer-section h3 {
  color: yellow;
  font-size: 16px;
  text-transform: uppercase;
  border-bottom: 3px solid yellow;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(10px) scale(1.05);
  font-weight: bold;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #333;
}

.newsletter-form {
  display: flex;
  margin: 10px 0;
}

.newsletter-form input {
  padding: 10px;
  border: 2px solid #000;
  outline: none;
  flex: 1;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
  background-color: #fff;
  width: 244px;
}

.newsletter-form input::placeholder {
  color: #777;
}

.newsletter-form button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 18px;
}
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #000;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 14px;
} */
/* home slider ---------------------------- */
.container-fluid {
  background-image: url("img/woodasa-bg.png");
  background-size: cover; /* This is the correct property */
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  filter: brightness(0.9);
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 90vh;
  overflow: visible; /* Allow full image display */
  /* background-color: #c5ecbb; */
  /* background-image: url("img/woodasa-bg.png");
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 90vh;
  /* overflow: hidden; */
}
.slider-item {
  position: relative;
  overflow: hidden;
}
.slider-item img {
  width: 100%;
  background-repeat: no-repeat;
}
.slider-caption {
  text-align: left;
  position: absolute;
  top: 30%;
  left: 15%;
  width: 30rem;
}
.slider-caption h1 {
  /* font-family: "Amatic SC"; */
  font-size: 40px;
  /* color: #3166bc; */
}
.slider-caption p {
  font-size: 20px;
  margin-bottom: 2rem;
  line-height: 2;
}
.next,
.prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  /* background: #f7b90f; */
  background: transparent;
  box-shadow: var(--box-shadow);
  z-index: 2;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.next {
  right: 1rem;
}
.prev {
  left: 1rem;
}
/* services ---------------------------- */
.services {
  background-repeat: no-repeat;
  padding: 2% 3%;
  position: relative;
}
.services::before {
  content: "";
  position: absolute;
  background-image: url("img/6.png");
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -10%;
  width: 189px;
  height: 409px;
  z-index: -1;
}
.services .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  justify-content: center;
  align-items: center;
  box-shadow: var(--box-sha1);
}
.services .row .box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
}
.services .row .box img {
  background: var(--orange);
  padding: 10px;
  border-radius: 50%;
  height: 5rem;
}

.services .row .box img:hover {
  padding: 5px;
  transition: padding 0.3s ease-in-out;
}
.services .row .box h1:hover {
  color: #000;
  font-size: 27px;
  transition: color 0.3s ease-in-out;
}
.services .row .box div {
  margin-left: 2rem;
}
.services .row .box h1 {
  font-size: 25px;
  color: #555;
  margin-bottom: 0.3rem;
}
.title {
  /*font-family: "Amatic SC";*/
  font-weight: bold;
   font-size: x-large; 
}
/* story -------------------------- */
.story {
  padding: 8% 4%;
  background-color: #f5f5f5;

  background-repeat: no-repeat;
  position: relative;
  margin-top: 3.5rem;
}
/* .story::before {
  content: "";
  background: url("img/");
  background-repeat: no-repeat;
  position: absolute;
  bottom: -100px;
  right: 0;
  width: 170px;
  height: 250px;
  z-index: 1;
} */
.story .row {
  grid-template-columns: repeat(auto-fit, minmax(33rem, 2rem));
  padding: 2rem;
}
/* .story .row .box span { */
/* font-family: "Amatic SC"; */
/* font-size: 3rem; */
/* font-weight: bold; */
/* color: var(--orange); */

.story .row .box h1 {
  margin: 1rem 0;
}
.story .row .box p {
  color: #555;
  /* line-height: 1.8; */
  margin: 1rem 0;
  font-size: 18px;
}
.story .row .box .btn {
  background: var(--orange);
  color: #fff;
}
.story .row .box .btn:hover {
  background: #b9722cc4;
  box-shadow: var(--box-shadow);
}
.story .row .box img {
  width: 90%;
  padding-top: 2rem;
}
/* shop --------------------------------- */
.popular-brands {
  position: relative;
  padding: 4%;
  background: #fff;
}
.popular-brands h2 {
  margin-bottom: 2rem;
}
.popular-brands-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem;
  margin: 0 3rem;
}
.popular-brands-content .card {
  width: 100%;
  max-width: 320px;
  flex: 1 1 280px;
  margin: 1rem;
}
.popular-brands-content img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: 2s;
}
.popular-brands-content .card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to top left, #fefefe, #f4f1ec);
}
.controls {
  position: absolute;
  right: 5%;
  top: 8%;
}
.left,
.right {
  border: 1px solid #000;
  color: gray;
  padding: 0.5rem;
  margin: 1rem 0;
  cursor: pointer;
}
.right:hover,
.left:hover {
  border: 1px solid var(--orange);
  color: var(--orange);
}

.box-container {
  padding: 4% 6%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.box-container .box,
.popular-brands-content .card {
  background: linear-gradient(145deg, #fffdfd, #f7f7f7);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.05);
  /*overflow: hidden;*/
  position: relative;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.box-container .box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to top left, #fefefe, #f4f1ec);
}
/* Image */
.box-container img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
}
/* Product Name */
.box-container .box .name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.box-container .box .icon,
.popular-brands-content .card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.box-container .box button,
.popular-brands-content .card button {
  border: none;
  cursor: pointer;
}
.box-container .box .icon button,
.box-container .box .icon a,
.popular-brands-content .card button,
.popular-brands-content .card a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  background: #fff;
  color: var(--orange);
  box-shadow: 0 8px 16px rgba(185, 114, 44, 0.15);
  transition: all 0.25s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-container .box .icon a:hover,
.box-container .box .icon button:hover,
.popular-brands-content .card button:hover,
.popular-brands-content .card a:hover {
  background: var(--orange);
  color: #fff;
  transform: scale(1.15);
}
.popular-brands-content .card .bi:hover {
  box-shadow: var(--box-hover);
  font-weight: bold;
}
/* Price Tag */
.price {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #222;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/* newsletter ------------ */
.newsletter-wrapper {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  background: #eaf6ff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.newsletter-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
}

.newsletter-left {
  flex: 1;
  min-width: 280px;
  padding-right: 20px;
}

.newsletter-left h2 {
  color: #1d3c6e;
  font-size: 24px;
  margin-bottom: 12px;
}

.newsletter-left p {
  color: #555;
  margin-bottom: 20px;
  max-width: 90%;
}

.newsletter-forms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-forms input[type="email"] {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  min-width: 220px;
  font-size: 14px;
  flex: 1;
}

.newsletter-forms button {
  padding: 12px 20px;
  background-color: #1d3c6e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-forms button:hover {
  background-color: #16345c;
}

.newsletter-right {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.envelope-group {
  position: relative;
  width: 220px;
  height: 220px;
  background-color: #083c7b;
  border-radius: 50%;
  overflow: hidden;
}

.orbit {
  position: absolute;
  width: 160px;
  height: 160px;

  border-radius: 50%;
  top: 30px;
  left: 30px;
}

.envelope,
.envelope.small {
  position: absolute;
  width: 70px;
  height: 40px;
  background-color: #51bfff;
  border-radius: 4px;
  transform: rotate(10deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.envelope {
  top: 60px;
  left: 50px;
  animation: float1 4s ease-in-out infinite;
}

.envelope.small {
  top: 100px;
  left: 90px;
  width: 50px;
  height: 34px;
  animation: float2 4s ease-in-out infinite;
}

.plane {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #51bfff;
  clip-path: polygon(100% 50%, 0 0, 20% 50%, 0 100%);
  top: 130px;
  left: 140px;
  animation: fly 5s linear infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translateY(0) rotate(10deg);
  }
  50% {
    transform: translateY(-10px) rotate(10deg);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-8px) rotate(-5deg);
  }
}

@keyframes fly {
  0% {
    transform: translate(0, 0) rotate(45deg);
  }
  50% {
    transform: translate(-20px, -30px) rotate(45deg);
  }
  100% {
    transform: translate(0, 0) rotate(45deg);
  }
}
/* about us ------------------------------ */
.about-us-section {
  background: #e6f6fc;
  padding: 50px 20px;
  font-family: "Segoe UI", sans-serif;
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
  /* background: #d6edfd; */
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.about-text {
  flex: 1 1 500px;
  padding-right: 30px;
}

.about-text .subtitle {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  color: #002c49;
}

.about-text .titles {
  font-size: 32px;
  margin: 10px 0;
  color: #002c49;
}

.about-text .description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.about-image {
  flex: 1 1 300px;
  text-align: center;
}

.about-image img {
  max-width: 80%;
  height: auto;
  border-radius: 50%;
  background: #1e537f;
  padding: 20px;
}
/* features ----------------- */
.features {
  /* background: var(--orange); */
  padding: 3rem 0;
  /* margin-top: -3.5rem; */
  min-height: 70vh;
  position: relative;
}
.features::after,
.address::after {
  position: absolute;

  content: "";
  bottom: 0;
  right: 0;
  width: 225px;
  height: 220px;
  background-size: 225px;
}
.features .row {
  padding-top: 4%;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.features .row .box {
  box-shadow: var(--box-sha1);
  padding: 1rem 0;
  margin: 1rem;
  text-align: center;
  border-radius: 10px;
}
.features .row .box h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.features .row .box img {
  background: #fff;
  box-shadow: var(--box-sha1);
  border-radius: 50%;
  padding: 1rem;
  margin-bottom: 1rem;
  width: 5rem;
}
.features .box:hover {
  box-shadow: var(--box-hover);
  transition: box-shadow 0.1s ease;
}
.features .box img:hover {
  border: 2px solid black;
  box-shadow: none;
  transition: border 1s ease-in-out;
}
/* team ----------------- */

.team-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #c59d5f;
  font-weight: 600;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  text-align: left;
}

.team-member {
  background: #fff;
}

.team-member img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.team-info {
  margin-top: 15px;
}

.team-info h3 {
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.team-info p.title {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.team-info p.description {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.6;
}
/* view page -------------------------- */
.view_page {
  padding: 5% 8%;
}
.view_page form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;

  align-items: center;
}
.view_page form img {
  width: 95%;
  object-fit: cover;
  height: 75%;
  padding: 0.5rem;
  border-radius: 5%;
  background: var(--orange);
}
.view_page .name {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--orange);
}

.view_page .price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

.view_page .detail {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1rem;
}

.view_page form .price {
  font-size: 24px;
  position: relative;
  left: 0;
}
.view_page .quantity {
  width: 30%;
  padding: 0.5rem;

  border-radius: 5px;
}

.view_page button {
  border: none;
  color: black;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-left: 0.5rem;
  width: 1rem;
}

.view_page button:hover {
  color: red;
}
.view_page .detail .icon {
  gap: 10px; /* Space between items */
  margin-top: 1rem;

  display: flex;
}
.view_page .price {
  color: #f2f2f2;
}
.thumb-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  transition: border 0.3s ease;
}

.main-img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
}
/* --- Product Image Enhancements --- */
.view_page form img {
  background: #f7f7f7;
  border: 2px solid #ddd;
  transition: transform 0.3s, box-shadow 0.3s;
}

.view_page form img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.thumb-img {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: border-color 0.3s, transform 0.3s;
}

.thumb-img:hover {
  border-color: var(--orange);
  transform: scale(1.1);
}

/* --- Button Improvements --- */
.view_page button {
  background: #f5f5f5;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.view_page button:hover {
  background: var(--orange);
  color: white;
}

/* --- Responsive Grid --- */
.view_page form {
  grid-template-columns: 1fr 1fr;
}
/* --- Icon Button Style --- */
.view_page .icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; /* perfect size */
  height: 48px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 10%; /* perfect circle */
  cursor: pointer;
  font-size: 20px; /* icon size */
  color: #b9722c;
  transition: all 0.3s ease;
}

.view_page .icon-button:hover {
  background: #b9722c;
  color: white;
  transform: scale(1.1);
}
/* main img  */
.thumb-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  transition: border-color 0.3s;
}

.thumb-img:hover {
  border-color: #b9722c;
}

.image-container {
  width: 450px; /* Fixed width */
  height: 450px; /* Fixed height */
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #f7f7f7;
  border-radius: 12px;
  border: 2px solid #ddd; */
  overflow: hidden; /* Optional: to crop if needed */
}

.main-img {
  width: 100%; /* Force full width of container */
  height: 100%; /* Force full height of container */
  object-fit: contain; /* Keep image aspect ratio inside fixed box */
  border-radius: 12px;
}

.thumbs-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 768px) {
  .view_page form {
    grid-template-columns: 1fr;
  }
}

/* --- Typography Consistency --- */
.view_page .name {
  font-family: "Montserrat", sans-serif;
}

.view_page .price {
  font-family: "Montserrat", sans-serif;
}

/* --- Icon Buttons --- */
.view_page .detail .icon button {
  width: 44px;
  height: 44px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.view_page .detail .icon button:hover {
  background: var(--orange);
  color: white;
  transform: scale(1.1);
}
/* wishlist ------------------------- */

.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.wishlist_total {
  max-width: 1200px;
  box-shadow: var(--box-sha1);
  margin: 2rem auto;
  border: 1px solid gainsboro;
  text-align: center;
  padding: 3rem 0;
  line-height: 2;
  text-transform: capitalize;
  margin-bottom: 3rem;
}
.wishlist_total p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.wishlist_total a {
  text-transform: capitalize;
  font-size: 16px;
  margin-right: 2rem;
}
.qty {
  display: flex;
  justify-content: space-between;
}
.qty input[type="number"] {
  width: 35%;
}
.qty input[type="submit"] {
  width: 55%;
  cursor: pointer;
  background: var(--orange);
  box-shadow: none;
  color: #fff;
}
.dlt {
  text-align: center;
  text-transform: uppercase;
  background: #f2f2f2;
  color: var(--orange);
  width: 50%;
  margin: auto;
  padding: 0.5rem 0;
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}
.dlt:hover {
  box-shadow: none;
}
.dlt a {
  /* color: var(--orange); */
  color: black;
}
.wishlist_total .btn {
  background: var(--orange);
  color: #fff;
  margin: 1rem;
  text-transform: capitalize;
}
.view_page .box-container .box {
  height: 9rem;
  width: 23rem;
  display: flex;
}
.view_page .box-container .box img {
  height: 6rem;
  width: 7rem;
  background: none;
  object-fit: cover;
}
.view_page .box-container .box .price {
  font-size: 15px;
  display: block;
  position: absolute;
  text-align: 5%;
  top: 4%;
  left: 10%;
  font-weight: bold;
}
.view_page .box-container .box .name {
  font-size: 18px;
  display: block;
  position: absolute;
  text-align: 5%;
  bottom: -4%;
  left: 8%;
  font-weight: bold;
}
.view_page .box-container .box .icon {
  background: none;
}
.view_page .box-container .box .icon a:hover,
.view_page .box-container .box .icon button:hover {
  box-shadow: var(--box-hover);
}
/* cart page ------------- */

.cart_page .box-container .box .for {
  display: block;
}
.cart_page .box-container .box img {
  height: 10rem;
  width: 10rem;
  background: none;
  object-fit: cover;
}
.cart_page .box-container .box .price {
  font-size: 15px;
  display: block;
  position: absolute;
  text-align: 5%;
  top: 4%;
  left: 10%;
  font-weight: bold;
}
.cart_page .box-container .box {
  height: 29rem;
  width: 21rem;
  display: block;
}
.cart_page {
  margin-top: 6rem;
}
/* form ------------------------- */
/* form continer  ----------------*/



.form-container {
  background: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 4rem 0;
  position: relative;
  margin-top: -5rem;
}

.form-container h1 {
  text-transform: uppercase;
  margin: 2rem 0;
  font-size: 2.3rem;
  text-align: center;
}





.form-container form label {
  text-transform: uppercase;
  display: block;
  width: 100%;
}

/*.form-container form input {*/
/*  width: 85%;*/
/*}*/

.form-container form textarea {
  width: 85%;
  height: 200px;
}

.form-container form button {
  /*width: 85%;*/
  background: var(--orange);
  border: none;
  padding: 0.6rem 0;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 5px;
}
/* contact us -------------- */
.address {
  padding-top: 3rem;
  background: #f5f5f5;
  background-image: url("img/back.jpeg");
  z-index: 0;
  height: 19rem;
  text-transform: capitalize;
  position: relative;
}
.address::before {
  content: "";

  position: absolute;
  top: -100px;
  left: -100px;
  width: 425px;
  height: 420px;
  z-index: 1;
  background-size: 450px;
}
.address .row {
  justify-content: center;
  align-items: center;
}
.address .row .box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
  box-shadow: var(--box-shadow);
  line-height: 2;
  padding: 1rem 0;
}
.address .box i {
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--orange);
}
/* checkout --------- */
.display-order {
  box-shadow: var(--box-sha1);
  width: 50vw;
  margin: 1rem auto;
  text-align: center;
  padding: 2rem 1rem;
  line-height: 2;
}
.display-order .box-container {
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.display-order .box {
  display: flex;
  box-shadow: var(--box-sha1);
  margin: 1rem 0;
  padding: 0.5rem 2rem;
  align-items: center;
}
.display-order .box img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.display-order span {
  display: inline-block;
  padding: 0.4rem;
  border-radius: 3px;
  text-transform: capitalize;
}
.display-order #handling-charge p{
  background: #f5f5f5;
  color:black;
    
}
.display-order .grand-total {
  width: 100%;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
}
.checkout-form form {
  width: 50vw;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 10px;
}
.input-field {
  margin: 0.6rem 0;
  text-transform: uppercase;
}

/* media query 
===
*/
/* Hide navbar on small screens by default */
.navbar {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .navbar {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .navbar.active {
        display: flex;
    }

    .icons {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    #menu-btn {
        display: block;
        cursor: pointer;
    }
}
@media (min-width: 769px) {
    #menu-btn {
        display: none;
    }
}


/* Show navbar normally on large screens */
@media (min-width: 769px) {
  .navbar {
    display: flex !important;
  }

  #menu-btn {
    display: none; /* Hide hamburger icon on large screens */
  }
}
@media (max-width: 768px) {
  .container-fluid {
    height: 60vh; /* Smaller height for mobile */
  }
}

@media (max-width: 480px) {
  .container-fluid {
    height: 50vh; /* Even smaller height for very small screens */
  }
}
@media (max-width: 768px) {
  .team-section h2 {
    font-size: 2rem;
  }

  .team-info p.description {
    font-size: 0.9rem;
  }
  .view_page form {
    grid-template-columns: 1fr;
  }

  .view_page form img {
    max-width: 100%;
  }
}
@media screen and (max-width: 640px){
    width:fit-content;
}
/* responsive media screen --------------- */
@media (max-width: 991px) {
  #menu-btn {
    display: block;
  }
  .header .flex .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    right: 0;
    border-top: 1px solid #000;
    background: #fff;
    transition: 0.3s ease;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .flex .navbar.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .header .flex .navbar a {
    display: block;
    margin: 2rem;
  }
  .header .flex .navbar a:hover {
    color: var(--orange);
  }
  .banner .detail {
    left: 10%;
  }
}

@media screen and (max-width: 1024px) {
  .popular-brands h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .popular-brands-content {
    margin: 0;
    padding: 0 1rem;
    justify-content: center;
  }

  .popular-brands-content .card {
    margin: 0.5rem auto;
  }

  .popular-brands-content img {
    height: auto;
    max-height: 220px;
  }
}

@media screen and (max-width: 600px) {
  .popular-brands-content {
    flex-direction: column;
    align-items: center;
  }

  .popular-brands-content .card {
    width: 90%;
  }
}
/* ✅ Adjust for smaller screens */
/* @media (max-width: 480px) {
  sup {
    top: -4px;
    right: -4px;
    width: 14px;
    height: 10px;
    font-size: 9px;
    line-height: 14px;
  }
} */
@media (max-width: 500px) {
  .cart_page .title {
    font-size: 22px;
  }

  .box .qty {
    flex-direction: column;
  }

  .box .qty input[type="number"] {
    width: 100%;
  }

  .box .qty input[type="submit"] {
    width: 100%;
  }

  .wishlist_total p {
    font-size: 16px;
  }

  .wishlist_total .btn {
    width: 100%;
    display: block;
    margin: 10px 0;
  }

  .btn2 {
    width: 100%;
    display: block;
  }
}
/* Mobile Specific Adjustments */
@media (max-width: 500px) {
  .checkout-form {
    padding: 10px;
  }

  .checkout-form h1 {
    font-size: 24px;
  }

  .checkout-form input,
  .checkout-form select {
    padding: 8px;
    font-size: 14px;
  }

  .checkout-form .display-order .box img {
    width: 60px;
    height: 60px;
  }

  .checkout-form .grand-total {
    font-size: 16px;
  }

  #upi-qr-section img {
    max-width: 90%;
  }

  .checkout-form a.btn {
    width: 100%;
    font-size: 14px;
  }
}
