@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bad+Script&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Oleo+Script:wght@400;700&display=swap');

* {
    font-family: "Poppins", sans-serif;

  }

  :root,
  [data-bs-theme=light] {

    --bs-primary-rgb: 7, 44, 99 !important;
    --bs-primary: #072c63;
    --bs-blue: #072c63;


  }

  .btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #072c63 !important;
    --bs-btn-border-color: #0d6efd;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #093981 !important;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0d6efd;
    --bs-btn-disabled-border-color: #0d6efd
  }


.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none
}

.bg-warning{
  background-color:#fff7de !important;
  }


  h1{
    font-size: 52px !important;
  }
  p{
    color: var(--bs-gray-600);
  }
.navbar-toggler, .navbar-toggler:focus, .navbar-toggler:hover{
    box-shadow:none !important;
    border: 0px !important;
}
.navbar-nav .nav-link{
    padding: 20px 16px !important;
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.navbar-nav.top-logo-center .nav-link{
  padding: 10px 16px !important;
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.dropdown-toggle::after {
  margin-left: 1rem !important;}

  .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: var(--bs-navbar-active-color);

}
.navbar-nav .nav-link.active:before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff2e;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f3e8732e;
    border-bottom: 3px solid #ffc720;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.navbar-nav .nav-link:hover:before{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

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

.dropdown-menu{
    border-radius: 0% !important;
    border:0px !important;
    padding: 0px !important;

}
.dropdown-menu .dropdown-item{
    padding: 10px 25px !important;
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;

}
.dropdown-menu .dropdown-item:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff2e;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.dropdown-menu .dropdown-item:hover{
    background-color: #ffffff2e;
}
.dropdown-menu .dropdown-item:hover:before{
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.nav-design-five .navbar-collapse{
    flex-grow:0;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .links-section {
       flex:30%;
       padding-left: 20px;
  }

  .logo-section{
    flex:30%;
    justify-content: center;
    display: flex;

  }

  .cta-links {

    display: flex;
    justify-content: flex-end;
    flex:30%;

  }

  .hideinlg{
    display: none !important;
  }
  .hideinsm{
    display: block !important;
  }
  .overlay{
    position: relative;
  }
.overlay::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -99;
    background-image: linear-gradient(0deg, rgba(255,0,0,0), rgb(0, 0, 0, 0.5));
    backdrop-filter: blur(3px);
  }

  .transparent-nav{
    background-color: transparent;
  }


  /* Responsive layout - makes a one column-layout instead of a two-column layout */
  @media (max-width: 800px) {
    .hideinlg{
        display: block !important;
      }
      .hideinsm{
        display: none !important;
      }
    .logo-section{
        flex: 100%;
        display: none;
      }
    .cta-links, .links-section {
      flex: 100%;
    }
    .links-section {

      order:1
    }
    .cta-links {
    order:2
    }
  }
  .hero-section-01 {
  background-color: #6b3a00;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.62) 100%),
    url('img/sliders/slider-01.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 52px;
}

.hero-section-01 .carousel-inner {
  border-radius: 50px;
}

  .hero-section-01 .carousel-item{
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;

  }
  .hero-section-01 .carousel-item:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;

    z-index: -1;
  }
  .hero-section-01 .carousel-item .container{
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .hero-section-01 .carousel-item h1{
    font-size: 80px;
    color:white;
    opacity: 0;
  }
  .hero-section-01 .carousel-item p{
    font-size: 20px;
    color:white;
    opacity: 0;
  }
  .hero-section-01 .carousel-item.active h1{
    animation: fadeInLeft 0.5s ease forwards;
  }
  .hero-section-01 .carousel-item.active p{
    animation: fadeInRight 0.5s ease forwards;
  }
  .carousel-item.active h1{
    animation: fadeInLeft 0.5s ease forwards;
  }
  .carousel-item.active p, .carousel-item.active h4, .carousel-item.active small{
    animation: fadeInRight 0.5s ease forwards;
  }
.hero-section-highlight{
  font-family: Bad Script, cursive !important;
  background: linear-gradient(120deg, #1829ab, #1798cf);
    background-position: 0 80%;
    background-repeat: no-repeat;
    background-size: 100% 20%;
}

  @keyframes fadeInLeft{
    0%{opacity: 0; transform: translateX(-50px);}
    100%{opacity: 1; transform: translateX(0px);}
  }
  @keyframes fadeInRight{
    0%{opacity: 0; transform: translateX(50px);}
    100%{opacity: 1; transform: translateX(0px);}
  }

  .hero-section-01 .carousel-indicators [data-bs-target]{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border:2px solid rgba(255, 255, 255, 0.595);
    background-position: center;
    background-size: cover;
    transition: all 0.3s linear;
    margin: 10px;
  }
  .hero-section-01 .carousel-indicators .active{
    transform: scale(1.5);
  }
  .hero-section-02{
    background-position: center;
    position: relative;
  }
  .hero-section-02::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.681);
    /*background-image: linear-gradient(-90deg, rgba(255,0,0,0), rgb(0, 0, 0));*/

  }
  .hero-section-02 .container{
    background-position: center;
    position: relative;
  }
  .hero-section-03 .carousel-item{
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
  }
  .hero-section-03 .carousel-item:before{
    content:'';
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0,0,0,0.5);*/
    background-image: linear-gradient(-90deg, rgba(255,0,0,0), rgb(0, 0, 0));

    z-index: -1;
  }
  .hero-section-03 .carousel-item .container{
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);

  }
  .hero-section-03 .carousel-item h1{
    font-size: 80px;
    color:white;
    opacity: 0;
  }
  .hero-section-03 .carousel-item p{
    font-size: 20px;
    color:white;
    opacity: 0;
  }
  .hero-section-03 .carousel-item.active h1{
    animation: fadeInLeft 0.5s ease forwards;
  }
  .hero-section-03 .carousel-item.active p{
    animation: fadeInRight 0.5s ease forwards;
  }

  .hero-section-03 .carousel-indicators [data-bs-target]{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border:2px solid rgba(255, 255, 255, 0.595);
    background-position: center;
    background-size: cover;
    transition: all 0.3s linear;
    margin: 10px;
  }
  .hero-section-03 .carousel-indicators .active{
    transform: scale(1.5);
  }

  .hero-section-04{
    background-position: center;
    position: relative;
  }
  .hero-section-04::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.423);
    /*background-image: linear-gradient(-90deg, rgba(255,0,0,0), rgb(0, 0, 0));*/

  }
  .hero-section-04 .container{
    background-position: center;
    position: relative;
  }

  .hero-section-04 .slider-box{
    background-color: rgb(62 52 52 / 45%);
    max-width: 600px;
    height: 500px;
    border-radius: 20px;
    padding: 30px;
    align-items: center;
    backdrop-filter: blur(5px);
    border: 6px solid #ffffff14;
    -webkit-box-shadow: -1px 6px 39px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 6px 39px -10px rgba(0,0,0,0.75);
    box-shadow: -1px 6px 39px -10px rgba(0,0,0,0.75);


    transform: perspective(1500px) rotateY(15deg);
    transition: transform 1s ease 0s;


  }

  .hero-section-04 .slider-box:hover{
    transform: perspective(3000px) rotateY(5deg);
  }

  @keyframes upAndDown { 0% { transform: translateY(0); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0); } }

  .animate-up-down { animation: upAndDown 2s infinite;}



  .liststyle-none {
    list-style: none;
    padding-left: 0;
    padding-right: 0;
}

.modal-backdrop {
  z-index: 0 !important;
}


