@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

h5 {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

h6 {
  color: #d8d8d8;
}

hr {
  width: 30px;
  height: 2px;
  background-color: #fff;
}
/* NAV ICONS */
.nav-icons a {
  margin-left: 15px;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-icons i {
  transition: 0.3s;
}

.nav-icons i:hover {
  color: #fff;
}

/* MAKE ICONS SAME SIZE */
.nav-icons a,
.navbar-toggler {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;

}

/* REMOVE BORDER FROM TOGGLER */
.navbar-toggler {
  border: none;
  outline: none;
  background-color: transparent;
  color: #fff;
}

.navbar-toggler:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

button,
button:focus,
button:active,
button:focus-visible,
button::-moz-focus-inner,
.buy-btn:focus,
.buy-btn:active,
.btn-primary:focus,
.btn-primary:active,
button.normal:focus,
button.normal:active,
#cart-bottom button:focus,
#cart-bottom button:active {
  outline: none;
  border: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  /* background: transparent; */
  /* backdrop-filter: blur(20px); */
  box-shadow: none;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(0);
  will-change: transform, background-color, box-shadow;
}

/* .navbar.navbar-hidden {
  transform: translateY(-110%);
} */

.navbar.navbar-visible {
  transform: translateY(0);
}

.navbar.navbar-scrolled {
  background: #99586b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo {
  width: 150px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  margin-bottom: 10px;
}

.nav-link {
  font-weight: 600;
  color: #fff !important;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ffb0dd !important;
}

.navbar-nav .nav-item .nav-link.active {
  color: #ffd000 !important;
}

/* Home Section */
#home {
  background: url(img/backgroundnew.avif);
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.home-img{
  position: absolute;
  right: 2rem;
  /* top: 50%; */
  /* transform: translateY(25%); */
  width: 25%;
  height: auto;
  max-height: 60vh;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}
#home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

#home .container {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
  /* padding-left: 2rem; */
}

#home h5 {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

#home h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}



#home p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 500px;
}
.description{
  display: flex;
  justify-content: space-between;
}
#home button {
  background: #fff;
  color: #fb008e ;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#home button:hover {
  background: #d44f93;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 79, 147, 0.3);
}

/* Brand Section */
#brand {
  padding: 50px 0;
}

#brand img {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

#brand img:hover {
  opacity: 1;
}

/* New Section */
#new {
  background: #f8f9fa;
}

#new .one {
  position: relative;
  overflow: hidden;
  height: 400px;
}

#new .one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

#new .one:hover img {
  transform: scale(1.1);
}

#new .details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 30px;
  text-align: center;
}

#new .details h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

#new .details button {
  background: #ff859a;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#new .details button:hover {
  background: #d44f93;
  transform: translateY(-2px);
}

/* Featured Section */
#featured {
  background: white;
}

#featured h3 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#featured hr {
  margin: 20px auto;
}

#featured p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Product Cards */
.product {
  background: white;
  border-radius: 10px;
  
  /* margin-left: .5px; */
  /* margin-right: 5px; */
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section .my-5{
  display: flex;
  gap: 10px;
}
.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

.star {
  color: #ffd700;
  margin: 10px 0;
}

.star i {
  font-size: 0.9rem;
}

.p-name {
  font-weight: 600;
  color: #333;
  margin: 10px 0;
}

.p-price {
  color: #ff859a;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.buy-btn {
  background: #ff859a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.buy-btn:hover {
  background: #d44f93;
  transform: translateY(-2px);
}

/* Banner Section */
#banner {
  background-image: url("img/backgroundimage.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

#banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

#banner .container {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

#banner h4 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

#banner h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 30px;
}

#banner button {
  background: #ff859a;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#banner button:hover {
  background: #d44f93;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 79, 147, 0.3);
}

/* Footer */
footer {
  background: #222;
  color: white;
}

.footer-one {
  margin-bottom: 30px;
}

.footer-one img {
  width: 150px;
  margin-bottom: 20px;
}

.footer-one h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #ff859a;
}

.footer-one ul li {
  list-style: none;
  margin-bottom: 10px;
}

