:root {
  --primary: white;
  /* Custom Primary Color */
  /* #0B2A73 */
  --bg-color:  #0B2A73;
  /* #00badb */
  --secondary: #00badb;
}

a {
  text-decoration: none;
}

.info-ico{
  i{
    color: var(--secondary);
  }
}

/* ===========================
   Header Page CSS
   =========================== */
.top-header {
  background-color: var(--bg-color);
  border-bottom: 1px solid white;
}

.top-header .button {
  background-color: var(--secondary);
  padding: 6px 12px;
  border-radius: 4px;
}

.top-header .button a {
  color: #fff;
}

.mobile-search input {
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 5px;
}

/* Mobile search toggle icon */
.search-toggle {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.mobile-search input {
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 5px;
}

/* Mobile search toggle icon */
.search-toggle {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.phone {
  color: white;
}

.phone i {
  color: var(--primary);
}

.email {
  color: white;
}

.email i {
  color: var(--primary);
}

.button {
  padding: 7px;
  background-color: var(--secondary);
}

.button a {
  color: white;
  text-decoration: none;
}

.button i {
  padding-right: 5px;
}



.header {
  padding: 10px;
  background-color: var(--bg-color);
  color: white;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-section img {
  height: 50px;
}

.logo-text p {
  margin: 0;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
}

.search-section {
  display: flex;
  flex: 1;
  max-width: 250px;
}

.search-section input {
  width: 250px;
  padding: 10px 10px;
  border: none;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

.search-section input:focus {
  border: 0px solid #00C2F2;
  box-shadow: 0 0 3px rgba(0, 194, 242, 0.6);
}

.search-section button {
  background-color: #00C2F2;
  border: none;
  padding: 0 15px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
}

.search-icon {
  font-size: 16px;
  color: white;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.currency .label {
  font-size: 12px;
  color: #b0b8e0;
}

.currency .dropdown {
  display: flex;
  align-items: center;
  font-weight: bold;
  cursor: pointer;
}

.currency-value {
  margin-right: 5px;
}

.arrow {
  font-size: 12px;
}

.cart {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.cart-icon {
  font-size: 20px;
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #00C2F2;
  color: white;
  font-size: 10px;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
}

.cart-label {
  font-weight: bold;
  margin-left: 5px;
}

/* ===========================
   Navigation Menu CSS
   =========================== */
.nav-bar {
  padding: 0;
  position: relative;
}

.nav-bar a {
  padding: 15px 15px;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, background-color 0.3s;
  display: block;
}

.nav-bar a:hover {
  background-color: var(--bg-color);
  color: var(--secondary);
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
}

.nav-list li {
  position: relative;
}

/* Arrow icon */
.arrow {
  font-size: 12px;
  margin-left: 5px;
}

/* Dropdown Menu */
/* Dropdown Menu (Level 1) */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 999;
}



.dropdown-menu.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 2px;
  border-radius: 4px;
}



.dropdown:hover > .dropdown-menu {
  display: block;
}


.dropdown-menu li a {
  padding: 10px 15px;
  display: block;
  color: #4a5568;
  transition: all 0.3s ease;
  position: relative; 
}

/* Dash (-) Effect */
.dropdown-menu li a::before {
  content: "→";                 
  position: absolute;
  left: 10px;                     
  opacity: 0;                     
  transform: translateX(-5px);    
  transition: all 0.3s ease;
  color: var(--secondary);        
}


.dropdown-menu li a:hover {
  padding-left: 35px; 
  color: var(--secondary);
  background-color: #f8f9fa;
}

.dropdown-menu li a:hover::before {
  opacity: 1;                    
  transform: translateX(0);      
}





/* ===========================
   Top Header Default (Desktop)
   =========================== */
.top-header .container {
  display: flex;
  flex-direction: column;
  /* rows stack vertically */
  gap: 5px;
}

/* Each row behaves like flex row */
.top-header-row-1,
.top-header-row-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* ===========================
   Top Header Responsive (Mobile)
   =========================== */
@media (max-width: 768px) {
  .top-header .container {
    flex-direction: column;
    /* stack rows on mobile */
    align-items: stretch;
    gap: 10px;
  }

  /* First row: welcome + subscribe */
  .top-header-row-1,
  .top-header-row-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .welcome,
  .email {
    font-size: 15px;
    text-align: left;
  }

  .phone,
  .top-button {
    font-size: 15px;
    text-align: right;
  }
}




/* ===========================
   Main Header Responsive
   =========================== */
@media (max-width: 991px) {
  .header-container {
    align-items: flex-start;
    padding: 10px 20px;
    gap: 15px;
  }

  .logo-section {
    margin-left: 0;
  }

  .search-section {
    width: 100%;
    max-width: 100% !important;
    margin: 0;
  }

  .search-section input {
    width: 100% !important;
  }

  .right-section {
    width: 100%;
    justify-content: space-between;
  }

  .cart {
    margin-right: 0;
  }

  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    background: #163174;
    padding-left: 15px;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu li a {
    color: #fff;
  }
}

/* ===========================
   Responsive Nav with Close Button
   =========================== */
.menu-toggle {
  color: #1e2d7d;
  font-size: 24px;
  cursor: pointer;
  display: none;
  padding: 15px;
  z-index: 10000;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  display: none;
  z-index: 10001; /* close button upar rahe */
}


@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* 100% screen height */
    background: #1e2d7d;
    padding: 60px 20px;
    transition: left 0.3s ease;
    z-index: 9999;
    overflow-y: auto;
    /* scroll if content exceeds height */
  }

  .nav-list.active {
    left: 0;
  }

  .nav-list li {
    margin: 8px 0;
    /* space reduced from 15px to 8px */
  }

  .nav-list li a {
    color: white;
    font-size: 18px;
    display: block;
    padding: 8px 0;
    /* vertical padding compact */
  }

  .close-btn {
    display: block;
  }
}



/* Index.php */
.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  background: none;
  padding: 0;
  max-width: 700px;
}

.carousel-caption h5 {
  color: #0d2a5c;
  font-size: 42px !important;
  line-height: 1.4 !important;
  text-transform: uppercase !important;
  font-weight: 650 !important;
}

.carousel-caption p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  width: 70%;
}