.hero {
  position: relative;
  background-size: cover;
  height: 100vh;
  color: white;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the hero-overlay color and opacity */
}
.hero-content {
  position: relative;
  z-index: 1;
}
.featured-carousel .carousel-indicators button{
width: 16px;
height: 16px;
border-radius: 100%;
}
.featured-carousel .carousel-control-next-icon, .carousel-control-prev-icon {
display: inline-block;
width: 1rem;
height: 1rem;
background-repeat: no-repeat;
background-position: 50%;
background-size: 100% 100%;
}
.featured-carousel .carousel-control-next, .carousel-control-prev {
position: absolute;
top: 50% !important;
/* bottom: 0; */
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 30px;
padding: 10px;
border-radius: 50%;
color: #fff;
text-align: center;
background: #000000;
border: 0;
height: 30px;
opacity: .5;
transition: opacity .15s ease;
}

.overlay-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
  backdrop-filter: blur(3px);
  z-index: 1;
}
.overlay-full-content {
  position: relative;
  z-index: 2;
}




.accordion-button:not(.collapsed) {
color: var(--bs-accordion-active-color);
background-color: transparent;
}
.accordion-button:focus{
border-color: transparent;
box-shadow: none;
}
.accordion-button:not(.collapsed) {
box-shadow: none;
}

.accordion-one .accordion-button::after{
background-image: url(img/arrow-right-short.svg);
}
.accordion-one .accordion-button:not(.collapsed)::after {
background-image: url(img/arrow-up-short.svg);
}

.accordion-two .accordion-button::after{
background-image: url(img/plus-circle.svg);
}
.accordion-two .accordion-button:not(.collapsed)::after {
background-image: url(img/x-circle.svg);
}
.accordion-two .accordion-button{
background-color: azure;
}

.accordion-three .accordion-button::after{
background-image: url(img/plus-lg.svg);
}
.accordion-three .accordion-button:not(.collapsed)::after {
background-image: url(img/x-lg.svg);
}


.content-div {
  border: 1px solid #000;
  padding: 10px;
  margin: 10px;
  position: relative;
}
.copy-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: #007BFF;
      color: white;
      border: none;
      padding: 5px 10px;
      cursor: pointer;
      font-size: 12px;
      z-index: 9999;
  }

  .copy-btn:hover {
      background-color: #0056b3;
  }

  #output {
      margin-top: 20px;
      font-weight: bold;
  }

  .hero {
    position: relative;
    background-size: cover;
    height: 100vh;
    color: white;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust the hero-overlay color and opacity */
}
.hero-content {
    position: relative;
    z-index: 1;
}
.featured-carousel .carousel-indicators button{
  width: 16px;
height: 16px;
border-radius: 100%;
}
.featured-carousel .carousel-control-next-icon, .carousel-control-prev-icon {
display: inline-block;
width: 1rem;
height: 1rem;
background-repeat: no-repeat;
background-position: 50%;
background-size: 100% 100%;
}
.featured-carousel .carousel-control-next, .carousel-control-prev {
position: absolute;
top: 50% !important;
/* bottom: 0; */
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
 width: 30px;
padding: 10px;

border-radius: 50%;
color: #fff;
text-align: center;
background: #000000;
border: 0;
 height: 30px;
opacity: .5;
transition: opacity .15s ease;
}

.overlay1{
z-index: -1;
position: absolute;
top:0;
left:0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.overlay-solid{
position: relative;
}
.overlay-solid::before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -99;
background-color: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(2px);
}

.card-custom {
  position: relative;
  height: 400px; /* Adjust height as needed */
  border-radius: 10px;
  overflow: hidden;
   /* Replace with your image */
  background-size: 100%;
  background-position: center;
  transition: background-size 0.3s ease-in-out; /* Smooth transition */

}
.card-custom-small {
  position: relative;
  height: 192px; /* Adjust height as needed */
  border-radius: 10px;
  overflow: hidden;
   /* Replace with your image */
   background-size: 100%;
  background-position: center;
  transition: background-size 0.3s ease-in-out; /* Smooth transition */

}

.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.card-text {
  position: absolute;
  width: 100%;
  bottom: 20px;
  color: white;
  z-index: 2;
  text-align: center;
  transition: bottom 0.3s ease-in-out;
}
.card-custom:hover .card-text {
  bottom: 30px;
}
.card-custom-small:hover .card-text {
  bottom: 30px;
}

