.btn-cont-cart-wrp.mt-3 {
  display: flex;
  justify-content: space-between;
  padding: 30px;
}
td.cart-qty {
  display: flex;
  gap: 10px;
}
.payment-icons img {
  object-fit: fill;
  width: 35px;
  height: 23px;
}
.custom-tabs-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
.custom-tabs-section .tabs {
  flex: 1;
  min-width: 200px;
}
.custom-tabs-section .tabs ul {
  list-style: none;
  padding: 0;
}
.custom-tabs-section .tabs ul li {
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
}
.custom-tabs-section .tabs ul li.active {
  text-decoration: underline;
}
.custom-tabs-section .tab-content {
  flex: 3;
  display: none;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}
.custom-tabs-section .tab-content.active {
  display: block;
}
.custom-tabs-section .product {
  display: inline-block;
  width: 30%;
  text-align: center;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px;
}
.custom-tabs-section .product img {
  width: 100px;
  height: auto;
}
.custom-tabs-section h2 span{
  color: var(--black);
font-size: 70px;
line-height: 70px;
margin: 0;
}


h1.page-title.cst-heading {
  margin-top: 38px;
  text-align: center;
}
.logo img {
  width: 100px;
}
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.product-list .product-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-list .product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.product-list .product-image img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

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

.product-list .product-info h2 {
  font-size: 18px !important;
  margin: 10px 0;
}

.product-list .product-price {
  color: #e74c3c;
  font-weight: bold;
  font-size: 16px;
}

.product-list .view-details {
  display: inline-block;
  padding: 8px 12px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background 0.3s;
}

.product-list .view-details:hover {
  background: #2980b9;
}



.product-list .add-to-cart:hover {
  background: #219150;
}

.product-list .add-to-cart.added {
  transform: scale(1.1);
  background: #2ecc71;
}

.diamonds-products {
  margin-top: 80px;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 20px;
}

.diamonds-products h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.diamonds-products .gemstone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
}

.diamonds-products .gemstone {
  text-align: center;
}

.diamonds-products .gemstone img {
  width: 150px;
  object-fit: cover;
  height: auto;
  border-radius: 8px;
}

.diamonds-products .gemstone p {
  font-size: 14px;
  margin-top: 8px;
}


.you-may-love {
  margin-top: 103px;
  text-align: center;
  padding: 2rem;
  background-color: #fff;
}
.offer-card-2 h3, .offer-card-2 p {
  color: #fff !important;
}
.blogs-home-section .header-container h2,.blogs-home-section .header-container p  {
  text-align: center;
}
.blogs-home-section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.custom-shape-coll-wrp h2 {
  text-align: center;
}
.blogs-home-section .blogs-home-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #fff;
}
.btn-cont {
  padding: 20px 0px;
  text-align: center;
  align-items: center;
}
.blogs-home-section .blogs-home-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.blogs-home-section .blogs-home-section p {
  color: #777;
  margin-bottom: 30px;
}

.blogs-home-section .blog-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.blogs-home-section .blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
  transition: transform 0.3s;
}

.blogs-home-section .blog-card:hover {
  transform: translateY(-5px);
}

.blogs-home-section .blog-card img {
  width: 100%;
  height: 275px;
  object-fit: cover;
}

.blogs-home-section .blog-content {
  padding: 15px;
  text-align: left;
}

.blogs-home-section .blog-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blogs-home-section .blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.blogs-home-section .blog-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.blogs-home-section .view-all-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 20px;
  background-color: #004d66;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.blogs-home-section .view-all-btn:hover {
  background-color: #00334d;
}
.custom-two-images {
  /* max-width: 1200px; */
  margin: 85px auto;
  padding: 20px;
  text-align: center;
}
.custom-two-images h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-two-images p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.custom-two-images .offer-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.custom-two-images .offer-card {
  position: relative;
  flex: 1;
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-two-images .offer-card img {
  width: 100%;
  position: relative;
  height: auto;
  border-bottom: 2px solid #ddd;
}

.custom-two-images .offer-card .content {
  padding: 20px;
    position: absolute;
    /* color: red; */
    z-index: 900;
    top: 15px;
    width: 68%;

}

.custom-two-images .offer-card h2 {
  font-size: 1.5rem;
  margin: 0;
  font-weight: bold;
}

.custom-two-images .offer-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 10px 0 0;
}
.custom-shape-coll-wrp {
  margin-top: 48px;
}
.you-may-love .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.you-may-love .section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  justify-content: center;
}

