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

p {
  margin: 0;
  padding: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

:root {
  --blue-color: rgb(28, 108, 158);
  --yellow-color: rgb(255, 210, 50);
  --gray-text: rgb(151, 151, 151);
  --blue-text: rgb(32, 123, 180);
  --blue-opity: rgba(28, 108, 158, 0.438);
  --green-dark: rgb(0, 181, 58);
  --green-light: rgb(0, 140, 45);
  --sceond-white: rgb(248, 249, 250);
  --border-color: rgb(227, 229, 233);
}

/* header */
.header {
  padding: 0;
  box-shadow: none;
}

.second-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  color: black;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.second-header .left,
.second-header .right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.second-header .left i {
  font-size: 20px;
  cursor: pointer;
}

.second-header .right i {
  font-size: 20px;
  margin-left: 15px;
  cursor: pointer;
}

section.first {
  margin-top: 105px;
}

.box-main {
  width: 100%;
  height: 100vh;
  background-color: aqua;
  display: flex;
}

.product-imgs {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  position: sticky;
  top: 100px;
}

img {
  width: 100%;
  display: block;
}

.img-display {
  overflow: hidden;
  width: 83%;
}

.img-scroll-wrapper {
  position: relative;
  height: 502px;
  width: 110px;
  overflow: hidden;
}

.img-select::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.img-scroll-wrapper .scroll-btn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #eee;
  border: none;
  padding: 4px 8px;
  border-radius: 50%;
  font-size: 16px;
  color: #000000;
  filter: drop-shadow(0px 2px 4px #777);
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}

.img-scroll-wrapper .scroll-btn:hover {
  background: #ccc;
}

.img-scroll-wrapper .scroll-up {
  top: 8px;
}

.img-scroll-wrapper .scroll-down {
  bottom: 8px;
}

.img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}

.img-showcase img {
  /* min-width: 100%; */
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.img-select {
  scrollbar-width: none;
  width: 110px;
  height: 100%;
  overflow-y: auto;
  padding-right: 0;
}

.img-item {
  margin: 0;
  width: 100%;
  height: 110px;
  margin-bottom: 8px;
  object-fit: cover;
  overflow: hidden;
}

.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3) {
  margin-right: 0;
}

.img-item:hover {
  opacity: 0.8;
}

.right-first {
  display: flex;
  flex-direction: column;
  line-height: 25px;
}

.right-first h1 {
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0px;
  padding: 0px;
}

.right-first a {
  color: black;
  text-decoration: none;
}

.right-first .pg-1 {
  font-size: 0.75rem;
  color: var(--gray-text);
  margin: 0px;
  padding: 0px;
}

.right-first .pg-3 {
  margin: 0px;
  padding: 0px;
  color: var(--green-dark);
}

.right-first .pg-4 {
  font-size: 0.875rem;
  color: var(--gray-text);
}

.right-text {
  /* display: flex; */
  gap: 7px;
  align-items: center;
  justify-content: space-between;
}

.right-first .pg-2 {
  font-size: 0.875rem;
  margin: 0px;
  padding: 0px;
  text-decoration: line-through;
  color: var(--gray-text);
  font-weight: bold;
}

.right-text .bxs-star {
  color: rgb(244 196 27);
  padding-right: 5px;
}