.card-custom:hover, .card-custom-small:hover {

  background-size: 105%; /* Scale up by 5% on hover */
  }

  .img-offset-left{
    margin-left:-120px; margin-top:120px !important;
    }

    @media (max-width: 992px) {
       .img-offset-left{
    margin-left:0px; margin-top:10px; z-index:21;
    }
  }

   .img-offset-right{
    margin-right:-120px; margin-top:120px !important;
    }

    @media (max-width: 992px) {
       .img-offset-right{
    margin-right:0px; margin-top:10px; z-index:21;
    }
  }


  .flip-card {
    background-color: transparent;
    width: 350px;
    height: 350px;
    perspective: 1000px;
    border-radius: 20px;
  }

  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  }

  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }

  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .flip-card-front {
    background-color: #bbb;
    color: black;
  }

  .flip-card-back {
    transform: rotateY(180deg);
  }

  .overlay1{
      z-index: -1;
      position: absolute;
      top:0;
      left:0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      }
      .text-overlay{
          bottom: 0;
          width: 100%;
          padding: 30px;
          text-align: left;
          color: white;
          position: absolute;
          background: linear-gradient(360deg, rgb(20, 19, 19) 0%, rgb(0 0 0 / 0%) 100%);
      }
      .card-custom {
        position: relative;
        height: 400px; /* Adjust height as needed */
        border-radius: 10px;
        overflow: hidden;
         /* Replace with your image */
        background-size: 100%;
        background-position: center;
        transition: background-size 0.3s ease-in-out; /* Smooth transition */

    }
    .card-custom-small {
        position: relative;
        height: 192px; /* Adjust height as needed */
        border-radius: 10px;
        overflow: hidden;
         /* Replace with your image */
         background-size: 100%;
        background-position: center;
        transition: background-size 0.3s ease-in-out; /* Smooth transition */

    }

    .gradient-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    }

    .card-text {
        position: absolute;
        width: 100%;
        bottom: 20px;
        color: white;
        z-index: 2;
        text-align: center;
        transition: bottom 0.3s ease-in-out;
    }
    .card-custom:hover .card-text {
        bottom: 30px;
    }
    .card-custom-small:hover .card-text {
        bottom: 30px;
    }

    .card-custom:hover, .card-custom-small:hover {

        background-size: 105%; /* Scale up by 5% on hover */
        }

        .article-img{
          overflow: hidden;
        }
      .article-img img{
        transform: scale(1);
        height: 300px; max-height: 300px;
        width: 100%;
        transition: transform 0.3s ease-in-out;
      }

      .article-img:hover img{
        transform: scale(1.07);
      }

      .bgoverlay{
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-color: #101b3e82;
       }

       .popup-gallery a img{
        margin:6px;
       }

       .img-wrapper {
        max-width: 100%;
        height: 65vw;
        display: flex;
        justify-content: center;
        align-items: flex-start;
      }

      @media screen and (min-width: 576px) {
        .team.carousel-inner {
          display: flex;

        }

        .team.carousel-item {
          display: block;
          margin-right: 0;
          flex: 0 0 calc(100% / 3);
        }
        .team.carousel-item article{
          min-height: 275px;
        }

        .img-wrapper {
          height: 21vw;
        }


      }

      .team.carousel-inner {
        padding: 10px;
      }

      .card {
        margin: 0 0.5em;
        border-radius: 0;
        box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
        font-size: 0.9em;
      }

      .team.carousel-control-prev,
      .team.carousel-control-next {
        width: 6vh;
        height: 6vh;
        padding: 10px;
        background-color: #2e0264;
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        opacity: 0.5;
      }

      .team.carousel-control-prev:hover,
      .team.carousel-control-next:hover {
        opacity: 0.8;
      }
      .navbar-toggler-icon {
        display: inline-block;
        width: 1.5em;
        height: 1.5em;
        vertical-align: middle;
        content: "";
        background: no-repeat center center;
        background-size: 100% 100%;
        transition: all 0.3s ease-in-out;
      }

      .navbar-toggler-icon.hamburger { background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%280, 0, 0, 0.5%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E'); }

      .navbar-toggler-icon.close {
        background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%280, 0, 0, 0.5%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M6 6l18 18M6 24L24 6"/%3E%3C/svg%3E');
        transform: rotate(180deg);
      }


      .navbar-dark .navbar-toggler-icon.hamburger { background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%28255, 255, 255, 0.5%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E'); }

      .navbar-dark .navbar-toggler-icon.close { background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%28255, 255, 255, 0.5%29" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M6 6l18 18M6 24L24 6"/%3E%3C/svg%3E');
        transform: rotate(180deg);
      }


      .accordion-button:not(.collapsed) {

        background-color: transparent !important;
        box-shadow: none !important;
    }

    .accordion-button:focus {
      border-color: transparent !important;
      box-shadow: none !important;
    }

    .magnific-img img {
      width: 100%;
      height: auto;
    }

    .mfp-bottom-bar{
      font-family: 'Abel', sans-serif;
    }


    .magnific-img {
      display: inline-block;
      width: 32.3%;
    }

    a.image-popup-vertical-fit {
      cursor: -webkit-zoom-in;
    }

    .mfp-with-zoom .mfp-container,
    .mfp-with-zoom.mfp-bg {
      opacity: 0;
      -webkit-backface-visibility: hidden;
      /* ideally, transition speed should match zoom duration */
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
      transition: all 0.3s ease-out;
    }

    .mfp-with-zoom.mfp-ready .mfp-container {
      opacity: 1;
    }

    .mfp-with-zoom.mfp-ready.mfp-bg {
      opacity: 0.98;
    }

    .mfp-with-zoom.mfp-removing .mfp-container,
    .mfp-with-zoom.mfp-removing.mfp-bg {
      opacity: 0;
    }

    .mfp-arrow-left:before {
      border-right: none !important;
    }

    .mfp-arrow-right:before {
      border-left: none !important;
    }

    button.mfp-arrow,
    .mfp-counter {
      opacity: 0 !important;
      transition: opacity 200ms ease-in, opacity 2000ms ease-out;
    }

    .mfp-container:hover button.mfp-arrow,
    .mfp-container:hover .mfp-counter {
      opacity: 1 !important;
    }

    .search-box {
      position: relative;
      display: flex;
      align-items: center;
      border: 1px solid #ced4da;
      border-radius: 0.375rem;
      padding: 0.5rem 1rem;
      background-color: white;
      width: 100%;
    }

    .search-box input {
      border: none;
      outline: none;
      flex-grow: 1;
    }

    .search-box input::placeholder {
      color: #6c757d;
    }

    .search-box .search-icon {
      color: #6c757d;
    }
    .form-control:focus {

    box-shadow: none;
}

.range-slider {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 1rem auto;
}

.range-slider input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: #ffdbba;
  border-radius: 5px;
  outline: none;
  position: absolute;
}

.range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #ddc02e;
  border: 1px solid red;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.range-slider input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #ddc02e;
  border: 1px solid red;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.slider-track {
  position: absolute;
  height: 8px;
  background: linear-gradient(to right, #ddc02e, #feed59, #ddc02e);
  border-radius: 5px;
  z-index: 1;
}

.filter-button {
  background-color: #db261b;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
}

.price-labels {
  font-weight: 500;
}

.category-list a {
  display: block;
  padding: 0.75rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  margin-bottom: 0.5rem;
  color: #343a40;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.category-list a:hover {
  background-color: #e9ecef;
}

.category-list a.active {
  background-color: #ddc02e;
  color: white;
  border-color: #eccc72;
}


    /* Magnific Popup CSS */
    .mfp-bg {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1042;
      overflow: hidden;
      position: fixed;
      background: #0b0b0b;
      opacity: 0.8;
    }

    .mfp-wrap {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1043;
      position: fixed;
      outline: none !important;
      -webkit-backface-visibility: hidden;
    }

    .mfp-container {
      text-align: center;
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      padding: 0 8px;
      box-sizing: border-box;
    }

    .mfp-container:before {
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle;
    }

    .mfp-align-top .mfp-container:before {
      display: none;
    }

    .mfp-content {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      margin: 0 auto;
      text-align: left;
      z-index: 1045;
    }

    .mfp-inline-holder .mfp-content,
    .mfp-ajax-holder .mfp-content {
      width: 100%;
      cursor: auto;
    }

    .mfp-ajax-cur {
      cursor: progress;
    }

    .mfp-zoom-out-cur,
    .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
      cursor: -moz-zoom-out;
      cursor: -webkit-zoom-out;
      cursor: zoom-out;
    }

    .mfp-zoom {
      cursor: pointer;
      cursor: -webkit-zoom-in;
      cursor: -moz-zoom-in;
      cursor: zoom-in;
    }

    .mfp-auto-cursor .mfp-content {
      cursor: auto;
    }

    .mfp-close,
    .mfp-arrow,
    .mfp-preloader,
    .mfp-counter {
      -webkit-user-select: none;
      -moz-user-select: none;
      user-select: none;
    }

    .mfp-loading.mfp-figure {
      display: none;
    }

    .mfp-hide {
      display: none !important;
    }

    .mfp-preloader {
      color: #CCC;
      position: absolute;
      top: 50%;
      width: auto;
      text-align: center;
      margin-top: -0.8em;
      left: 8px;
      right: 8px;
      z-index: 1044;
    }

    .mfp-preloader a {
      color: #CCC;
    }

    .mfp-preloader a:hover {
      color: #FFF;
    }

    .mfp-s-ready .mfp-preloader {
      display: none;
    }

    .mfp-s-error .mfp-content {
      display: none;
    }

    button.mfp-close,
    button.mfp-arrow {
      overflow: visible;
      cursor: pointer;
      background: transparent;
      border: 0;
      -webkit-appearance: none;
      display: block;
      outline: none;
      padding: 0;
      z-index: 1046;
      box-shadow: none;
      touch-action: manipulation;
    }

    button::-moz-focus-inner {
      padding: 0;
      border: 0;
    }

    .mfp-close {
      width: 44px;
      height: 44px;
      line-height: 44px;
      position: absolute;
      right: 0;
      top: 0;
      text-decoration: none;
      text-align: center;
      opacity: 0.65;
      padding: 0 0 18px 10px;
      color: #FFF;
      font-style: normal;
      font-size: 28px;
      font-family: Arial, Baskerville, monospace;
    }

    .mfp-close:hover,
    .mfp-close:focus {
      opacity: 1;
    }

    .mfp-close:active {
      top: 1px;
    }

    .mfp-close-btn-in .mfp-close {
      color: #333;
    }

    .mfp-image-holder .mfp-close,
    .mfp-iframe-holder .mfp-close {
      color: #FFF;
      right: -6px;
      text-align: right;
      padding-right: 6px;
      width: 100%;
    }

    .mfp-counter {
      position: absolute;
      top: 0;
      right: 0;
      color: #CCC;
      font-size: 12px;
      line-height: 18px;
      white-space: nowrap;
    }

    .mfp-arrow {
      position: absolute;
      opacity: 0.65;
      margin: 0;
      top: 50%;
      margin-top: -55px;
      padding: 0;
      width: 90px;
      height: 110px;
      -webkit-tap-highlight-color: transparent;
    }

    .mfp-arrow:active {
      margin-top: -54px;
    }

    .mfp-arrow:hover,
    .mfp-arrow:focus {
      opacity: 1;
    }

    .mfp-arrow:before,
    .mfp-arrow:after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      left: 0;
      top: 0;
      margin-top: 35px;
      margin-left: 35px;
      border: medium inset transparent;
    }

    .mfp-arrow:after {
      border-top-width: 13px;
      border-bottom-width: 13px;
      top: 8px;
    }

    .mfp-arrow:before {
      border-top-width: 21px;
      border-bottom-width: 21px;
      opacity: 0.7;
    }

    .mfp-arrow-left {
      left: 0;
    }

    .mfp-arrow-left:after {
      border-right: 17px solid #FFF;
      margin-left: 31px;
    }

    .mfp-arrow-left:before {
      margin-left: 25px;
      border-right: 27px solid #3F3F3F;
    }

    .mfp-arrow-right {
      right: 0;
    }

    .mfp-arrow-right:after {
      border-left: 17px solid #FFF;
      margin-left: 39px;
    }

    .mfp-arrow-right:before {
      border-left: 27px solid #3F3F3F;
    }

    .mfp-iframe-holder {
      padding-top: 40px;
      padding-bottom: 40px;
    }

    .mfp-iframe-holder .mfp-content {
      line-height: 0;
      width: 100%;
      max-width: 900px;
    }

    .mfp-iframe-holder .mfp-close {
      top: -40px;
    }

    .mfp-iframe-scaler {
      width: 100%;
      height: 0;
      overflow: hidden;
      padding-top: 56.25%;
    }

    .mfp-iframe-scaler iframe {
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
      background: #000;
    }

    /* Main image in popup */
    img.mfp-img {
      width: auto;
      max-width: 100%;
      height: auto;
      display: block;
      line-height: 0;
      box-sizing: border-box;
      padding: 40px 0 40px;
      margin: 0 auto;
    }

    /* The shadow behind the image */
    .mfp-figure {
      line-height: 0;
    }

    .mfp-figure:after {
      content: '';
      position: absolute;
      left: 0;
      top: 40px;
      bottom: 40px;
      display: block;
      right: 0;
      width: auto;
      height: auto;
      z-index: -1;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
      background: #444;
    }

    .mfp-figure small {
      color: #BDBDBD;
      display: block;
      font-size: 12px;
      line-height: 14px;
    }

    .mfp-figure figure {
      margin: 0;
    }

    .mfp-bottom-bar {
      margin-top: -36px;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      cursor: auto;
    }

    .mfp-title {
      text-align: left;
      line-height: 18px;
      color: #F3F3F3;
      word-wrap: break-word;
      padding-right: 36px;
    }

    .mfp-image-holder .mfp-content {
      max-width: 100%;
    }

    .mfp-gallery .mfp-image-holder .mfp-figure {
      cursor: pointer;
    }

    @media screen and (max-width: 800px) and (orientation: landscape),
    screen and (max-height: 300px) {

      /**
       * Remove all paddings around the image on small screen
       */
      .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
      }

      .mfp-img-mobile img.mfp-img {
        padding: 0;
      }

      .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
      }

      .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
      }

      .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
      }

      .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
      }

      .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
      }

      .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
      }
    }

    @media all and (max-width: 900px) {
      .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
      }

      .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
      }

      .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
      }

      .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
      }
    }

    @media screen and (max-width: 576px) {

      .hero-section-01{
        padding: 100px 10px 10px 10px;
      }
      .hero-section-01 .carousel-inner{
        border-radius: 10px;
      }
      .hero-section-01 .carousel-indicators{
        display: none;
      }
      .custom-nav button {
       display: none;
    }

    .hero-section-01 .breadcrumb-wrap{

      padding-top: 10px;

    }
      /* .custom-nav button {
        height: 20px;
    }

      .custom-nav .owl-prev, .custom-nav .owl-next {

        padding: 1px 8px;
        font-size: 12px;
    } */

    .btn-warning{
      font-size: 12px !important;
    }

    }


    .book-view .imgholder
    {width: 100%;
    height: 800px;}

    .book-view  .bookstrip {
      left:10px;

    }

    .book-view .imgholder img {
      border-left: 4px solid gray;
      border-top-right-radius: 16px;
      border-bottom-right-radius: 16px;
    }


    .breadcrumb-wrap{

      padding-top: 100px;

    }
    .breadcrumb-item+.breadcrumb-item::before {
      color:white !important;
    }


    .navwrapper{
      border-radius: 30px;
      padding: 10px;
    }


    .imgholder{
      /* border: 2px solid red; */
      width: 180px;
  min-width: 130px;
  height: 170px;

  margin-top: -30px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  }
  .imgholder img{

  border-left: 2px solid gray;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  }
 .product-card{
  width:100%;
 }

  .product-card:hover .imgholder {
      transform: translateY(-10px);
      }
  .bookstrip{
      width: 4px;
              height: 100%;
              background-image: linear-gradient(to right, rgba(255, 0, 0, 0), rgb(57 57 57), rgba(255, 0, 0, 0));
              z-index: 99;
              position: absolute;
              left: 3px;
              opacity: 0.4;
  }

 .ellipsis-multiline {
  color:black;

   display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-group-sm>.btn, .btn-sm {

  font-size: 11px !important;

}

.new-release .owl-controls{
display: none !important;
}

#owl-demo .owl-buttons,
#owl-demo2 .owl-buttons{
display: none !important;
}