.carousel-caption .btn {
  background-color: var(--secondary);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 15px !important;
  font-weight: 600;
  border-radius: 0;
}

/* Tablets */
@media (max-width: 992px) {
  .carousel-caption {
    top: 40%;
    left: 20px;
    max-width: 70%;
  }

  .carousel-caption h5 {
    font-size: 28px !important;
  }

  .carousel-caption p {
    font-size: 14px;
    line-height: 1.4;
  }

  .carousel-caption .btn {
    font-size: 13px !important;
    padding: 8px 16px;
  }
}

/* Mobiles */
/* Mobiles */
@media (max-width: 576px) {
  .carousel-caption {
    top: auto;
    bottom: 15%;
    left: 10px;
    transform: none;
    max-width: 300px;
    text-align: left;
  }

  .carousel-caption h5 {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  .carousel-caption p {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 10px;

    display: -webkit-box;          /* multi-line ellipsis ke liye */
    -webkit-line-clamp: 2;         /* max 2 lines show hongi */
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .carousel-caption .btn {
    font-size: 12px !important;
    padding: 6px 12px;
    display: inline-block;
  }
}



/* categories section */
.categories-section {
  background-color: #f8f9fa;
  padding: 40px 0;
}

.container-cat {
  max-width: 100%;
  margin: auto;
  padding: 0 15px;
}

.category-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
}

/* Image setup */
.category-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), filter 0.6s ease;
}

/* Blur + zoom on hover */
.category-item:hover img {
  transform: scale(1.1);
}

/* Overlay background */
.cat-overlay {
  position: absolute;
  bottom: -100%; /* start neeche se */
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 186, 219, 0.9); 
  display: flex;
  justify-content: center;
  align-items: center;
  transition: bottom 0.6s ease;
  z-index: 2;
}

/* Overlay text */
.cat-overlay p {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin: 0;
  letter-spacing: 1px;
  transform: translateY(20px); /* neeche se uthega */
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}

/* Hover effect */
.category-item:hover .cat-overlay {
  bottom: 0; /* upar aa jaye */
}

.category-item:hover .cat-overlay p {
  font-size: 15px;
  color: white;
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  color: var(--bg-color);
  padding-left: 15px;
  font-size: 20px;
  margin-bottom: 10px;
}