.product-quality {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.offer {
  width: 120px;
  background-color: var(--green-light);
  display: flex;
  justify-content: center;
}

.offer p {
  color: white;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}

.size {
  width: 120px;
  background-color: var(--gray-text);
  display: flex;
  justify-content: center;
}

.size p {
  color: white;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}

.fabric {
  width: 200px;
  border: 1px solid var(--gray-text);
  display: flex;
  justify-content: center;
}

.fabric p {
  color: var(--gray-text);
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}

.color {
  margin: 20px 0px;
}

.color h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-options .variant-single {
  border: 1px solid #e8e8e8;
  width: 80px;
}

.color-options .variant-single.selected {
  border: 1px solid var(--yellow-color);
  box-shadow: 0 10px 10px #dddddd;
}

.color-options .variant-color,
.color-options .variant-price {
  padding: 2px 4px;
  font-size: 12px;
  line-height: 1.2;
  margin: 0;
  word-break: break-word;
}

.color-options .variant-single .variant-discount {
  font-weight: 600;
}

.color-options .variant-single .variant-mrp {
  font-size: 10px;
}

.color-img {
  border: 2px solid transparent;
  cursor: pointer;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.tech-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

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

.tech-info li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  position: relative;
}

.tech-info table ul,
.tech-info ul ul {
  margin-bottom: 0.5rem;
}

.tech-info table ul li,
.tech-info ul ul li {
  padding-left: 1rem;
}

.tech-info table ul li:after,
.tech-info ul ul li:after {
  content: "•";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  color: #1b1919;
}

.tech-info li span:first-child {
  color: #555;
}

.tech-info li span:last-child {
  font-weight: 500;
  color: #111;
}

.add-bag {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bag-to-btn {
  background-color: var(--yellow-color);
  color: #000;
  padding: 0;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  height: 42px;
  width: 17em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bag-to-btn i {
  margin-right: 10px;
}

.product-highlights {
  display: flex;
  width: 100%;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.highlights-box1 {
  width: 195px;
  border-radius: 8px;
  background-color: var(--sceond-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
}

.box1-img {
  width: 60px;
  background: transparent;
}

.box1-text p {
  font-size: 13px;
  margin: 0px;
  font-weight: 700;
}

.offer-box h4 {
  font-size: 18px;
}

.cupon-box {
  width: 100%;
  background-image: linear-gradient(rgb(213, 236, 205), white);
  border: 1px solid var(--gray-text);
  border-radius: 8px;
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 15px;
  padding: 8px 4px;
}

.cupon-box p {
  font-size: 14px;
  margin: 0;
}

.cupon-box .bxs-offer {
  font-size: 40px;
  color: var(--green-light);
}

.location {
  width: 100%;
}

.location-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 58px;
  justify-content: center;
  background-color: rgb(178 200 237);
  border-radius: 8px;
  margin-top: 20px;
  padding: 5px 10px;
  gap: 10px;
}

.location-box p {
  margin: 0;
  color: #000000;
  line-height: 1.4;
}

.location-box .bx-cycling {
  font-size: 40px;
  color: #000000;
}

.promo-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ffd700, #ffeb99, #fff8dc);
  border-radius: 10px;
  padding: 10px;
  margin-top: 20px;
}

.promo-left {
  display: flex;
  flex-direction: column;
}

.promo-text {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.promo-button {
  background-color: #000;
  color: #fff;
  padding: 0 16px;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
}

.promo-button:hover {
  background-color: #333;
}

.promo-fire {
  width: 70px;
}

.faq-section {
  margin-top: 120px;
}

.faq-section .faq-heading {
  font-size: 32px;
  margin: 20px 0 10px 0;
}

.long-images {
  margin-top: 22px;
}

.long-images figure {
  margin: 0;
}

/* accoridan */
.accordion {
  width: 100%;
  /* border-bottom: 1px solid #ddd; */
  margin-top: 20px;
}

.accordion-item {
  border-top: 1px solid #ddd;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-weight: bold;
  cursor: pointer;
}

.accordion-content {
  display: none;
  padding: 10px 15px;
  font-size: 14px;
  color: #555;
}

.icon {
  font-size: 18px;
}

.assurance-icons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  flex-wrap: wrap;
}

.assurance-item {
  text-align: center;
  width: 100px;
}

.assurance-item svg {
  width: 46px;
  height: 46px;
  fill: #6d6da6;
}

.assurance-item p {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  margin: 8px 0;
  color: #9e9ec7;
}

/* slider -products */
.slider-container {
  overflow: hidden;
  /* padding: 0 50px; */
}

.slider-title {
  font-size: 20px;
  color: #333;
}

.slider-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 5px;
}

.new {
  padding: 5px 8px;
  background-color: rgb(255, 222, 179);
  color: var(--gray-text);
  border-radius: 5px;
}

.new h6 {
  margin: 0;
  font-size: 12px;
}

.slider {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .slider .product-card.col-sm-6 {
    width: 50%;
  }
}

.product-slider {
  width: 100% !important;
  margin: 10px auto !important;
  transition: transform 0.5s ease;
}

/* .product-card {
    margin: 0 15px;
} */

.owl-nav {
  display: none;
}

.owl-dot {
  display: none;
}

@media only screen and (max-width: 380px) {
  .product-image-wrapper2 {
    min-height: 119px;
  }
}

@media (min-width:381px) and (max-width: 767px) {
  .product-image-wrapper2 {
    min-height: 131px;
  }
}

.product-image {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: top;
}

.product-info {
  padding: 6px 0px;
}

.product-info .product-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin: 2px 0 8px;
}

.product-info .product-rating i {
  color: #FEC001;
}


.product-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 2px;
  color: #333;
}