.product-card {
  background-color: #d8ecf5;
  border-radius: 12px;
  text-align: center;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.you-may-love .product-image {
  max-width: 300px;
  margin-bottom: 1rem;
}

.product-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.product-description {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.product-link {
  font-size: 2.2rem;
  color: #007bff;
  text-decoration: none;
}

.product-link:hover {
  text-decoration: underline;
}
.custom-shape-coll {
  top: 40px;
  position: relative;
  text-align: center;
  margin: auto;
  padding: 32px 39px;
  background-color: #f8fcff;
  border-radius: 25px;
  width: 90%;
}
h1, h2, h3, h4, h5, h6, p, span, a {
    font-family: Roboto,-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif;
} 
.custom-tabs-section h2.heading {
  text-align: center;
  width: 100%;
}
h1, h2 {
font-size: 60px !important;
font-weight: bold;
}

.custom-shape-coll .shape-container {
  display: flex;
  justify-content: space-evenly;
  /* flex-wrap: wrap; */
  gap: 20px;
  max-width: 100%;
  grid-template-columns: auto auto auto auto;
  display: grid;
  column-count: 3;
  column-count: auto;
  column-count: auto;
  flex-direction: row;
  flex-wrap: wrap;
}

.custom-shape-coll .shape-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80px;
}

.custom-shape-coll .shape-item img {
  width: 200px;
  height: 200px;
  border: 2px solid #d9f1ff;
  border-radius: 50%;
  /* padding: 10px; */
  background-color: #fff;
  transition: transform 0.3s;
}

.custom-shape-coll .shape-item img:hover {
  transform: scale(1.1);
}

.custom-shape-coll .shape-item span {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.custom-shape-coll .shape-item::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin-top: 5px;
  background-color: #009dff;
}
.Custom-homebanner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Each Slide */
.Custom-homebanner .banner-slide {
  position: relative;
  width: 100%;
}

.Custom-homebanner .banner-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Banner Content */
.Custom-homebanner .banner-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #000;
  max-width: 400px;
}

.Custom-homebanner .banner-content h2 {
  font-size: 48px;
  font-weight: bold;
}

.Custom-homebanner .banner-content p {
  font-size: 16px;
  margin: 10px 0;
}

.shop-now-btn {
  display: inline-block;
  background: #003d4d;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 10px;
}

.Custom-homebanner .shop-now-btn:hover {
  background: #002a36;
}

/* Slick Dots */
.Custom-homebanner .slick-dots li button:before {
  color: #003d4d;
  font-size: 12px;
}

.Custom-homebanner .slick-dots li.slick-active button:before {
  color: #003d4d;
}
.Custom-homebanner ul.slick-dots {
  display: flex;
  /* background: red; */
  display: flex;
  justify-content: center;
  min-width: 4.4rem;
  display: flex;
  /* width: 200px; */
  margin: auto;
  left: 0;
  /* bottom: 0; */
  bottom: 32px;
  margin: 0 1.2rem;
  right: 0;
  margin: auto;
  align-items: baseline;
  /* align-self: center; */
  position: absolute;
  /* justify-content: space-evenly; */
  align-content: space-between;
  /* flex-wrap: nowrap; */
  /* flex-direction: row; */
}

.Custom-homebanner li {
  cursor: pointer;
  display: inline-block;
  border: none;
  padding: 1rem .5rem;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: .3rem;
  color: rgb(18,18,18);
  background-color: transparent;
  font-size: 1.4rem;
  font-family: inherit;
}

.Custom-homebanner button {
  font-size: 0px;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: .1rem solid rgba(var(--color-foreground), .5);
  padding: 0;
  display: block;
  transition: transform .2s ease-in-out;
  border-color: #ffffff;
}













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

body {
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: #333;
}

/* Top Banner */
.top-banner {
    background: #007bff;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
}

/* Header */
header {
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.cst-login button {
    background-color: #ff5e3a;
    color: white;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}
.headercontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 5%;
}

.logo h1 {
  font-size: 24px;
  font-weight: bold;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #003d4d;
  font-size: 16px;
  padding: 10px;
  display: block;
}
/* Mega Menu */
.mega-menu {
   display: none; 
  position: absolute;
  left: -473px !important;
  align-items: center;
  right: 0;
  left: 0;
  margin: auto;
  max-width: 1500px;
  top: 106%;
  z-index: 999;
  width: 1384px;
  background: #044b61;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  gap: 20px;
}
.mega-menu.show {
  display: flex;
  flex-direction: column;
}
.mega-column {
  flex: 1;
}

.mega-column h3 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}
.mega-column p {
  color: #fff;
}
.mega-column a {
  color: #fff;
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.mega-column img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

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

/* Icons */
.icons {
  display: flex;
  gap: 15px;
}

.icons i {
  font-size: 18px;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
.custom-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e5f7fe;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 80px;
}

.custom-banner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  /* border-radius: 8px; */
}

.custom-banner-content {
  flex: 1;
  position: absolute;
  right: 80px;
  /* margin-left: 17px; */
  text-align: left;
}

.custom-banner-content h2 {
  font-size: 2rem;
  margin: 0;
  color: #000;
}

.custom-banner-content p {
  font-size: 1rem;
  color: #333;
  margin: 10px 0;
}
.footer-section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.footer-section {
    background-color: #007bff;
    color: white;
    padding: 50px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}

.footer-logo {
  flex: 1;
  text-align: left;
}

.footer-logo img {
  background: #fff;
  border-radius: 70px;
  max-width: 134px;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.footer-links {
  flex: 1;
  text-align: left;
}

.footer-links h3 {
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  border: 0;
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: white;
  text-decoration: none;
}

.newsletter {
  flex: 1;
  text-align: left;
}

.newsletter input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
}

