    body {
      font-family: "Bellefair", serif;
      font-weight: 400;
      font-style: normal;
      background-color: #fbf8f3;
      background-image: url('../images/body-pattern.png');
      background-repeat: repeat;
      background-size: auto;
      overflow-x: hidden;
    }


    /* ----- CSS for Nav ------*/
    .navbar {
      background-color: #fdfaf6;
      padding: 0rem 1rem;
    }

    .navbar-nav .nav-link {
      font-weight: 400;
      color: #000;
      margin: 0 10px;
      font-size: 17px;
    }

    .navbar-nav .nav-link.active {
      color: #c78c53;
      border-bottom: 2px solid #c78c53;
    }

    .navbar-nav .nav-link:hover {
      color: #c78c53;
    }

    .navbar-icons i {
      font-size: 1.2rem;
      margin-left: 20px;
      cursor: pointer;
    }

    .cart-icon {
      margin-right: 22px;
    }

    .search-icon img,
    .cart-icon img {
      width: 30px;

    }

    /* CSS For search */

    .search-popup {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      font-family: "Poppins", sans-serif;
      font-weight: 300;

    }

    .search-popup-content {
      background: #fff;
      padding: 20px;
      max-width: 400px;
      margin: 0 auto;
      border-radius: 8px;
      text-align: center;
      position: relative;
      margin-top: 5%;
    }

    .close-btn {
      position: absolute;
      right: 15px;
      top: 15px;
      font-size: 22px;
      cursor: pointer;
    }

    .search-popup-content h5 {
      text-align: left;
      font-weight: 400;
      font-size: 20px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .search-popup input {
      width: auto;
      font-size: 13px;
      padding: 4px 12px;
      border-radius: 8px;
      border: 1px solid #C48E4B;
      border-right: 0 !important;
    }

    .search-popup button {
      border-radius: 8px;
      padding: 0.3rem 1.2rem;
      border: 1px solid #d58f5c;
      background: transparent;
      color: #d58f5c;
      border-left: 0;
    }

    .search-popup button:hover {
      background: none;
      color: #000;
    }

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

    ul.results li {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      cursor: pointer;
      text-align: left;
    }

    ul.results li:last-child {
      border-bottom: none;
    }

    ul.results img {
      width: 55px;
      height: 55px;
      border-radius: 0;
      object-fit: cover;
    }

    .search-popup .item-info {
      flex: 1;
    }

    .search-popup .item-info strong {
      display: block;
      font-size: 13px;
      line-height: 1.3;
    }

    .search-popup .item-price {
      color: #d17b0f;
      font-weight: 500;
      font-size: 14px;
    }

    .search-popup .status {
      font-size: 12px;
    }

    .search-popup .available {
      color: #28a745;
    }

    .search-popup .sold-out {
      color: #000;
    }

    .search-popup .arrow {
      font-size: 14px;
      color: #d17b0f;
      font-weight: bold;
    }

    .sold-out-search {
      filter: grayscale(100%);
    }

    .login-link {
      text-transform: uppercase;
      color: #a4703a;
      text-decoration: none;
      margin-left: 15px;
      font-size: 18px;
      font-weight: 600;
    }

    .login-icon {
      display: none;
    }

    @media (max-width: 485px) {
      .login-icon {
        display: block;
      }

      .login-text {
        display: none;
      }

      .login-link {
        margin-left: 0;
        margin-right: 12px;
      }

      .login-link i {
        font-size: 20px;
        margin-top: 5px;
        color: #131b2f;
      }
    }


    /*------- Main Banner Section CSS  --------*/

    .main-banner .section-title {
      text-align: center;
      font-weight: 400;
      font-size: 65px;
      margin-bottom: 30px;
      color: #1b2a41;
      text-transform: uppercase;
    }

    .main-banner ::before {
      content: "";
      position: absolute;
      top: 157%;
      left: -60px;
      background-image: url("../images/Isolation_left.png");
      background-repeat: no-repeat;
      width: 22%;
      height: 567px;
      background-size: contain;
      opacity: 0.15;
      z-index: -1;

    }

    .main-banner ::after {
      content: "";
      position: absolute;
      top: 155px;
      right: 0;
      background-image: url("../images/Isolation_right.png");
      background-repeat: no-repeat;
      width: 19%;
      height: 467px;
      background-size: contain;
      opacity: 0.1;
      z-index: -1;
    }

    /* Arch shapes */
    /*  .main-banner .arch {
      position: relative;
      overflow: hidden;
      border-radius: 50% 50% 0 0 / 36% 36% 0 0;
       Arch effect 
      aspect-ratio: 3/4;
    }*/


    .main-banner .arch img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Vertical carousel images */
    .main-banner .vertical-carousel .carousel-inner {
      height: 500px;
      /* set height */
    }

    .main-banner .vertical-carousel .carousel-item img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* Vertical sliding effect */
    .main-banner .carousel.vertical .carousel-inner {
      display: block;
      transition: transform 0.6s ease-in-out;
    }

    /* Override Bootstrap for vertical movement */
    .main-banner .carousel.vertical .carousel-item-next.carousel-item-start,
    .main-banner .carousel.vertical .carousel-item-prev.carousel-item-end {
      transform: translateY(0);
    }

    .main-banner .carousel.vertical .carousel-item-next,
    .main-banner .carousel.vertical .active.carousel-item-end {
      transform: translateY(100%);
    }

    .main-banner .carousel.vertical .carousel-item-prev,
    .main-banner .carousel.vertical .active.carousel-item-start {
      transform: translateY(-100%);
    }

    .btn-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }


    .intro-p {
      font-family: "Poppins", sans-serif;
      font-weight: 300;
      font-size: 17px;
      line-height: 28px;
    }

    .link-img {
      height: auto !important;
      width: auto !important;
      display: inherit !important;
    }

    .banner-last-carousal {
      margin-top: 3rem;
    }

    .btn-link-a {
      border: 1px solid #000;
      padding: 10px 20px;
      border-radius: 30px;
      color: #000;
      text-decoration: none;
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      font-size: 16px;
    }

    .middle-arch-padding {
      padding-left: 3rem;
      padding-right: 3rem;
    }

    .btn-link-a:hover {
      background: #fff;
    }

    #middleCarousel {
      border-radius: 70% 70% 0 0 / 100% 100% 0 0;
    }

    #middleCarousel .carousel-item img {
      height: auto;
      object-fit: cover;
    }

    .side-caroulsel-margin {
      margin-top: 80px;
    }

    /* Hide arrows on mobile */
    @media (max-width: 767px) {

      .swiper-button-next,
      .swiper-button-prev {
        display: none !important;
      }
    }

    /* Hide dots on desktop */
    @media (min-width: 768px) {
      .swiper-pagination {
        display: none !important;
      }
    }

    .swiper-pagination-bullet-active {
      background: #B68243 !important;
    }

    .swiper-pagination {
      margin-top: 40px;
      bottom: -5px !important;
    }


    /* ---- CSS for our essence section   --- */

    .essence-section {
      text-align: center;
      /*padding: 60px 20px 30px;*/
      margin-top: 100px;
    }

    .essence-section h2 {
      font-weight: 400;
      font-size: 45px;
      color: #131B2F;
      text-transform: uppercase;
    }

    .essence-section h3 {
      font-weight: 400;
      font-size: 23px;
      color: #131B2F;
      text-transform: uppercase;
    }

    .essence-section p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 40px;
    }

    .essence-section .carousel-item>.row>.col-md-4 {
      padding: 0 10px;
    }

    .essence-section .card {
      border: none;
      position: relative;
      overflow: hidden;
      /* height: 300px; */
      border-radius: 0;
    }

    .essence-section .card img {
      object-fit: cover;
      height: 100%;
    }

    .essence-section .overlay-text {
      position: absolute;
      /* top: 0; */
      left: 0;
      bottom: 0;
      text-align: center;
      color: #fff;
      padding: 25px 20px 15px;

      /*background: rgba(0, 0, 0, 0.4);
       height: 100%; */
      background: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(7px);
      -webkit-backdrop-filter: blur(10px);
      width: 100%;
      display: flex;
      /* flex-direction: column; */
      align-items: center;
      justify-content: center;
      min-height: 150px !important;
    }

    .play-icon {
      height: auto !important;
      width: 13px;
      margin-right: 10px;
    }

    .essence-section .overlay-text h5 {
      font-size: 28px;
      font-weight: 400;
      text-transform: uppercase;
      width: 70%;
      margin: 0 auto 10px;
      text-align: left;
      line-height: 35px;
    }

    .essence-section .overlay-text p {
      font-size: 18px;
      margin-bottom: 30px;
      color: #fff;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
    }

    .essence-section .overlay-text .btn {
      border-radius: 50px;
      border: 1px solid #fff;
      color: #fff;
      padding: 8px 25px;
      font-size: 18px;
      font-family: "Poppins", sans-serif;
      width: 26%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 13px;
    }

    @media (max-width: 1271px) {
      .essence-section .overlay-text .btn {
        font-size: 15px;
        width: auto;
        margin-right: 0px;

      }
    }


    .essence-section .overlay-text .btn:hover {
      background: #fff;
      color: #000;
    }

    .essence-section .swiper {
      width: 100%;
      padding: 30px 0;
    }

    .essence-section .swiper-slide {
      width: 60%;
      /* Center slide full, side slides cropped 
      background: #444;*/
      color: #fff;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 0;
    }

    /* Navigation buttons */
    .essence-section .swiper-button-prev,
    .essence-section .swiper-button-next {
      color: white;
      background: rgba(0, 0, 0, 0.5);
      padding: 20px;
      border-radius: 50%;
      width: 40px;
      height: 40px;
    }

    .essence-section .swiper-button-prev {
      left: 14.5%;
    }

    .essence-section .swiper-button-next {
      right: 14.5%;
    }

    .essence-section .swiper-button-prev::after,
    .essence-section .swiper-rtl .swiper-button-next::after {
      font-size: 20px;


    }

    .essence-section .swiper-button-next::after,
    .essence-section .swiper-rtl .swiper-button-prev::after {
      font-size: 20px;
      right: 14.5%;
    }

    @media (max-width: 992px) {
      .essence-section .overlay-text {
        flex-direction: column;
        min-height: 160px;
      }

      .essence-section .overlay-text h5 {
        text-align: center;
      }
    }


    /*--  New Arrival css  ----*/

    /* Marquee animation */
    .new-arrival .marquee {
      white-space: nowrap;
      overflow: hidden;
      box-sizing: border-box;

    }


    .new-arrival .marquee span {
      display: inline-block;
      padding-left: 60%;
      animation: marquee 50s linear infinite;
      font-size: 70px;
      font-weight: bold;
      color: #131B2F;
      text-transform: uppercase;

    }


    .marquee {
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
      position: relative;
    }

    .marquee img {
      vertical-align: middle;
      margin: 0 20px 0 110px;
      position: relative;
      top: -17px;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0%);
      }

      100% {
        transform: translateX(-100%);
      }
    }

    .new-arrival .swiper {
      width: 100%;
      padding: 50px 0;
      overflow: hidden;
    }

    .new-arrival .swiper-slide {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      opacity: 0.4;
      transition: opacity 0.3s ease;
    }

    .new-arrival .swiper-slide-prev {
      justify-content: left;
      width: 300px;
    }

    .new-arrival .swiper-slide-next {
      justify-content: right;
      width: 300px;

    }


    .new-arrival .swiper-slide img {
      width: 100%;
      max-width: 325px;
      height: auto;
      object-fit: cover;
      border-radius: 0;
    }

    .new-arrival .swiper-slide-prev img,
    .new-arrival .swiper-slide-next img {
      width: 250px;
      height: 100%;
    }

    .new-arrival .slide-content {
      display: none;
      flex-direction: column;
      max-width: 400px;
      margin-left: 85px;
    }

    .new-arrival .slide-content .label {
      text-transform: uppercase;
      font-size: 12px;
      color: #131B2F;
      margin-bottom: 7px;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
    }

    .new-arrival .slide-content h3 {
      font-size: 18px;
      margin: 0;
      text-transform: uppercase;
      color: #131B2F;
    }

    .new-arrival .slide-content p {
      margin: 10px 0;
      font-size: 11px;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
      color: #131B2F;
    }

    .new-arrival p.price {
      font-weight: bold;
      font-size: 18px;
      font-family: "Bellefair", serif;
      font-weight: 400;
    }

    .new-arrival .view-button {
      padding: 10px 20px;
      border: 1px solid black;
      background: transparent;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .new-arrival .view-button:hover {
      background: black;
      color: white;
    }

    .new-arrival .swiper-slide-active {
      opacity: 1;
      transform: scale(1.4);
    }

    .new-arrival .swiper-slide-active .slide-content {
      display: flex;
    }

    .new-arrival .swiper-slide-active img {
      width: 480px;
    }

    .new-arrival .swiper-button-next,
    .new-arrival .swiper-button-prev {
      color: black;
      transform: scale(0.8);

    }




    .btn-link-a.product-view-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      width: 130px;
    }

    .btn-link-a.product-view-btn .link-img {
      height: 1em;
      /* match text size */
      width: auto;
      width: 12px !important;
    }

    .product-view-btn {
      font-family: "Poppins", sans-serif;
      font-size: 10px;
      padding: 7px 22px;
      font-weight: 400;
      background: transparent;
    }

    .product-info .view-btn img {
      margin-left: 10px;
    }

    .new-arrival .swiper-button-next,
    .new-arrival .swiper-button-prev {
      border: 1px solid #000;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      position: absolute;
      top: 92%;
    }

    .new-arrival .swiper-button-prev {
      left: 60%;
    }

    .new-arrival .swiper-button-next {
      right: 33.5%;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
      font-size: 15px;
    }

    @media (max-width: 1271px) {
      .new-arrival .swiper-slide-active {
        transform: (1.2);
      }

      .new-arrival .swiper-button-next,
      .new-arrival .swiper-button-prev {
        top: 50%;
      }

      .new-arrival .swiper-button-prev {
        left: 13%;
      }

      .new-arrival .swiper-button-next {
        right: 14%;
      }

      .new-arrival .swiper-slide img {
        width: 245px;
      }

      .new-arrival .slide-content {
        margin-left: 50px;
      }
    }

    @media (max-width: 1150px) {
      .new-arrival .swiper-slide img {
        width: 220px;
      }

    }

    @media (max-width: 991px) {
      .slide-image {
        text-align: center;
      }

      .new-arrival .swiper-button-prev {
        left: 4%;
      }

      .new-arrival .swiper-button-next {
        right: 4%;
      }

      .new-arrival .swiper-slide-active {
        transform: scale(1);
      }

      .new-arrival .swiper-slide img {
        width: 460px;
      }

      .new-arrival .slide-content {
        margin: 0 auto;
      }
    }

    @media (max-width: 767px) {
      .new-arrival .swiper-slide {
        flex-direction: column;
      }

      .new-arrival .swiper-slide:not(.swiper-slide-active) {
        display: block;
      }

      .new-arrival .slide-content {
        display: flex;
        margin-left: 0;
        margin-top: 20px;
        padding: 0 10px;
      }

      .new-arrival .swiper-slide-active {
        transform: scale(1.1);
      }

      .new-arrival .slide-content {
        max-width: 90%;
        margin: 0 auto;
      }

      .slide-wraper {
        text-align: center;
        justify-content: center;
      }

      .btn-link-a.product-view-btn {
        margin: 0 auto;
      }

      .new-arrival .swiper-button-prev {
        left: 4;
      }

      .new-arrival .swiper-button-next {
        right: 4%;
      }

      .new-arrival .slide-content p {
        margin: 7px 0;
      }
    }


    /* ----- Css for our collection ----- */

    .our-collection {
      margin-top: 100px;
    }

    .our-collection-heading img {
      margin-right: 20px;
    }

    .our-collection::before {
      content: "";
      position: absolute;
      top: 4%;
      left: -60px;
      background-image: url("../images/Isolation_left.png");
      background-repeat: no-repeat;
      width: 13%;
      height: 567px;
      background-size: contain;
      opacity: 1;
      z-index: -1;
    }

    .our-collection-heading h2 {
      font-size: 45px;
      font-weight: 400;
      text-align: left;
      margin-bottom: 0.25rem;
      text-transform: uppercase;
    }

    .our-collection-heading h3 {
      font-size: 26px;
      font-weight: 400;
      text-transform: uppercase;
    }

    .our-collection .arch-card {
      position: relative;
      overflow: hidden;
      border-radius: 50% 50% 0 0 / 36% 36% 0 0;
      /* Arch effect */
      aspect-ratio: 3/4;
    }

    .our-collection .arch-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .our-collection .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      color: #fff;
      text-align: center;
      padding: 1.5rem 1.2rem;
      padding-bottom: 50px;
    }

    .our-collection .overlay h5 {
      font-size: 27px;
      font-weight: 400;
    }

    .our-collection .overlay p {
      font-size: 16px;
      margin-bottom: 1rem;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
    }

    .our-collection .overlay .btn {
      font-family: "Poppins", sans-serif;
      border: 1px solid #fff;
      border-radius: 50px;
      padding: 0.3rem 1.2rem;
      color: #fff;
      background: transparent;
      transition: 0.3s;
      font-size: 15px;
      font-weight: 300;
    }

    .our-collection .overlay .btn:hover {
      background: #fff;
      color: #000;
    }

    .our-collection .arch-card {
      width: 95%;
    }

    @media (max-width: 575px) {
      .our-collection .our-collection-heading .d-flex {
        display: block !important;
        text-align: center;
      }

      .our-collection-heading h2 {
        text-align: center;
      }
    }

    /* ----  Css for Explore products ----- */

    .explore-products {
      margin-top: 150px;
    }

    .explore-products-heading img {
      margin-right: 20px;
    }

    .explore-products::after {
      content: "";
      position: absolute;
      top: 0%;
      right: 0;
      background-image: url("../images/Isolation_right.png");
      background-repeat: no-repeat;
      width: 13%;
      height: 567px;
      background-size: contain;
      opacity: 1;
      z-index: -1;
    }

    .explore-products-heading h2 {
      font-size: 45px;
      font-weight: 400;
      text-align: left;
      margin-bottom: 0.25rem;
      text-transform: uppercase;
      width: 70%;
      line-height: 55px;
    }


    .explore-products .arch-frame {
      width: 100%;
      aspect-ratio: 1/1.2;
      /* Slightly taller than square */
      overflow: hidden;
      border-top-left-radius: 50% 40%;
      border-top-right-radius: 50% 40%;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }

    .explore-products .arch-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .explore-products .card {
      background: none;
    }

    .all-products-link {
      position: absolute;
      right: 0;
    }

    /* Buttons */
    .explore-products .filter-btn {
      font-family: "Poppins", sans-serif;
      border-radius: 60px;
      padding: 9px 20px;
      border: 1px solid #ccc;
      background-color: transparent;
      font-size: 16px;
      font-weight: 300;
      margin-right: 5px;
      height: 40px;
    }

    .explore-products .all-products-link img {
      margin-left: 15px;

    }

    .explore-products .filter-btn.active,
    .explore-products .filter-btn:hover {
      background-color: #131B2F;
      color: white;
    }

    .expl-product h6 {
      color: #131B2F;
      font-size: 24px;
      font-weight: 400;
    }

    .expl-product .text-muted {
      color: #131B2F;
      font-size: 16px;
      font-weight: 300;
      font-family: "Poppins", sans-serif;
    }

    .expl-product p.fw-bold {
      color: #131B2F;
      font-size: 35px;
      font-weight: 400;
    }

    .expl-product a {
      margin-bottom: 20px;
      margin-bottom: 1rem;
    }

    .expl-product .btn-link-a {
      width: 100%;
    }

    .explore-products .view-btn {
      border-radius: 50px;
      padding: 6px 18px;
      border: 1px solid black;
      background-color: white;
      font-size: 14px;
    }

    .explore-products .view-btn:hover {
      background-color: black;
      color: white;
    }

    .expl-product {
      margin-bottom: 40px;
      /* gap after every card */
    }

    .explore-products .card {
      width: 95%;
    }

    @media (max-width: 991px) {
      .explore-products .filter-btn {
        padding: 5px 20px;
      }

      .all-products-link {
        position: relative;
      }
    }

    /* --------- Css for testimonial ---------------*/

    .client-feedback {
      margin-bottom: 90px;
    }

    .client-feedback h2 {
      font-size: 45px;
      color: #131B2F;
      font-weight: 400;
    }


    .client-feedback .rounded-arch img {
      border-top-left-radius: 50% 30%;
      border-top-right-radius: 50% 30%;
      object-fit: cover;
    }

    .client-feedback .profile-pic {
      position: absolute;
      top: 24%;
      right: -29%;
      transform: translateX(-50%);
      border-radius: 50%;
      overflow: hidden;
      width: 150px;
      height: 150px;
      border: 9px solid #fff;
    }

    .client-feedback .profile-pic img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .client-feedback .carousel-controls {
      display: flex;
      gap: 10px;
    }

    .client-feedback .carousel-controls .carousel-control-prev,
    .client-feedback .carousel-controls .carousel-control-next {
      position: static;
      background: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      justify-content: center;
      align-items: center;
      display: flex;
      border: 1px solid #ccc;
    }

    .client-feedback .carousel-control-prev-icon,
    .client-feedback .carousel-control-next-icon {
      filter: invert(0);
    }

    .client-feedback .fw-bold {
      color: #131B2F;
      font-size: 24px;
      margin-bottom: 15px;
    }

    .client-feedback p {
      font-family: "Poppins", sans-serif;
      font-size: 17px;
      font-weight: 300;
      color: #000 !important;
    }

    .client-feedback .customer-info {
      color: #131B2F;
      font-size: 20px;
    }

    .client-content {
      margin-left: 30px;
    }

    .client-content .carousel-controls {
      margin-top: 25px;
    }

    .client-content .carousel-control-next-icon {
      background-image: url(../images/next-s.png);
      height: 16px;
      width: 8px;
    }

    .client-content .carousel-control-prev-icon {
      background-image: url(../images/prev-s.png);
      height: 16px;
      width: 8px;
    }

    /*----  CSS For contact section  ----*/

    .contact-section {
      /* background-color: rgba(191, 137, 10, 0.52); */
      /* gold-brown background */
      padding: 90px 0;
      color: white;
      background: #B79158;

    }

    .contact-section ::before {
      content: "";
      position: absolute;
      top: 23%;
      left: -20px;
      background-image: url("../images/contact-Isolation.png");
      background-repeat: no-repeat;
      width: 20%;
      height: 250px;
      background-size: contain;
      opacity: 0.4;
      z-index: 1;

    }

    .contact-section h2 {
      font-size: 45px;
      font-weight: 400;
      width: 70%;
    }

    .contact-section p {
      font-family: "Poppins", sans-serif;
      font-size: 15px;
      font-weight: 300;
    }

    .contact-section form {
      margin-top: 55px;
    }

    .contact-section .form-control {
      font-family: "Poppins", sans-serif;
      border-radius: 25px;
      background-color: rgba(0, 0, 0, 0.1);
      border: none;
      color: white;
      font-size: 16px;
      padding: 10px 29px;
      font-weight: 300;

    }

    .contact-section .form-control::placeholder {
      color: white;
      opacity: 0.8;
    }

    .contact-section .btn-send {
      border-radius: 25px;
      background-color: white;
      color: #131B2F;
      padding: 13px 43px;
      border: none;
      font-family: "Poppins", sans-serif;

    }

    .contact-section .btn-send:hover {
      background-color: #f5f5f5;
    }

    /* ---- CSS for Footer ------*/

    footer {
      background-color: #0b0f20;
      color: #ffffff;
    }


    footer ::after {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      background-image: url("../images/footer-Isolation.png");
      background-repeat: no-repeat;
      width: 19%;
      height: 260px;
      background-size: contain;
      opacity: 0.1;
      z-index: 1;

    }

    .footer-logo {
      height: auto;
    }

    footer p {
      font-size: 16px;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
    }

    .footer-content a {
      color: #ffffff;
      text-decoration: none;
      display: block;
      margin-bottom: 12px;
      font-family: "Poppins", sans-serif;
      font-size: 16px;
      font-weight: 300;
    }

    .footer-content a:hover {
      text-decoration: underline;
    }

    .footer-heading {
      font-weight: bold;
      margin-bottom: 15px;
    }

    .footer-section {
      margin-bottom: 20px;
    }

    footer .footer-section:first-child {
      padding-right: 70px;
    }

    .decorative-element {
      position: absolute;
      bottom: 0;
      right: 0;
      opacity: 0.2;
      width: 250px;
      height: auto;
    }

    @media (max-width: 768px) {
      .decorative-element {
        display: none;
      }
    }


    footer .contact-info {
      font-size: 0.85rem;
      margin-top: 20px;
      line-height: 1.8;
    }

    /*     Responsive css for all */


    @media (max-width: 991px) {
      .our-collection {
        margin-top: 130px;
      }

      .all-products-link {
        margin-left: 0 !important;
      }

      .middle-arch-padding {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }

      #middleCarousel {
        border-radius: 46% 46% 0 0 / 30% 30% 0 0;
      }

      footer .footer-section:first-child {
        padding-right: 0;
      }

      .main-banner .vertical-carousel .carousel-item img {
        width: 93%;
        margin: 0 auto;
      }

      .contact-section ::before {
        background: none;
      }
    }

    @media (max-width: 850px) {
      .essence-section .card {
        height: 350px;
      }
    }

    @media (max-width: 767px) {
      .responsive-d-none {
        display: none;
      }

      .essence-section .swiper-slide {
        width: 100%;
      }

      .essence-section .card {
        height: 420px;
      }

      .essence-section .overlay-text {
        padding: 10px;
      }

      .essence-section .swiper-button-prev {
        left: 1%;
      }

      .essence-section .swiper-button-next {
        right: 1%;
      }

      .explore-products .card {
        width: 100%;
      }

      .our-collection {
        margin-top: 50px;
      }

      .client-feedback .profile-pic {
        top: auto;
        left: 50%;
        bottom: -4%;
      }

      .new-arrival .marquee span {
        font-size: 60px;
      }

      .our-collection .arch-card {
        margin: 0 auto;
      }

      .explore-products .tab-content {
        padding-left: 20px;
        padding-right: 20px;
      }

    }


    @media (max-width: 576px) {
      .main-banner .section-title {
        font-size: 50px;
      }

      .our-collection-heading h2 {
        font-size: 40px;
      }

      .our-collection-heading h3 {
        font-size: 20px;
      }

      .client-feedback .profile-pic {
        bottom: -35px;
        left: 50%;
        top: auto;
      }

      .middleCarousel.px-4 {
        padding: 0 !important;
      }

      .middle-arch-padding {
        padding-left: 0;
        padding-right: 0;
      }

      #middleCarousel {
        border-radius: 50% 50% 0 0 / 41% 41% 0 0;
      }

      .banner-padding {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }

      .client-feedback .rounded-arch img {
        width: 90%;
      }
    }

    @media (max-width: 450px) {
      #middleCarousel {
        border-radius: 50% 50% 0 0 / 32% 32% 0 0;
      }

      .search-popup-content {
        width: 340px;
      }

      .search-popup input {
        width: 60%;
      }
    }

    @media (max-width: 407px) {

      .search-icon img,
      .cart-icon img {
        width: 22px;
      }

      .cart-icon {
        margin-right: 9px;
      }
    }

    @media (max-width: 381px) {
      .main-banner a.btn-link-a .link-img {
        display: none !important;
      }

      .navbar-toggler-icon {
        width: 1rem;
        height: 1rem;
      }
    }

    @media (max-width: 357px) {
      .main-banner a.btn-link-a {

        font-size: 13px;
        padding: 8px 15px;
      }
    }




    /*     ------------------------ Css For About us page ------------------------- */

    .about-banner h2 {
      font-size: 55px;
      margin: 0;
    }

    .about-banner-with-text .image-overlay {
      position: relative;
      display: inline-block;
      width: 100%;
    }

    .about-banner-with-text .image-overlay img {
      width: 100%;
      border-radius: 10px;
    }

    .about-banner-with-text .overlay-text {
      position: absolute;
      top: 35%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 45px;
      text-transform: uppercase;
      font-weight: 400;
    }

    /* Container for semi-circle section */
    .semi-circle-container {
      position: relative;
      overflow: hidden;
      text-align: center;
      padding-bottom: 50px;
    }

    /* Background image + curve */
    .semi-circle-image {
      width: 100%;
      height: 285px;
      background: url('../images/about-bg.png') center/cover no-repeat;
      /*       border-bottom-left-radius: 52% 100%;
      border-bottom-right-radius: 52% 100%; */
      border-radius: 0px 0px 50% 50% / 0px 0px 100% 100%;
      position: relative;
    }

    /* Gradient overlay layer */
    .semi-circle-image .image-gradient {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 70%);
      /*       border-bottom-left-radius: 52% 100%;
      border-bottom-right-radius: 52% 100%; */
      border-radius: 0px 0px 50% 50% / 0px 0px 100% 100%;
      pointer-events: none;
    }

    /* Text positioning */
    .semi-circle-text {
      position: absolute;
      top: 33%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 2px;
      width: 100%;
      z-index: 2;
    }

    /* Decorative icon positioning */
    .about-banner .decorative-icon {
      position: absolute;
      bottom: -30px;
      /* Overlaps the beige background */
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
    }

    .about-banner .decorative-icon img {
      width: 125px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .about-banner h2 {
        font-size: 32px;
      }

      .semi-circle-image {
        height: 220px;
      }

      .about-banner .decorative-icon img {
        width: 90px;
      }
    }

    .about-banner .red-text {
      color: #B68243;
      font-size: 45px;
      text-transform: uppercase;
      margin-top: 70px;
    }

    .about-banner p {
      color: #000000;
      font-size: 18px;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
    }


    .mass-produce-section .arch-image {
      width: 100%;
      aspect-ratio: 1 / 1.1;
      /* Keeps a proportional height */
      background-size: cover;
      background-position: center;
      border-radius: 50% 50% 0px 0px / 40% 40% 0px 0px;
      overflow: hidden;
    }

    .mass-produce-section .middle-text {
      text-align: center;
      font-size: 30px;
      font-weight: 400;
      color: #a4703a;
      text-transform: uppercase;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
      gap: 0.75rem;
    }

    .mass-produce-section .middle-text span {
      display: block;
    }

    .mass-produce-section .section-heading {
      text-align: center;
      font-size: 45px;
      font-weight: 500;
      margin-bottom: 50px;
      text-transform: uppercase;
      color: #131B2F;
    }

    .mass-produce-section .sub-heading {
      text-align: center;
      margin-top: 2rem;
      font-size: 1rem;
      text-transform: uppercase;
    }

    .mass-produce-section .sub-description {
      text-align: center;
      margin-top: 0.5rem;
      font-style: italic;
      font-size: 0.9rem;
    }

    .sub-heading-section h3 {
      font-size: 25px;
      font-weight: 400;
      color: #a4703a;
      text-transform: uppercase;
    }

    .sub-heading-section p {
      color: #000000;
      font-size: 18px;
      font-family: "Poppins", sans-serif;
      font-weight: 300;

    }

    .section-title {
      font-size: 28px;
      letter-spacing: 2px;
      text-align: center;
      margin-bottom: 5px;
    }

    .subtitle {
      text-align: center;
      font-size: 14px;
      color: #555;
      letter-spacing: 1px;
      margin-bottom: 40px;
    }

    .semi-circle-container {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: flex-end;
    }

    .semi-circle {
      width: 200px;
      height: 200px;
      border-top-left-radius: 50% 50%;
      border-top-right-radius: 50% 50%;
      overflow: hidden;
    }

    .semi-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .flower-overlay {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      width: 80px;
    }

    .name {
      font-weight: bold;
      color: #d68c3c;
      margin-top: 20px;
      font-size: 16px;
    }

    .description {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
    }

    .mass-produce-section .sub-heading-section {
      margin-top: 25px;
    }

    @media (max-width: 767px) {

      .mass-produce-section .middle-text {
        margin-top: 25px;
        margin-bottom: 25px;
      }

      .why-shappier-rose-section .arch-card {
        margin: 0 auto;
      }
    }


    /* css for about .profile */


    .about-profile-section {
      text-align: center;
      padding: 35px 20px 55px;
      background: url('images/pattern.png');
      /* background pattern */
      background-size: contain;
    }


    .about-profile-section h5 {
      font-size: 14px;
      color: #555;
      margin-bottom: 30px;
      letter-spacing: 1px;
    }

    .about-profile-section .profile-images {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      margin-bottom: 30px;
    }


    .about-profile-section .profile-content h6 {
      color: #c05c2e;
      /* highlight color */
      font-weight: bold;
      margin-top: 20px;
      margin-bottom: 8px;
    }

    .about-profile-section .profile-content p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 15px;
    }

    .about-profile-section .arch-image {
      width: 100%;
      aspect-ratio: 1 / 1.1;
      background-size: cover;
      background-position: center;
      border-radius: 50% 50% 0px 0px / 40% 40% 0px 0px;
      overflow: hidden;
    }

    .about-profile-section .arch-image img {
      width: 100%;
    }

    .name-img-heading h2 {
      font-size: 45px;
      text-transform: uppercase;
      color: #131B2F;
      font-weight: 600;
    }

    .name-img-heading h3 {
      font-size: 25px;
      text-transform: uppercase;
      color: #131B2F;
      font-weight: 400;
      margin-bottom: 45px;
    }

    .flower-on-prof {
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 180px;
      z-index: 999;
    }

    .profile-content {
      text-align: left !important;
    }

    .profile-content h6 {
      color: #B68243;
      font-size: 24px;
    }

    .profile-content p {
      font-family: "Poppins", sans-serif;
      font-weight: 300;
      font-size: 24px;
    }

    .why-shappier-rose-section {
      margin-bottom: 100px;
    }

    .why-shappier-rose-section .arch-card {
      width: 95%;
      position: relative;
      overflow: hidden;
      border-radius: 50% 50% 0 0 / 36% 36% 0 0;
      aspect-ratio: 3/4;
      margin: 0 auto;
    }

    .why-shappier-rose-section .arch-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .why-shappier-rose-section .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      color: #fff;
      text-align: center;
      padding: 1.5rem 1.2rem;
      padding-bottom: 1.5rem;
      padding-bottom: 50px;
    }

    .why-shappier-rose-section .overlay h5 {
      font-size: 24px;
      font-weight: 400;
      text-transform: uppercase;
      line-height: 32px;
    }

    .why-shappier-rose-section .overlay p {
      font-size: 16px;
      margin-bottom: 1rem;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
    }

    @media (max-width: 560px) {

      .flower-on-prof {
        display: none;
      }
    }

    .arch-image-about img {
      width: 100%;
    }

    /* ------ CSS For Category Page --------*/

    .inner-title h2 {
      text-transform: uppercase;
      font-size: 45px;
      color: #131B2F;
    }

    .category-product {
      margin-bottom: 120px;
    }

    .category-product .arch-card {
      position: relative;
      overflow: hidden;
      border-radius: 50% 50% 0 0 / 36% 36% 0 0;
      /* Arch effect */
      aspect-ratio: 3/4;
    }

    .category-product .arch-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .category-product .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      color: #fff;
      text-align: center;
      padding: 1.5rem 1.2rem;
      padding-bottom: 50px;
    }

    .category-product .overlay h5 {
      font-size: 27px;
      font-weight: 400;
    }

    .category-product .overlay p {
      font-size: 16px;
      margin-bottom: 1rem;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
    }

    .category-product .overlay .btn {
      font-family: "Poppins", sans-serif;
      border: 1px solid #fff;
      border-radius: 50px;
      padding: 0.45rem 1.7rem;
      color: #fff;
      background: transparent;
      transition: 0.3s;
      font-size: 15px;
      font-weight: 300;
    }

    .category-product .overlay .btn:hover {
      background: #fff;
      color: #000;
    }

    .category-product .arch-card {
      width: 95%;
      margin: 0 auto;
    }

    @media (max-width: 767px) {
      .category-product .arch-card {
        width: 90%;
        margin: 0 auto;
      }
    }



    /* -------  CSS for Product List page-----------*/

    .product-section {
      margin-bottom: 120px;
    }

    .product-section .sidebar {
      font-family: "Poppins", sans-serif;
      background: transparent;
      padding: 20px 0;
      padding-right: 30px;
      font-weight: 300;
    }

    .product-section .sidebar h5 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .product-section .sidebar ul {
      list-style: none;
      padding: 0;
    }

    .product-section .sort-function {
      font-family: "Poppins", sans-serif;
      font-size: 15px;
    }

    .product-section .sort-function label {
      font-weight: 300;
      margin-top: 7px;
    }

    .product-section .sort-function select {
      border-radius: 20px;
      padding: 7px 23px;
      font-size: 14px;
    }

    /* .product-section .sidebar ul li {
      padding: 8px 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #444;
      font-size: 14px;
    }

    .product-section .sidebar ul li a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: inherit;
      font-size: 15px;
      text-decoration: none;
      width: 100%;
    }

    .product-section .sidebar ul li.active a {
      color: #d58f5c;
      font-weight: 600;
    }

    .product-section .sidebar ul li a:hover {
      color: #d58f5c;
    } */

    .product-section .product-card {
      text-align: center;
    }

    .product-section .product-img {
      position: relative;
      overflow: hidden;
      border-radius: 50% 50% 0 0 / 36% 36% 0 0;
      aspect-ratio: 3/4;
    }

    .product-list {
      padding-left: 15px;
      padding-right: 15px;
    }

    .product-section .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .product-section .product-badge {
      position: absolute;
      bottom: 20px;
      width: 100%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      color: #fff;
      padding: 5px;
      font-size: 17px;
      text-transform: uppercase;
    }

    .product-section .product-hover {
      position: absolute;
      /* inset: 0; */
      background: transparent;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: 0.3s ease-in-out;
      left: 50%;
      transform: translate(-50%, -50%);
      bottom: -30px;
      font-family: "Poppins", sans-serif;
      font-size: 15px;
      font-weight: 300;
      width: 80%;
    }

    .product-section .product-hover .btn {
      margin: 5px 0;
      border-radius: 50px;
      padding: 5px 20px;
      width: 160px;
    }

    .product-section .product-hover .btn-outline-light:hover {
      background: #fff;
      color: #000;
    }

    .product-section .product-card:hover .product-hover {
      opacity: 1;
    }

    .product-section .product-title {
      font-size: 16px;
      margin-top: 14px;
      text-transform: uppercase;
      font-weight: 400;
      text-align: left;
      color: #131B2F;
    }

    .product-section .product-price {
      font-weight: 600;
      color: #131B2F;
      font-size: 24px;
      text-align: left;
    }

    .product-section .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      color: #fff;
      text-align: center;
      padding: 1.5rem 1.2rem;
      padding-bottom: 50px;
    }

    .product-section .product-card:hover .product-badge {
      opacity: 0;
    }

    .sold-out-product img {
      filter: grayscale(100%);
    }

    .product-section .sold-out-product:hover .product-badge {
      opacity: 1;
    }

    .sold-out-product .product-badge {
      bottom: 70px;
      display: block;
      background: transparent;
    }

    .sold-out-product .product-hover {
      bottom: 0;
      opacity: 1;
    }

    @media (max-width: 767px) {
      .sort-function {
        justify-content: flex-start !important;
      }

      .product-sort select {
        width: 230px !important;
      }

      .category-dropdown {
        padding-left: 12px;
      }

      .category-dropdown label {
        width: 120px;
      }

      .product-section .sort-function select {
        width: 230px;
      }

      .product-section .sort-function label {
        width: 88px;
      }

      .product-list {
        margin-top: 10px;
      }
    }


    /* ------ Css for Product details page -------*/

    .product-details-section .product-gallery {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }

    /* Main image wrapper */
    .product-details-section .main-image-wrapper {
      position: relative;
      border: 1px solid #ddd;
      padding: 0;
      background: #fff;
    }

    .product-details-section .main-image-wrapper img {
      max-width: 100%;
      max-height: 500px;
      object-fit: contain;
      display: block;
      margin: 0 auto;
    }

    /* Zoom icon */
    .product-details-section .zoom-icon {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: #131b2f;
      color: white;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      border-radius: 50%;
      cursor: pointer;
    }

    /* Hover zoom window */
    /* .product-details-section .zoom-window {
  width: 400px;
  height: 500px;
  border: 1px solid #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 200%;
  display: none;
} */

    /* Thumbnails row */
    .product-details-section .thumbnail-row {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 5px;
      max-width: 100%;
    }

    .product-details-section .thumbnail-row::-webkit-scrollbar {
      height: 6px;
    }

    .product-details-section .thumbnail-row::-webkit-scrollbar-thumb {
      background: #ccc;
      border-radius: 3px;
    }

    .product-details-section .thumbnail-item {
      border: 1px solid #ddd;
      cursor: pointer;
      padding: 2px;
      flex: 0 0 auto;
      transition: border-color 0.2s;
    }

    .product-details-section .thumbnail-item img {
      height: 60px;
      width: auto;
      display: block;
    }

    .product-details-section .thumbnail-item.active,
    .product-details-section .thumbnail-item:hover {
      border: 2px solid #f90;
    }

    /* Modal close button */
    .product-details-section .close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 9999;
      background: rgba(0, 0, 0, 0.6);
      color: white;
      border: none;
      font-size: 28px;
      padding: 0 10px;
      border-radius: 4px;
    }

    .product-details-section .swiper-slide {
      height: auto !important;
    }

    /* Modal zoom images */
    .product-details-section .zoom-swiper img {
      max-height: 80vh;
      max-width: 100%;
      object-fit: contain;
    }

    .product-details-section .modal-dialog {
      max-width: 600px;
      /* match main image width */
    }

    .product-details-section .modal-body img {
      display: block;
      width: 100%;
      height: auto;
    }

    .page-breadcrumb {
      font-family: "Poppins", sans-serif;
      font-size: 15px;
      font-weight: 300;
    }

    .page-breadcrumb a {
      color: #919191;
      text-decoration: none;
    }

    .page-breadcrumb li.active a {
      color: #131B2F !important;
      font-weight: 300;
    }

    .page-breadcrumb .breadcrumb .active {
      font-weight: 500;
    }

    .product-details-content h3 {
      color: #131B2F;
      font-size: 25px;
    }

    .product-details-content .text-muted {
      font-family: "Poppins", sans-serif;
      font-size: 13px;
      font-weight: 300;

    }

    .product-details-content h4.text-danger {
      color: #B68243 !important;
      font-size: 28px;
      margin-top: 35px;
      margin-bottom: 25px;
    }

    .product-details-content .my-3 {
      background: #EAE7DE;
      padding: 5px 10px;
      font-size: 14px;
      color: #131B2F;
      font-family: "Poppins", sans-serif;

    }


    .delivery-opt {
      color: #131B2F;
      line-height: 25px;
      margin-top: 25px;
      margin-bottom: 35px;
    }

    .delivery-opt span {
      margin-left: 15px;
    }

    .product-details-content button {
      font-family: "Poppins", sans-serif;
      border: 1px solid #fff;
      border-radius: 50px;
      padding: 12px 1.4rem;
      color: #fff;
      transition: 0.3s;
      font-size: 15px;
      font-weight: 300;
    }

    .product-details-content button.btn-outline-dark {
      border: 1px solid #131B2F;
      color: #131B2F;
    }

    .product-details-content button.btn-outline-dark:hover {
      color: #fff;
    }

    .specifications-tab {
      margin-bottom: 15px;
      border: 0;
    }

    .specifications-tab button {
      border-radius: 50px;
      padding: 12px 20px;
      color: #131B2F;
      margin-right: 30px;
      background: transparent;

    }

    .specifications-tab button.active {
      font-family: "Poppins", sans-serif;
      background: #EAE7DE !important;
      color: #000000;
      font-size: 15px;
    }

    .specifications-tab-content {
      border: 0 !important;
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      color: #131B2F;
      font-weight: 300;

    }

    .specifications-tab-content .border-section {
      border-bottom: 1px solid #C48E4B;
      padding: 15px 0;
    }

    .specifications-tab-content .border-section:last-child {
      border-bottom: 0;
    }

    .specifications-tab-content .border-section p {
      margin-bottom: 0;
    }

    .product-details-content a {
      text-decoration: none;
      font-size: 13px;
      color: #131B2F;
    }

    .related-product-slider .swiper {
      width: 92%;
    }

    .related-product-slider .product-img {
      position: relative;
      overflow: hidden;
      border-radius: 50% 50% 0 0 / 36% 36% 0 0;
      aspect-ratio: 4.5/5;
      width: 95%;
      margin: 0 auto;
    }

    .related-product-slider .product-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .related-product-slider .overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      color: #fff;
      text-align: center;
      padding: 1.5rem 1.2rem;
      padding-bottom: 1.5rem;
      padding-bottom: 50px;
    }

    .related-product-slider .product-title {
      font-size: 16px;
      margin-top: 14px;
      text-transform: uppercase;
      font-weight: 400;
      text-align: left;
      color: #131B2F;
    }

    .related-product-slider .product-price {
      font-weight: 600;
      color: #131B2F;
      font-size: 24px;
      text-align: left;
    }

    .related-product-slider {
      margin-bottom: 120px;
    }

    .related-product-slider .swiper-button-next,
    .related-product-slider .swiper-button-prev {
      color: #fff;
      width: 35px;
      height: 35px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 50%;

    }

    .related-product-slider .swiper-button-next {
      right: 0;
    }

    .related-product-slider .swiper-button-prev {
      left: 0;
    }

    @media (max-width: 950px) {
      .slider-responsive-no-view {
        display: none !important;
      }

      .slider-responsive-view {
        width: 80% !important;
      }

      .mobile-center {
        justify-content: center;
      }
    }

    @media (max-width: 767px) {
      .slider-responsive-view {
        width: 100% !important;
      }
    }

    /* -------- Shopping Cart page css ------- */
    .cart-summery-section .cart-header {
      font-family: "Poppins", sans-serif;
      color: #131B2F;
      border-bottom: 1px solid #C48E4B;
      padding-bottom: 10px;
      font-size: 14px;
      font-weight: 400;
      text-transform: uppercase;
    }

    .cart-summery-section .cart-item {
      border-bottom: 1px solid #C48E4B;
      padding: 16px 0;
    }

    .cart-summery-section .product-img {
      width: 80px;
      height: auto;
    }

    .cart-summery-section .cart-item input {
      width: 50%;
      border: 1px solid #B68243;
    }

    .cart-summery-section .product-title {
      font-weight: 600;
      font-size: 17px;
      text-transform: uppercase;

    }

    .cart-summery-section .product-sub {
      font-size: 13px;
      color: #131B2F;
      text-transform: uppercase;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
    }

    .cart-summery-section .dlt-cart {
      background: #C48E4B;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      color: #fff;
      font-size: 13px;
      border: none;
      padding: 7px 10px;
    }

    .cart-summery-section .dlt-cart:hover {
      background: #A6773E;
    }

    .cart-summery-section .main-price {
      font-weight: 600;
      color: #131B2F;
    }

    /* --------- */

    .cart-total-section .summary-box {
      background: transparent;
      border: none;
      font-family: "Poppins", sans-serif;
      padding: 0 25px 25px;
    }

    .cart-total-section .summary-title {
      font-weight: 700;
      font-size: 34px;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-family: "Bellefair", serif;
      color: #131B2F;
    }

    .cart-total-section .summary-line {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      font-size: 15px;
    }

    .cart-total-section .summary-total {
      font-weight: 500;
      font-size: 16px;
      color: #c47a24;
      margin-top: 10px;
      border: 1px solid #C48E4B;
      border-left: 0;
      border-right: 0;
      padding: 15px 2px;
    }

    .cart-total-section .btn-dark {
      border-radius: 25px;
      padding: 10px 24px;
    }

    .cart-total-section .related-products h5 {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 20px;
      text-transform: uppercase;
      color: #131B2F;
    }

    .cart-total-section .related-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .cart-total-section .related-item img {
      width: 60px;
      height: auto;
      margin-right: 10px;
      border-radius: 5px;
    }

    .cart-total-section .related-item-title {
      font-size: 15px;
      font-weight: 500;
      line-height: 1.2;
      color: #131B2F;
      text-transform: uppercase;
    }

    .cart-total-section .related-item-price {
      font-size: 13px;
      color: #c47a24;
      margin-top: 6px;
    }

    .continue-btn {
      border-radius: 25px;
      font-size: 15px;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      padding: 10px 32px;
    }

    @media (max-width: 991px) {
      .continue-btn {
        padding: 10px 15px;
      }
    }

    @media (max-width: 420px) {
      .action-btns {
        flex-direction: column !important;
      }

      .action-btns a:first-child {
        margin-bottom: 10px;
        /* space between stacked buttons */
      }
    }


    /* ------------ Css for ckeckout page section ------- */

    .checkout-section {
      font-family: "Poppins", sans-serif;
    }

    .checkout-section h5 {
      color: #C48E4B;
      font-size: 20px;
      font-weight: 600;
      font-family: "Bellefair", serif;

    }

    .checkout-section .form-control,
    .checkout-section .form-select {
      border-radius: 6px;
      padding: 7px 16px;
      font-family: "Poppins", sans-serif;
      border: 1px solid #C48E4B;
      margin-bottom: 20px;
      font-size: 15px;
    }

    .checkout-section label {
      text-transform: uppercase;
      font-size: 15px;
      color: #131B2F;
    }

    .checkout-section .order-summary {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .checkout-section .summary-title {
      font-weight: 600;
      font-size: 20px;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-family: "Bellefair", serif;
      color: #C48E4B;
      border-bottom: 1px solid #C48E4B;
      padding-bottom: 12px;

    }

    .checkout-section .summary-line {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      font-size: 15px;
    }

    .checkout-section .summary-total {
      font-weight: 700;
      font-size: 18px;
      color: #c47a24;
      margin-top: 10px;
      border-top: 1px solid #ddd;
      padding-top: 12px;
    }

    .checkout-section .btn-checkout {
      background: #c47a24;
      color: #fff;
      border-radius: 25px;
      padding: 10px 25px;
      font-weight: 600;
      width: 100%;
    }

    .checkout-section .btn-checkout:hover {
      background: #a9651f;
    }

    .checkout-section .shipping-method {
      font-weight: 400;
      margin-bottom: 10px;
    }

    .checkout-section .shipping-section {
      background: #EAE7DE;
    }

    .checkout-section .form-check {
      padding-left: 0;
    }

    .checkout-section .shipping-check {
      padding: 12px;
      padding-left: 25px;
      border: 1px solid #C48E4B;
      border-radius: 6px;
    }

    .checkout-section .shipping-check input {
      margin-left: 0px;
      margin-right: 12px;
    }


    /* ------- Css for Login page -------------- */

    /* Login Marquee */

    /* .login-marquee-1 .marquee-container {
      height: 500px;
      overflow: hidden;
      position: relative;
    }

    .login-marquee-1 .marquee-images {
      display: flex;
      flex-direction: column;
      animation: scroll-up 60s linear infinite;
    }

    .login-marquee-1 .marquee-images img {
      width: 100%;
      margin-bottom: 15px;
      border-radius: 8px;
    } */

    /* ------------------- */


    .login-container .left-images,
    .login-container .col-lg-6.col-md-12 {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    .login-container .left-images img {
      width: 100%;
      object-fit: cover;
      margin-bottom: 20px;
    }

    /* Custom shapes */
    .login-container .rounded-oval {
      border-radius: 50% / 30%;
    }

    .login-container .circle {
      border-radius: 50%;
    }

    .login-container .rounded-top {
      border-top-left-radius: 50% 30%;
      border-top-right-radius: 50% 30%;
    }

    .login-container .rounded-bottom {
      border-bottom-left-radius: 50% 30%;
      border-bottom-right-radius: 50% 30%;
    }

    /* Login box */

    .login-container .login-box h4 {
      font-weight: 600;
      margin-bottom: 20px;
      margin-top: 35px;
      color: #131B2F;
      text-align: center;
      text-transform: uppercase;
      font-size: 17px;
    }

    .login-container .btn-google {
      background: transparent;
      border: 1px solid #C48E4B;
      border-radius: 5px;
      padding: 8px;
      font-weight: 400;
      margin-bottom: 15px;
      width: 100%;
      font-family: "Poppins", sans-serif;
      font-size: 13px;
    }

    .login-container .btn-google:hover {
      background: #fff;
    }

    .login-container label {
      font-family: "Poppins", sans-serif;
      font-size: 14px;

    }

    .login-container input {
      border: 1px solid #C48E4B;
      font-family: "Poppins", sans-serif;
      background: transparent;
      font-size: 14.5px;
    }

    .login-container .btn-login {
      background: #c47a24;
      border: none;
      font-size: 16px;
      border-radius: 25px;
      padding: 10px 25px;
      font-weight: 400;
      color: #fff;
      font-family: "Poppins", sans-serif;

      /* width: 100%; */
    }

    .create-account-btn {
      font-size: 15px;
      border-radius: 25px;
      padding: 10px 25px;
      font-weight: 400;
      color: #C48E4B;
      font-family: "Poppins", sans-serif;
      border: 1px solid #C48E4B;
    }

    .create-account-btn:hover {
      font-size: 15px;
      border-radius: 25px;
      padding: 10px 25px;
      font-weight: 400;
      color: #fff;
      background: #C48E4B;
    }

    .login-container .btn-login:hover {
      background: #a9651f;
    }

    .login-container .btn-login i {
      margin-left: 6px;
      font-size: 14px;
    }

    .login-container .form-check-label {
      font-size: 14px;
    }

    .login-container .small-link {
      font-size: 13px;
      font-family: "Poppins", sans-serif;
      color: #000;
    }

    .or-section {
      font-family: "Poppins", sans-serif;
      color: #131B2F;
      font-size: 12px;
    }

    .login-modal .modal-content {
      border: 1px solid #C48E4B;
      border-radius: 5px;
      background: #FBF8F3;
    }

    .log-in-tabs {
      border: none;
    }

    .log-in-tabs li button {
      color: #000 !important;
      font-size: 17px !important;
    }

    .log-in-tabs li button:hover,
    .log-in-tabs li button:focus {
      border: none !important;
      border-bottom: 1px solid #B68243 !important;
    }

    .log-in-tabs li button.active {
      background: none !important;
      border: none;
      border-bottom: 1px solid #B68243 !important;
      color: #B68243 !important;
    }

    .guest-section label {
      margin-top: 25px;
      margin-bottom: 30px;
    }

    .guest-section label span.break-line {
      display: block;
      color: #C48E4B;
    }

    @media (max-width: 370px) {
      .log-in-tabs li button {
        padding: 8px;
      }
    }

    /* ------ CSS for Journal Page ------ */

    .latest-stories-section {
      margin-bottom: 120px;
    }

    .latest-stories-section .card {
      width: 95%;
      background: none;
      margin: 0 auto;
      margin-bottom: 60px;
    }

    .latest-stories-section .arch-frame {
      width: 100%;
      aspect-ratio: 1/1.1;
      overflow: hidden;
      border-top-left-radius: 50% 40%;
      border-top-right-radius: 50% 40%;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
    }

    .latest-stories-section .arch-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .latest-stories-section h6 {
      color: #131B2F;
      font-size: 18px;
      font-weight: 400;
      line-height: 29px;
      text-transform: uppercase;
    }


    /* --- Swiper -- */

    .journal-heading {
      font-size: 50px;
    }

    .journal-slider-section .swiper {
      width: 100%;
    }

    .journal-slider-section .swiper-slide {
      display: flex;
      flex-wrap: wrap;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      width: 60%;
      border-radius: 0;
    }

    .journal-slider-section .slide-image {
      /* flex: 0 0 50%; */
      width: 100%;
    }

    .journal-slider-section .slide-image img {
      width: 100%;
      height: 400px;
      /* set desired height */
      object-fit: cover;
      display: block;
    }

    .journal-slider-section .slide-content {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 50%;
      padding: 60px;
      background: rgba(0, 0, 0, 0.5);
      /* transparent overlay */
      color: #fff;
      text-align: left;
      height: 100%;
      align-items: center;
    }

    .journal-slider-section .slide-content h4 {
      font-weight: bold;
      margin-bottom: 15px;

    }

    .journal-slider-section .slide-content p {
      font-size: 15px;
      margin-bottom: 20px;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
    }

    .journal-slider-section .slide-content a.btn {
      width: fit-content;
      border-radius: 50px;
      padding: 10px 18px;
      font-size: 15px;
      font-family: "Poppins", sans-serif;

    }

    .journal-slider-section .swiper-button-next {
      right: 15%;
    }

    .journal-slider-section .swiper-button-prev {
      left: 15%;
    }

    .journal-slider-section .swiper-button-next,
    .journal-slider-section .swiper-button-prev {
      color: #000;
      border-radius: 50%;
      height: 40px;
      width: 40px;
      border: 1px solid #000;
    }

    @media (max-width: 991px) {

      .journal-slider-section .slide-content {
        width: 100% !important;
        text-align: center;
        align-items: center;
      }

      .journal-slider-section .swiper {
        padding: 0 30px;
      }

      .journal-slider-section .swiper-slide {
        width: 100%;
      }

      .journal-slider-section .slide-image img {
        height: auto;
      }
    }

    @media (max-width: 767px) {

      .latest-stories-section {
        padding: 0 15px;
      }

      .journal-slider-section .swiper {
        width: 100%;
      }

      .journal-slider-section .slide-content {
        padding: 25px;
      }

      .journal-slider-section .swiper-button-prev {
        left: 2%;
      }

      .journal-slider-section .swiper-button-next {
        right: 2%;
      }

      .latest-stories-section .card {
        width: 100%;
      }

      .journal-slider-section .swiper-slide {
        min-height: 230px;
      }

      .journal-slider-section .swiper-wrapper {
        min-height: 257px;
      }

      .journal-slider-section .slide-image img {
        height: 100%;
      }
    }




    /*----- CSS for blog ------ */

    .blog-banner {
      min-height: 300px;
    }

    /*----- CSS for blog details ------ */


    .journal-bg {
      height: 350px;
      align-content: center;
      color: #fff;
    }

    .blog-details-slider {
      margin-top: 90px;
    }

    .blog-details-p p {
      margin-bottom: 35px;
    }

    .blog-details-p img {
      width: 100%;
    }

    .journal-bg h2 {
      width: 70%;
      margin: 0 auto;
      text-transform: uppercase;
    }

    .blog-details-slider .product-title {
      text-align: center;
    }

    .blog-details-slider .product-slide {
      text-align: center;

    }

    .blog-details-slider .btn-link-a.product-view-btn {
      width: 60%;
      display: inline;
    }


    /*------ CSS For cart popup -------*/

    /* Cart Popup */
    .cart-popup {
      display: none;
      position: absolute;
      top: 70px;
      right: 7%;
      width: 350px;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      z-index: 9999;
      border: 1px solid #C48E4B;
      padding: 25px;
    }

    .cart-popup-header {
      border-bottom: 1px solid #C48E4B;
      padding-bottom: 4px;
      margin-bottom: 20px;
    }

    .cart-popup .cart-item {
      margin-bottom: 12px;
    }

    .cart-item-img {
      width: 60px;
      height: 70px;
      margin-right: 14px;
      border-radius: 0px;
    }

    .cart-item-info p {
      margin: 0;
    }

    .cart-item-info .cart-item-name {
      font-size: 14px;
      color: #131B2F;
    }

    .cart-item-info .cart-item-price {
      font-weight: bold;
      color: #a65c00;
      font-size: 13px !important;
    }

    .cart-item-info .cart-item-qty {
      font-size: 12px;
    }

    .cart-popup-footer {
      border-top: 1px solid #C48E4B;
      margin-top: 10px;
      padding-top: 10px;
    }

    .cart-popup .close-btn {
      cursor: pointer;
      font-size: 25px;
      right: 29px;
      top: 16px;
    }

    .cart-popup h5 {
      color: #131B2F;
      font-size: 22px;
      font-weight: 600;
    }

    .cart-popup .cart-popup-footer button {
      font-size: 15px;
      border-radius: 25px;
      padding: 10px 25px;
      font-weight: 400;
      color: rgb(196, 142, 75);
      font-family: "Poppins", sans-serif;
      border: 1px solid rgb(196, 142, 75);
    }

    .cart-popup .cart-popup-footer button:hover {
      background: #C48E4B;
      color: #fff;
    }

    @media (max-width: 400px) {
      .cart-popup {
        right: 3%;
      }
    }


    /* ------ Css for inner page ------ */

    .inner-banner-bg {
      min-height: 200px;
      background: #B79158;
      padding-top: 60px;
      color: #fff;
      margin-bottom: 40px;
    }

    .inner-template {
      margin-bottom: 110px;
    }


    .inner-template h2 {
      font-size: 35px;
      margin-top: 35px;
      margin-bottom: 25px;
    }

    h1.banner-title {
      font-size: 55px;
      margin-top: 15px;
    }


    .inner-template ul {
      font-family: "Poppins", sans-serif;
      font-size: 18px;
      font-weight: 300;
      line-height: 26px;
    }

    @media (max-width: 450px) {
      h1.banner-title {
        font-size: 40px;
      }
    }

    /* ------------ CHeckout success message section CSS ------------ */

    .checkout-success .modal-content {
      border: 1px solid #C48E4B;
    }

    .checkout-success .modal-content h5 {
      font-size: 28px;
      color: #C48E4B;
      text-transform: uppercase;

    }

    .checkout-success .modal-content p.fw-semibold {
      text-transform: uppercase;
      font-size: 18px;
      color: #000;
    }

    .checkout-success .modal-content p.text-muted {
      font-family: "Poppins", sans-serif;
      font-size: 16px;
      color: #000;
      font-weight: 300;
    }

    .continue-shopping-btn {
      font-size: 15px;
      border-radius: 25px;
      padding: 12px 25px;
      font-weight: 400;
      color: #C48E4B;
      font-family: "Poppins", sans-serif;
      border: 1px solid #C48E4B;
      width: 240px;
      margin: 0 auto;
    }

    .continue-shopping-btn:hover {
      background: #C48E4B;
      color: #fff;
    }

    .checkout-failed h5 {
      color: #EB4335 !important;
    }

    .checkout-success .modal-content p.small-2 {
      font-size: 14px;
    }

    .fail-payment-btn {
      font-size: 15px;
      border-radius: 25px;
      padding: 12px 25px;
      font-weight: 400;
      color: #131B2F;
      font-family: "Poppins", sans-serif;
      border: 1px solid #131B2F;
      width: 240px;
      margin: 0 auto;
    }

    .fail-payment-btn:hover {
      background: #131B2F !important;
      color: #fff !important;
    }

    .fail-payment-btn i {
      font-size: 12px;
    }

    /*  ------ CSS for Checkout section ------- */

    .address-box {
      background: transparent;
      margin-bottom: 50px;
    }

    .address-box:has(input[type="radio"]:checked) {
      border-color: #C48E4B;
    }

    .address-box h5 {
      font-size: 26px;
    }

    .address-title {
      font-weight: 600;
      font-size: 18px;
      color: #b67a2a;
      /* golden-brown color */
    }

    .btn-add {
      background: #C48E4B;
      border: none;
      font-size: 14px;
      padding: 6px 15px;
      color: #fff;
      border-radius: 6px;
    }

    .btn-add:hover {
      background: #a9651f;
    }

    .error-msg {
      background: #e63946;
      color: #fff;
      text-align: center;
      border-radius: 5px;
      padding: 8px;
      margin-top: 15px;
      font-size: 14px;
    }

    .same-address {
      border: 1px solid #ddd;
      padding: 10px;
      border-radius: 6px;
      margin-top: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .cart-table-line {
      border-bottom: 1px solid #ddd;
      padding-bottom: 15px;
      margin-bottom: 20px;
      font-size: 15px;
    }

    .cart-table-line .cart-item {
      font-weight: 500;
      margin-bottom: 10px;
    }

    .cart-table-line .cart-price,
    .cart-table-line .cart-subtotal {
      font-weight: 500;
    }

    .same-address label {
      text-transform: none;
    }

    .add-address-modal {
      background: transparent;
    }

    .add-address-modal .modal-content {
      background: #FBF8F3;
      border: 1px solid #C48E4B;
      padding: 22px;

    }

    .add-address-modal .modal-content h5 {
      color: #131B2F;
      font-weight: 400;
      font-size: 24px;
    }

    .add-address-modal .modal-content label {
      color: #131B2F;
      font-family: "Poppins", sans-serif;
      text-transform: uppercase;
      font-size: 13px;
    }

    .add-address-modal .modal-content input {
      color: #131B2F;
      font-family: "Poppins", sans-serif;
      border: 1px solid #C48E4B;
      font-size: 13px;
      font-weight: 400;

    }

    .add-address-modal .modal-content button {
      background: #c47a24;
      color: #fff;
      border-radius: 25px;
      padding: 10px 35px;
      font-weight: 400;
      border: none;
      font-family: "Poppins", sans-serif;
      font-size: 14px;
    }

    .add-address-modal .modal-content button:hover {
      background: #a9651f;
    }

    .add-address-modal .modal-content button.btn-cancel {
      border: 1px solid #c47a24;
      background: #fff;
      color: #c47a24;
    }

    .add-address-modal .modal-content button.btn-cancel:hover {
      background: #c47a24;
      color: #fff;

    }

    /* ----------- Css for added Address  -------------- */

    .address-card {
      display: flex;
      align-items: flex-start;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 12px 15px;
      margin-bottom: 12px;
      background: #fff;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .address-card input {
      margin-right: 12px;
      margin-top: 5px;
    }

    .address-card input[type="radio"],
    .address-card input[type="checkbox"] {
      accent-color: #b67a30;
      /* custom radio/checkbox color */
    }

    .address-card .address-content {
      display: flex;
      justify-content: space-between;
      width: 100%;
    }

    .address-actions {
      display: flex;
      flex-direction: column;
      gap: 33px;
      margin-left: 12px;
    }

    .address-actions button {
      background: none;
      border: none;
      color: #b67a30;
      font-size: 15px;
      cursor: pointer;
    }

    .address-content {
      color: #131B2F;
      text-transform: none;
      font-size: 14px;
    }

    .address-name {
      font-weight: 600;
      font-size: 16px;
      line-height: 30px;
    }

    .same-address input[type="checkbox"] {
      accent-color: #b67a30;
    }

    /*--------- CSS For my account section -------*/

    .my-account {
      margin-bottom: 90px;
    }

    .my-account h2 {
      font-weight: 500;
      font-size: 42px;
    }

    .my-account .profile-sidebar {
      border-radius: 8px;
      padding: 15px 0;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 16px;
    }

    .my-account .profile-sidebar .nav-link {
      color: #333;
      font-weight: 400;
      margin: 5px 10px;
      padding: 11px 25px;
      background: #E6E1DA;
      border-radius: 50px;
    }

    .my-account .profile-sidebar .nav-link.active,
    .my-account .profile-sidebar .nav-link:hover {
      background: #C48E4B;
      color: #fff;
    }

    .my-account .account-box {
      background: #fff;
      border: 1px solid #C48E4B;
      border-radius: 8px;
      padding: 31px;
    }

    .my-account .account-box h5 {
      font-weight: 500;
      color: #C48E4B;
      border-bottom: 1px solid #C48E4B;
      padding-bottom: 14px;
      margin-bottom: 30px;
      text-transform: uppercase;
      font-size: 30px;
    }

    .my-account form {
      font-family: "Poppins", sans-serif;
      color: #131B2F;
    }

    .my-account .form-label {
      color: #131B2F;
      text-transform: uppercase;
      font-size: 13px;
    }

    .my-account .form-control {
      border: 1px solid #c9a873;
      border-radius: 4px;
      font-size: 13px;
    }

    .my-account input[type="password"] {
      border-radius: 4px !important;
    }

    .my-account .btn-save {
      background: #c47a24;
      color: #fff;
      border-radius: 25px;
      padding: 10px 25px;
      font-weight: 400;
      margin-top: 20px;
    }

    .my-account .btn-save:hover {
      background: #a78457;
    }

    .my-account .assist-bar {
      background: #F3EBDE;
      padding: 10px;
      font-size: 14px;
      margin-bottom: 30px;
      font-family: "Poppins", sans-serif;
      border-radius: 4px;

    }

    .my-account .assist-bar a {
      color: #c48b2c;
      text-decoration: none;
      font-weight: 500;
    }

    .my-account .input-group-text {
      background: none;
      border: none;
      color: #C48E4B;
    }

    /* ---- CSS for order table ---- */

    .table-custom {
      width: 100%;
      border-collapse: collapse;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 14px;

    }

    .table-custom th {
      background: #F3EBDE;
      font-weight: 400;
      color: #131B2F;
      padding: 10px;
    }

    .table-custom td {
      padding: 10px;
      border-bottom: 1px solid #eee;
      color: #333;
    }

    .table-custom tr:last-child td {
      border-bottom: none;
    }

    /* ------ css foe saved address ------- */

    .saved-address .address-box {
      background: #fff;
      border: 1px solid #e0d7c9;
      border-radius: 8px;
      padding: 0px;
      margin-bottom: 20px;
      font-family: "Poppins", sans-serif;

    }

    .saved-address-section h5 {
      border: none !important;
      margin-bottom: 0 !important;
    }

    .saved-address-section .border-sec {
      /* border-bottom: 1px solid #7a5a27; */
      margin-bottom: 30px;
    }

    .saved-address .address-box h6 {
      font-size: 14px;
      font-weight: 600;
      color: #7a5a27;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
      border-bottom: 1px solid #F7E9E0;
      padding: 10px 20px;
    }

    .saved-address .address-box h6 i {
      font-size: 16px;
      color: #7a5a27;
      cursor: pointer;
      margin-left: 8px;
    }

    .saved-address .address-box label {
      display: flex;
      gap: 10px;
      cursor: pointer;
      padding: 5px 20px 22px;
    }

    .saved-address .address-box input[type="radio"] {
      accent-color: #c9a873;
      width: 18px;
      height: 18px;
      margin-top: 4px;
    }

    .saved-address .address-box .name {
      font-weight: 500;
      margin-top: 0;
      color: #131B2F !important;
      font-size: 15px;
    }

    .saved-address .address-box .name-address {
      font-weight: 400;
      font-size: 14px;
      margin-top: 5px;
    }

    .saved-address .saved-addresses-box {
      background: #fff;
      border: 1px solid #e0d7c9;
      border-radius: 8px;
      padding: 25px;
    }

    .saved-address .saved-addresses-box h5 {
      font-weight: 600;
      color: #7a5a27;
      text-transform: uppercase;
      margin-bottom: 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .saved-address .btn-add {
      background: #c9a873;
      color: #fff;
      border-radius: 6px;
      padding: 5px 15px;
      font-size: 14px;
      border: none;
    }

    .saved-address .btn-add:hover {
      background: #a78457;
    }

    .saved-address .address-box button {
      background: none;
      border: none;
    }

    .saved-address .address-box .fa-trash {
      color: #C48E4B;
    }

    .saved-address-section .btn-add {
      background: #C48E4B;
      border: none;
      font-size: 14px;
      padding: 6px 15px;
      color: #fff;
      border-radius: 6px;
      font-family: "Poppins", sans-serif;

    }

    .saved-address-section .btn-add:hover {
      background: #a9651f;
    }

    .logout-btn {
      background: #C48E4B;
      color: #fff;
      border-color: #C48E4B;
    }

    .logout-btn:hover {
      background: #a9651f !important;
    }

    .goback-logout {
      color: #131B2F;
      font-family: "Poppins", sans-serif;
      text-decoration: none;
    }

    .logout-text {
      color: #131B2F !important;
    }

    .logout-link {
      cursor: pointer;
    }

    #logoutModal h5 {
      color: #131B2F;
    }

    /*------------ CSS for Change password modal -----------*/

    .change-password-modal .modal-content {
      background: #FBF8F3;
      border: 1px solid #C48E4B !important;
    }

    .cancel-btn-pwd {
      border: 1px solid #c47a24;
      background: #fff;
      color: #c47a24;
      font-size: 15px;
      border-radius: 25px;
      padding: 12px 25px;
      width: 100%;
    }

    .change-password-modal .modal-content button {
      font-size: 14px;
    }

    .cancel-btn-pwd:hover {
      border: 1px solid #c47a24;
      background: #fff;
    }

    .change-password-modal h5 {
      font-size: 24px;
      font-weight: 400;
    }

    .change-password-modal .modal-content .row {
      width: 100%;
    }

    .change-pass-link {
      text-decoration: none;
    }

    @media (max-width: 767px) {

      .set-pwd-btn {
        width: 100%;
      }
    }

    .black-text {
      color: #131B2F !important;
      font-size: 24px !important;
      font-weight: 400 !important;
    }

    .email-color {
      color: #B68243;
    }

    .reset-link-popup p {
      color: #131B2F;
      font-weight: 400;
      font-size: 14px;
    }

    .reset-link-popup .modal-content {
      background: #FBF8F3;
      border: 1px solid #C48E4B !important;
    }

    .red-text {
      color: #EB4335 !important;
    }

    .thank-you-content {
      background: #FBF8F3;
      border: 1px solid #C48E4B;
    }

    .thank-you-content h5 {
      font-size: 28px;
      margin-bottom: 20px;
    }

    .thank-you-content p {
      font-family: "Poppins", sans-serif;
      font-size: 16px;
      font-weight: 300;
    }

    .thank-you-content p.fw-semibold {
      text-transform: uppercase;
      font-size: 18px;
      font-family: "Bellefair", serif;

    }

    .failed-text {
      color: #EB4335 !important;
    }

    .reset-content .form-label,
    .reset-content .form-control {
      font-size: 13px;
    }

    .cancel-btn-width {
      width: 57% !important;
    }

    @media (max-width: 747px) {
      .remove-flex-res {
        display: block !important;
      }

      .remove-flex-res button {
        width: 100% !important;
        margin-bottom: 10px;
      }
    }

    /* CSS for new menu */
    .product-sidebar .nav-link {
      color: #333;
      font-weight: 500;
      padding: 8px 0;
      display: block;
    }

    .product-sidebar .nav-link:hover,
    .product-sidebar .nav-link.active {
      color: #c18b35;
    }

    .submenu .nav-link {
      font-size: 0.9rem;
      padding-left: 20px;
      color: #7a7a7a;
    }

    .submenu .nav-link:hover {
      color: #c18b35;
    }

    .level1 {
      font-weight: 600;
      position: relative;
    }

    .caret {
      float: right;
      transition: transform 0.3s ease;
      display: inline-block;
    }

    /* rotate down instead of sideways */
    .caret.rotate {
      transform: rotate(90deg);
      /* point down */
    }

    .product-sidebar .collapse>.nav-link,
    .product-sidebar .collapse>a,
    .product-sidebar .collapse .nav-link {
      display: block !important;
      width: 100%;
      padding: 6px 0;
    }

    .product-sidebar .nav-link[aria-expanded="true"] {
      color: #c18b35;
    }

    .product-section .sidebar ul {
      padding-left: 0px;
    }

    @media (max-width: 575px) {
      .product-section .sidebar {
        padding: 0 10px;
      }
    }

    .product-details-section .modal-content{
      background-color:rgba(0, 0, 0, 0.5);
    }

    /* Prevent jerking when submenu opens */
.product-sidebar .nav-item {
  position: relative;
}

/* Keep main category height fixed and prevent layout shift */
.product-sidebar .nav-link.level1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px 10px 0;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Fix caret alignment so it doesn't move */
.product-sidebar .nav-link.level1 .caret {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Rotate caret smoothly when expanded */
.product-sidebar .nav-link.level1[aria-expanded="true"] .caret {
  transform: rotate(90deg);
}

/* Smooth submenu open */
.product-sidebar .submenu.collapse {
  transition: height 0.3s ease, opacity 0.3s ease;
}

.product-sidebar .submenu.collapsing {
  height: 0 !important;
  overflow: hidden;
  opacity: 0;
}

.product-sidebar .submenu.collapse.show {
  height: auto !important;
  opacity: 1;
  padding-left: 10px;
}