.footer-one ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-one ul li a:hover {
  color: #ff859a;
}

.footer-one h6 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #ff859a;
}

.footer-one p {
  color: #ccc;
  margin-bottom: 10px;
}

.copyright {
  background: #111;
  padding: 20px 0;
}

.copyright img {
  width: 200px;
}

.copyright p {
  color: #ccc;
  margin: 0;
}

.copyright a {
  color: #ff859a;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #d44f93;
}

/* Page Header Sections */
section[id$="-header"] {
  margin-top: 78px;
  padding: 140px 0 70px;
  background: #f5eef5;
  text-align: center;
}
section[id$="-header"] h2 {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: #331f38;
}
section[id$="-header"] p {
  color: #5d5d6d;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Global Navbar Theme */
.navbar,
.navbar-light.bg-white,
.navbar-light,
.account-navbar,
.about-navbar {
  background: #99586b !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.navbar .navbar-brand,
.navbar .nav-link,
.navbar .nav-icons a,
.navbar-toggler {
  color: white !important;
}
.navbar .nav-link {
  font-weight: 600;
}
.navbar .nav-link:hover {
  color: #ffb0dd !important;
}
.navbar .navbar-brand img,
.logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

/* Blog Page */
.blog-post {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.blog-post img {
  border-radius: 15px 15px 0 0;
}
.blog-content {
  padding: 25px;
}
.blog-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #2c1f3a;
}
.blog-date {
  color: #9b8fa1;
  margin-bottom: 15px;
}
.blog-excerpt {
  color: #5d5d6d;
  line-height: 1.7;
}
.read-more {
  color: #99586b;
  font-weight: 700;
  text-decoration: none;
}
.read-more:hover {
  color: #d44f93;
}

/* Contact Page */
.contact-info,
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.contact-info h3,
.contact-form h3 {
  margin-bottom: 25px;
  color: #331f38;
}
.contact-item h5 {
  color: #331f38;
}
.contact-item p {
  color: #5d5d6d;
}
.contact-item i {
  color: #99586b;
}
.form-control,
textarea {
  border-radius: 12px;
  border: 1px solid #ddd;
}
.btn-primary,
button.normal,
#cart-bottom button {
  background: #99586b;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-primary:hover,
button.normal:hover,
#cart-bottom button:hover {
  background: #d44f93;
  transform: translateY(-2px);
}

/* Cart Page */
#cart-container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
#cart-container th,
#cart-container td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #f1f1f1;
  color: #4b4b5a;
}
#cart-container th {
  background: #f8f3f8;
  color: #5a4160;
  font-weight: 700;
}
#cart-container td img {
  width: 90px;
  border-radius: 12px;
}
#cart-container td input {
  width: 80px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ddd;
}
#cart-container td a {
  color: #99586b;
  font-size: 1.3rem;
}
#cart-bottom .coupon,
#cart-bottom .total {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
#cart-bottom .coupon input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #ddd;
  padding: 14px 16px;
  margin-bottom: 20px;
}

/* Shop Page */
.nav-buttons .nav-link {
  color: #fff !important;
}
.nav-buttons .nav-link.active {
  color: #ffb0dd !important;
}
.nav-buttons .nav-link:hover {
  color: #ffb0dd !important;
}
#shop-header {
  background: #f5eef5;
}
#shop-products .dropdown .btn {
  border-radius: 10px;
}
#shop-products .pagination .page-link {
  border-radius: 10px;
}
#shop-products .pagination .page-item.active .page-link {
  background: #99586b;
  border-color: #99586b;
}
#shop-products .pagination .page-link {
  color: #99586b;
}

/* Product Detail Page */
.single-product {
  padding-top: 120px;
}
.single-product h3,
.single-product h2,
.single-product h4 {
  color: #331f38;
}
.single-product select,
.single-product input[type="number"] {
  width: 100%;
  max-width: 180px;
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #ddd;
  color: #333;
}
.single-product span {
  color: #5d5d6d;
  line-height: 1.8;
}
.small-img-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.small-img-col {
  flex: 1 1 48%;
}
.small-img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
}

/* General cards and background */
.bg-light {
  background: #f8f2f8 !important;
}