.newsletter button {
  padding: 10px 20px;
  background-color: white;
  color: #004d66;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid white;
  margin-top: 20px;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.four-icon-section {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.four-icon-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 50px;
  background-color: #fff;
}

.four-icon-section .icon-box {
  text-align: center;
  max-width: 250px;
}

.four-icon-section .icon-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.four-icon-section .icon-box h3 {
  margin-top: 15px;
  font-size: 18px;
  font-weight: bold;
}

.four-icon-section .icon-box p {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
}
@media (max-width: 1024px) {
  .four-icon-section {
    flex-wrap: wrap;
    gap: 20px;
}
  .banner-content h2 {
      font-size: 36px;
  }
}

@media (max-width: 992px) {
  #cart-items table {
      width: 100%;
      overflow-x: auto;
      white-space: nowrap;
  }

  #cart-items table thead {
      display: none;
  }

  #cart-items table tbody tr {
      display: flex;
      flex-direction: column;
      align-items: center;
      border-bottom: 1px solid #ddd;
      padding: 10px;
  }

  #cart-items table tbody td {
      display: flex;
      justify-content: space-between;
      width: 100%;
      padding: 5px 10px;
  }

  #cart-items table tbody td img {
      max-width: 80px;
      height: auto;
  }

  .btn-cont-cart-wrp {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .btn-cont-cart {
      display: flex;
      flex-direction: column;
      gap: 10px;
  }

  #checkout-form {
      margin-top: 15px;
      width: 100%;
      text-align: center;
  }

  #checkout-form button {
      width: 100%;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .custom-tabs-section {
    flex-direction: column;
}
.custom-tabs-section .product {
    width: 100%;
}
.product-list .product-list {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.product-list .product-item {
    padding: 10px;
}

.product-list .product-info h2 {
    font-size: 16px;
}

.product-list .add-to-cart {
    font-size: 14px;
}

  .diamonds-products h2 {
    font-size: 20px;
}

.diamonds-products .gemstone img {
    width: 80px;
}

.diamonds-products .gemstone p {
    font-size: 12px;
}
  .four-icon-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
  .custom-two-images .offer-container {
    flex-direction: column;
    align-items: center;
  }

  .custom-two-images .offer-card {
    width: 90%;
  }
  .banner-slide {
    height: 500px !important;
}

.banner-slide img {
    object-fit: cover;
}

.Custom-homebanner .banner-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
  .products-container {
    grid-template-columns: 1fr;
}
  .Custom-homebanner .banner-content {
    left: 5%;
}

.Custom-homebanner .banner-content h2 {
    font-size: 28px;
}

.shop-now-btn {
    padding: 10px 20px;
}
  .nav-links {
      display: none;
      flex-direction: column;
      background: white;
      position: absolute;
      width: 100%;
      top: 121px;
      left: 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
  }

  .nav-links.active {
      display: flex;
  }

  .menu-toggle {
      display: block;
  }

  .mega-menu {
      width: 100%;
      flex-wrap: wrap;
  }
  .dropdown .mega-menu {
    position: relative;
    box-shadow: none;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
}

  .dropdown.active .mega-menu {
      display: flex;
  }
  .custom-shape-coll h2 {
    font-size: 20px;
  }

  .custom-shape-coll .shape-item {
    width: 70px;
  }

  .custom-shape-coll .shape-item img {
    width: 50px;
    height: 50px;
  }

  .custom-shape-coll .shape-item span {
    font-size: 12px;
  }
  .custom-shape-coll h2 {
    font-size: 20px;
  }

  .custom-shape-coll .shape-item {
    width: 70px;
  }

  .custom-shape-coll .shape-item img {
    width: 50px;
    height: 50px;
  }

  .custom-shape-coll .shape-item span {
    font-size: 12px;
  }
  .custom-banner {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.custom-banner-content {
  flex: 1;
  position: relative;
  right: 0;
  margin-left: 0;
  text-align: center;
}
  .custom-banner-content {
    padding: 26px;
    margin: 0;
}

  .custom-banner-content {
    margin: 0;
  }

  .custom-banner-content h2 {
    font-size: 1.5rem;
  }

  .custom-banner-content a {
    font-size: 0.9rem;
  }
  .blogs-home-section .blog-container {
    flex-direction: column;
    align-items: center;
}
.blogs-home-section .blog-card {
  width: 90%;

}
.custom-banner img {
  width: 100%;
  height: 28vh;
  /* margin: 0 auto 20px; */
}
.footer-container {
  flex-direction: column;
  text-align: center;
}
.footer-links, .newsletter, .footer-logo {
  text-align: center;
}
}
@media (max-width: 480px) {
  .diamonds-products .gemstone-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.product-list {
    grid-template-columns: 1fr;
}

.product-item {
    padding: 10px;
}
  .custom-two-images h1 {
    font-size: 1.5rem;
  }

  .custom-two-images .offer-card h2 {
    font-size: 1.2rem;
  }
}