.section-header a {
  padding-right: 55px;
  color: var(--secondary);
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

.section-header a::after {
  content: "→";
  position: absolute;
  right: -5px;
  font-size: 30px;
  margin-top: -12px;
  opacity: 0;
  transition: right 0.3s ease, opacity 0.3s ease;
}

.section-header a:hover::after {
  right: 25px;
  opacity: 1;
}


.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}



.category-item {
  width: 100%;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.category-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.4s ease-in-out;
}

.category-item p {
  margin-top: 10px;
  color: var(--bg-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease-in-out, padding-left 0.3s ease-in-out;
}

.category-item p::after {
  content: "→";
  position: absolute;
  right: -20px;
  font-size: 25px;
  margin-top: -8px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, right 0.3s ease-in-out;
  color: var(--secondary);
}

.category-item:hover p {
  color: var(--secondary);
  padding-right: 15px;
}

.category-item:hover p::after {
  opacity: 1;
  right: -10px;
}


@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .category-item img {
    height: 150px;
  }
}


/* Common hover parent */
.category-box {
  text-align: center;
  cursor: pointer;
}

/* Hover apply to parent */
.category-box:hover .category-item img {
  transform: scale(1.1);
}

.category-box:hover .cat-overlay {
  bottom: 0;
}

.category-box:hover .cat-overlay p {
  color: white;
  opacity: 1;
  transform: translateY(0);
}

.category-box p {
  padding: 7px;
  /* margin-top: 10px; */
  color: var(--bg-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease-in-out, padding-left 0.3s ease-in-out;
}

.category-box p::after {
  content: "→";
  position: absolute;
  right: -20px;
  font-size: 25px;
  margin-top: -8px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, right 0.3s ease-in-out;
  color: var(--secondary);
}

.category-box:hover p {
  padding-right: 5px;
}

.category-box:hover p::after {
  opacity: 1;
  right: -10px;
}














.category-item2 {
  width: 100%;
  height: 338px;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.category-item2 img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.4s ease-in-out;
}






.category-item2:hover p {
  color: var(--secondary);
  padding-right: 15px;
}

.category-item2:hover p::after {
  opacity: 1;
  right: -10px;
}


@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .category-item2 img {
    height: 300px;
  }
}


/* Common hover parent */
.category-box2 {
  text-align: center;
  cursor: pointer;
}

/* Hover apply to parent */
.category-box2:hover .category-item img {
  transform: scale(1.1);
}

.category-box2:hover .cat-overlay {
  bottom: 0;
}

.category-box2:hover .cat-overlay p {
  color: white;
  opacity: 1;
  transform: translateY(0);
}

.category-box2 p {
  padding: 7px;
  color: var(--bg-color);
  font-weight: 600;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease-in-out, padding-left 0.3s ease-in-out;
}

/* .category-box2 p::after {
  content: "→";
  position: absolute;
  right: 150px;
  font-size: 25px;
  margin-top: -8px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, right 0.3s ease-in-out;
  color: var(--secondary);
}

.category-box2:hover p {
  padding-right: 15px;
} */

/* .category-box2:hover p::after {
  opacity: 1;
  right: 100px;
} */

.jewel-text {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  width: 100%;
  display: inline-block;
}


.category-box2:hover .jewel-text {
  background: var(--bg-color);
  color: #fff; 
  z-index: 3;
}







/* hover underline  */
.section-title {
  position: absolute;
  display: inline-block;
  margin-left: 15px;
  padding-bottom: 40px;
}

/* Static underline */
.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  /* line ki width */
  height: 3px;
  /* line ki height */
  background: var(--secondary);
}

/* Moving block (dot) */
.section-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  /* line ke upar thoda overlap */
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  /* thoda round look */
  animation: section-title-run 3s infinite linear;
}

/* Animation for moving block */
@keyframes section-title-run {
  0% {
    left: 0;
  }

  50% {
    left: 115px;
  }

  /* line ki width ke andar tak */
  100% {
    left: 0;
  }
}





.section-title-1 {
  position: relative;
  display: inline-block;
  margin-left: -180px;
  padding-bottom: 0px;
}

