/* Hero Section */
a {
  text-decoration: none;
}

.hero_section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero_section .hero_content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.similar-product-card {
  display: flex;
}

.hero_section .hero_content p {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 30px;
}

.hero_section .hero_content .btn {
  font-family: "Poppins", sans-serif;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero_section .hero_content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 32, 32, 0.3);
}

.hero_section .hero_image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero_section .hero_content a {
  background-color: #e16127;
  color: #fff;
}
/* Category Cards */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 40px 20px 20px;
  text-align: center;
}

.category-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Filter Section */
.filter-section {
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
  display: none;
}

.filter-buttons .btn {
  margin-right: 10px;
  margin-bottom: 10px;
}

.btn-outline-primary {
  border-color: #e16127;
  color: #e16127;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
  background-color: #e16127;
  border-color: #e16127;
}

/* category section css start */
.category_section {
  margin-top: 70px;
}

.category_section .main {
  background-color: #fe0000;
  padding: 50px 0px;
}

.category_section .category_items {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.category_section .category_items .item .images img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 3px;
  border: 2px solid #fff;
}

.category_section .category_items .item .title {
  text-align: center;
  margin-top: 20px;
}

.category_section .category_items .item .title a {
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 30px;
}

/* product section css strat */
/* Featured Products */
.featured {
  padding: 6rem 0;
  box-sizing: border-box;
}

.featured .section-header h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin: 20px 0px -7px 0px;
  color: #000;
}

.featured .section-header P {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #000;
  text-align: center;
}

.borderr {
  text-align: center;
}

.borderr span {
  background-color: #e16127;
  width: 80px;
  height: 5px;
  display: inline-block;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  /* grid-template-columns: 1fr 1fr 1fr; */
  gap: 4rem;
  box-sizing: border-box;
}

.product-card {
  /* background: rgba(26, 26, 46, 0.8); */
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid #2c347e;
  transition: all 0.5s ease;
  position: relative;
  transform-style: preserve-3d;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* .product-card:hover {
  transform: translateY(-15px) rotateX(10deg);
  border-color: #2c347e;
} */

.product-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(45deg, #ff8000 0%, #00ff80 100%);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.75rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 0 20px rgba(255, 128, 0, 0.3);
  animation: product-bounce 2s ease-in-out infinite;
  margin: 0;
  box-sizing: border-box;
}

@keyframes product-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.product-badge.new {
  background: linear-gradient(90deg, #8000ff 0%, #00ffff 100%);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.product-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  /* filter: brightness(0.9) saturate(1.2); */
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

/* .product-card:hover .product-image img {
  transform: scale(1.1) rotate(-2deg);
  filter: brightness(1.1) saturate(1.4);
} */

.product-actions {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-info {
  padding: 22px;
  position: relative;
  margin: 0;
  box-sizing: border-box;
}

.product-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  /* background: linear-gradient(135deg, #00ffff 0%, #ff0080 50%, #8000ff 100%); */
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  box-sizing: border-box;
}

.product-rating i {
  color: #ff8000;
  filter: drop-shadow(0 0 5px #ff8000);
}

.product-rating span {
  color: #8a8aa0;
  margin-left: 0.5rem;
}

.product-info a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #2c347e;
  box-sizing: border-box;
}

.product-description {
  color: #b8b8d1;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  box-sizing: border-box;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.price-old {
  text-decoration: line-through;
  color: #8a8aa0;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.price {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  background-clip: text;
  margin: 0;
  padding: 0;
}

.price-unit {
  color: #b8b8d1;
  font-size: 0.9rem;
  margin: 0;
  padding: 0;
}

.add-to-cart {
  width: 100%;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  margin: 0;
  box-sizing: border-box;
  background-color: #e16127;
}

.add-to-cart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(236, 3, 3, 0.3), transparent);
  transition: left 0.5s ease;
}

.add-to-cart:hover::before {
  left: 100%;
}

.add-to-cart:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

/* feedback section css start  */
.all_product_section .section_title h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin: 20px 0px 0px 0px;
  color: #000;
}

.all_product_section .section_desc p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #000;
  text-align: center;
}

/* all_product_section css end */
.feedback_section {
  padding-top: 50px;
}

.feedback_section {
  padding-top: 50px;
  /* padding-bottom: 80px; */
}

.feedback_section h2 {
  font-size: 32px;
  font-weight: 600;
  color: #122C35;
  text-transform: capitalize;
  padding-bottom: 30px;
  text-align: center;
}

.feedback_section img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #fe0000;
  padding: 5px;
  background: #DDD;
}

.feedback_section .title {
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.feedback_section .main_column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 25px;
}

.feedback_section .flex_column {
  background: #d1cece;
  padding: 15px;
  border-radius: 10px;
}