.cat-item{
text-align: center;
max-width: 140px;
}

.owl-carousel .item{
  padding: 30px 0px;
  margin: 5px;
  color: #FFF;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}


/* Custom Prev/Next Button Styles */
.custom-nav {
display: flex;
align-items: center;
justify-content: end;
/* margin-top: 20px; */
gap: 10px;
}

.custom-nav button{
height: 35px;
}

.owl-prev, .owl-next {
background-color: #ddc12f;
color: #000000;
border: none;
padding: 1px 12px;
border-radius: 10%;
cursor: pointer;
font-size: 18px;
transition: background 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
background-color: #df7c30;
}

/* Pagination dots */
.owl-pagination {
text-align: center;
margin-top: 15px;
}

.owl-page {
display: inline-block;
margin: 0 5px;
cursor: pointer;
}

.owl-page span {
display: block;
width: 12px;
height: 12px;
background: #ccc;
border-radius: 50%;
transition: background 0.3s;
}

.owl-page.active span {
background: #04765b;
}



.top-n30 {
top:-60px;
}

.img-stack img {
transition: transform 0.3s ease;
}


.search {
  width: 100%;
  display: flex;
}

.searchTerm {
  width: 100%;
  border: 3px solid #ddc02e;
  border-right: none;
  padding: 5px;
  height: 50px;
  border-radius: 5px 0 0 5px;
  outline: none;
  color: #9DBFAF;
}

.searchTerm:focus{
  color: #ddc02e;
}

.searchButton {
  width: 50px;
  height: 50px;
  border: 1px solid #ddc02e;
  background: linear-gradient(to bottom, #feed59, #ddc02e);

  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
}

.qty-boxx>input {
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  margin-right: 15px;
  padding: 0 15px;
  text-align: center;
  width: 80px;
}

.btn-cart.lg-btn {
  font-size: 16px;
  line-height: 42px;
  padding: 0 30px;
}

.btn-cart {
  background: #fedc19;
  border: medium none;
  border-radius: 25px;
  color: #111;
  cursor: pointer;
  font-size: 14px;
  line-height: 36px;
  margin: 10px;
  padding: 0 25px;
  text-transform: capitalize;
  margin-left: -7px;
}

.qty-boxx label{
  color: #111;
  font-size: 14px;
  font-weight: 500;
  margin-right: 20px;
  text-transform: capitalize;
}

.pro-details-list ul{
list-style: none;
}
.pro-details-list li {
  margin-bottom: 5px;
}

.pro-details-list li span {
  color: #111;
  font-weight: 500;
  margin-right: 10px;
}

.pro-details-list li a {
  color: #83b71c;
}

ul, ol, li {
  padding: 0;
  margin: 0;
}
.feature-box {
  background-color: #fff7de;
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.feature-icon {
  background-color: #ffc107;
  color: black;
  font-size: 1.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.feature-divider {
  border-left: 1px solid #ccc;
  height: 100%;
}

.feature-text h6 {
  margin: 0;
  font-weight: 600;
}

.feature-text small {
  color: #6c757d;
}


.ink-mask {
  width: 120px;
  height: 120px;
  overflow: hidden;
}

.masked-image {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Apply ink-style mask */
  -webkit-mask-image: url('img/img-mask.png'); /* transparent background PNG or SVG */
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;

  mask-image: url('img/img-mask.png');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}


.accordion-button {
  box-shadow: none !important;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
}
.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

.cart-table img {
  width: 60px;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

.qty-control {
  display: flex;
align-items: center;
border: 1px solid #ddd;
border-radius: 0.5rem;
padding: 0.25rem 0.5rem;
gap: 0.5rem;
justify-content: space-between;
}

.qty-control button {
  background: #f1c40f;
  border: none;
  padding: 0.3rem 0.6rem;
  border-radius: 20%;
  font-weight: bold;
}

.btn-yellow {
  background-color: #f1c40f;
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 6px;
}

.btn-yellow:hover {
  background-color: #e0b808;
  color: #000;
}

.cart-summary {
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.cart-summary .total {
  color: #e74c3c;
  font-weight: 600;
}

.cart-summary hr {
  margin: 0.75rem 0;
}

.product-name {
  font-weight: 500;
}

.contact-wrapper {
  padding: 60px 15px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.2;
}

.contact-subtext {
  color: #6c6c6c;
  font-size: 1rem;
}

.contact-info i {
  color: #964b4b;
  font-size: 1.2rem;
  margin-right: 10px;
}

.form-control,
.form-select {
  border: none;
  border-bottom: 1px solid #aaa;
  border-radius: 0;
  padding-left: 0;
  background-color: transparent;
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: #043f2e;
  box-shadow: none;
}

.form-icon {
  color: #96710e;
  margin-right: 10px;
}

.btn-contact {
  background-color: #96710e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
}
.btn-contact:hover {
  background-color: #80610d;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
}

.btn-contact i {
  margin-right: 6px;
}

.accordion-button {
  box-shadow: none !important;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
}
.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}
 .auth-card {
    max-width: 380px;
     margin: 3rem auto;
   background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .nav-tabs {
    border-bottom: 1px solid #eee;
  }

  .nav-tabs .nav-link {
    border: none;
    color: #444;
    font-weight: 500;
  }

  .nav-tabs .nav-link.active {
    color: #e63946;
    border-bottom: 2px solid #f1c40f;
    background-color: transparent;
  }

  .form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
  }

  .form-control {
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }

  .form-control:focus {
    border-color: #f1c40f;
    box-shadow: 0 0 0 0.2rem rgba(241, 196, 15, 0.25);
  }

  .btn-custom {
    background: #f1c40f;
    color: #000;
    border: none;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.6rem;
    transition: background 0.3s ease;
  }

  .btn-custom:hover {
    background: #e0b808;
    color: #000;
  }

  .form-container {
    margin-top: 1.5rem;
  }

  .profile-card {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }

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

  .profile-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
  }

  .profile-info small {
    color: #6c757d;
  }

  .nav-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: auto;
  }

  .nav-item-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    padding: 10px 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-weight: 500;
  }

  .nav-item-profile.active,
  .nav-item-profile:hover {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0,0,0,0.05);
  }

  .nav-item-profile i {
    font-size: 1.2rem;
  }

  .form-section {
    max-width: 700px;
    margin: auto;
  }

  .form-control {
    border-radius: 8px;
    font-size: 1rem;
    padding: 10px 15px;
  }

  .form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .form-section h5 {
    font-weight: 600;
    margin: 40px 0 20px;
  }

  .btn-update {
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #000;
    color: #fff;
    border: none;
    font-weight: 500;
  }

  .btn-update:hover {
    background-color: #333;
     color: #fff;
  }

  .password-field {
    position: relative;
  }

  .password-field .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
  }

  .order-table {
    max-width: 800px;
    margin: 50px auto;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
  }

  .order-table thead {
    background-color: #f8f9fa;
  }

  .order-table th,
  .order-table td {
    vertical-align: middle;
    padding: 15px 20px;
  }

  .btn-view {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.2s ease;
  }

  .btn-view:hover {
    background-color: #333;
    color: #fff;
  }

  .btn-black {
    background-color: #000;
    color: #fff;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
  }

  .btn-black:hover {
    background-color: #333;
  }

  .address-card {
    border: 1px solid #dee2e6;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
  }

  .address-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .address-text {
    color: #212529;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .address-actions .btn {
    min-width: 100px;
  }