/* Static underline */
.section-title-1::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  /* line ki width */
  height: 3px;
  /* line ki height */
  background: var(--secondary);
}

/* Moving block (dot) */
.section-title-1::after {
  content: "";
  position: absolute;
  bottom: -1px;
  /* line ke upar thoda overlap */
  width: 5px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  /* thoda round look */
  animation: section-title-run 3s infinite linear;
}

/* Animation for moving block */
@keyframes section-title-1-run {
  0% {
    left: 0;
  }

  50% {
    left: 115px;
  }

  /* line ki width ke andar tak */
  100% {
    left: 0;
  }
}




.section-title-2 {
  position: relative;
  display: inline-block;
  margin-left: 0px;
  padding-bottom: 0px;
}

/* Static underline */
.section-title-2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  /* line ki width */
  height: 3px;
  /* line ki height */
  background: var(--secondary);
}

/* Moving block (dot) */
.section-title-2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  /* line ke upar thoda overlap */
  width: 5px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  /* thoda round look */
  animation: section-title-run 3s infinite linear;
}

/* Animation for moving block */
@keyframes section-title-2-run {
  0% {
    left: 0;
  }

  50% {
    left: 115px;
  }

  /* line ki width ke andar tak */
  100% {
    left: 0;
  }
}


.section-title-3 {
  position: absolute;
  display: inline-block;
  margin-left: -60px;
  padding-bottom: 0px;
}

/* Static underline */
.section-title-3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  /* line ki width */
  height: 3px;
  /* line ki height */
  background: var(--secondary);
}

/* Moving block (dot) */
.section-title-3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  /* line ke upar thoda overlap */
  width: 5px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  /* thoda round look */
  animation: section-title-run 3s infinite linear;
}

/* Animation for moving block */
@keyframes section-title-3-run {
  0% {
    left: 0;
  }

  50% {
    left: 125px;
  }

  /* line ki width ke andar tak */
  100% {
    left: 0;
  }
}









.bestselling-section {
  background-color: #f8f9fa;
}


.product-card {
  border-radius: 0;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
}

.product-img {
  object-fit: contain;
  max-height: 180px;
  padding: 10px;
}

.product-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--bg-color);
  min-height: 40px;
  /* text ka alignment barabar rakhne ke liye */
}

