@import url('https://fonts.googleapis.com/css2?family=Philosopher&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


a {
  text-decoration: none;
  color: inherit;
}

/* Header Global */
header {
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 3px 10px rgba(124, 86, 179, 0.3);
}

.banner {
  width: 100%;
}

/* Top Header */
.top-header-c {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  font-weight: 900;
  font-size: 19px;
  color: #632cb3;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.logo:hover {
  color: #b98d57;
}

.search-bar {
  flex: none;
  width: 544px;
  position: relative;
}

.search_bar {
  width: 100%;
  padding: 9px 15px;
  border: 1px solid #632cb3;
  border-radius: 30px;
  color: black;
  font-weight: 500;
  font-size: 13px;
  font-style: italic;
  outline: none;
}

.search_button {
  position: absolute;
  top: 4px;
  right: 5px;
  background: #632cb3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  color: white;
  font-size: 13px;
}
.suggestion-box {
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #632cb3;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(99, 44, 179, 0.15);
  z-index: 1000;
  max-height: 230px;
  overflow-y: auto;
  display: none;
}

.suggestion-box div {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 13px;
  color: #333;
  border-bottom: 1px solid #f3f3f3;
  transition: background 0.2s ease;
  font-style: italic;
}

.suggestion-box div:hover {
  background-color: #f6f0ff;
  color: #632cb3;
}

/* Header Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart {
  position: relative;
  color: #632cb3;
  font-size: 22px;
  text-decoration: none;
}

.cart .badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #dbab29;
  color: white;
  width: 15px;
  height: 15px;
  border: 1px solid #855ac4;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.account-dropdown-wrapper {
  position: relative;
}

.account {
  color: #4b2e2e;
  font-size: 20px;
  transition: color 0.3s;
  display: flex;
  align-items: baseline;
}

.account:hover {
  color: #b98d57;
}

.account-dropdown {
  position: absolute;
  left: -4px;
  top: 103%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 10px 0;
  min-width: 150px;
  display: none;
  z-index: 999;
  border-radius: 8px;
}

.account-dropdown li {
  padding: 6px 20px;
  border-bottom: 1px solid #80808040;
}

.account-dropdown li a {
  color: #240a48;
  text-decoration: none;
  display: block;
  font-weight: 600;
  font-size: 14px;
}

.account-dropdown li a:hover {
  background-color: #f5f0eb;
  color: #b98d57;
}

.account-dropdown-wrapper:hover .account-dropdown {
  display: block;
}

/* Bottom Navigation */
.bottom-header {
  background: #632cb30a;
  border-top: 1px solid #632cb330;
}

.main-nav-bar {
  display: flex;
  justify-content: center;
}

.main-nav {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 10px 0;
}

.main-nav li {
  position: relative;
}

.main-nav>li>a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 15.5px;
  transition: color 0.3s;
}

.main-nav>li>a i {
  font-size: 11px;
  margin-left: 5px;
  color: #8a8a8a;
  transition: transform 0.3s;
}

.mega-dropdown:hover>a i {
  transform: rotate(180deg);
  color: #b98d57;
}

.account i {
  font-size: 16px;
  color: #c29d38;
}

.account_text {
  margin-bottom: 0px;
  margin-left: 7px;
  font-weight: 600;
  font-size: 16px;
  color: #1e0642 !important;
}

.main-nav>li>a:hover {
  color: #b98d57;
}

/* Mega Menu */
.mega-dropdown:hover .mega-menu {
  display: flex;
}

.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  width: auto;
  z-index: 1000;
}

.mega-column {
  flex: 1;
  margin-right: 30px;
}