.form-check-label a {
  color: #6c6c6c;
  text-decoration: underline;
}
.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size:30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}

/* =========================================================
   MOBILE APP BOTTOM NAVIGATION BAR
   ========================================================= */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  z-index: 1050;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.10);
}

.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #888;
  font-size: 11px;
  gap: 2px;
  transition: color 0.2s;
  padding: 6px 0 4px;
  position: relative;
}

.mobile-nav-item i {
  font-size: 22px;
  line-height: 1;
}

.mobile-nav-item span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.mobile-nav-item.active,
.mobile-nav-item:active {
  color: #ddc12f;
}

.mobile-nav-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #ddc12f;
  border-radius: 0 0 4px 4px;
  transition: width 0.2s;
}

.mobile-nav-item.active::after {
  width: 32px;
}

.mobile-cart-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 18px);
  background: #e53935;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* =========================================================
   MOBILE — GENERAL RESPONSIVE OVERRIDES
   ========================================================= */
@media (max-width: 767.98px) {

  /* Body padding — room for fixed top header + bottom nav */
  body {
    padding-bottom: 68px !important;
  }

  /* Layout spacer (replaces hardcoded padding-top:100px div) */
  .layout-spacer {
    padding-top: 72px;
  }

  /* Navbar wrapper — tighter on mobile */
  .navwrapper {
    margin-top: 0 !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }

  nav.navbar {
    padding: 0 !important;
  }

  nav.navbar .container {
    padding: 0 !important;
    max-width: 100% !important;
  }

  /* Hero spacer adjustment */
  .hero-section-01 {
    padding-top: 72px !important;
  }

  /* Breadcrumb spacer */
  .breadcrumb-wrap {
    padding-top: 72px !important;
  }

  /* Flash messages spacer */
  .container.mt-2[style*="padding-top"] {
    padding-top: 72px !important;
  }

  /* Category strip — smaller icons on mobile */
  .cat-item {
    max-width: 80px !important;
    padding: 4px !important;
  }

  .masked-image {
    width: 56px !important;
    height: 56px !important;
  }

  .ink-mask {
    width: 64px;
    height: 64px;
  }

  .cat-item .small {
    font-size: 10px !important;
    line-height: 1.2;
  }

  /* Category stripe — horizontal scroll on mobile */
  .bg-warning .d-flex.flex-wrap {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 6px;
    gap: 2px !important;
  }

  .bg-warning .d-flex.flex-wrap .cat-item {
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* Product cards — 2 per row on mobile */
  .row .col-md-3,
  .row .col-md-4 {
    padding-left: 6px;
    padding-right: 6px;
  }

  /* Book cards */
  .product-card {
    margin-bottom: 12px;
  }

  .imgholder {
    height: 140px !important;
    width: 100% !important;
    min-width: unset !important;
  }

  /* Owl carousel nav buttons */
  .custom-nav button {
    display: flex !important;
    height: 28px;
    padding: 1px 8px;
    font-size: 13px;
  }

  /* Feature bar — 2-column grid on mobile */
  .feature-bar {
    gap: 12px !important;
  }

  .feature-item {
    min-width: 44%;
    flex-grow: 1;
  }

  /* Newsletter section */
  .bg-light-yellow {
    padding: 16px !important;
  }

  /* Footer — collapse most content on mobile */
  footer .col-md-3,
  footer .col-md-6 {
    margin-bottom: 8px;
  }

  footer h4 {
    font-size: 1rem;
    margin-bottom: 6px !important;
  }

  footer .list-inline {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  footer .list-inline li {
    padding-bottom: 4px !important;
  }

  /* Offcanvas — full height on mobile */
  .offcanvas.offcanvas-start {
    width: 82vw !important;
    max-width: 320px;
  }

  /* Search modal */
  .modal-body .wrap {
    padding: 0 8px;
  }

  /* Cart page */
  .cart-table th,
  .cart-table td {
    font-size: 12px;
    padding: 6px 4px !important;
  }

  /* Book detail page */
  .book-view .imgholder {
    height: 260px !important;
    width: 100% !important;
  }

  /* Buttons */
  .btn {
    font-size: 13px;
  }

  /* Price range slider */
  #min-range, #max-range {
    height: 4px;
  }

  /* Section headings */
  h2.section-title,
  .section-heading {
    font-size: 1.2rem;
  }

  /* Courier / partner logos */
  .col-md-3.d-flex img {
    max-height: 60px;
    object-fit: contain;
  }

  /* Move WhatsApp button above bottom nav (desktop btn is hidden; this targets any that show) */
  .floating_btn {
    bottom: 74px;
    right: 14px;
  }
}

/* =========================================================
   SMALL MOBILE (< 400px) extra tweaks
   ========================================================= */
@media (max-width: 399px) {
  .cat-item {
    max-width: 68px !important;
  }

  .masked-image {
    width: 48px !important;
    height: 48px !important;
  }

  .mobile-nav-item i {
    font-size: 20px;
  }

  .mobile-nav-item span {
    font-size: 9px;
  }
}


/* =========================================================
   LGL DESIGN SYSTEM — HOME · CART · CHECKOUT
   ========================================================= */

/* ── Shared gold button ─────────────────────────────────── */
.lgl-btn-gold {
  background: linear-gradient(135deg, #f5c518 0%, #dda800 100%);
  color: #1a0e00;
  border: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: filter 0.2s, transform 0.1s;
}
.lgl-btn-gold:hover {
  filter: brightness(1.08);
  color: #1a0e00;
}
.lgl-btn-gold:active { transform: scale(0.98); }

/* ── Section headers ────────────────────────────────────── */
.lgl-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px;
}
.lgl-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a0e00;
  margin: 0;
  padding-left: 12px;
  border-left: 4px solid #dda800;
  line-height: 1.2;
}
.lgl-section-sub {
  font-size: 0.8rem;
  color: #888;
  margin: 2px 0 0 16px;
}
.lgl-view-all {
  font-size: 0.85rem;
  font-weight: 600;
  color: #dda800;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.lgl-view-all:hover { color: #b38600; }
.lgl-section-header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lgl-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid #e0c060;
  border-radius: 50%;
  background: #fff;
  color: #b38600;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  padding: 0;
}
.lgl-carousel-arrow:hover {
  background: #dda800;
  color: #fff;
  border-color: #dda800;
}
.lgl-carousel-arrow:disabled,
.lgl-carousel-arrow.is-disabled {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
  background: #fff8dc;
  color: #c9b06a;
  border-color: #eadca8;
}