.product-price {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.btn-add-cart {
  background-color: var(--secondary);
  color: #fff;
  border: none;
  padding: 6px 12px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.btn-add-cart:hover {
  background-color: rgb(60, 60, 174);
  color: #fff;
}





.certifications-section {
  background-color: var(--bg-color);
}

.cert-box {
  padding: 20px;
}

.cert-box h4 {
  font-size: 18px;
  font-weight: 600;
}

.cert-box li {
  margin-bottom: 6px;
  font-size: 14px;
}


.product-card2 {
  border: none;
  border-radius: 0px;
  background: #fff;
  padding: 10px;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  a {
    color: #fff;
    background-color: var(--secondary);
  }

  a:hover {
    background-color: rgb(60, 60, 174);
    color: #fff;
  }
}

.product-card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-img {
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-title {
  font-size: 14px;
  color: #333;
  min-height: 38px;
}

.price {
  color: var(--bg-color);
  font-weight: bold;
  font-size: 15px;
  margin: 6px 0;
}

.cert-box ul {
  columns: 1;
  column-gap: 30px;
}

.cert-box ul li {
  margin-bottom: 10px;
  font-size: 15px;
}










.about-gallery-section {
  background: #f9f9f9;
}

.about-box h2 {
  font-size: 28px;
  font-weight: 600;
  color: #002366;
}

.about-box p {
  font-size: 15px;
  line-height: 1.7;
}

.about-box a {
  padding-top: 20px;
  padding-left: 15px;

}



.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item img:hover {
  transform: scale(1.1);
}




.testimonials-section {
  background: #fff;
}

.client-say h2 {
  color: var(--bg-color);
}

.full-card {
  padding-top: 50px;
  padding-bottom: 20px;
  height: auto;
}

.testimonials-section .card {
  border: none;
  border-radius: 10px;
  background: #fff;
  box-shadow: 10px 4px 12px rgba(0, 0, 0, 0.15);
  padding-top: 50px; /* extra space for image overlap */
  position: relative;
}

/* Profile image wrapper */
.profile-img-wrapper {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
}

.profile-img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border: 2px solid var(--secondary);
  padding: 3px;
  background: #fff;
  border-radius: 8px;
}

/* Owl Carousel Dots */
.testimonial-carousel .owl-dots {
  margin-top: 20px;
  text-align: center;
}
.owl-carousel .owl-stage{
  padding-top: 50px;
  padding-bottom: 20px;
  height: auto;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: #ccc;
  margin: 0 4px;
  transition: all 0.3s ease-in-out;
}
.testimonial-carousel .owl-dots .owl-dot span{
  display: none;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  background: var(--secondary);
  width: 40px;
}


.carousel-indicators button.active {
  background-color: var(--secondary); 
}





.certificate-section img {
  max-height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}
.certificate-section img:hover {
  transform: scale(1.1);
}
.cert {
  color: var(--bg-color);
}




/* Owl Carousel Dots */
.cert-sec .owl-dots {
  margin-top: 20px;
  text-align: center;
}
.owl-carousel .owl-stage{
  padding-top: 50px;
  padding-bottom: 20px;
  height: auto;
}

.cert-sec .owl-dots .owl-dot {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: #ccc;
  margin: 0 4px;
  transition: all 0.3s ease-in-out;
}
.cert-sec .owl-dots .owl-dot span{
  display: none;
}

.cert-sec .owl-dots .owl-dot.active {
  background: var(--secondary);
  width: 40px;
}



/* footer */
.footer h5 {
  color: var(--bg-color);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.footer a:hover {
  color: var(--secondary) !important; /* Bootstrap primary */
  padding-left: 10px;
  transition: 0.3s;
}

.footer .btn {
  color: white;
  background-color: var(--secondary);
  border-radius: 30px;
}









.product-section{
  margin-top: -36px;

}

.product-section .el-wrapper {
  width: 100%;
  margin: 15px auto;
  background-color: #fff;
  border: 2px solid #efefef;
}

.product-section .el-wrapper:hover .h-bg {
  left: 0px;
}

.product-section .el-wrapper:hover .price {
  left: -400px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #818181;
}

.product-section .el-wrapper:hover .add-to-cart {
  left: 50%;
}

.product-section .el-wrapper:hover .img {
  webkit-filter: blur(7px);
  -o-filter: blur(7px);
  -ms-filter: blur(7px);
  filter: blur(7px);
  filter: progid:DXImageTransform.Microsoft.Blur(pixelradius='7', shadowopacity='0.0');
  opacity: 0.4;
}

.product-section .el-wrapper:hover .info-inner {
  bottom: 155px;
}



.product-section .el-wrapper:hover .a-size {
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  bottom: 50px;
  opacity: 1;
}

.product-section .el-wrapper .box-down {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.product-section .el-wrapper .box-up {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  text-align: center;
}


.product-section .el-wrapper .box-down2 {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.product-section .el-wrapper .box-up2 {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  text-align: center;
}



.product-section .el-wrapper:hover .img2 {
  webkit-filter: blur(7px);
  -o-filter: blur(7px);
  -ms-filter: blur(7px);
  filter: blur(7px);
  filter: progid:DXImageTransform.Microsoft.Blur(pixelradius='7', shadowopacity='0.0');
  opacity: 0.4;
} 





.product-section .el-wrapper .img {
  padding: 10px 0;
  width: 100%;
  height: 350px;
  object-fit: contain !important;
  -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
}

.product-section .h-bg {
  -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  width: 760px;
  height: 100%;
  background-color: var(--primary-color);
  position: absolute;
  left: -660px;
}

.product-section .h-bg .h-bg-inner {
  width: 50%;
  height: 100%;
  background-color: var(--bg-color);
}

.product-section .info-inner {
  -webkit-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  position: absolute;
  width: 100%;
  bottom: -100px;
}

.product-section .info-inner .p-name,
.product-section .info-inner .p-company {
  display: block;
}

.product-section .info-inner .p-name {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  color: #252525;
}

.product-section .info-inner .p-company {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #8c8c8c;
}

.product-section .a-size {
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  position: absolute;
  width: 100%;
  bottom: -20px;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  font-style: italic;
  color: #000000;
  opacity: 0;
}

.product-section .a-size a{
    text-decoration: underline !important;
}

.product-section .a-size .size {
  color: #252525;
}

.product-section .cart {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

/*.product-section .cart .price {*/
/*  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);*/
/*  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);*/
/*  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);*/
/*  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);*/
  /* ease-out */
/*  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);*/
/*  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);*/
/*  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);*/
/*  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);*/
  /* ease-out */
/*  -webkit-transition-delay: 100ms;*/
/*  -o-transition-delay: 100ms;*/
/*  transition-delay: 100ms;*/
/*  display: block;*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  -webkit-transform: translate(-50%, -50%);*/
/*  -ms-transform: translate(-50%, -50%);*/
/*  -o-transform: translate(-50%, -50%);*/
/*  transform: translate(-50%, -50%);*/
/*  font-size: 16px;*/
/*  color: #252525;*/
/*}*/

.product-section .cart .price {
  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
  top: 30%;

  display: block;
  position: relative;       /* absolute hata kar relative */
  text-align: center;       /* text ko center align karega */
  font-size: 15px;
  color: #252525;
}

.product-section .cart .add-to-cart {
  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
  display: block;
  position: absolute;
  top: 50%;
  left: 110%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-section .cart .add-to-cart .txt {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}









.product-section2{
  margin-top: -40px;

}

.product-section2 .el-wrapper {
  width: 100%;
  margin: 15px auto;
  background-color: #fff;
  border: 2px solid #efefef;
}

.product-section2 .el-wrapper:hover .h-bg {
  left: 0px;
}

.product-section2 .el-wrapper:hover .price {
  left: -400px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #818181;
}

.product-section2 .el-wrapper:hover .add-to-cart {
  left: 50%;
}

.product-section2 .el-wrapper:hover .img {
  webkit-filter: blur(7px);
  -o-filter: blur(7px);
  -ms-filter: blur(7px);
  filter: blur(7px);
  filter: progid:DXImageTransform.Microsoft.Blur(pixelradius='7', shadowopacity='0.0');
  opacity: 0.4;
}

.product-section2 .el-wrapper:hover .info-inner {
  bottom: 105px;
}



.product-section2 .el-wrapper:hover .a-size {
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
  bottom: 50px;
  opacity: 1;
}

.product-section2 .el-wrapper .box-down {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.product-section2 .el-wrapper .box-up {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  text-align: center;
}


.product-section2 .el-wrapper .box-down2 {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.product-section2 .el-wrapper .box-up2 {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (max-width: 576px) {
  .product-section2 .el-wrapper .box-up2 {
    height: 290px;
  }

}

.product-section2 .el-wrapper:hover .img2 {
  webkit-filter: blur(7px);
  -o-filter: blur(7px);
  -ms-filter: blur(7px);
  filter: blur(7px);
  filter: progid:DXImageTransform.Microsoft.Blur(pixelradius='7', shadowopacity='0.0');
  opacity: 0.4;
} 





.product-section2 .el-wrapper .img {
  padding: 10px 0;
  width: 100%;
  height: 350px;
  object-fit: contain !important;
  -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
}

.product-section2 .h-bg {
  -webkit-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 800ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  width: 760px;
  height: 100%;
  background-color: var(--primary-color);
  position: absolute;
  left: -660px;
}

.product-section2 .h-bg .h-bg-inner {
  width: 50%;
  height: 100%;
  background-color: var(--bg-color);
}

.product-section2 .info-inner {
  -webkit-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 400ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  position: absolute;
  width: 100%;
  bottom: -100px;
}

.product-section2 .info-inner .p-name,
.product-section2 .info-inner .p-company {
  display: block;
}

.product-section2 .info-inner .p-name {
  font-family: 'PT Sans', sans-serif;
  font-size: 18px;
  color: #252525;
}

.product-section2 .info-inner .p-company {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #8c8c8c;
}

.product-section2 .a-size {
  -webkit-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 300ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  position: absolute;
  width: 100%;
  bottom: -20px;
  font-family: 'PT Sans', sans-serif;
  font-weight: bold;
  font-size: 18px;
  font-style: italic;
  color: #000000;
  opacity: 0;
}

.product-section2 .a-size a{
    text-decoration: underline !important;
}

.product-section2 .a-size .size {
  color: #252525;
}

.product-section2 .cart {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.product-section2 .cart .price {
  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
  top: 30%;

  display: block;
  position: relative;       /* absolute hata kar relative */
  text-align: center;       /* text ko center align karega */
  font-size: 13px;
  color: #252525;
}


.product-section2 .cart .add-to-cart {
  -webkit-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -moz-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  -o-transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  transition: all 600ms cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -moz-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  transition-timing-function: cubic-bezier(0, 0, 0.18, 1);
  /* ease-out */
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
  display: block;
  position: absolute;
  top: 50%;
  left: 110%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.product-section2 .cart .add-to-cart .txt {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}


/* Owl Carousel Nav Buttons */
.product-carouseler .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* arrows ke click issue avoid */
}

.product-carouseler .owl-nav button {
  background: rgba(0, 0, 0, 0.5);
  color: #fff !important;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: all; /* ensure clickable */
  transition: 0.3s;
}

.product-carouseler .owl-nav button:hover {
  background: #00badb;
  color: #fff !important;
}








/* About Section */
.about-section {
  background: #f8f9fa;
  color: #333;
}

.about-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--bg-color);
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 15px;
}

.about-section img {
  max-width: 100%;
  height: 420px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Handling Block */
.about-block {
  background: #fff;
  color: #555;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  max-width: 100%;
}

.about-block h4 {
  color: var(--bg-color);
  font-weight: 700;
}

.about-block ul {
  text-align: left;

}

.about-block ul li {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 26px;
  }

  .about-section p {
    font-size: 14px;
    line-height: 1.6;
  }

  .about-block {
    padding: 15px;
  }

  .about-block ul li {
    font-size: 14px;
  }
}



/* product page */
.card-header {
  background-color: var(--bg-color);
}

.sidebar-categories {
  padding: 0;
  margin: 0;
}

.sidebar-categories li {
  list-style: none;
  border: none;
  padding: 0;
  position: relative;
}

.sidebar-categories li a {
  display: block;
  padding: 12px 15px;
  color: #4a5568;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out; /* smooth hover */
  border-radius: 6px;
}

/* Hover Effect */
.sidebar-categories li a::before {
  content: "→";  
  position: absolute;
  left: 0;
  opacity: 0;
  color: var(--secondary);
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

/* On Hover */
.sidebar-categories li a:hover {
  padding-left: 25px;
  background-color: #f1f3f5;
  color: var(--secondary);
  transform: translateX(3px); /* thoda smooth slide */
}

.sidebar-categories li a:hover::before {
  opacity: 1;
  left: 8px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23007bff' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23007bff' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


/* Submenu */
.submenu {
  max-height: 0;
  overflow: hidden;
  padding-left: 20px;
  background: #f9f9f9;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.has-submenu:hover .submenu {
  max-height: 500px; /* enough space */
  opacity: 1;
}

/* Arrow Icon */
/* Arrow Icon */
.has-submenu > a .arrow {
  border: solid var(--secondary);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transition: transform 0.3s ease-in-out;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg); /* by default down arrow */
}

/* Rotate on Hover */
.has-submenu:hover > a .arrow {
  transform: translateY(-50%) rotate(225deg); /* rotate on hover */
}



/* Hover Effect */
.sidebar-categories li a:hover {
  padding-left: 25px;
  background-color: #f8f9fa;
  color: var(--secondary);
}



/* product detail */

.product-det{
  h2{
    color: var(--bg-color);
  }
  p{
    color: var(--bg-color);
  }
}

.inq-btn{
  background-color: var(--bg-color);
  color: #fff;
}

.inq-btn:hover{
  background-color: rgb(57, 13, 152);
  color: #fff;
}
.size{
  font-size: 18px;
  font-weight: 400;
  color: var(--bg-color);
}

.prefooter a:hover{
  color: var(--secondary);
  transform: translateX(0);
}

/*custom Pagination */
.pagination .page-item .page-link {
    color: #333 !important;
    border-radius: 50% !important;
    margin: 0 5px !important;
    border: 1px solid #ddd !important;
    transition: all 0.3s ease-in-out !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #fff;
}

.pagination .page-item .page-link:hover {
    background-color: var(--secondary) !important;
    color: #fff !important;
}