.product-spacy {
  margin: 0px;
  color: var(--gray-text);
  font-size: 14px;
  width: 98%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-price {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.current-price {
  font-size: 18px;
  font-weight: bold;
  margin: 0px;
}

.original-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin: 0px 0px 0px 5px;
}

.discount {
  font-size: 12px;
  font-weight: bold;
  color: #00b852;
  margin-bottom: 0;
  margin-left: 5px;
}

.add-to-cart {
  width: 100%;
  padding: 8px 10px;
  background-color: white;
  border: 1px solid rgb(227, 229, 233);
  color: black;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 10;
}

.slider-nav:hover {
  background: #f5f5f5;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

.slider-nav.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.owl-stage {
  display: flex;
}

.image-sec img {
  position: relative;
}

.image-box1 {
  position: absolute;
  z-index: 99;
  padding: 3px 15px;
  top: 0;
  background-color: var(--green-light);
  color: var(--sceond-white);
  opacity: 0.7;
}

.image-box1 h5 {
  margin: 0;
  font-size: 10px;
}

.image-box2 {
  position: absolute;
  z-index: 99;
  padding: 3px 8px;
  bottom: 10%;
  margin-left: 10px;
  background-color: var(--sceond-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  gap: 3px;
}

.image-box2 h5 {
  margin: 0;
  font-size: 14px;
}

.image-box2 .bxs-star {
  font-size: 13px;
  color: var(--yellow-color);
}

/* button section */
.button-section {
  display: flex;
  /* gap: 50px; Space between buttons */
  margin: 30px 0px;
}

/* rating section */

.review-heading {
  display: flex;
  gap: 5px;
  align-items: center;
}

.review-rating {
  display: flex;
}

.review-image {
  margin-top: 25px;
}

.image-sec {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 10px;
  margin-top: 20px;
  scroll-behavior: smooth;
  position: relative;
  /* padding-right: 40px; */
  /* space for fade effect */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.image-sec::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.fade-overlay {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40px;
  background: linear-gradient(to left, rgb(255 255 255 / 84%), #ffffff69);
  pointer-events: none;
  /* Let clicks pass through */
  z-index: 2;
}

.review-image .image-sec {
  height: fit-content;
  min-height: fit-content !important;
}

.review-image h4 {
  font-size: 16px;
}

.costumer-img img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}

.rating-left {
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.rating-left h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
}

.rating-left p {
  margin: 0;
  color: gray;
}

.rating-left .star1 {
  font-size: 20px;
  color: #FFD700;
}

.review-container {
  /* width: 600px; */
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.constumer-opinion {
  margin-top: 20px;
}

.review-header h4 {
  font-size: 16px;
  /* font-weight: bold; */
  margin-bottom: 15px;
}

.costumer-words {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.costumer-words hr {
  height: 0.8px;
  background-color: rgb(197 197 197);
}

.word1 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.word1 .star {
  color: #333;
  font-size: 12px;
  padding: 0px;
}

.buyer {
  display: flex;
  align-items: center;
  color: var(--green-light);
  background-color: rgb(234 247 230);
  font-size: 12px;
  padding: 0 5px;
  border-radius: 3px;
}

.word2 img {
  width: 100px;
  object-fit: cover;
  border-radius: 5px;
  height: 100px;
  margin-top: 15px;
}

.word3 {
  display: flex;
  justify-content: space-between;
}

.word3 h5 {
  font-size: 14px;
}

.word3 h6 {
  font-size: 14px;
  text-align: end;
}

.word3 p {
  font-size: 12px;
  color: var(--gray-text);
}

.view-all-reviews-btn {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  background-color: transparent;
  color: var(--blue-text);
  border: 1px solid var(--blue-text);
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.view-all-reviews-btn:active {
  background-color: rgba(0, 102, 204, 0.1);
}

/* .buyer  */
.review-count {
  color: #666;
  font-weight: normal;
  font-size: 16px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-option {
  padding: 3px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: white;
}

.filter-option p {
  margin: 0;
  font-size: 12px;
}

.filter-option:hover {
  border-color: #aaa;
}

.filter-option.selected {
  background-color: rgb(255, 246, 214);
  border-color: var(--yellow-color);
  color: var(--gray-text);
}

.rating-right {
  width: 60%;
  padding: 10px 0;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 5px 0;
}

.rating-bar span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.rating-bar span i {
  color: #494949;
}

.rating-right .bar {
  display: flex;
  width: 48%;
  height: 6px;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background-color: #494949;
}

.green {
  background: green;
}

.light-green {
  background: lightgreen;
}

.orange {
  background: orange;
}

.light-red {
  background: lightcoral;
}

.red {
  background: red;
}

.tabs {
  display: flex;
  border-bottom: 2px solid #ffcc00;
}

.tab {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}

.review-content {
  display: none;
  padding: 20px 0;
}

.review-content.active {
  display: block;
}

.rate-button {
  background: #ffffff;
  color: var(--blue-text);
  border: 1px solid var(--blue-text);
  padding: 5px 12px;
  cursor: pointer;
  border-radius: 5px;
}

/* login style section */

.login-right {
  margin-top: 5%;
  /* margin-left: 5%; */
}

.login-heading {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 10px;
}

.login-heading h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.subtext {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

.input-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 12px;
  margin-bottom: 15px;
  background: #f5f5f5;
}

.input-box img {
  width: 24px;
  margin-right: 10px;
}

.login-right input,
.login-right textarea {
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  padding-left: 10px;
  background: transparent;
}

.login-right .btn:hover {
  background: var(--yellow-color);
  opacity: 0.8;
}

.btn {
  background: var(--yellow-color);
  color: black;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.separator {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
}

.separator span {
  margin: 0 10px;
  color: #666;
  font-size: 14px;
}

.social-buttons {
  display: flex;
  justify-content: space-between;
}

.social-buttons form {
  width: 100%;
}

.social-buttons button {
  flex: 1;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin: 0px;
}

.google {
  border: 1px solid var(--gray-text);
  display: flex;
  align-items: center;
  justify-content: center;
}

.facebook {
  background: #1877f2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms {
  font-size: 12px;
  margin-top: 15px;
  color: #666;
}

.terms a {
  color: #007bff;
  text-decoration: none;
}

/* signup page css */
.register-box {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

.register-box h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
}

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

.login-heading label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  color: #444;
}

input:focus,
textarea:focus {
  border-color: #6c63ff;
  outline: none;
}

.input-box2 {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 15px;
  background: #f5f5f5;
}

.input-box2 input,
.input-box2 textarea {
  padding: 10px;
  border-radius: 5px;
}

.forget-password {
  font-size: 14px;
  text-decoration: none;
}

.input-box2 img {
  width: 24px;
  margin-right: 10px;
}

/* about page css */
.about-section {
  margin: 100px 0 60px;
}

.black {
  margin-right: 0 !important;
}

.black-box .container-fluid,
.banner .container-fluid {
  padding: 0;
}

.spirit-section .row {
  justify-content: center;
}

.about-heading h2 {
  font-size: 50px;
}

.about-heading .hr {
  width: 14%;
  height: 5px;
  background-color: var(--yellow-color);
  margin: 0;
}

.image-box-about {
  width: 55%;
  margin-top: 50px;
}

.image-box-about img {
  object-fit: cover;
}

.about-right {
  margin-top: 150px;
}

.about-para {
  font-size: 30px;
  font-weight: 400;
}

.about-para2 {
  font-size: 20px;
  line-height: 24px;
  padding-top: 20px;
}

.black-cont {
  padding: 150px 30px;
  background-color: black;
  color: var(--sceond-white);
}

.black-cont p {
  font-size: 56px;
  line-height: 60px;
  font-weight: 400;
  text-align: center;
}

.boxess {
  padding: 0px 50px;
}

.white-box {
  padding: 50px 0 50px;
  background-color: aliceblue;
}

.boxess .boxess-p1:first-of-type {
  margin-top: 0;
}

.boxess .boxess-p1 {
  font-size: 30px;
  font-weight: 500;
  margin-top: 30px;
}

.boxess-text {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  gap: 8px;
  margin-top: 15px;
}

.boxess-text1 {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  gap: 8px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.white-cont {
  padding: 0px 30px;
}

.white-cont:nth-child(1) {
  font-size: 50px;
}

.white-cont .pi1 {
  font-size: 24px;
  margin-bottom: 17px;
}

.white-cont .pi2 {
  font-size: 40px;
  line-height: 44px;
}

.white-cont .pi3 {
  font-size: 24px;
  margin-top: 20px;
}

.yellow-box {
  background-color: var(--yellow-color);
  padding-bottom: 30px;
  margin-top: 40px;
}

.yellow-heading {
  text-align: center;
}

.yellow-cont p {
  text-align: center;
  font-size: 24px;
}

/* terms & condition--- */
.heading-term h1 {
  margin-top: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.term-heading {
  margin-top: 30px;
}

.term-heading h1 {
  font-size: 24px;
}

.term-heading p {
  font-size: 18px;
  padding: 10px 20px 0;
}

.term-heading ul {
  font-size: 18px;
}

/* policy--- */
.heading-policy {
  margin-top: 90px;
  font-size: 32px;
}

.heading-policy h1 {
  font-size: 32px;
}

.policy-heading,
.policy-heading-p1 {
  margin-top: 40px;
  line-height: 35px;
}

.policy-heading h1,
.policy-heading-p1 h1 {
  font-size: 24px;
}

.policy-heading p {
  font-size: 18px;
  padding: 10px 20px 0;
  margin-left: 1em;
}

.policy-heading-p1 p {
  font-size: 18px;
  padding: 0;
  margin-top: 15px;
}

.policy-heading ul {
  font-size: 18px;
  margin-left: 1em;
}

/* FAQ section */




/* BLog section */
.blog-banner {
  width: 80%;
  margin: 0 auto;
}

.blog-img {
  border: 1px solid var(--gray-text);
}

/* .blog {
  margin-top: 130px;
} */

.blog-right {
  padding: 20px;
}

.blog-right p {
  font-size: 22px;
  line-height: 28px;
  color: var(--gray-text);
}

.author-icon {
  background-color: #2e7d32;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.card-text-blog {
  color: var(--gray-text);
}

.author-info {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  font-size: 14px;
}

.author-details {
  margin-left: 10px;
  color: var(--gray-text);
  ;
}

a.card-link {
  text-decoration: none;
  color: inherit;
  margin-top: 20px;
}

.card-body-blog {
  margin-top: 15px;
}

.card-blog {
  margin-top: 25px;
}

/* Blog-detail */
.blog-content {
  margin-top: 50px;
}

.author-circle {
  background-color: #2e7d32;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lenskart-logo {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: -2px;
  right: -4px;
  background-color: white;
  padding: 2px;
  border-radius: 50%;
}

.author-meta {
  font-size: 15px;
  color: #555;
}

.author-meta a {
  color: black;
  font-weight: 500;
  text-decoration: none;
}

.author-meta a:hover {
  text-decoration: underline;
}

.blog-title {
  font-size: 36px;
  font-weight: 700;
}

.blog-title2 {
  font-size: 28px;
  font-weight: 700;
}

.blog-detail-title,
.blog-detail-para {
  font-size: 25px;
}

.author-meta {
  font-size: 18px;
}

/* Wishlist */
.text-muted {
  font-size: 16px;
}

.wish-heading {
  font-size: 20px;
}

.cont-wish {
  margin: 160px auto 100px;
}

.fit-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: #333;
  color: #fff;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  font-weight: 600;
  border-radius: 0.2rem;
  text-transform: uppercase;
}

.image-box-wish {
  position: absolute;
  z-index: 99;
  padding: 3px 8px;
  bottom: 5%;
  left: 2%;
  background-color: var(--sceond-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  gap: 3px;
}

.image-box-wish h5 {
  margin: 0;
  font-size: 14px;
}

.image-box-wish .bxs-star {
  font-size: 13px;
  color: var(--yellow-color);
}

.product-info-wish {
  border: 1px solid var(--border-color);
}

.wish-info {
  padding: 8px 10px 8px;
}

.image-sec {
  position: relative;
}

.add-to-cart-wish {
  /* padding: 8px 10px; */
  background-color: white;
  border: none;
  color: var(--blue-text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}

.duo-sec {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  border-top: 1px solid var(--border-color);
}

.duo-sec i {
  padding: 10px 10px;
  color: var(--gray-text);
  font-size: 20px;
  border-right: 1px solid var(--border-color);
}

.text-center {
  width: 100%;
}

/* Extra small devices (phones, 599px and down) */
@media (max-width: 767px) {
  .product-slider .product-card.col-sm-6 {
    width: 50% !important;
  }

  .button-section {
    flex-direction: column;
  }

  .product-highlights {
    justify-content: center;
    flex-wrap: nowrap;
  }

  .img-showcase img {
    height: 100%;
    object-fit: cover;
    min-width: 100%;
  }

  .img-showcase {
    margin-bottom: 40px;
  }

  .cupon-box {
    width: 100%;
  }

  .product-quality {
    flex-wrap: wrap;
  }

  .img-select {
    flex-direction: row;
    position: absolute;
    z-index: 99;
    bottom: -7%;
    display: none;
  }

  .product-imgs {
    display: none;
  }

  /* .right-first {
    margin-top: 70px;
  } */

  .size-name h3 {
    margin-bottom: 10px;
  }

  .login-left {
    /* position: relative; */
  }

  .login-right {
    padding: 0;
    background: rgb(255, 255, 255);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -80px;
  }

  .login-heading h2 {
    margin-top: 26px;
    font-size: 20px;
  }

  .image-box-about {
    width: 70%;
  }

  .about-right {
    margin-top: 60px;
  }

  .about-para {
    font-size: 26px;
  }

  .about-para2 {
    line-height: 30px;
  }

  .black-cont p {
    font-size: 38px;
  }

  .black-cont {
    padding: 100px 30px;
  }

  .boxess {
    padding: 0px 17px;
  }

  .boxess .boxess-p1 {
    font-size: 22px;
  }

  .white-cont {
    padding: 10px;
  }

  .digiht .number-p1 {
    font-size: 32px;
  }

  .digiht .number-p2 {
    font-size: 18px;
  }

  .digiht .number-p3 {
    font-size: 32px;
  }

  .digiht .number-p4 {
    font-size: 18px;
  }

  .digiht {
    margin-bottom: 32px;
  }

  .yellow-heading {
    text-align: start;
  }

  .yellow-cont {
    margin-bottom: 15px;
  }

  .yellow-cont p {
    text-align: start;
  }

  .image-display2 {
    display: block;
    overflow: hidden;
  }

  .image-display2 .image-showcase img {
    aspect-ratio: 1/1;
  }

  .image-display2 .owl-dots {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin: 10px 0px;
  }

  .image-display2 .owl-dots .owl-dot {
    border: 1px solid;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: none;
    display: block;
  }

  .image-display2 .owl-dots .owl-dot.active {
    background-color: black;
  }

  .add-bag {
    margin: 20px 0;
    position: fixed;
    bottom: -23px;
    left: 0px;
    z-index: 99;
    width: 100%;
    background-color: white;
    padding: 15px;
  }

  .bag-to-btn {
    width: 100%;
  }

  .slider-container {
    margin-bottom: 20px;
  }

  .yellow-box {
    margin-top: 25px;
  }

  .banner-img {
    margin: 0 !important;
    padding: 0 !important;
  }

  .duo-sec i {
    font-size: 20px;
  }

  .color-options .variant-single {
    width: 22.6%;
  }

  .color-img {
    width: 100%;
  }

  .sm-px-12 {
    padding: 0px 12px;
  }
}

@media only screen and (max-width: 1120px) {
  .faq-section {
    margin-top: 70px;
  }

  .faq-section .faq-heading {
    margin: 20px 0 14px 0;
  }

  .second-header {
    display: none;
  }

  .header {
    display: none;
  }

  section.first {
    margin-top: 80px;
  }

  .right-first {
    margin-top: 15px;
  }

  .cont-wish {
    margin: 90px auto 60px;
  }

  .product-title,
  .add-to-cart-wish {
    font-size: 14px;
  }

  .current-price {
    font-size: 15px;
  }

  .original-price,
  .discount,
  .product-spacy {
    font-size: 12px;
  }

  .wish-info {
    padding-left: 6px;
    padding-top: 6px;
  }

  .login-heading {
    width: 82%;
    padding-bottom: 16px !important;
  }

  .terms {
    margin: 10px;
  }

  .social-buttons button {
    margin: 0px 5px 14px !important;
  }

  .product-slider {
    margin: 0 auto !important;
  }

  .heading-policy {
    margin: 20px 0 14px 0;
  }

  .heading-policy h1 {
    margin: 20px 0 0 0;
  }

  .policy-heading-p1 p {
    margin-top: 0;
  }
}

@media only screen and (min-width: 1181px) {
  .second-header {
    display: none;
  }

  .header {
    display: block !important;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .button-section {
    display: flex;
    margin: 30px 0px;
  }

  .img-showcase img {
    height: auto;
  }

  .custom-button {
    text-decoration: none;
    background: white;
    color: black;
    font-size: 13px;
    font-weight: bold;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* width: 100%; */
  }

  .custom-button span {
    margin-left: auto;
    font-size: 18px;
    font-weight: bold;
  }

  .custom-button:hover {
    background-color: #f0f0f0;
    color: #000;
  }

  .image-display2 {
    display: none;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) {
  .button-section {
    flex-direction: column;
  }

  .image-display2 {
    display: none;
  }
}

/* Small devices (phones, 600px to 767px) */
@media (min-width: 600px) and (max-width: 767px) {
  .button-section {
    flex-direction: column;
  }

  .image-display2 {
    display: none;
  }
}