/* ── Progress Stepper ───────────────────────────────────── */
.lgl-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 8px 0;
}
.lgl-stepper__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 72px;
}
.lgl-stepper__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.lgl-stepper__step span {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}
.lgl-stepper__step--active .lgl-stepper__circle {
  background: linear-gradient(135deg, #f5c518, #dda800);
  color: #1a0e00;
  box-shadow: 0 0 0 4px #f5c51830;
}
.lgl-stepper__step--active span { color: #1a0e00; font-weight: 700; }
.lgl-stepper__step--done .lgl-stepper__circle {
  background: #1a6b3c;
  color: #fff;
}
.lgl-stepper__step--done span { color: #1a6b3c; }
.lgl-stepper__line {
  flex: 1;
  height: 2px;
  background: #dee2e6;
  margin-bottom: 16px;
  max-width: 80px;
}
.lgl-stepper__line--done { background: #1a6b3c; }

/* ── HOME: Hero ─────────────────────────────────────────── */
.lgl-hero {
  padding-top: 0 !important;
  margin-top: 0;
  position: relative;
}
.lgl-hero__inner {
  border-radius: 0;
}
.lgl-hero__img {
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
}
.lgl-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,5,0,0.55) 0%, rgba(10,5,0,0.15) 60%, transparent 100%);
  pointer-events: none;
}
.lgl-hero__caption {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  text-align: left;
  padding: 0 16px;
  max-width: 520px;
}
.lgl-hero__sub {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5c518;
  margin-bottom: 8px;
  font-weight: 600;
}
.lgl-hero__title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.lgl-hero__title span { color: #f5c518; }
.lgl-hero__ctrl {
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.28);
  border-radius: 50%;
  backdrop-filter: blur(2px);
  top: 50%;
  transform: translateY(-50%);
}

/* Keep hero clean like reference: no text overlay block */
.lgl-hero__overlay,
.lgl-hero__caption {
  display: none;
}

/* Thumbnail style indicators (reference-style) */
.lgl-hero .carousel-indicators {
  bottom: 10px;
}
.lgl-hero .carousel-indicators [data-bs-target] {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 8px;
  opacity: 0.95;
}
.lgl-hero .carousel-indicators .active {
  transform: scale(1.35);
  border-color: #2f6fda;
}

/* ── HOME: Category Chips ───────────────────────────────── */
.lgl-cats-section {
  padding: 24px 0 8px;
  background: linear-gradient(180deg, #fff8e1 0%, #ffffff 100%);
}
.lgl-cats-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.lgl-cats-scroll::-webkit-scrollbar { display: none; }
.lgl-cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  flex-shrink: 0;
  scroll-snap-align: start;
  min-width: 76px;
  padding: 4px 4px 8px;
  border-radius: 12px;
  transition: background 0.2s;
}
.lgl-cat-chip:hover { background: #fff3cd; }
.lgl-cat-chip__img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f5c518;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.lgl-cat-chip:hover .lgl-cat-chip__img {
  border-color: #dda800;
  transform: translateY(-3px);
}
.lgl-cat-chip__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lgl-cat-chip__name {
  font-size: 10px;
  font-weight: 600;
  color: #333;
  text-align: center;
  max-width: 70px;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ── HOME: Book Cards ───────────────────────────────────── */
.lgl-carousel-section {
  padding: 20px 0;
}
.lgl-owl {
  padding-bottom: 8px;
}
.lgl-book-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 4px 5px 8px;
  min-height: 338px;
}
.lgl-book-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}
.lgl-book-card__badge {
  position: absolute;
  top: 10px;
  left: 0;
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px 3px 6px;
  border-radius: 0 4px 4px 0;
  z-index: 2;
  letter-spacing: 0.5px;
}
.lgl-book-card__cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: linear-gradient(180deg, #f8f4ee 0%, #ece6da 100%);
  padding: 18px 12px 0;
  min-height: 160px;
}
.lgl-book-card__spine {
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.08));
  border-radius: 3px 0 0 3px;
}
.lgl-book-card__cover img {
  max-height: 150px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  box-shadow: -4px 4px 12px rgba(0,0,0,0.25);
  border-radius: 2px 4px 4px 2px;
  position: relative;
  z-index: 1;
}
.lgl-book-card__body {
  padding: 10px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.lgl-book-card__title {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 2);
}
.lgl-book-card__title a {
  color: #1a0e00;
  text-decoration: none;
}
.lgl-book-card__author {
  font-size: 0.72rem;
  color: #888;
  margin: 0;
  min-height: 1.2em;
}
.lgl-book-card__author a {
  color: #b38600;
  text-decoration: none;
}
.lgl-book-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 2px;
  min-height: 24px;
}
.lgl-book-card__price--sale {
  font-size: 1rem;
  font-weight: 800;
  color: #1a0e00;
}
.lgl-book-card__price--original {
  font-size: 0.75rem;
  color: #aaa;
  text-decoration: line-through;
}
.lgl-book-card__btn {
  display: block;
  text-align: center;
  margin-top: auto;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f5c518, #dda800);
  color: #1a0e00;
  text-decoration: none;
  transition: filter 0.2s;
}
.lgl-book-card__btn:hover { filter: brightness(1.08); color: #1a0e00; }
.lgl-book-card__btn--out {
  background: #e9ecef;
  color: #555;
}
.lgl-book-card__btn--out:hover { filter: brightness(0.96); color: #333; }

/* ── CART: Empty state ──────────────────────────────────── */
.lgl-empty-cart {
  text-align: center;
  padding: 48px 16px;
}
.lgl-empty-cart__icon {
  font-size: 72px;
  color: #dda800;
  opacity: 0.7;
}
.lgl-empty-cart__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.lgl-badge-cat {
  background: #fff3cd;
  color: #7a5200;
  border: 1px solid #f5c518;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.lgl-badge-cat:hover { background: #f5c518; color: #1a0e00; }

/* ── CART: Coupon bar ───────────────────────────────────── */
.lgl-coupon-bar {
  border: 1.5px dashed #dda800;
  border-radius: 10px;
  overflow: hidden;
  background: #fffdf0;
}
.lgl-coupon-bar__toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7a5200;
  cursor: pointer;
  gap: 4px;
}
.lgl-coupon-bar__toggle:hover { background: #fff8e1; }
.lgl-coupon-bar__arrow { transition: transform 0.2s; }
[aria-expanded="true"] .lgl-coupon-bar__arrow { transform: rotate(180deg); }
.lgl-coupon-bar__body { padding: 12px 16px; border-top: 1px solid #f5e08a; }

/* ── CART: Item cards ───────────────────────────────────── */
.lgl-cart-items { display: flex; flex-direction: column; gap: 12px; }
.lgl-cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.lgl-cart-item__img-wrap {
  flex-shrink: 0;
  width: 72px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f4ee;
  border-radius: 8px;
  overflow: hidden;
}
.lgl-cart-item__img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.lgl-cart-item__details { flex: 1; min-width: 0; }
.lgl-cart-item__name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a0e00;
  text-decoration: none;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lgl-cart-item__price { font-size: 0.78rem; color: #888; margin-bottom: 8px; }
.lgl-cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.lgl-qty-btn {
  background: #f5f5f5;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  color: #555;
  transition: background 0.15s;
  line-height: 1;
}
.lgl-qty-btn:hover { background: #f5c518; color: #1a0e00; }
.lgl-qty-input {
  width: 42px;
  height: 32px;
  border: none;
  border-left: 1.5px solid #ddd;
  border-right: 1.5px solid #ddd;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  -moz-appearance: textfield;
}
.lgl-qty-input::-webkit-inner-spin-button,
.lgl-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.lgl-cart-item__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.lgl-cart-item__total { font-weight: 800; font-size: 1rem; color: #1a0e00; }
.lgl-cart-item__remove {
  color: #ccc;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.lgl-cart-item__remove:hover { color: #e53935; }

/* ── CART: Order Summary ────────────────────────────────── */
.lgl-order-summary {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  position: sticky;
  top: 90px;
}
.lgl-order-summary__title {
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0e8d5;
  margin-bottom: 12px;
}
.lgl-order-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: #555;
  padding: 5px 0;
}
.lgl-order-summary__row--discount { color: #2e7d32; font-weight: 600; }
.lgl-order-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a0e00;
  border-top: 2px solid #f0e8d5;
  padding-top: 12px;
  margin-top: 8px;
}
.lgl-btn-checkout {
  border-radius: 10px;
  padding: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.lgl-trust-row {
  display: flex;
  justify-content: space-around;
  font-size: 0.72rem;
  color: #888;
  gap: 4px;
}
.lgl-trust-row span { display: flex; align-items: center; gap: 4px; }
.lgl-trust-row i { color: #dda800; }

/* ── CHECKOUT: Cards ────────────────────────────────────── */
.lgl-checkout-card {
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  overflow: hidden;
  margin-bottom: 0;
}
.lgl-checkout-card__header {
  padding: 14px 20px;
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a0e00;
  border-bottom: 1px solid #f5e08a;
}
.lgl-checkout-card__body { padding: 20px; }

/* Address select cards */
.lgl-address-select-card {
  border-radius: 14px !important;
  border: 2px solid #e9ecef !important;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.lgl-address-select-card:hover {
  border-color: #f5c518 !important;
  box-shadow: 0 4px 16px rgba(245,197,24,0.15);
}
.lgl-address-select-card:has(input[type="radio"]:checked) {
  border-color: #f5c518 !important;
  background: #fffdf0;
  box-shadow: 0 4px 20px rgba(245,197,24,0.2);
}

/* Ship toggle */
.lgl-ship-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
}
.lgl-ship-toggle label { cursor: pointer; margin: 0; }

/* Order items in checkout sidebar */
.lgl-checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid #f5f5f5;
}
.lgl-checkout-item__img {
  position: relative;
  flex-shrink: 0;
}
.lgl-checkout-item__img img {
  width: 50px;
  height: 64px;
  object-fit: contain;
  border-radius: 4px;
}
.lgl-checkout-item__qty {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #555;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lgl-checkout-item__name {
  flex: 1;
  font-size: 0.8rem;
  font-weight: 600;
  color: #333;
  min-width: 0;
}
.lgl-checkout-item__total {
  font-size: 0.85rem;
  font-weight: 800;
  color: #1a0e00;
  white-space: nowrap;
}

/* Checkout summary table */
.lgl-checkout-summary { padding: 12px 16px 4px; }
.lgl-checkout-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #555;
  padding: 4px 0;
}
.lgl-checkout-summary__row--discount { color: #2e7d32; font-weight: 600; }
.lgl-checkout-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a0e00;
  border-top: 2px solid #f0e8d5;
  padding: 12px 16px;
  margin: 4px 0 0;
}

/* Payment option cards */
.lgl-pay-options { display: flex; flex-direction: column; gap: 12px; }
/* Single-gateway badge (Razorpay-only mode) */
.lgl-pay-online-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid #b3d4f5;
  border-radius: 12px;
  background: #e3f2fd;
  color: #1565c0;
}
.lgl-pay-option input[type="radio"] { display: none; }
.lgl-pay-option__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lgl-pay-option__card:hover { border-color: #f5c518; background: #fffdf0; }
.lgl-pay-option__card--selected {
  border-color: #dda800;
  background: #fffbea;
}
.lgl-pay-option__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.lgl-pay-option__icon--online { background: #e3f2fd; color: #1565c0; }
.lgl-pay-option__icon--payu   { background: #fff3e0; color: #e65100; }
.lgl-pay-option__title { font-weight: 700; font-size: 0.9rem; color: #1a0e00; }
.lgl-pay-option__sub { font-size: 0.75rem; color: #888; }
.lgl-pay-option__check { margin-left: auto; font-size: 1.2rem; color: #ddd; }
.lgl-pay-option__card--selected .lgl-pay-option__check { color: #dda800; }

/* Trust badges */
.lgl-trust-badges {
  display: flex;
  justify-content: space-around;
  gap: 4px;
  padding: 10px 0 4px;
  border-top: 1px solid #f0f0f0;
}
.lgl-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: #777;
}
.lgl-trust-badge i { font-size: 1.2rem; color: #dda800; }

/* Mobile summary toggle */
.lgl-mobile-summary-toggle {
  width: 100%;
  background: #fff8e1;
  border: 1.5px solid #f5c518;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: #7a5200;
  margin-bottom: 12px;
  cursor: pointer;
}

/* ── MOBILE overrides for new components ────────────────── */
@media (max-width: 767.98px) {
  .lgl-hero__img { max-height: 260px; }
  .lgl-hero__title { font-size: 1.4rem; }
  .lgl-hero__sub { font-size: 0.7rem; letter-spacing: 1px; }
  .lgl-hero__caption { max-width: 85%; }
  .lgl-hero__ctrl { width: 32px; height: 32px; }
  .lgl-hero .carousel-indicators [data-bs-target] {
    width: 22px;
    height: 22px;
    margin: 6px;
  }

  .lgl-cat-chip__img { width: 52px; height: 52px; }
  .lgl-cat-chip { min-width: 64px; }

  .lgl-book-card__cover { min-height: 130px; padding-top: 14px; }
  .lgl-book-card__cover img { max-height: 120px; }
  .lgl-book-card { min-height: 300px; }

  .lgl-stepper__circle { width: 34px; height: 34px; font-size: 0.9rem; }
  .lgl-stepper__step { min-width: 60px; }
  .lgl-stepper__line { max-width: 40px; }

  .lgl-cart-item { padding: 10px; gap: 10px; }
  .lgl-cart-item__img-wrap { width: 58px; height: 74px; }
  .lgl-cart-item__name { font-size: 0.82rem; }

  .lgl-order-summary { position: static; border-radius: 12px; }

  .lgl-checkout-card__body { padding: 14px; }
  .lgl-pay-option__card { padding: 11px 12px; }

  .lgl-section-title { font-size: 1.05rem; }
}

/* =========================================================
   Modern Pagination
   ========================================================= */
.lgl-pagination-wrap {
  display: flex;
  justify-content: flex-end;
}
.lgl-pagination {
  gap: 6px;
  align-items: center;
}
.lgl-pagination .page-item .page-link {
  border: 1px solid #e9e0c8;
  color: #7a5200;
  border-radius: 10px;
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: #fff;
  transition: all 0.2s ease;
}
.lgl-pagination .page-item .page-link:hover {
  border-color: #dda800;
  color: #5d2e06;
  background: #fff8de;
}
.lgl-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #f5c518 0%, #dda800 100%);
  color: #1a0e00;
  border-color: #dda800;
  box-shadow: 0 4px 10px rgba(221, 168, 0, 0.28);
}
.lgl-pagination .page-item.disabled .page-link {
  background: #f8f9fa;
  color: #bbb;
  border-color: #eee;
}

/* =========================================================
   Toasts
   ========================================================= */
.lgl-toast {
  min-width: 280px;
  border: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  border-radius: 12px;
}
.lgl-toast .toast-body {
  font-weight: 600;
  letter-spacing: 0.2px;
}

/* =========================================================
   Validation UX
   ========================================================= */
.js-validate-form .form-control,
.js-validate-form .form-select {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.js-validate-form .form-control:focus,
.js-validate-form .form-select:focus {
  border-color: #dda800;
  box-shadow: 0 0 0 0.2rem rgba(221, 168, 0, 0.22);
}
.js-validate-form .form-control.is-invalid,
.js-validate-form .was-validated .form-control:invalid,
.js-validate-form .was-validated .form-select:invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.13);
}
.js-validate-form .invalid-feedback {
  font-size: 0.78rem;
  font-weight: 500;
}

@media (max-width: 575.98px) {
  .lgl-pagination-wrap {
    justify-content: center;
  }
  .lgl-pagination .page-item .page-link {
    min-width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }
  .lgl-toast {
    min-width: 0;
    width: calc(100vw - 24px);
    max-width: 360px;
  }
}

/* =========================================================
   Recently Viewed scroll strip
   ========================================================= */
.lgl-rv-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #dda800 #f5f0e8;
}
.lgl-rv-scroll::-webkit-scrollbar { height: 5px; }
.lgl-rv-scroll::-webkit-scrollbar-track { background: #f5f0e8; border-radius: 3px; }
.lgl-rv-scroll::-webkit-scrollbar-thumb { background: #dda800; border-radius: 3px; }

.lgl-rv-card {
  flex: 0 0 168px;
  min-width: 168px;
  scroll-snap-align: start;
}
@media (min-width: 576px) {
  .lgl-rv-card { flex: 0 0 185px; min-width: 185px; }
}
@media (min-width: 992px) {
  .lgl-rv-card { flex: 0 0 200px; min-width: 200px; }
}

/* ══════════════════════════════════════════════════════════════
   USER ACCOUNT DASHBOARD — shared styles
   ══════════════════════════════════════════════════════════════ */
.ud-wrap { display: flex; gap: 24px; align-items: flex-start; }
.ud-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #f0e8d8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  position: sticky;
  top: 120px;
}
.ud-sidebar__avatar {
  background: linear-gradient(135deg, #f9d849, #dda800);
  padding: 24px 20px 18px;
  text-align: center;
}
.ud-sidebar__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.8rem;
  color: #1a0e00;
}
.ud-sidebar__name { font-weight: 700; font-size: .96rem; color: #1a0e00; margin-bottom: 2px; }
.ud-sidebar__email { font-size: .76rem; color: #5a3800; word-break: break-all; }
.ud-nav { padding: 10px 0; }
.ud-nav__item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  font-size: .88rem; font-weight: 600;
  color: #444;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background .12s, color .12s, border-color .12s;
  cursor: pointer;
}
.ud-nav__item:hover { background: #fffbee; color: #c8940a; border-left-color: #f9d849; }
.ud-nav__item--active { background: #fffbee; color: #c8940a; border-left-color: #f9d849; font-weight: 700; }
.ud-nav__item--logout { color: #c62828; }
.ud-nav__item--logout:hover { background: #fff5f5; color: #c62828; border-left-color: #ef9a9a; }
.ud-nav__sep { height: 1px; background: #f5efdf; margin: 6px 0; }
.ud-main { flex: 1; min-width: 0; }
/* cards */
.ud-card {
  background: #fff;
  border: 1px solid #f0e8d8;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  overflow: hidden;
  margin-bottom: 20px;
}
.ud-card__head {
  padding: 14px 22px;
  border-bottom: 1px solid #f5efdf;
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .88rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: #7a5c00;
  background: #fffbee;
}
.ud-card__body { padding: 22px; }
/* order table */
.ud-order-table th { font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; color: #888; font-weight: 600; border-bottom: 2px solid #f5efdf; }
.ud-order-table td { vertical-align: middle; font-size: .9rem; border-bottom: 1px solid #f9f5ed; }
.ud-order-table tbody tr:hover { background: #fffbee; }
/* status badges */
.ud-badge { display: inline-block; border-radius: 20px; padding: 3px 12px; font-size: .75rem; font-weight: 700; }
.ud-badge--success { background: #e8f5e9; color: #1b5e20; }
.ud-badge--pending { background: #fff8e1; color: #7a5c00; }
.ud-badge--danger  { background: #ffebee; color: #b71c1c; }
.ud-badge--info    { background: #e3f2fd; color: #0d47a1; }
.ud-badge--secondary { background: #f5f5f5; color: #555; }
/* address cards */
.ud-addr-card {
  border: 1px solid #f0e8d8;
  border-radius: 12px;
  overflow: hidden;
}
.ud-addr-card__head {
  padding: 11px 18px;
  background: #fffbee;
  border-bottom: 1px solid #f5efdf;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; font-size: .84rem; color: #7a5c00;
}
.ud-addr-card__body { padding: 16px 18px; font-size: .88rem; color: #444; line-height: 1.7; }
.ud-form-section { padding: 20px 22px; border-top: 1px dashed #f5efdf; background: #fdfaf4; }
/* welcome */
.ud-welcome { background: linear-gradient(135deg,#fffbee,#fff8d6); border: 1px solid #ffe082; border-radius: 14px; padding: 28px; margin-bottom: 20px; }
.ud-stat-pill { background: #fff; border: 1px solid #f0e8d8; border-radius: 50px; padding: 10px 20px; display: flex; align-items: center; gap: 10px; flex: 1; min-width: 120px; }
.ud-stat-pill__num { font-size: 1.4rem; font-weight: 800; color: #1a0e00; }
.ud-stat-pill__lbl { font-size: .76rem; color: #888; }
/* invoice print */
@media print {
  .ud-sidebar, .site-header, .site-footer, .ud-no-print, nav, .breadcrumb-section { display: none !important; }
  .ud-wrap { display: block; }
  .ud-main { width: 100%; }
  body { font-size: 13px; }
}
@media (max-width: 767px) {
  .ud-wrap { flex-direction: column; }
  .ud-sidebar { width: 100%; position: static; }
}