.feedback_section h3 {
  font-size: 20px;
  font-weight: 700;
  padding-top: 15px;
  padding-bottom: 10px;
  color: #fe0000;
  cursor: pointer;
}

.feedback_section P {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  padding-top: 15px;
  line-height: 22px;
}

.feedback_section a {
  text-decoration: none;
  color: #fe0000;
  display: inline-block;
  padding-top: 11px;
  font-size: 15px;
  transition: .4s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.feedback_section a:hover {
  color: orange;
  border-bottom: 2px solid orange;
}


/* single product page css start */
/* single_product_details section css start */
.single_product_details .main_column {
  display: flex;
  justify-content: space-between;
  column-gap: 5%;
}

.single_product_details .main_column .images {
  width: 65%;
}

.single_product_details .main_column .images img {
  width: 100%;
}

.single_product_details .main_column .desc {
  width: 30%;
}

.single_product_details .main_column .cart .count {
  display: flex;
}

.single_product_details .main_column .cart .count .sub {}

/* single_product_details section css end */
/* single product page css end */
/* Product page css start */
/* details_section css strat */
.details_section {
  margin-top: 50px;
}

.details_section .main_column {
  /* display: flex; */
  column-gap: 30px;
  /* align-items: center; */
  justify-content: center;
}

.details_section .main_column .image_column .images img {
  width: 100%;
}

.details_section .main_column .details_column .desc {
  margin-top: 70px;
}

.details_section .main_column .details_column .product_add .cart {
  margin-top: 30px;
}

.details_section .main_column .details_column .product_add .cart button {
  width: 30%;
}

.details_section .main_column .details_column .product_add .cart i {
  margin-right: 10px;
}

.details_section .main_column .details_column .product_add .number {
  display: flex;
  column-gap: 10px;
}

.details_section .main_column .details_column .product_add .number p {
  cursor: pointer;
  font-size: 22px;
  padding: 5px 10px;
  background: #f2f2f2;
  border-radius: 5px;
  margin: 0;
}

.details_section .main_column .details_column .product_add .number .positive:hover {
  color: #fe0000;
}

.details_section .main_column .details_column .product_add .number .negative:hover {
  color: #fe0000;
}

li::marker {
  color: #2c347e;
  font-size: 20px;
}

/* details_section end */
/* product image css strt */

.details_section .brand-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.details_section .logo {
  font-size: 18px;
  font-weight: bold;
}

.details_section .iso-badge {
  background: #3498db;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
}

.details_section .product-title {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}

.details_section .main-image-container {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #f8f9fa;
}

.details_section .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
}

.details_section .main-image:hover {
  transform: scale(1.05);
}

.details_section .product-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.details_section .shop-btn {
  background: #f1c40f;
  color: #2c3e50;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.details_section .shop-btn:hover {
  background: #f39c12;
  transform: translateY(-2px);
}

.details_section .website {
  margin-top: 5px;
  color: #7f8c8d;
  font-size: 14px;
}

.details_section .contact-info {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.details_section .phone-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
}

.details_section .thumbnails-container {
  padding: 20px;
  background: #ecf0f1;
}