.mega-column h4 {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #d1a11d;
  border-bottom: 1px solid #f2e5d7;
  padding-bottom: 6px;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-column ul li {
  margin: 5px 0;
}

.mega-column ul li a {
  text-decoration: none;
  color: #3b2f4c;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s;
}

.mega-column ul li a:hover {
  color: #b98d57;
  padding-left: 5px;
}

.mega-column.images {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mega-column.images img {
  height: 151px;

  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: transform 0.3s;
}

.mega-column.images img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {


  .main-nav {
    flex-direction: column;
    align-items: center;
  }

  .search-bar {
    margin: 10px 0;
  }

  .mega-menu {
    position: static;
    width: 100%;
    flex-direction: column;
    box-shadow: none;
    padding: 15px;
  }
}


.categories_section {
  background: #fafafa;
  margin-top: 57px;
}

.product-desc {
  font-size: 14px;
  color: #000000e6;
  margin-bottom: 0px;
  font-weight: 500;
}

.categories_section .heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
  text-align: center;
}

.categories-wrapper {
  width: 25%;
  padding: 0px 7px;
  margin-bottom: 90px;
}

.category-card {
  position: relative;
  /* width: 260px; */
  cursor: pointer;
  /* border-radius: 16px; */
  overflow: visible;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.card-image {
  position: relative;
  /* width: 100%; */
  /* height: 180px; */
  border-radius: 16px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 325px;
  object-fit: contain;
  display: block;
  /* border-radius: 16px; */
  transition: transform 0.3s ease;
}

.category-card:hover .card-image img {
  transform: scale(1.06);
}


.heading h1 {
  font-size: 37px;
  font-family: 'Philosopher', sans-serif !important;
  color: #cf9909;
  text-align: center;
  text-align: center;
  font-weight: 900;
  margin-bottom: 21px;
  padding: 0;
}

/* Overlay panel partially overlapping the image bottom */
.card-overlay {
  position: absolute;
  bottom: -64px;
  left: 12px;
  right: 12px;
  background: rgb(255 255 255);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 9px 15px 13px 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  transition: background 0.3s ease;
}

.category-card:hover .card-overlay {
  background: rgba(255 255 255 / 1);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
}

.card-overlay h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
  text-align: center;
}

.card-overlay h3 a {
  color: black;
  font-size: 19px;
  font-weight: 700;
  display: block;
  line-height: 20px;
  margin-bottom: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover .card-overlay h3 a {
  color: #007BFF;
}

.view-more {
  padding: 3px 15px;
  font-weight: 600;
  font-size: 12px;
  color: #632cb3;
  background-color: transparent;
  border: 2px solid #632cb3;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
  width: max-content;
}

.view-more:hover {
  background-color: #007BFF;
  color: #fff;
}


.featured-products {
  background: #fdf7fb;
  padding: 27px 0px;
}

.heading2 h2,
.heading2 h3,
.heading2 h4,
.heading2 h5,
.heading2 h6 {
  font-size: 36px;
  font-family: 'Philosopher', sans-serif !important;
  color: #441787;
  text-align: center;
  text-align: center;
  font-weight: 900;
  margin-bottom: 27px;
  padding: 0;
}

.product-title-link h2, .product-title-link h3, .product-title-link h4, .product-title-link h5, .product-title-link h6 {
  color: #390f76;
  font-size: 18px;
  font-weight: 700;
  display: block;
  line-height: 20px;
  margin-bottom: 4px;
  text-align: center;
  transition: all 0.3s ease;

}

.featured-products {
  margin-top: 100px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.product-image-link {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image-link img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: white;
  display: block;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.product-image-link:hover {
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.product-image-link:hover img {
  transform: scale(1.05);
}

.product-title-link {
  margin-top: 14px;
  font-weight: 600;
  font-size: 1.25rem;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  text-align: center;
  width: 100%;
  display: block;
}

.product-title-link:hover {
  color: #a77b47;
  /* Classy golden accent */
  text-decoration: underline;
}

.price-rating {
  margin-top: 4px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 15px;
  color: #238127;
}

.rating {
  font-size: 14px;
  color: #f5a623;
  user-select: none;
}

.add-to-cart-btn {
  margin-top: 11px;
  padding: 5px 19px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  background-color: #b38b1f;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  width: max-content;
  transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: #8a6735;
  color: white;
}

.new-arrivals {
  margin-top: 74px;
}

.new-arrivals>h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 3px solid #a67c00;
  padding-bottom: 8px;
  max-width: max-content;
}

.new-arrivals-w {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.main-image_new {
  flex: 0 0 460px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgb(166 124 0 / 0.15);
  transition: transform 0.3s ease;
}

.main-image_new img {
  width: 100%;
  max-height: 373px;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.main-image_new:hover img {
  transform: scale(1.05);
}

.products-list_arivel {
  flex: 1;
  min-width: 300px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-card-arivel {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #8080806b;
  box-shadow: 0 4px 14px rgb(0 0 0 / 0.08);
  align-items: center;
  gap: 20px;
  padding: 16px 19px;
  transition: box-shadow 0.3s ease;
}

.product-card-arivel:hover {
  box-shadow: 0 8px 28px rgb(166 124 0 / 0.3);
}

.product-image-arivel img {
  width: 100%;
  height: 225px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card-arivel:hover .product-image-arivel img {
  transform: scale(1.1);
}

.product-title-arivel h2, .product-title-arivel h3, .product-title-arivel h4, .product-title-arivel h5, .product-title-arivel h6 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 20px;
  text-align: right;
  margin-bottom: 3px;
  line-height: 1.2;
  margin-bottom: 3px;
  color: #350d70;
  /* margin-bottom: 0px; */
  text-decoration: none;
}

.product-title-arivel:hover {
  color: #a67c00;
}

.price_arivel {
  font-size: 16px;
  font-weight: 700;
  color: #238127;
  min-width: 100px;
  text-align: right;
  border-bottom: 1px solid #52466459;
  margin-bottom: 13px;
  margin-top: 0px;
  padding-bottom: 6px;
}

.add-arivel {
  background-color: #b38b1f;
  color: #fff;
  padding: 6px 18px;
  /* display: block; */
  border-radius: 8px;
  margin-top: 7px;
  /* border-top: 1px solid grey; */
  font-size: 13px;
  /* float: inline-end; */
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-left: 16px;
}

.add-arivel:hover {
  background-color: #b58512;
  color: white;
}


.main-image_new,
.products-list_arivel {
  flex: 1 1 100%;
  max-width: 100%;
}

.product-card-arivel {
  flex-direction: column;
  align-items: flex-start;
}

.price_arivel {
  min-width: auto;
  text-align: left;
  margin-top: 8px;
}

.add-arivel {
  margin-left: 0;
  margin-top: 12px;
}


.elegant-hero {
  margin-top: 93px;
  margin-bottom: 30px;
  position: relative;
  background: url(../imags/banners/banner12.jpg) center / cover no-repeat;
  height: 51vh;
  display: flex;
  align-items: center;
  background-position: top;
  justify-content: flex-start;
  padding-left: 5%;
  color: #fff;
}

.elegant-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(92 63 55 / 20%);
  z-index: 1;
}

.elegant-content {
  position: relative;
  z-index: 2;
  background: #ffffffc9;
  border-radius: 3px;
  padding: 26px 20px 40px 20px;
  width: 55%;
}

.elegant-title {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 0;
  color: #632cb3;
  font-family: 'Philosopher', sans-serif !important;
}

.elegant-subtitle {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #3c3c3c;
}

.elegant-button {
  padding: 10px 20px;
  background-color: #b38b1f;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.elegant-button:hover {
  background-color: #a67c52;
}



.elegant-footer {
  background: #f9f4f1;
  color: #5a4b42;
  padding-top: 5px;
  border-top: 3px solid #d5a729;
  margin-top: 71px;
}
}

.elegant-footer-body .elegant-footer-section {
  padding: 0 10px;
}

.elegant-footer-logo img {
  max-width: 150px;
  height: auto;
  filter: brightness(0.95);
}

.elegant-footer-contact p {
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 14px;
  color: black;
  font-weight: 600;
  text-align: left;
}

.elegant-footer-logo {
  text-align: left;
}

.elegant-footer-contact i {
  color: #d9a414;
  margin-right: 8px;
}

.elegant-footer-contact a {
  font-size: 14px;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.elegant-footer-contact a:hover {
  color: #bfa288;
}

.elegant-footer-heading {
  font-size: 21px;
  font-weight: 700;
  color: #501c9b;
  margin-bottom: 15px;
  position: relative;
  text-align: left;
}

.elegant-footer-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: #dda60f;
  margin-top: 5px;
}

.elegant-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.elegant-footer-links li {
  margin-bottom: 10px;
  text-align: left;
}

.elegant-footer-links a {
  font-size: 14px;
  color: black;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
  font-weight: 600;
}

.elegant-footer-links a:hover {
  color: #bfa288;
  padding-left: 5px;
}

.elegant-footer-copy {
  background: #632cb3d1;
  color: white;
  font-size: 13px;
  text-align: center;
  padding: 9px 0;
  border-top: 1px solid #e0d5cc;
  font-weight: 600;
}


.trending-now {
  background-color: #f7f5f2;
  padding: 60px 0;
  margin-top: 70px;

}

.trending-now h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #322820;
  margin-bottom: 50px;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.trend-card {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.trend-card:hover {
  transform: translateY(-5px);
}

.trend-info {
  background: rgb(79 59 108 / 66%);
  padding: 15px 20px;
  border-radius: 6px;
  color: white;
  width: 100%;
  text-align: left;
}



.trend_title h2, .trend_title h3, .trend_title h4, .trend_title h5, .trend_title h6 {
  font-family: 'Philosopher', sans-serif !important;
  font-size: 23px;
  margin: 0 0 8px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.6px;
}

.trend_title:hover h3 {
  color: #f4d88d;
}

.trend_p {

  font-size: 0.95rem;
  font-weight: 400;
  color: #f0e8e2;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.trend-info p {
  font-size: 14px;
  color: #f7f4f3f2;
  margin-bottom: 8px;
  font-weight: 500;
}

.trend-info p:last-of-type {
  font-weight: bold;
  font-size: 1.05rem;
  color: #18bd1f;
  margin-bottom: 9px;
}

.trend-btn {
  position: relative;
  padding: 7px 38px 7px 20px;
  /* add left padding for balance */
  background: white;
  color: #632cb3;
  font-weight: 800;
  text-transform: capitalize;

  border-right: none;
  border-bottom: none;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Arrow on the right side */
.trend-btn::after {
  content: "→";
  /* Unicode arrow */
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 16px;
  color: #632cb3;
  transition: color 0.3s ease;
}

.trend-btn:hover {
  background-color: #0d6efd;
  color: white;
}

.trend-btn:hover::after {
  color: white;
}

.trend_p {
  text-transform: none;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #4a2b5f;
  user-select: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "›";
  margin: 0 8px;
  color: #4a2b5f;
  font-weight: 700;
}

.breadcrumb-item a {

  color: #454049;

  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #7b4a99;
  text-decoration: underline;
}

/* Optional: style the last breadcrumb item (current page) */
.breadcrumb-item:last-child a {
     color: #7b4a99;
    cursor: default;
    font-weight: 700;
    pointer-events: none;
    text-decoration: none;
}



.aboutus-section {
  background: linear-gradient(135deg, #fdf6fb 0%, #ffffff 100%);
  padding: 23px 20px;
  text-align: center;
  margin-top: 26px;
}

.aboutus-section .title {
  font-size: 23px;
  color: #4a2b5f;
  font-weight: 700;
  margin-bottom: 9px;
}

.aboutus-section .intro p {
  font-size: 15px;
  color: #555;
  font-weight: 600;
  /* max-width: 800px; */
  margin: 0 auto 40px;
  line-height: 1.7;
}

.aboutus-section .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.aboutus-section .feature {
  flex: 1 1 280px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.aboutus-section .feature:hover {
  transform: translateY(-5px);
}

.aboutus-section .feature h3 {
  font-size: 21px;
  color: #4a2b5f;
  font-weight: 700;
}

.aboutus-section .feature p {
  font-size: 15px;
  font-weight: 500;
  color: #403f3f;
}

.blog_d {
  display: flex;
}

.blog-list {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Sidebar takes 1 part */
.sidebar {
  flex: 1;
  background: linear-gradient(180deg, #c9981691, #a57e1342);
  border-radius: 14px;
  padding: 30px 25px;
  color: #5b3e2b;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: 0 6px 20px rgba(182, 137, 99, 0.2);
}

.blog-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(186, 142, 114, 0.15);
  display: flex;
  padding: 18px 25px;
  gap: 24px;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 30px rgba(186, 142, 114, 0.3);
}

.blog-image {
  flex: 1 0 280px;
}

.blog-image img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: cover;
}

.blog-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-content h2 {
  font-size: 20px;
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #632cb3;
}

.blog-content p {
  font-size: 14px;
  color: #6e5a4e;
  margin: 0 0 14px 0;
  line-height: 1.5;
  font-style: italic;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-date {
  font-size: 14px;
  color: #e7b221;
  font-weight: 500;
}

.read-more-btn {
  background: none;
  color: #632cb3;
  padding: 4px 14px;
  border: 1px solid #c29d38;
  font-size: 13px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  /* font-family: 'Arial', sans-serif; */
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(179, 122, 86, 0.4);
}

.read-more-btn:hover {
  background: #8c5c3d;
  box-shadow: 0 6px 18px rgba(140, 92, 61, 0.6);
}

/* Right side search and links */
.sidebar {
  flex: 1;
  background: linear-gradient(180deg, #c3920ea3, #9f7d206b);
  border-radius: 14px;
  padding: 30px 25px;
  color: #5b3e2b;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: 0 6px 20px rgba(182, 137, 99, 0.2);
}

.sidebar h3 {
  margin: 0 0 0px 0;
  font-weight: 700;
  border-bottom: 2px solid #c49b7f;
  padding-bottom: 10px;
  font-size: 21px;
}

.sidebar input[type="search"] {
  border-radius: 12px;
  border: 1.5px solid #b37a56;
  padding: 10px 13px;
  font-size: 13px;
  outline: none;
  width: 100%;
  color: #5b3e2b;

  transition: border-color 0.3s ease;
}

.sidebar input[type="search"]:focus {
  border-color: #8c5c3d;
}

.blog-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-links a {
  color: #2d0439cf;
  text-decoration: none;
  border-left: 4px solid #bd8f13d1;
  padding-left: 14px;
  font-size: 15px;
  font-weight: 600;

  transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-links a:hover {
  color: #a36c4f;
  border-left-color: #8c5c3d;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }

  .sidebar {
    flex: none;
    width: 100%;
    padding: 20px 18px;
  }
}






.contactus_section {
  background: #632cb308;
  padding: 28px 0;
  color: #5a4637;
  margin-top: 36px;

}


.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(166, 124, 82, 0.1);
  transition: all 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 12px 30px rgba(166, 124, 82, 0.2);
}

.contact-form .form-control {
  border-radius: 8px;
  border: 1px solid #d6a167;
  margin-bottom: 18px;
  font-size: 13px;
  padding: 10px 12px;
  background: #fff;
  color: #5a4637;
  transition: border-color 0.3s;
}

.contact-form .form-control:focus {
  border-color: #a67c52;
  outline: none;
  box-shadow: none;
}

.btn-send {
  background: #632cb3;
  color: white;
  border: none;
  padding: 9px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
  box-shadow: 0 4px 10px rgba(166, 124, 82, 0.3);
}

.btn-send:hover {
  background: #8b6842;
}

.contact-formarea {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(166, 124, 82, 0.1);
}

.contact-subheader b {
  font-size: 17px;
  color: #c29d38;
}

.contact-subheader span,
.contact-subheader a {
  color: #504a45;
  font-size: 14px;
  display: inline-block;
  margin-top: 4px;
  text-decoration: none;
}

.contact-subheader a:hover {
  color: #a67c52;
}

@media (max-width: 768px) {
  .contactus_section {
    padding: 40px 20px;
  }

  .contact-form,
  .contact-formarea {
    padding: 25px;
  }
}


.login-section {

  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.login-card label {
  display: block;
  margin-bottom: 6px;
  color: black;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
}

.login-card {
  background: #fff;
  padding: 22px 30px 34px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(166, 124, 82, 0.15);
  max-width: 400px;
  width: 100%;
  text-align: center;
  transition: 0.3s ease;
}

.login-card:hover {
  box-shadow: 0 12px 30px rgba(166, 124, 82, 0.3);
}

.login-card h2 {
  color: #a67c52;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 28px;
  position: relative;
}

.login-card h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #d6a167;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.login-card .form-control {
  border: 1px solid #d6a167;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 18px;
  font-size: 13px;
  color: #5a4637;
  background: #fff;
  transition: border-color 0.3s;
}

.login-card .form-control:focus {
  border-color: #a67c52;
  outline: none;
  box-shadow: none;
}

.btn-login {
  background: #632cb3;
  color: white;
  border: none;
  padding: 8px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
  width: 100%;
  box-shadow: 0 4px 10px rgba(166, 124, 82, 0.3);
}

.btn-login:hover {
  background: #8b6842;
}

.login-card .link {
  display: block;
  margin-top: 15px;
  color: #a67c52;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 600;
}

.login-card .link:hover {
  color: #8b6842;
}




.signup-section {
  background: #632cb308;
  padding: 41px 0;
  display: flex;
  justify-content: center;
  align-items: center;

}

.signup-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(166, 124, 82, 0.15);
  max-width: 700px;
  width: 100%;
  transition: 0.3s ease;
}

.signup-card:hover {
  box-shadow: 0 12px 30px rgba(166, 124, 82, 0.3);
}

.signup-card h2 {
  color: #a67c52;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
  position: relative;
}

.signup-card h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #d6a167;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.signup-form .form-group {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
}

.signup-form .form-group-full {
  flex: 0 0 100%;
}

.signup-form label {
  margin-bottom: 6px;
  color: black;
  font-weight: 600;
  font-size: 14px;
}

.signup-form input {
  border: 1px solid #c29d3896;
  border-radius: 8px;
  padding: 9px 15px;
  font-size: 15px;
  color: #5a4637;
  background: #fff;
  transition: border-color 0.3s;
}

.signup-form input:focus {
  border-color: #a67c52;
  outline: none;
  box-shadow: none;
}

.btn-signup {
  background: #632cb3;
  color: white;
  border: none;
  padding: 6px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
  margin: 20px auto 0;
  display: block;
  box-shadow: 0 4px 10px rgba(166, 124, 82, 0.3);
}

.btn-signup:hover {
  background: #8b6842;
}

@media (max-width: 576px) {
  .signup-form .form-group {
    flex: 0 0 100%;
  }
}


.category-section {

  padding: 60px 0;

}

.category-title {
  text-align: center;
  color: #a67c52;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Filter Sidebar Container */
.filter-box {
  padding: 11px 17px;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(166, 124, 82, 0.1);
  /* border: 1px solid #d6a167; */
  max-width: 320px;
  font-weight: 500;
}

/* Section Headings */
.filter-title {
  font-size: 20px;
  color: #ab8318;
  margin-bottom: 25px;
  display: inline;
  border-bottom: 2px solid #632cb3;
  padding-bottom: 4px;
  font-weight: 700;
}

/* Common List Styles */
ul.filter-list {
  list-style: none;
  padding-left: 0px;

  padding-bottom: 8px;
 
}

ul.filter-list li {
  margin-bottom: 8px;
}

/* Categories (Links) */
.category-filter li a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 15px;
  padding-left: 10px;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.category-filter li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: transparent;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.category-filter li a:hover,
.category-filter li a.active {
  color: #632cb3;
  font-weight: 700;
  font-size: 19px;
}

.category-filter li a:hover::before,
.category-filter li a.active::before {
  background: #a67c52;
}

/* Checkbox Filters (Material, Style) */
.checkbox-filter label {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: black;
  user-select: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.checkbox-filter input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkbox-filter label::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 2px solid #632cb3;
  border-radius: 4px;
  background: white;
  transition: background 0.3s, border-color 0.3s;
}

.checkbox-filter input[type="checkbox"]:checked+label::before {
  background: #a67c52;
  border-color: #8b6842;
}

.checkbox-filter label:hover {
  color: #a67c52;
}

/* Price Range Radios */
.price-filter {
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #632cb359;
}

.price-filter h4 {
  font-size: 19px;
  font-weight: 700;
  color: #876200;
  margin-bottom: 16px;
}

.price-options {
  list-style: none;
  padding: 0;
  margin: 0 0 7px 0;
}

.price-options li {
  margin-bottom: 9px;
}

.price-options label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 14px;
  color: black;
  font-weight: 600;
  user-select: none;
  display: inline-block;
  transition: color 0.3s ease;
}

.price-options input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.price-options label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 2px solid #a67c52;
  border-radius: 50%;
  background: white;
  transition: background 0.3s, border-color 0.3s;
}

.price-options input[type="radio"]:checked+label::before {
  background: #a67c52;
  border-color: #8b6842;
}

.price-options label:hover {
  color: #a67c52;
}

/* Responsive */
@media (max-width: 991px) {
  .filter-box {
    max-width: 100%;
    margin-bottom: 30px;
    padding: 20px 15px;
  }
}

/* Product Card Styles */
.productcard2 {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgb(108 72 36 / 20%);
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.productcard2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(166, 124, 82, 0.2);
}

.productcard2 a img {
  width: 100%;
  height: 225px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
}

.productcard2 h2, .productcard2 h3, .productcard2 h4, .productcard2 h5, .productcard2 h6{
  font-size: 17px;
  color: #632cb3;
  font-weight: 700;
  margin-bottom: 6px;
}

.productcard2 h5 a {
  color: #5a4637;
  text-decoration: none;
  transition: color 0.3s;
}

.productcard2 h5 a:hover {
  color: #a67c52;
}

.product-price {
  font-size: 15px;
  color: #238127;
  font-weight: bold;
  margin-bottom: 2px;
}

.rating {
  color: #f0ad4e;
  margin-bottom: 10px;
}

.add-cart-btn {
  background: #d3a526;
  color: white;
  border: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 13px;
  /* border-radius: 30px; */
  font-weight: 700;
  transition: background 0.3s ease;
}

.add-cart-btn:hover {
  background: #8b6842;
}

.product-pric {
  margin: 5px 0;
  display: block;
  color: #227b26;
  font-size: 16px;
  font-weight: 700;
}

.cat_inner {
  width: 33.33%;
  padding: 0px 5px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.sticky-gallery {
  position: sticky;
  top: 100px;
  padding: 24px 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Product gallery main image */
.product-gallery .main-image {
  margin-bottom: 15px;
  border: 1px solid #8080805c;
  display: flex;
  justify-content: center;
}

.product-gallery .main-image img {
  width: 400px;
  height: 400px;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
}

/* Slick slider thumbnails */
.slider-nav .slick-slide {
  padding: 0 6px;
}

.slider-nav img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.slider-nav img:hover,
.slider-nav .slick-current img {
  border-color: #8b78594f;
  padding: 10px;
}

/* Product details */
.product-details-content {
  padding-left: 20px;
}

.product-title a {
  font-size: 27px;
  font-weight: 700;
  color: #6d3ab8;
  text-decoration: none;
}

.product-title a:hover {
  text-decoration: underline;
}

.product-title {
  margin-bottom: 0px;
}

.product-price {
  font-size: 22px;
  font-weight: 700;
  color: #237f27;
  margin: 5px 0;
  display: block;
}

.product-rating {
  color: #f5a623;
  font-size: 15px;
  font-weight: 700;
}

.product-description {
  margin: 10px 0;
  font-size: 1rem;
  color: black;
  font-weight: 600;
  line-height: 1.5;
}

.product-features {
  margin: 15px 0;
  padding-left: 20px;
  color: #555;
  font-size: 1rem;
}

.product-features li {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: black;
}

.desc_title h1 {
  font-size: 35px;
  font-family: 'Philosopher', sans-serif !important;
  color: #cf9909;
  font-weight: 800;
}

.buy-now {
  background-color: #7849bd;
  color: white;
  border: none;
  padding: 5px 16px;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  margin-left: 20px;
  transition: background-color 0.3s ease;
}

.buy-now:hover {
  background-color: #b37f00;
}

/* Specifications */
.specification-section {
  margin-top: 24px;
}

.specification-section .section-title {
  font-weight: 800;
  font-size: 22px;
  color: #d48806;
  border-bottom: 2px solid #632cb399;
  padding-bottom: 5px;
  margin-bottom: 15px;
  display: inline-block;
}

.specification-section ul {
  padding-left: 20px;
  color: #444;
  font-size: 1rem;
}

.specification-section ul li {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* Reviews Wrapper */
.reviews-wrapper {

  gap: 12px;

  margin: 40px 0;
}

/* Reviews Section */
.reviews-section {
  flex: 1 1 60%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

}

.reviews-section .section-title {
  font-weight: 800;
  font-size: 21px;
  color: #d48806;
  border-bottom: 2px solid #632cb399;
  padding-bottom: 6px;
  margin-bottom: 24px;
  display: inline-block;
}

.average-rating {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}

.stars-large {
  font-size: 18px;
  color: #f5a623;
  font-weight: 600;
}

.rating-score {
  font-size: 16px;
  font-weight: 700;
  color: #632cb3;
}

.rating-count {
  font-size: 14px;
  color: black;
  font-weight: 500;
}

.reviews-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 12px;
}

.review-item {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.review-header {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.review-stars {
  color: #f5a623;
  font-weight: 600;
  font-size: 13px;
  min-width: 70px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 14px;
  color: #3a0d7c;
}

.review-date {
  font-size: 13px;
  color: #999;
  font-style: italic;
  font-weight: 500;
}

.review-text {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* Review Form Section */
.review-form-section {
  flex: 1 1 35%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.review-form-section .form-title {
  font-weight: 700;
  font-size: 19px;
  color: #d48806;
  margin-bottom: 20px;
  border-bottom: 2px solid #632cb399;
  padding-bottom: 6px;
  display: inline-block;
}

.review-form .form-group {
  margin-bottom: 13px;
}

.review-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 14px;
  color: black !important;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  padding: 6px 10px;
  border: 1.5px solid #bfa14f;
  border-radius: 5px;
  font-size: 14px;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
  outline: none;
  border-color: #8a6d1b;
  box-shadow: 0 0 5px rgba(191, 161, 79, 0.5);
}

.submit-review-btn {
  background: #632cb3;
  color: #fff;
  border: none;
  padding: 7px 25px;
  font-size: 15px;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-review-btn:hover {
  background: #a36e05;
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-wrapper {
    flex-direction: column;
  }
}


/* Related products */
.related-products {
  margin-top: 60px;
}

.related-title {
  font-weight: 800;
  font-size: 22px;
  color: #d48806;
  border-bottom: 2px solid #632cb399;
  padding-bottom: 6px;
  margin-bottom: 20px;
  display: inline-block;
}

.related-items {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.related-item {
  border: 1px solid #695e787a;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.related-item:hover {
  box-shadow: 0 6px 15px rgb(212 142 6 / 0.3);
}

.related-item img {
  max-width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 10px;
}

.rel-title h2,
.rel-title h3,
.rel-title h4,
.rel-title h5,
.rel-title h6 {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
  color: #632cb3;
  margin-top: 22px;
}

.rel-price {
  font-weight: 700;
  color: #237f27;
  margin-bottom: 8px;
}

.rel-rating {
  color: #f5a623;
  margin-bottom: 12px;
  font-size: 1rem;
}

.rel-cart {
  background-color: #d48806;
  color: white;
  border: none;
  padding: 4px 15px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rel-cart:hover {
  background-color: #b37f00;
}

.qa_main {
  display: flex;
  align-items: center;
}

.quantity-box {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.quantity-box label {
  font-weight: 700;
  font-size: 1rem;
  color: #333;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #dcdcdc;
  border-radius: 30px;
  overflow: hidden;
}

.qty-btn {
  background-color: #632cb31c;
  border: none;
  width: 33px;
  height: 31px;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: bold;
  color: #632cb3;
  transition: background-color 0.3s ease;
}

.qty-btn:hover {
  background-color: #d48806;
  color: #fff;
}

.quantity-controls input[type="number"] {
  width: 60px;
  height: 31px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  background: #fff;
  outline: none;
}

.related_m {
  width: 25%;
  padding: 0px 6px;
  margin-bottom: 10px;
}



.account-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.custom-account-dashboard {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.1);
  overflow: hidden;
}

.custom-nav-pills {
  flex: 0 0 300px;
  /* increased from 240px to 300px */
  background-color: #632cb3;
  display: flex;
  flex-direction: column;
  padding: 30px 20px;
  gap: 16px;
  border-radius: 12px 0 0 12px;
}


.custom-nav-link {
  background: transparent !important;
  color: white !important;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 15px;
  ;
  border: 1px solid white !important;
  text-align: left;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.custom-nav-link:hover {
  background-color: #3399ff !important;
  color: #fff !important;
}

.custom-nav-link.active {
  background-color: #fff !important;
  color: #632cb3 !important;
  box-shadow: 0 0 10px rgb(0 123 255 / 0.3);
  font-weight: 700;
  font-size: 16px;
}


.custom-tab-content {
  flex-grow: 1;
  padding: 20px 17px;
}

.custom-form-header h1 {
  margin-bottom: 16px;
  font-weight: 700;
  color: #632cb3;
  font-size: 23px;
  border-bottom: 2px solid #c29d3875;
  padding-bottom: 8px;
}


.custom-form-group {
  margin-bottom: 21px;
}

.custom-form-label {
  font-weight: 600;
  color: black;
  margin-bottom: 3px;
  display: block;
  font-size: 15px;
}

.custom-form-control {
  border-radius: 8px;
  border: 1.5px solid #ccc;
  padding: 8px 14px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.custom-form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgb(0 123 255 / 0.3);
  outline: none;
}

/* Password toggle icon */
.custom-password-input {
  position: relative;
}

.custom-toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  font-size: 1.15rem;
  user-select: none;
}

.custom-toggle-password:hover {
  color: #007bff;
}

/* Buttons */
.custom-btn {
  background: #c29d38;
  border: none;
  padding: 7px 14px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-btn:hover {
  background-color: #632cb3;
  color: white;
}

.custom-form-header h3 {
  margin-bottom: 14px;
  font-weight: 700;
  color: #632cb3;
  font-size: 22px;
  border-bottom: 2px solid #c29d3875;
  padding-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .custom-account-dashboard {
    flex-direction: column;
  }

  .custom-nav-pills {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-radius: 12px 12px 0 0;
    gap: 8px;
  }

  .custom-nav-link {
    flex: 1 0 auto;
    text-align: center;
    border-radius: 6px;
    padding: 10px 8px;
    font-size: 15px;
  }

  .custom-tab-content {
    padding: 20px 15px;
  }
}




.order-summary-container {

  padding: 17px 20px;
  margin: 32px auto;
  max-width: 1000px;
  box-shadow: 0px 1px 5px #c5cfdb;
}

/* Order Header Section */
.order-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #bcc2cb;
  margin-bottom: 12px;
  text-align: left;
}

.order-id-section h2 {
  font-size: 17.5px;
  color: #57118c;
  font-weight: 700;
  margin: 0;
}

.order-id-section .order-date {
  font-size: 13px;
  padding-top: 3px;
  color: #666;
}

.track-btn {
  background-color: #fe8f00e3;
  font-size: 13px;
  color: white;
  padding: 6px 10px;
  font-weight: 800;
  text-decoration: none;
  margin-right: 36px;
  border-radius: 0px;
  transition: background-color 0.3s ease;
}

.track-btn:hover {
  background-color: #3682b7;
  color: white;
}

/* Product Rows */
.order-product-row {
  display: grid;
  grid-template-columns: 0fr 2fr 1fr 1fr 1fr;
  gap: 12px;
  padding: 13px 0;
}


.order-title h2,
.order-title h3,
.order-title h4,
.order-title h5,
.order-title h6 {
  font-size: 16.5px;
  color: #74409b;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 5px;
  display: block;
}

.order-title {
  text-decoration: none;
}

.product-image_order img {
  height: 98px;
  width: 98px;
  padding: 10px;
  object-fit: contain;
  border: 1px solid #8080806e;
}

.product-quantity {
  color: #333;
  margin-bottom: 5px;
  font-size: 12px;
}

.product-price {
  color: #227b26;
  font-size: 20px;
  font-weight: 700;
}

.order-status-section h4,
.order-total-section h4 {
  font-size: 16px;
  color: #3e0e62;
  margin-bottom: 5px;
  font-weight: 600;
}

.order-status-section p,
.order-total-section p {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  margin-bottom: 0px;
}

.order-review-section .review-btn {
  border: 1px solid #74409b;
  font-size: 13px;
  color: #033252;
  font-weight: 600;
  padding: 4px 15px;
  text-decoration: none;
  /* border-radius: 5px; */
  transition: background-color 0.3s ease;
}


.order-review-section .review-btn:hover {
  background-color: #3682b7;
  color: #ffff;
}

/* Responsive Design */
@media (min-width:470px) and (max-width: 768px) {
  .order-product-row {
    grid-template-columns: 1fr 3fr 1fr 1fr;
  }
}


@media (min-width:320px) and (max-width:469px) {

  .order-product-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .order-status-section,
  .order-total-section,
  .order-review-section {
    text-align: center;
  }

  .order-header {
    display: block;
  }

  .track-btn {
    margin-bottom: 13px !important;
    display: inline-block;
  }
}

@media (min-width:991px) and (max-width:1200px) {

  .oredr-main {
    margin-top: 57px !important;
  }
}

@media (min-width:768px) and (max-width:990px) {}

@media (min-width:320px) and (max-width:768px) {
  .order-review-section .review-btn {
    padding: 3px 5px !important;
    font-size: 10.2px !important;
  }
}




.section-space {
  padding: 21px 0;

  color: #333;
}

.billing-title,
.order-title {
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 20px;
  color: #632cb3;
  border-bottom: 2px solid #dfa8124f;
  padding-bottom: 8px;
}

.billing-info-wrap,
.different-address,
.your-order-wrap {
  background: #fff;
  padding: 12px 19px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgb(191 161 79 / 0.15);
  margin-bottom: 8px;
  border: 1px solid #f5e4b6;
}

.check-address p {
  color: #999;
  font-style: italic;
  margin-bottom: 20px;
}

.shipcheck {
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  cursor: pointer;
  color: #bfa14f;
  /* gold tone */
  user-select: none;
}

.checkout-toggle {
  display: none;
}

.different-address {
  transition: max-height 0.5s ease;
  overflow: hidden;
  max-height: 1000px;
  /* visible when checked */
}

.checkout-toggle:not(:checked)~.different-address {
  max-height: 0;
  padding: 0;
  margin: 0;
}

.form-control {
  border: 1.5px solid #bfa14f;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  color: black;
  font-weight: 600;
  transition: border-color 0.3s ease;
}

.small {
  font-size: 14px;
  color: black;
  font-weight: 600;
}

.form-control:focus {
  border-color: #8a6d1b;
  box-shadow: 0 0 6px rgb(191 161 79 / 0.5);
  outline: none;
}

.btn-update,
.place_order {
  background-color: #c29d38;
  border: none;
  padding: 8px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  font-size: 15px;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
  text-align: center;
}

.btn-update:hover,
.place_order:hover {
  background-color: #8a6d1b;
}

.order-header {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 15px;
  color: #222;
}


.your-order-product ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.your-order-product ul li {
  font-size: 1rem;
  font-weight: 500;
  color: #555;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #cfcbcb;
}

.product-name {
  font-size: 15px;
  color: black;
  font-weight: 600;
}

.your-order-subtotal,
.your-order-total {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 15px;
}

.subtotal-label,
.total-label {
  flex: 1;
  color: #632cb3;
  font-size: 18px;
}

.subtotal-amount,
.total-amount {
  flex: 1;
  text-align: right;
  font-size: 16px;
  color: #632cb3;
}

.payment-method {
  margin-bottom: 30px;
}

.payment-mode {
  font-weight: 600;
  color: #bfa14f;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  margin-left: 8px;
}

.payment-box {
  margin-top: 10px;
  padding-left: 26px;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 768px) {

  .billing-title,
  .order-title {
    padding: 15px 0;
  }

  .btn-update,
  .place_order {
    font-size: 1rem;
    padding: 7px;
  }

  .order-header,
  .your-order-subtotal,
  .your-order-total {
    flex-direction: column;
    align-items: flex-start;
  }

  .subtotal-amount,
  .total-amount {
    text-align: left;
    margin-top: 5px;
  }

  .shipcheck {
    margin-bottom: 7px !important;
  }
}




/* order tracking */
.order_number {
  font-size: 18px;
  font-weight: 800;
}


.tracking-wrapper {
  width: 90%;
  margin: 38px auto;
  padding: 0;
}

.tracking-page {
  margin-top: 40px;
}

.tracking * {
  padding: 0;
  margin: 0;
}

.tracking {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.tracking .empty-bar {
  background: #dddddd;
  position: absolute;
  width: 100%;
  height: 20%;
  top: 40%;
}

.tracking .color-bar {
  background: #0082d2;
  position: absolute;
  height: 20%;
  top: 40%;
  /* margin-left: 5%; */
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.tracking ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.tracking ul>li {
  background: #ddd;
  text-align: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  z-index: 1;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  display: inline-block;
  position: relative;
  width: 31px;
  height: 31px;
}


.tracking ul>li .el {
  position: relative;
  margin-top: 100%;
}

.tracking ul>li .el i {
  position: absolute;
  bottom: 2px;
  left: 9px;
  margin-bottom: 22%;
  color: #fff;
  font-size: 13px;
}

.tracking ul>li .txt {
  color: #999;
  position: absolute;
  top: 141%;
  left: -59px;
  text-align: center;
  width: 150px !important;
  font-size: 0.75rem;
}

.bullet-2 {
  background: #74409b !important;
}

.tracking .progress-0 .color-bar {
  width: 00%;
}

.order_pointer span {
  color: black;
  font-size: 15px;
  font-weight: 800;
}

.tracking .progress-1 .color-bar {
  width: 15%;
  background-color: red !important;
}

.tracking .progress-2 .color-bar {
  width: 25%;
}

.tracking .progress-3 .color-bar {
  width: 35%;
}

.tracking .progress-4 .color-bar {
  width: 50%;
}

.tracking .progress-5 .color-bar {
  width: 75%;
}

.card-tracking {
  border: 1px solid #dddddd;
  padding: 30px 27px;
}

.tracking .progress-6 .color-bar {
  width: 90%;
}

.tracking .progress-7 .color-bar {
  width: 100%;
}

.tracking .progress-0>ul>li.bullet-1,
.tracking .progress-1>ul>li.bullet-1,
.tracking .progress-2>ul>li.bullet-1,
.tracking .progress-3>ul>li.bullet-1,
.tracking .progress-4>ul>li.bullet-1,
.tracking .progress-5>ul>li.bullet-1,
.tracking .progress-6>ul>li.bullet-1,
.tracking .progress-7>ul>li.bullet-1 {
  background: #672d93;
}

.tracking .progress-2>ul>li.bullet-2,
.tracking .progress-3>ul>li.bullet-2,
.tracking .progress-4>ul>li.bullet-2,
.tracking .progress-5>ul>li.bullet-2,
.tracking .progress-6>ul>li.bullet-2,
.tracking .progress-7>ul>li.bullet-2 {
  background: #672d93;
}

.tracking .progress-4>ul>li.bullet-3,
.tracking .progress-5>ul>li.bullet-3,
.tracking .progress-6>ul>li.bullet-3,
.tracking .progress-7>ul>li.bullet-3 {
  background: #672d93;
}

.tracking .progress-6>ul>li.bullet-4,
.tracking .progress-7>ul>li.bullet-4 {
  background: #046272;
}

.tracking .progress-7>ul>li.bullet-4 {
  background: #046272;
}

.tracking .progress-1>ul>li.bullet-1 .el i,
.tracking .progress-2>ul>li.bullet-1 .el i,
.tracking .progress-3>ul>li.bullet-1 .el i,
.tracking .progress-4>ul>li.bullet-1 .el i,
.tracking .progress-5>ul>li.bullet-1 .el i,
.tracking .progress-6>ul>li.bullet-1 .el i,
.tracking .progress-7>ul>li.bullet-1 .el i {
  display: block;
}

.tracking .progress-3>ul>li.bullet-2 .el i,
.tracking .progress-4>ul>li.bullet-2 .el i,
.tracking .progress-5>ul>li.bullet-2 .el i,
.tracking .progress-6>ul>li.bullet-2 .el i,
.tracking .progress-7>ul>li.bullet-2 .el i {
  display: block;
}

.tracking .progress-5>ul>li.bullet-3 .el i,
.tracking .progress-6>ul>li.bullet-3 .el i,
.tracking .progress-7>ul>li.bullet-3 .el i {
  display: block;
}

.tracking .progress-7>ul>li.bullet-4 .el i {
  display: block;
}

.tracking .progress-1>ul>li.bullet-1 .txt,
.tracking .progress-2>ul>li.bullet-1 .txt,
.tracking .progress-3>ul>li.bullet-1 .txt,
.tracking .progress-4>ul>li.bullet-1 .txt,
.tracking .progress-5>ul>li.bullet-1 .txt,
.tracking .progress-6>ul>li.bullet-1 .txt,
.tracking .progress-7>ul>li.bullet-1 .txt {
  color: #074c81;

}

.tracking .progress-3>ul>li.bullet-2 .txt,
.tracking .progress-4>ul>li.bullet-2 .txt,
.tracking .progress-5>ul>li.bullet-2 .txt,
.tracking .progress-6>ul>li.bullet-2 .txt,
.tracking .progress-7>ul>li.bullet-2 .txt {
  color: #074c81;
}

.tracking .progress-5>ul>li.bullet-3 .txt,
.tracking .progress-6>ul>li.bullet-3 .txt,
.tracking .progress-7>ul>li.bullet-3 .txt {
  color: #074c81;
}

.tracking .progress-7>ul>li.bullet-4 .txt {
  color: #074c81;
}

.order_pointer.mt-2 {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 16px;

  font-weight: 500;
  background: #74409b1c;
  padding: 8px 15px;
}

.tracking ul>li .el i {
  position: absolute;
  bottom: 2px;
  left: 9px;
  margin-bottom: 22%;
  color: #fff;
  font-size: 13px;
  margin-bottom: 3px !important;
}

span.pf_text {
  color: #672d93;
  font-weight: 800;
  font-size: 17px;
}


.order_number {
  font-size: 16px;
  font-weight: 800;
}



.cart-heading {
  display: block;
  text-align: center;
  margin: 30px 0 20px;
}

.cart-title {
  font-weight: 800;
  font-size: 24px;
  color: #a66d1f;
  border-bottom: 2px solid #a66d1f;
  display: inline-block;
  padding-bottom: 5px;
}

.cart-container {
  width: 50%;
  padding: 0px 7px;
  margin-bottom: 14px;
}

.cart-card {
  display: flex;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.cart-image-section {
  display: flex;
  justify-content: center;
  align-items: center;

}

.cart-product-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  /* height: auto; */
  display: block;
  margin-left: 10px;
}

.cart-details-section {
  flex: 1;
  padding: 15px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}
.cart-product-title{
  text-decoration: none;
}
.cart-product-title h2, .cart-product-title h3, .cart-product-title h4, .cart-product-title h5, .cart-product-title h6 {
  font-weight: 700;
  font-size: 16px;
  color: #3a0d7c;
  margin-bottom:0px;
}

.cart-delete i {
  color: #c00;
  font-size: 11px;
  cursor: pointer;
}

.cart-specifications p {
  margin: 0;
  font-size: 13px;
  color: #555;
}

.cart-rating-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.cart-price {
  font-weight: 700;
  color: #0e8713;
  font-size: 15px;
}

.cart-quantity {
  display: flex;
  align-items: center;
}

.quantity-btn {
  background: #d48806c7;
  color: #fff;
  border: none;
  width: 24px;
  height: 24px;
  font-weight: bold;
  border-radius: 4px;
}

.quantity-input1 {
  width: 40px;
  text-align: center;
  margin: 0 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 25px;
}

/* Cart Totals */
.subtotals-cart {
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.sub-cart {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-hea {
  font-weight: 700;
  font-size: 18px;
  color: #3a0d7c;
  border-bottom: 2px solid #632cb399;
  padding-bottom: 6px;
  margin-bottom: 15px;
}

.cart-s,
.cart-pi {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 500;
}

.btn-cart-totals {
  margin-top: 20px;
}

.tp-cart-checkout-btn {
  background: #a66d1f;
  color: #fff;
  display: block;
  text-align: center;
  font-size: 14px;
  padding: 8px;
  border-radius: 5px;
  font-weight: 700;
  text-decoration: none;
}

.tp-cart-checkout-btn:hover {
  background: #855416;
  color: white;
}


.jewel-collection-section {
  background: #fff;

  border-radius: 10px;
  margin-top: 96px;
}

.jewel-collection-header {
  text-align: center;
  margin-bottom: 20px;
}

.jewel-collection-title {
  font-size: 22px;
  font-weight: 800;
  color: #3a0d7c;
  margin-bottom: 5px;
}

.jewel-collection-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
}

.jewel-view-more {
  color: #d48806;
  font-weight: 700;
  display: flex;
  text-decoration: underline;
  transition: 0.3s;
  margin-top: 28px;
  justify-content: center;
}

.jewel-view-more:hover {
  color: #3a0d7c;
}

.jewel-product-box {
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border: 1px solid #e0e0e0;
  padding: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  transition: 0.3s;
}

.jewel-product-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

.jewel-product-box img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 10px;
}

.jewel-product-box h2, .jewel-product-box h3, .jewel-product-box h4, .jewel-product-box h5, .jewel-product-box h6 {
  font-size: 16px;
  color: #3a0d7c;
  font-weight: 700;
  margin-bottom: 1px;
}

.jewel-price {
  font-weight: 700;
  color: #238127;
  font-size: 15px;
}

.jewel-rating {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 8px;
}

.jewel-cart-btn {
  background: #3a0d7c;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 5px 12px;
  font-size: 14px;
}

.jewl_box {
  width: 20%;
  padding: 0px 5px;
  margin-bottom: 12px;
}

.side-nav-toggle {
  display: none
}

@media(min-width:1200px) and (max-width:1400px) {
  .main-nav {
    gap: 33px !important;
    margin: 0;
    padding: 10px 0;
  }

  .main-nav>li>a {
    font-size: 14.7px !important;
  }

}

@media (max-width: 1200px) {
  #account_wraper {
    display: block !important;
  }
.banner{
  display:none !important;
}
.categories_section{
  margin-top:22px !important;
  padding-top:10px !important;
}

  .account-dropdown-wrapper {
    display: none;
  }

  .product-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
    align-items: center;
    cursor: pointer;
    height: 100% !important;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: unset;
    row-gap: 27px !important;
    column-gap: 15px !important;
  }

  .price-rating {
    align-items: baseline !important;
  }

  .main-nav-bar {
    display: none !important;
  }

  .side-nav-toggle {
    display: block !important;
  }

  .login-card {
    padding: 7px 20px 34px 20px !important;

  }

  .login-section {
    margin-top: 32px !important;
  }

  .top-header-c {
    padding: 7px 20px !important;
  }

  .account_text {
    margin-left: 0px !important;
    font-weight: 600;
    font-size: 16px !important;
    color: #220b45 !important
  }

  .main-image_new {
    display: none !important;
  }

  .elegant-hero {
    display: none !important;
  }

  .account-dropdown li {
    padding: 0px 10px !important;
  }

  .account-dropdown {
    position: absolute;
    left: 15px !important;
    top: 83% !important;
  }
}


@media (max-width:991px) {
  .signup-section {
    background: none !important;
    padding: 0px !important;
    margin-top: 34px !important;
  }

  .main-image_new {
    display: none;
  }

  .signup-card {
    padding: 22px 30px !important;
  }

  .cart-card {
    display: block !important;
  }

  .cart-product-image {
    width: 100% !important;
    height: auto !important;
    margin-left: 0px !important;
  }

  .desc_title h1 {
    margin-top: 32px !important;
  }

  reviews-wrapper {
    margin: 22px 0 !important;
  }

  .reviews-section {
    padding: 20px 15px !important;
  }

  .review-form-section {
    margin-top: 16px !important;
  }

  .product-details-content {
    padding-left: 3px !important;
  }

}

@media(min-width:991px) and (max-width:1200px) {
  .categories-wrapper {

    width: 33.33% !important;
  }
.jewel-category{
  width:25% !important;
}
  .product-card-arivel {
    width: 50%;
  }

  .reviews-wrapper {
    margin: 26px 0 !important;
  }

  .card-overlay {
    bottom: -29px !important;
  }

  .jewl_box {

    width: 25% !important;
  }

  .cart {
    position: absolute !important;
    color: #632cb3;
    right: 82px !important;
    top: 14px !important;
  }

  .search-bar {
    flex: none !important;
    width: 461px !important;
    position: relative;

  }

  .related_m {
    width: 33.33% !important;
  }

  .related-item {
    height: 100%;
  }
}

@media(min-width:768px) and (max-width:990px) {
  .cart {
    position: absolute !important;
    color: #632cb3;
    right: 82px !important;
    top: 14px !important;
  }
.jewel-category{
  width:33.33% !important;
}
  .product-card-arivel {
    width: 50%;
  }

  .logo {

    font-size: 18px !important;
  }

  .jewl_box {

    width: 33.33% !important;
  }

  .related_m {
    width: 50% !important;
  }

  .product-price {
    font-size: 15px !important;
  }

  .product-name {
    font-size: 14px !important;
  }

  .search-bar {
    flex: 1;
    max-width: 360px !important;
  }

  .categories-wrapper {
    width: 50% !important;
  }

  .card-image img {
    width: 100%;
    height: auto !important;
  }

  .search-bar {
    flex: 1;
    max-width: 392px;
    position: relative;
  }

}

@media(min-width:571px) and (max-width:767px) {
  .categories-wrapper {

    width: 50% !important;
  }

  .related_m {
    width: 50% !important;
  }

  .card-image img {
    width: 100%;
    height: auto !important;
  }

  .product-details-content {
    padding-left: 8px !important;
  }

  .jewl_box {

    width: 50% !important;
  }

  .product-card-arivel {
    width: 50% !important;
  }

  .product-title-arivel h2,
  .product-title-arivel h3,
  .product-title-arivel h4,
  .product-title-arivel h5,
  .product-title-arivel h6 {
    font-size: 16px !important;
  }
}

@media(min-width:300px) and (max-width:570px) {
  .categories-wrapper {

    width: 100% !important;
  }

  .product-card-arivel {
    width: 100% !important;
  }

  .product-title-arivel h2,
  .product-title-arivel h3,
  .product-title-arivel h4,
  .product-title-arivel h5,
  .product-title-arivel h6 {
    font-size: 17px !important;
    text-align: left !important;
  }

  .new-arrivals-w {
    display: block !important;
  }

  .jewl_box {

    width: 100% !important;
  }

  .sticky-gallery {
    top: 100px;
    padding: 16px 16px !important;
  }

  .related_m {
    width: 100% !important;
  }

  .card-image img {
    width: 100%;
    height: auto !important;

  }

  .elegant-footer-body {
    margin: 0px 7px !important;
  }

  .related-item {
    margin: 0px 8px !important;
  }

  .product-gallery .main-image img {
    width: 244px !important;
    height: 320px !important;
  }


}

@media(min-width:300px) and (max-width:768px) {
  .signup-form .form-group {
    flex: 0 0 100% !important;
  }

  .top-header-c {
    display: block !important;
  }

  .cart-card {
    display: block !important;
  }

  .cart-product-image {
    width: 100% !important;
    height: auto !important;
    margin-left: 0px !important;
  }

  .cart {
    position: absolute !important;
    color: #632cb3;
    right: 82px !important;
    top: 14px !important;
  }

  .search-bar {
    width: 100% !important;
    margin-top: 17px !important;
    margin-bottom: 6px !important;
  }

  .cart-header {
    margin-bottom: 2px !important;
  }
}

.side-nav-toggle {
  position: fixed;
  top: 12px;
  right: 27px;
  background: #d4af37;
  border: none;
  color: white;
  padding: 0px 7px;
  font-size: 20px;
  z-index: 1100;
  border-radius: 4px;
}

.mobile-side-navbar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: white;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.mobile-side-navbar.active {
  left: 0;
}

.side-nav-header {
  background: #d4af37;
  color: white;
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.side-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-nav-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 20px;
  color: #1d0541;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

.side-nav-list li a:hover {
  background: #f8f8f8;
}

.side-submenu {
  display: none;
  background: #f9f9f9;
  list-style: none;
}

.side-submenu li a {
  font-size: 14px;
  padding: 7px 22px;
  color: #632cb3;
}

.side-dropdown.active .side-submenu {
  display: block;
  padding-left: 0px;
}

@media(min-width:300px) and (max-width:540px) {
  .cart-container {
    width: 100% !important;
  }

}

@media(min-width:539px) and (max-width:768px) {
  .cart-container {
    width: 50% !important;
  }

}
@media(min-width:420px) and (max-width:768px) {
    .jewel-category{
  width:50% !important;
}
}
@media(min-width:300px) and (max-width:419px) {
    .jewel-category{
  width:100% !important;
}
}


.forgot-password {
  background: #f8f9fa;
  padding: 60px 0;
}

.container_for2 {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.forgot-heading {
  font-size: 26px;
  color: #632cb3;
  margin-bottom: 3px;
  font-weight: 700;
}

.para-reset {
  color: #555;
  font-size: 14px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
}

.form-group label span {
  color: #d9534f;
}

.forgot-input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  font-size: 15px;
  transition: 0.3s ease;
}

.forgot-input:focus {
  border-color: #d4af37;
  outline: none;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.forgot-text {
  font-size: 14px;
  margin-top: 10px;
}

.forgot-text a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}

.forgot-text a:hover {
  text-decoration: underline;
}

.reset-btn {
  background: #cfa61f;
  color: white;
  border: none;
  padding: 7px 18px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.reset-btn:hover {
  background: #b8962f;
}

@media (max-width: 576px) {
  .container_for2 {
    padding: 30px 20px;
  }
}


.jewellery_main {
  margin-top: 25px;
  background: #fefefe;

}

.jewel-heading h1 {
  font-size: 32px;
  color: #7c5b3e;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.jewel-para {
  text-align: center;
  color: #444;
  font-size: 15px;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.button-row button {
  padding: 2px 10px;
}

.jewel-category {
  width: 20%;
  margin-bottom: 10px;
  padding: 0px 4px;

  display: inline-block;
  vertical-align: top;
  background: #fff;

  text-align: center;
}



.jewel-card {
  padding: 15px 0px;
  box-shadow: rgb(0 0 0 / 15%) 0px 3px 8px;
  border: 1px solid #61527a4f;
}

.jewel-image-wrap {
  border-bottom: 1px solid #6d2bcd52;
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.jewel-image {
  width: 100%;
  height: 200px;
  /* max-width: 200px; */
  object-fit: contain;
  transition: transform 0.3s ease;
}



.jewel-title h2, .jewel-title h3, .jewel-title h4, .jewel-title h5, .jewel-title h6  {
 font-size: 17px;
    color: #232226;
    margin: 0 0 10px;
    font-weight: 700;
}

.jewel-view {
    display: inline-block;
    padding: 2px 11px;
    background: transparent;
    border: 1px solid #d9a821;
    color: #541ea3;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
}

.jewel-view:hover {
  background: #7c5b3e;
  color: #fff;
}


.smart-filter-box {
background: #fff;
    border: 1px solid #603f9147;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    box-shadow: rgb(0 0 0 / 14%) 0px 5px 15px;
}

.filter-block {
  margin-bottom: 30px;
}

.filter-heading {
  font-size: 18px;
    color: #632cb3;
    font-weight: 800;
    margin-bottom: 15px;
    border-left: 4px solid #c7991d;
    padding-left: 10px;
}
.check-list span{
  font-size: 15px;
    font-weight: 600;
    color: #000000e0;
}
.tag span{
  font-size: 14px;
    font-weight: 600;
    color: #000000e0;
}
.category-list,
.check-list {
  list-style: none;
  padding-left: 0;
}

.category-list li a {
    display: block;
    padding: 5px 10px;
    margin-bottom: 8px;
    color: black;
    font-weight: 600;
    font-size: 15.5px;
    text-decoration: none;
    border: 1px solid #c29d38;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.category-list li a:hover,
.category-list li .active {
  background-color: #632cb3;
  color: #fff;
  border-color: #632cb3;
}

.check-list li label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  color: #444;
}

.check-list input[type="checkbox"] {
  accent-color: #c29d38;
}

.price-chip-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f4ff75;
  padding: 6px 13px;
  border: 1px solid #632cb37d;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
  color: #632cb3;
}

.price-chip input[type="radio"] {
 accent-color: #ab800c;
}

.price-chip:hover {
  background-color: #e8dfff;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
 display: flex
;
    align-items: center;
    gap: 6px;
    background-color: #d3a52621;
    padding: 4px 12px;
    border: 1px solid #c29d38;
    border-radius: 30px;
    color: #5e4c28;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
  background-color: #f7ebc9;
}

.tag input[type="checkbox"] {
  accent-color: #632cb3;
}