.details_section .thumbnails {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.details_section .thumbnail {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.details_section .thumbnail:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.details_section .thumbnail.active {
  border-color: #3498db;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

.details_section .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.details_section .thumbnail:hover img {
  transform: scale(1.1);
}

.details_section .color-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.details_section .thumbnail:hover .color-label {
  transform: translateY(0);
}

.details_section .slide-up {
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}



.details_section .image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.details_section .image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.details_section .image-modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

/* product image css end */
/* Product page css end */



/* cart page css start */
/* cart_section css start */
.cart_section .main_column {
  display: flex;
  /* justify-content: space-between; */
  column-gap: 4%;
}

.cart_section .main_column .cart {
  display: flex;
  column-gap: 35px;
  align-items: center;
  border: 2px solid #fe0000;
  border-radius: 3px;
  margin-bottom: 20px;
}

.cart_section .main_column .product .cart .info .number {
  display: flex;

}

.cart_section .main_column .product {
  width: 56%;
}

.cart_section .main_column .delivery_details {
  width: 40%;
}

.cart_section .main_column .product .cart .info .number p {
  cursor: pointer;
  font-size: 20px;
  padding: 5px 10px;
  background: #f2f2f2;
  border-radius: 5px;
  margin: 0;
}

.cart_section .main_column .product .cart .info .details a {
  text-decoration: none;
  font-size: 30px;
  color: #000;
}

.cart_section .main_column .product .cart .info .price {
  margin: 20px 0px;
}

.cart_section .main_column .product .cart .info .number {
  margin-top: 10px;
}

.cart_section .main_column .delivery_details .delivery_form input {
  border-color: #2c347e;
  margin-bottom: 5px;
}

.cart_section .main_column .delivery_details .delivery_form input:focus {
  outline: none;
}

.cart_section .main_column .product .cart .images img {
  width: 100%;
}

/* cart_section css end */
/* cart page css end */



/* product page css start */
/* product list section css start */

.product_list_section .title h2 {
  margin-top: 30px;
  font-size: 30px;
  color: #fe0000;
}

.product_list_section .card .images {
  text-align: center;
}

.product_list_section .card .images img {
  width: 100%;
}

.product_list_section .card .title a {
  text-decoration: none;
  font-size: 20px;
  color: #000;
}

/* product list section css end */
/* product page css end */


/* clint section css strat */
.our_clint_section .images img {
  max-width: 180px;
  max-height: 80px;
}

.our_clint_section .section-header h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  margin: 20px 0px -7px 0px;
  color: #000;
}

.our_clint_section .section-header P {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #000;
  text-align: center;
}

/* clint section css end */

/* footer css start */
footer {
  margin-top: 90px;
}

footer .footer_data {
  margin-top: 50px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2c347e;
  text-align: center;
  padding: 15px 0px;
  z-index: 1000;
}

footer p {
  text-align: center;
  margin: 0;
  color: #fff;
}

/* footer css end */
/* .category-overlay {
  pointer-events: none !important;
} */
.add-to-cart a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  box-sizing: border-box;
}

/* Laptop page CSS Start */
.laptop_details .specification-table .att-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
}
.laptop_details #similar_products_section .list-view-details .card-text a{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    color: #000;
} 
.details-header-text span {
    background-color: #2c347e;
    padding: 2px 40px 2px 8px;
    color: #fff;
    clip-path: polygon(0 0,85% 0,95% 100%,0% 100%);
}
.details-header-text {
    font-size: 15px;
    font-weight: 700;
}
.home-header-line {
    border-bottom: 2px solid #2c347e;
    margin-top: -7px;
}
.similar-product .category-single-product .button a{
  background-color: #e16127;
  margin: 0;
  padding: 8px 12px;
  color: #fff;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 600;
}

/* Laptop page CSS end */

/* responsive start  */

@media (max-width: 1024px) {

  /* .cart_section .main_column .cart {
    display: block;
  } */

  .cart_section .main_column .cart .info {
    padding: 20px;
  }

  .hero_section .hero_content h1 {
    font-size: 36px;
  }

  .cart_section .main_column .product {
    width: 100%;
  }

  .cart_section .main_column .delivery_details {
    width: 100%;
  }
}

@media(max-width: 992px) {
  .cart_section .main_column {
    display: block;
  }

  .cart_section .main_column .delivery_details {
    margin-top: 50px;
  }

  .cart_section .main_column .product .cart .images img {
    width: 100%;
    height: 400px;

  }

  .cart_section .main_column .delivery_details .delivery_form input {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .container {
    /* margin: 10px; */
    border-radius: 15px;
  }

  .details_section .brand-info {
    flex-direction: column;
    gap: 10px;
  }

  .details_section .product-title {
    font-size: 20px;
  }

  .details_section .main-image-container {
    height: 300px;
  }

  .details_section .thumbnail {
    width: 80px;
    height: 80px;
  }

  .details_section .product-info,
  .contact-info {
    position: static;
    margin: 10px;
    display: inline-block;
  }

  .details_section .main_column .details_column .product_add .cart button {
    width: 100%;
  }

  .details_section .main_column .details_column {
    margin-top: 20px;
  }

  .price {
    margin: 10px 0px;
  }

  .hero_section .hero_content h1 {
    font-size: 36px;
  }

  .featured .section-header h2 {
    font-size: 28px;
  }
}

@media(max-width: 767px) {
  .hero_section .hero_content .button {
    text-align: end;
    margin-bottom: 22px;
  }

  .align-items-center {
    display: block;
  }
}

@media(max-width: 480px) {
  .hero_section .hero_content h1 {
    font-size: 36px;
    text-align: center;
  }

  .hero_section .hero_content p {
    text-align: center;
  }

  /* .hero_section .hero_content .btn {
    display: none;
  } */

  .hero_section .hero_content h1 {
    font-size: 28px;
    text-align: center;
  }

  .product-info {
    padding: 20px;
  }

  .add-to-cart a {
    font-size: 17px;
    font-weight: 500;
  }

  .product-description {
    margin-bottom: 10px;
  }

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

  .featured .section-header h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    margin: 20px 0px -7px 0px;
    color: #000;
  }

  .featured .section-header P {
    font-size: 18px;
  }

  .our_clint_section .section-header h2 {
    font-size: 28px;
  }

  .our_clint_section .section-header P {
    font-size: 18px;
  }

  .cart_section .main_column .product .cart .images img {
    height: auto;
  }

  .add-to-cart {
    padding: 7px 13px;
  }
}

/* responsive end  */