@font-face {
  font-family: Helvetica-nesu;
  src: url(../fonts/HelveticaNeueMedium.otf);
}

@font-face {
  font-family: Helvetica-nesu-reg;
  src: url(../fonts/Helvetica.ttf);
}

@font-face {
  font-family: Helvetica-round;
  src: url(../fonts/helvetica-rounded-bold-5871d05ead8de.otf);
}

:root {
  --primary-color: #2c5f4a;
  --secondary-color: #4a9b7e;
  --accent-color: #ffd700;
  --text-dark: #333;
  --text-light: #666;
  --border-light: #e0e0e0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica-nesu;
}

body {
  font-family: Helvetica-nesu;
  /* background-color: #f8f9fa; */
}

/* Top Banner */
.top-banner {
  background: #d9e6eb;
  padding: 8px 11px 11px 11px;
  height: 50px;
  justify-content: center;
  align-content: center;
  font-size: 13px;
  font-weight: 400;
  font-style: normal;
  color: #082833;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.top-offer {
  background-color: #d9b919;
  color: #000000;
  padding: 11px 22px 11px 22px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
}

.order-tracking {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #082833;
}

.order-tracking i {
  margin-right: 5px;
}

.top-banner-content {
  font-weight: 400;
  font-size: 16px;
}

.language-currency {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.language-currency select {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

/* Main Header */
.main-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  justify-content: center;
  align-content: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.logo img {
  width: 142px;
  height: 56px;
}

.search-container {
  position: relative;
  max-width: 417px;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--icon);
}

.search-box {
  width: 100%;
  height: 48px;
  padding: 0 77px 0 50px; /* space for icons */
  border: 1px solid #e5e5e5;
  border-radius: 24px; /* pill */
  font-size: 14px;
  background: #eeeeee; /* light gray like screenshot */
  transition: 0.2s ease;
  font-weight: 400;
}
.search-box::placeholder {
  color: #767676;
}

.search-box:focus {
  outline: 0;
  border-color: #e5e5e5;
  box-shadow: unset;
  /* background: #fff; */
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;

  transform: translateY(-50%);
  width: 56px;
  height: 33px;
  border: 0;
  border-radius: 17px;
  background: #5dbf8e;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: 0.2s ease;
}
.search-btn:hover {
  background: #5dbf8e;
  transform: translateY(-50%) scale(1.05);
}

.header-features {
  display: flex;
  gap: 25px;
  align-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.feature-item:hover {
  color: var(--secondary-color);
}

.feature-item i {
  font-size: 18px;
  margin-right: 8px;
  color: var(--secondary-color);
}

.feature-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.feature-title {
  font-weight: 700;
  color: #000;
  font-size: 16px;
  font-family: "Helvetica-nesu-reg";
}

.feature-subtitle {
  font-size: 12px;
  font-weight: 400;
  color: #7c7b7b;
  font-family: "Helvetica-nesu-reg";
}

.cart-icon {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 1px;
  right: -8px;
  background: #369566;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Navigation */
.navigation {
  background: #082833;
}

.nav-container {
  margin: 0 auto;
  padding: 12px 10px;
  display: flex;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
  text-align: center;
}

.nav-link {
  color: #b5cbd3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 0;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #5dbf8e;
}

.nav-link.active {
  color: #5dbf8e;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  color: #5dbf8e;
}

.nav-arrow {
  width: 16px;
  height: 10px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  margin-top: -8px;
}

.nav-item .nav-link.active + .nav-arrow {
  display: block;
  color: #5dbf8e;
}

.contact-info {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 200;
  font-style: normal;
}

.contact-info svg {
  margin-right: 1px;
  color: var(--accent-color);
}

.number {
  color: #5dbf8e;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: black;
  font-size: 20px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-features {
    gap: 20px;
  }

  .feature-text {
    display: none;
  }

  .feature-item {
    font-size: 0;
  }

  .feature-item i {
    margin: 0;
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .main-header .container {
    flex-wrap: wrap;
    gap: 15px;
  }

  .search-container {
    order: 3;
    width: 100%;
    max-width: fit-content;
    /* margin-top: 15px; */
  }

  .nav-menu {
    gap: 20px;
  }

  .contact-info {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    justify-content: end;
  }
  .nav-menu {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #082833; /* fallback if --primary-color is not defined */
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    z-index: 1;
  }

  .nav-menu.show {
    display: flex;
  }

  .feature-item {
    margin-bottom: 0;
  }

  .gift svg {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-toggle {
    display: block;
  }

  .contact-info {
    display: none;
  }

  .nav-arrow {
    width: 16px;
    height: 10px;
    position: absolute;
    top: 75%;
    left: 30%;
    rotate: 90deg;
    transform: translateX(-50%);
    display: none;
    margin-top: -8px;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 24px;
  }

  .header-features {
    display: flex;
    gap: 10px;
  }

  .feature-item i {
    font-size: 18px;
  }
  .search-container {
    display: none;
  }

  .search-box {
    padding: 10px 45px 10px 15px;
    font-size: 13px;
  }

  .search-btn {
    width: 30px;
    height: 30px;
  }
}

/* Animations */
.feature-item {
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.search-container {
  transition: transform 0.2s ease;
}

.search-container:focus-within {
  transform: translateY(-1px);
}

/* Cart animation */
@keyframes cartBounce {
  0%,
  20%,
  60%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  80% {
    transform: translateY(-1px);
  }
}

.cart-icon:hover {
  animation: cartBounce 0.6s ease-in-out;
}

/* Product Banner section */

.productlist_banner {
  width: 100%;
  /* max-width: 1200px;  */
  padding: 15px 0px; /* Optional: add horizontal spacing */
}

.productlist_banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.card-img-top {
  height: 200px;
}
.product_img_card {
  min-height: 205px;
  position: relative;
  justify-content: center;
  align-content: center;
  background-color: #f9f5f5;
  border-radius: 10px;
}

.product_img_card img {
  border-radius: 10px;
}

.star {
  gap: 5px;
  box-shadow: 0px 4px 4px 0px #b4b4b440;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 5px;
  padding: 2px;
  border: 1px solid;
  border: none;
  border-radius: 7px;
  background-color: #ffffffe3;
  color: #7e7e7e;
}

.star img {
  width: 22px;
  height: 22px;
}
.star p {
  color: #7e7e7e;
  font-size: 16px;
  font-family: Helvetica-nesu-reg;
  font-weight: 500;
}
.cart_address .Profile_form {
  margin-bottom: 8px;
}
.heart {
  position: absolute;
  bottom: 6px;
  right: 10px;
  padding: 2px;
  width: 46px;
  height: 46px;
  border: 1px solid;
  background-color: #ffffffe3;
  border: none;
  display: flex;
  border-radius: 13px;
  justify-content: center;
  align-items: center;
}

.heart img,
.heart svg {
  max-height: 24px;
  max-width: 24px;
}

.product_p {
  gap: 8px;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  color: #369566;
  font-family: Helvetica-nesu;
  font-style: normal;
  margin-bottom: 6px;
}

.product_p img {
  width: 19px;
}

.product_text {
  padding: 5px;
}

.product_text h6 {
  font-size: 16px;
  font-family: "Helvetica-nesu-reg";
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0px;
  color: #252525;
}

.pack-options {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  /* justify-content: space-between; */
}

.pack-option {
  flex: 1; /* makes all three equal width */
  text-align: center; /* optional – makes it look balanced */
}

.pack-option .label {
  font-family: Helvetica-nesu-reg;

  border: 1px solid #828282;
  border-radius: 6px;
  height: 30px;
  color: #828282;
  background-color: #fff;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  white-space: unset;
  z-index: 1;
  display: flex; /* CHANGE THIS */
  align-items: center; /* vertical center */
  justify-content: center; /* horizontal center */

  width: 100%;
}

.pack-option .weight {
  display: none;
}

.pack-option.selected .label {
  border-color: #828282;
}

.pack-option.selected .weight {
  font-family: Helvetica-nesu-reg;

  display: block;
  background-color: #73cea1;
  color: black;
  font-weight: 500;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 0 0 5px 5px;
  margin-top: -3px;
  border-top: none;
  width: 100%;
  text-align: center;
  z-index: 0;
}
.product_prize-of s {
  font-family: Helvetica-nesu-reg;
  color: #ca1a1a;
  font-size: 15px;
}
.product_offer {
  font-family: Helvetica-nesu-reg;
  font-size: 11px;
  min-width: 50px;
  height: 19px;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 5px;
  background-color: #d9b919;
}

.product_prize {
  font-size: 22px;
}

.product_prize-of {
  font-size: 14px;
}

.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background-color: #5dbf8e;
  color: white;
  font-size: 16px;
  font-weight: 500;
  font-family: Helvetica-nesu-reg;
  height: 49px;
  border-radius: 10px;
}

.btn-cart:hover {
  border: 1px solid #5dbf8e;
  color: #5dbf8e;
}

.scroll-container-wrapper {
  position: relative;
  padding-right: 40px; /* space for arrow */
}

.scroll-container {
  white-space: nowrap;
  scrollbar-width: none; /* hide scrollbar in Firefox */
  -ms-overflow-style: none; /* hide scrollbar in IE/Edge */
}

.scroll-container::-webkit-scrollbar {
  display: none; /* hide scrollbar in Chrome/Safari */
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #47d7ac;
  border: none;
  padding: 8px 12px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 20px;
  color: white;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.product-list-bg {
  background-color: #dff3e9;
  border-radius: 50px;
  padding: 10px;
  width: 76px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-content: center;
}

.mini_product {
  max-width: 64px;
  max-height: 64px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-tag {
  display: flex;
  justify-content: center;
  align-content: center;
  border: 1px solid #d6d6d6;
  padding: 4px 12px;
  border-radius: 6px;
  background-color: #ffffff;
  font-size: 13px;
  color: #484848;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.filter-tag:hover {
  background-color: #e6f7f1;
  border-color: #47d7ac;
}

.filter-tag.selected {
  background-color: #f3faf7;
  border-color: #5dbf8e;
  color: #161616;
  font-weight: 500;
}

.remove-tag {
  display: none;
}

.filter-tag.selected .remove-tag {
  display: block;
  margin-left: 8px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.footer {
  background-color: #082833;
  color: white;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
}
.support-card {
  border-radius: 20px;
  background-color: #fff;
  padding: 31px 31px 20px;
  height: 100%;
  box-shadow: 0px 5px 18px 0px #b3b1b140;
}
.support-card svg {
  margin-right: 10px;
}
.support-card h6 {
  margin-bottom: 20px;
}
.footer-dog-image {
  position: absolute;
  /* Horizontally center the element */
  left: 50%;
  transform: translateX(-50%);
  /* Keep original vertical position and dimensions */
  top: -116px;
  height: 135px;
  width: auto; /* Adjusts width based on height to maintain aspect ratio */
  max-width: 187px; /* Optional: prevents the image from becoming too large */
  object-fit: contain;
  z-index: 1;
}

.logo_footer {
  max-width: 150px;
  background-color: #d2f4e7;
  border-radius: 10px;
}

.footer-bg {
  background-image: url("../images/footerbg.png"); /* your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: lighten;
  z-index: 1;
}

.footer-desc {
  font-weight: 400;
  max-width: 400px;
  font-size: 16px;
  font-family: Helvetica-nesu-reg;
  margin-bottom: 40px;
}

.footer a {
  color: white;
  text-decoration: none;
}

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

.social-icons img {
  width: 22px;
  height: 22px;
  margin-right: 18px;
  cursor: pointer;
}

.social-icons img:hover {
  color: #5cd99a;
}

.footer-bottoms {
  width: 100%;
}
.footer-bottoms,
.footer-bottom {
  background-color: #e6fff3 !important;
}

.footer-bottom a,
.footer-bottom span {
  font-family: Helvetica-nesu-reg;
  font-size: 14px;
  color: #082833;
  font-weight: 500;
  text-decoration: none;
  padding: 2px 0px;
}

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

.sort-bar-wrapper {
  width: 100%;
  padding: 10px 0;
}

.sort-buttons {
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
}

.sort-buttons::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.sort_bnt {
  /* width: 89px; */
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #d6d6d6;
  font-size: 12px;
  white-space: nowrap;
  color: #484848;
  font-weight: 400;
  font-family: Helvetica-nesu-reg;
  border-radius: 6px;
}
.sort-heading {
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.product-row {
  gap: 60px; /* control space between image & details */
  align-items: flex-start;
}

/* LEFT SIDE – FIXED WIDTH */
.product-left {
  width: 502px;
  flex-shrink: 0; /* important: prevents shrinking */
}

/* RIGHT SIDE – TAKES REMAINING SPACE */
.product-right {
  flex: 1;
}

.product-container {
  border-radius: 20px;
  margin-bottom: 2rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .product-container {
    min-height: 602px; /* only on desktop */
  }
}
@media (max-width: 991px) {
  /* tablet & mobile */
  .product-row {
    flex-direction: column;
  }

  .product-left {
    width: 100%; /* full width on mobile */
  }
}
@media (max-width: 576px) {
  .product-row {
    gap: 16px;
  }
}

.main-image-container {
  border: 1.5px dotted #cecece;
  background-color: white;
  position: relative;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.main-image {
  max-width: 100%;
  /* height: 400px; */
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

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

.trend {
  box-shadow: 0px 4px 4px 0px #00000040;
  background-color: #c32929;
  color: white;
  min-width: 83px;
  height: 27px;
  font-family: Helvetica-nesu-reg;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  border-radius: 7px;
  font-style: italic;
  top: 18px;
  left: 5%;
}

.thumbnail-gallery {
  display: flex;
  position: absolute;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  bottom: 3.5%;
  left: 4%;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  padding: 5px;
  background-color: #f5f5f5;
  border-radius: 9px;
  cursor: pointer;
  box-shadow: 0px 4px 6px 0px #afafaf40;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.thumbnail:hover {
  opacity: 1;
  transform: scale(1.1);
}

.thumbnail.active {
  border-color: #28a745;
  opacity: 1;
}

.instock {
  width: 77px;
  height: 25px;
  padding: 4px 8px;
  background: #65c19342;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #369566;
  font-size: 13px;
  font-weight: 500;
  font-family: Helvetica-nesu-reg;
  border-radius: 6px;
}

.product-title {
  font-size: 2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1rem;
}

.launch {
  color: #91570c;
  padding: 5px;
  font-size: 14px;
  border-radius: 35px;
  background-color: #cfbe8a36;
  min-width: 149px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price-section {
  margin-bottom: 1.5rem;
}

.current-price {
  font-size: 2rem;
  font-weight: bold;
  color: black;
  margin-right: 0.3rem;
}

.original-price {
  font-size: 1.2rem;
  color: red;

  text-decoration: line-through;
}

.rating-text {
  color: #6c757d;
  font-size: 0.9rem;
}

.product-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quantity-section {
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.quantity-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.quantity-input {
  width: 80px;
  text-align: center;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  padding: 0.5rem;
  margin-right: 1rem;
}

.btn-carts {
  border: 1px solid gray;
  color: gray;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 173px;
  font-family: Helvetica-nesu-reg;
  border-radius: 14px;
  font-weight: 600;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.btn-carts:hover {
  background: #5dbf8e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-buy {
  font-family: Helvetica-nesu-reg;

  background: #5dbf8e;
  border: none;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  min-width: 173px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 8px 0px #00000040;
}

.btn-buy:hover {
  border: 1px solid gray;
  color: gray;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.category-tags {
  margin-bottom: 2rem;
}

.category-tag {
  font-family: Helvetica-nesu-reg;
  display: inline-block;
  background: #e4e4e4;
  color: #636363;
  padding: 0.5rem 1.7rem;
  border-radius: 26px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  margin-bottom: 0.8rem;
}

.features-sections {
  background: #e8eaeb;
  padding: 2rem;
  border-radius: 25px;
}
.related-hd {
  font-size: 18px;
  font-weight: 500;
  color: #454545;
}
.related-main-hd {
  font-family: Helvetica-round;
  font-size: 40px;
  color: #082833;
  font-weight: 700;
}
.related-product-heading {
  color: #082833;
  font-size: 20px;
  font-weight: 700;
}
.related-product-price {
  color: #000000;
  font-size: 20px;
  font-weight: 700;
}
.star-rt {
  color: #7e7e7e;
  font-size: 16px;
  font-weight: 500;
}
.product-card-rt {
  padding: 10px;
  border-radius: 20px;
  background: #e6f5ed66;
  border: none;
  box-shadow: unset;
}
.features-title {
  font-size: 1.5rem;
  font-weight: 500;
  background-color: #082833;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 18px;
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.features-titleadd {
  font-size: 1.5rem;
  font-weight: 500;
  color: #082833;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 12px;
  font-size: 18px;

  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 0;
  line-height: 0;
}

.feature-icon {
  color: #28a745;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.feature-text {
  color: #495057;
  line-height: 1.5;
  font-size: 16px;
}
.features-text {
  color: #000000;
  line-height: 30px;
  font-size: 16px;
}

.wishlist-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: white;
  border: 2px solid #e9ecef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wishlist-btn:hover {
  border-color: #dc3545;
  color: #dc3545;
}

.wishlist-btn.active {
  background: #dc3545;
  border-color: #dc3545;
  color: white;
}

@media (max-width: 768px) {
  .product-container {
    padding: 1rem;
  }

  .main-image-container {
    padding: 1rem;
  }

  .main-image {
    height: 300px;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .current-price {
    font-size: 1.5rem;
  }

  .btn-cart,
  .btn-buy {
    width: 100%;
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .quantity-section {
    text-align: center;
  }

  .features-section {
    padding: 1.5rem;
  }

  .thumbnail {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 576px) {
  .main-image {
    height: 250px;
  }

  .thumbnail {
    width: 50px;
    height: 50px;
  }
}

.related-products {
  background-color: #ffff;
}

.product-card {
  transition: transform 0.2s ease;
  background-color: hsl(148, 43%, 93%, 0.3);
}

.productcard_img {
  background-color: white;
  border-radius: 10px;
}

.product-card:hover {
  transform: translateY(-4px);
}

/* signup */

.signup-container {
  background-color: #f3f6f7;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.signup-card {
  width: 100%;
  max-width: 1124px;
  background-color: #f3f6f7;
  border-radius: 29px !important;
}

.left-panel {
  flex: 1;
  width: 100%;
  /* height: 100%; */
  background-color: #f3f6f7;
  /* border-radius: 29px; */
}

.left-panel img {
  width: 100%;
  height: 100%;
  /* border-radius: 29px; */
}

.right-panel {
  flex: 1;
  background-color: #fff;
  border-radius: 29px;
}

.title {
  padding-top: 20px;
  padding-bottom: 25px;
}

form input.form-control {
  font-family: "Helvetica-nesu-reg";
  height: 55px;
  font-size: 14px;
  font-weight: 400;
  color: #abaaaa;
  border: 1px solid #abaaaa;
}

.input-icon {
  position: relative;
}

.input-icon input {
  padding-right: 55px;
  padding-left: 40px;
  border-radius: 10px; /* space for left icon */
}

.input-icon input:focus {
  border: 1px solid #abaaaa;
  box-shadow: none;
}

.input-icon input::placeholder {
  color: #abaaaa;
}

.input-icon svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #abaaaa;
}

.input-icon .toggle-password {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #abaaaa;
}

.Forgot-password {
  font-size: 14px;
  font-weight: 400;
  color: #821b1b;
  font-family: "Helvetica-nesu-reg";
}

.social-logos {
  width: 101px;
  height: 46px;
  border-radius: 12px;
  background-color: #f4f4f4;
}

.social-logos img {
  width: 28px;
  height: 28px;
}

/* Verification code */

.otp-inputs {
  display: flex;
  gap: 4px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.otp-inputs input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 20px;
  border: 1px solid #5dbf8e;

  outline: none;
  transition: border-color 0.2s;
}
.otp-inputs input:focus {
  border-color: #5dbf8e;
}

/* profile */

.profile_card {
  padding: 20px 0px;
  background-image: linear-gradient(#5dbf8e2e, white);
}

.navs li {
  padding-bottom: 10px;
}

.nav-links a {
  color: #333333;
  display: flex;
  border-radius: 17px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  width: fit-content;
  align-items: center;
  align-content: center;
  gap: 8px;
}

.nav-links:hover,
.actives-links {
  color: #369566;
  background-color: #3695652b;
  width: 100%;
}

.cards h6 {
  font-size: 1rem;
}

.profile_dash {
  width: 8px;
  height: 31px;
  background-color: #369566;
  top: 4%;
  left: 0px;
  position: absolute;
  border-radius: 0px 5px 5px 0px;
}

.profile_dashs {
  width: 8px;
  height: 31px;
  background-color: #369566;
  left: 0px;
  position: absolute;
  border-radius: 0px 5px 5px 0px;
}

/* support */

.support-section {
  background-color: #fff;
}

.support_chat {
  background-color: #f9f9f9;
  width: 100%;
}

.map-contact-section {
  padding-bottom: 125px;
}

.map-contact-section iframe {
  display: block;
  width: 100%;
}

h6 {
  font-size: 1rem;
}

.map {
  position: relative;
}

.contact-support {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
}
.footer-heading-line {
  width: 44px;
  height: 2px;
  background-color: #34d986;
  display: block;
  right: 0;
  left: -17px;
  margin-bottom: 17px;
  position: relative;
}
.list-unstyled li {
  font-size: 16px;
  font-weight: 500;
  color: #e9e9e9;
  margin-bottom: 10px;
  font-family: "Helvetica-nesu-reg";
}
.list-unstyled li a {
  font-family: "Helvetica-nesu-reg";
  font-size: 16px;
  color: #e9e9e9;
  font-weight: 500;
}
.footer-heading {
  font-family: "Helvetica-nesu-reg";

  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}
@media (max-width: 576px) {
  .footer-heading-line {
    left: 0px;
  }
  .support-card {
    margin-bottom: 30px;
    height: fit-content;
  }
  .map-contact-section {
    margin: 0px;
    padding: 0px;
  }

  .map-contact-section iframe {
    display: block;
    height: fit-content;
  }

  .contact-support {
    position: relative;
    bottom: 0px;
  }
}

/* cart */
.cart-bg-wrapper {
  display: flex;
  justify-content: flex-end;
}
.cart-background {
  position: absolute;
  background-image: url(./images/cart.webp);
  object-fit: cover;
  opacity: 0.4;
  background-position: top;
  background-repeat: no-repeat;
  max-width: 100%;
  max-height: 265.4666748046875px;
}

.cart-container {
  border-radius: 12px;
  overflow: hidden;
}

.cart-header {
  padding: 25px;
  text-align: center;
}

.cart-title {
  font-size: 28px;
  font-weight: 600;
  font-family: Helvetica-round;
  margin: 0;
}

.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  padding: 0 20px;
  column-gap: 60px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
  max-width: 120px;
}
.card-title {
  font-family: Helvetica-nesu;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.step.active .step-circle {
  background: #5dbf8e;
  color: white;
}

.step.pending .step-circle {
  background: #e9ecef;
  color: #6c757d;
  border: 2px dotted #999999;
}

.step-label {
  font-size: 16px;
  color: #999999;
  text-align: center;
}

.step.active .step-label {
  color: #5dbf8e;
  font-weight: 500;
}

.step-connector {
  position: absolute;
  top: 20px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: #dee2e6;
}

.step:last-child .step-connector {
  display: none;
}

.cart-content {
  padding: 0 25px 25px;
}

.section-header {
  font-family: Helvetica-nesu-reg;
  font-size: 22px;
  font-weight: 600;
  color: #082833;
  margin-bottom: 20px;
  /* padding-bottom: 10px; */
}

.coupon-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.coupon-input {
  font-family: Helvetica-nesu-reg;
  width: 100%;
  height: 55px;
  border: 1px solid #abaaaa;
  border-radius: 10px;
  padding: 0 12px;
  outline: none;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

.coupon-input::placeholder {
  color: #aeaeae;
}

.coupon-btn {
  width: 100%;
  height: 55px;
  border: 1.5px solid #369566;
  border-radius: 10px;
  background: white;
  color: #369566;
  font-weight: 500;
  cursor: pointer;
}

.coupon-btn:hover {
  background: #f2fff8;
}

.product-item {
  display: flex;
  border: 1px solid #cbcbcb;
  align-items: center;
  padding: 10px;
  margin-bottom: 17px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 90px;
  height: 80px;
  object-fit: cover;
  margin-right: 15px;
  flex-shrink: 0;
}
.or-hd {
  color: #082833;
  font-family: Helvetica-nesu;
  font-weight: 700;
  font-size: 22px;
}
.product-item .product-image {
  width: 73px;
  height: 73px;
  object-fit: cover;
  margin-right: 0px;
  flex-shrink: 0;
  margin-left: 0px;
}

.product-details {
  flex: 1;
  margin-right: 15px;
}

.product-name {
  font-weight: 500;
  color: #282828;
  font-family: Helvetica-nesu;
  margin-bottom: 5px;
  line-height: 1.3;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-variant {
  display: flex;
}

.product-variant img {
  width: 31px;
}

.product-actions {
  align-items: center;
  gap: 10px;
}
.home-buy {
  width: 129px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5dbf8e;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: none;
  cursor: pointer;
}
.product-actions-home {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.home-cart {
  white-space: nowrap;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 129px;
  height: 45px;
  border: 1px solid #5dbf8e;
  background-color: transparent;
  color: #5dbf8e;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.quantity-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 5px;
  padding: 2px;
  border: 1px solid #dee2e6;
  margin-top: 15px;
}

.qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: #f8f9fa;
}

.qty-display {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
  padding: 0 10px;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  min-width: 80px;
  text-align: right;
}

.offer-price {
  font-size: 22px;
}

.original-price {
  text-decoration: line-through;
  color: red;
  align-content: baseline;
  font-size: 14px;
  margin-right: 8px;
}

.delete-btn {
  color: #dc3545;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.delete-btn:hover {
  background: #fff5f5;
}

.price-summary {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 5px 10px;
  height: 100%;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7.3px 0;
}

.price-label {
  color: #4c4c4c;
  font-weight: 500;
  font-size: 18px;
  /* font-family: Helvetica-nesu-reg; */
}

.price-value {
  font-weight: 600;
  font-size: 18px;
  font-family: Helvetica-nesu-reg;

  color: #181818;
}
.price-tl {
  font-family: Helvetica-nesu;
  font-weight: 500;
  font-size: 20px;
  color: #1e1e1e;
}
.tl-small {
  color: #4f4f4f;
  font-family: Helvetica-nesu-reg;
  font-weight: 300;
  font-size: 13px;
  font-style: italic;
}
.tl-amt {
  color: #181818;
  font-family: Helvetica-nesu;
  font-weight: 700;
  font-size: 18px;
}
.price-row.total {
  border-top: 2px solid #dee2e6;
  margin-top: 15px;
  padding-top: 15px;
  font-size: 20px;
}

.price-row.total .price-label,
.price-row.total .price-value {
  font-weight: 700;
  color: #333;
}

.tax {
  font-size: 12px;
  font-weight: 100;
  font-style: italic;
  color: gray;
}

.checkout-btn {
  font-family: Helvetica-nesu-reg;
  background-color: #029a69;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  height: 55px;
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  align-content: end;
}

.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.empty-cart {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
}

.empty-cart i {
  font-size: 64px;
  margin-bottom: 20px;
  color: #dee2e6;
}

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

  .cart-content {
    padding: 0 15px 20px;
  }

  .progress-steps {
    margin: 20px 0;
    padding: 0 10px;
  }

  .step {
    max-width: 80px;
  }

  .line {
    width: 80%;
    position: absolute;
    left: 0;
    border: 2px solid #28a745;
    height: 10px;
  }

  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .step-label {
    font-size: 10px;
  }

  .product-item {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .product-image {
    margin: 0 0 15px 0;
  }

  .product-details {
    margin: 0 0 15px 0;
    text-align: center;
  }

  .product-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .quantity-controls {
    justify-content: center;
  }

  .price-summary {
    padding: 20px 15px;
  }

  .price-row {
    font-size: 14px;
  }

  .price-row.total {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .cart-title {
    font-size: 24px;
  }

  .cart-header {
    padding: 20px 15px;
  }

  .progress-steps {
    /* flex-direction: column; */
    gap: 15px;
  }

  .step-connector {
    display: none;
  }

  .product-name {
    font-size: 16px;
  }

  .product-price {
    font-size: 16px;
  }
}

/* cart address */

body {
  /* background-color: #f8f9fa; */
  font-size: 14px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px dashed #029a69;
  background-color: #ccc;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 5px;
  padding: 5px;
}

.active-step .circle {
  background-color: #28a745;
}

.Profile_form label {
  padding-bottom: 5px;
  color: #1e1e1e;
}

.Profile_form input {
  border: 1px solid #abaaaa;
  box-shadow: none;
  border-radius: 10px;
}

.Profile_form input::placeholder {
  color: #aeaeae;
  font-size: 13px;
  font-family: Helvetica-nesu;
  font-weight: 500;
}

.Profile_form input:focus {
  border: 1px solid #369566;
  box-shadow: none;
}

.Profile_form select {
  border: 1px solid;
  box-shadow: none;
  border-radius: 10px;
  height: 55px;
  color: #aeaeae;
}

.Profile_form select:focus {
  border: 1px solid #369566;
  box-shadow: none;
}

/* payment */

.circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.step.active-step .circle {
  background-color: #28a745;
}

.step.completed-step .circle {
  background-color: #28a745;
}

.step-connector {
  position: absolute;
  top: 30px;
  left: 77%;
  width: 97%;
  height: 2px;

  background: #dee2e6;
}

.step:last-child .step-connector {
  display: none;
}
.card img {
  object-fit: contain;
}

.pay-upi {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
}
.upi_button {
  display: flex;
}
.upi_button button {
  width: 109px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6d6d6;
  border-radius: 13px;
  margin-left: 10px;
  background-color: #f9f9f9;
}
.price-hd {
  font-size: 22px;
  font-weight: 700;
  /* font-family: Helvetica-nesu-reg; */

  color: #082833;
}
.price-hd span {
  font-size: 18px;
  font-weight: 400;
  font-family: Helvetica-nesu-reg;
  color: #4f4f4f;
}
.modal-content {
  background: #f9fdfb;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.sucess_tick {
  position: relative;
  width: 115px;
  height: 115px;
  background: radial-gradient(circle, #c1efd8, #c1efd8 70%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sucess_tick::before {
  content: url("../images/tick.svg");
  position: absolute;
  background-color: #5dbf8e;
  width: 155.4px;
  height: 155.4px;
  padding: 27px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 50%;
  transform: scale(0.6);
}

.cancle_cross {
  position: relative;
  width: 188px;
  height: 188px;
  background: radial-gradient(circle, #efc1c1, #efc1c1 70%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cancle_cross::before {
  content: url("../images/Vector (1).svg");
  position: absolute;
  background-color: #bf5d5d;
  width: 156px;
  height: 156px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Pet Categories */
.pet-categories {
  padding: 40px 0;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #082833;
  margin-bottom: 24px;
  text-align: left;
}

.categories-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 102px;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.category-circle {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  background-color: #dff2e9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0px -5px 11px 0px #b4b4b440 inset;
  position: relative;
}

.category-image {
  position: absolute;
  top: -25px;
  max-width: 90px;
  min-height: 110px;
  object-fit: cover;
}

.category-images {
  position: absolute;
  top: -10px;
  left: 1px;
  max-width: 70px;
  min-height: 110px;
  object-fit: contain;
}

.category-name {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  text-align: center;
}

.explore-all {
  color: #369565;
}

/* Hero Section */
.hero-section {
  position: relative;
  /* background-image: url("../images/indexbg.png"); */
  background-repeat: no-repeat;
  background-size: cover; /* or cover depending on design */
  background-position: right center;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 102px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.sale-badge {
  font-size: 25px;
  font-weight: 500;
  color: #d8b818;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
  font-family: Helvetica-round;
}

.hero-title .highlight {
  color: #2cff95;
  font-family: Helvetica-round;
}

.hero-description {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: #b0ced9;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  background-color: #fbfffd;
  color: #084928;
  padding: 18px 18px 18px 18px;
  border: 2px solid #5dbf8e;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #5dbf8e;
  color: white;
}

.hero-btn svg:hover {
  color: white;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: auto;
}

/* Features Section */
.features-section {
  background-color: #52ab7f;
  padding: 34px 0;
}

.features-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.feature-card {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 5px;
  color: white;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #71be97;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.feature-info p {
  font-size: 16px;
  color: #e6e6e6;
}

/* Near by Pets Section */
.nearby-pets {
  background-color: #f1f4f5;
  padding: 40px 0;
  position: relative;
}

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

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #082833;
  margin-bottom: 12px;
  font-family: Helvetica-round;
}

.section-header p {
  font-size: 18px;
  font-weight: 500;
  color: #454545;
}

.pets-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 1px;
  scroll-behavior: smooth;
}

.pet-card {
  background-color: white;
  border-radius: 30px;
  padding: 16px 12px;
  min-width: 200px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.pet-image-container {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
}

.pet-image {
  width: 100%;
  height: 246px;
  object-fit: cover;
}

.pet-rating {
  position: absolute;
  bottom: 12px;
  left: 12px;

  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pet-favorite {
  position: absolute;
  bottom: 18px;
  right: 12px;
  width: 46px;
  height: 46px;
  /* background-color: rgba(255, 255, 255, 0.9); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pet-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.pet-description {
  font-size: 14px;
  color: #525252;
  margin-bottom: 24px;
}

.pet-location {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}

.pet-location img {
  width: 24px;
  height: 24px;
}

.location-text {
  font-size: 14px;
  color: #595959;
}

.distance-badge {
  font-family: Helvetica-nesu-reg;
  background-color: #5dbf8e23;
  color: #369566;
  width: 93px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 57px;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  margin-left: 8px;
}

.pet-hours {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pet-hours img {
  width: 22px;
  height: 22px;
}

.hours-text {
  font-size: 14px;
  color: #595959;
}

/* Product Sections */
.products-section {
  padding-top: 30px;
}

.products-grid {
  display: grid;
  /* Adjusted minmax value from 220px to 270px.
       This value is chosen to ensure only 4 columns fit comfortably in most
       desktop viewport widths before wrapping to the next row. */

  gap: 20px;
}

.product-card {
  background-color: #e5f4ed66;
  border-radius: 20px;
  padding: 10px;
  transition: transform 0.3s ease;
}

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

.product-image-container {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 16px;
  position: relative;
  justify-content: center;
  display: flex;
  align-items: center;
}

.product-image {
  width: 190px;
  height: 203px;
  object-fit: cover;
  border-radius: 4px;
}

.product-favorite {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 46px;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #082833;
  margin-bottom: 18px;
}

.product-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

.current-price {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}
.current-price-product {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
}
.original-price-product {
  font-size: 16px;
  font-weight: 500;
  color: #ca1a1a;
  text-decoration: line-through;
  font-style: italic;
  align-items: center;
}

.original-price {
  font-size: 14px;
  font-weight: 500;
  color: #ca1a1a;
  text-decoration: line-through;
  font-style: italic;
  align-items: center;
}
.btn-current {
  border: 1px solid #369566;
  background-color: #def1e8;
  color: #369565;
  font-size: 13px;
  font-weight: 400;
  font-family: Helvetica-nesu-reg;
  height: 23px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}
.btn-profile-edit {
  background: #def1e8;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: none;
}
.profile-buttons {
  display: flex;

  gap: 8px;
}

.address-heading {
  color: #000000;
  font-family: Helvetica-nesu-reg;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
  font-style: italic;
}
.address-heading-disable {
  color: #9a9a9a;
}
.address-paragraph {
  font-family: Helvetica-nesu-reg;
  font-weight: 400;
  font-size: 17px;
  color: #2b2b2b;
}
.address-phone {
  display: flex;
  align-items: center;
  font-family: Helvetica-nesu-reg;
  font-weight: 500;
  font-size: 17px;
  color: #242424;
  gap: 8px;
  margin-bottom: 0;
}
.address-phone-disable {
  color: #a1a1a1;
}
.address-paragraph-disable {
  color: #a1a1a1;
}
.btn-profile-delete {
  background: #fbdada;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: none;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-rating img {
  width: 22px;
  height: 22px;
}

.rating-text {
  font-size: 16px;
  color: #7e7e7e;
}

@media (max-width: 1024px) {
  .product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .product-actions button {
    width: 100%;
  }
}

.product-actions {
  gap: 10px;
}

.btn-outline {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #082833;
  background-color: transparent;
  color: #082833;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #5dbf8e;
  border: 1px solid #4a9d73;
  color: white;
}

.btn-outline svg:hover {
  color: white;
  stroke: white;
}

.btn-primary {
  flex: 1;
  padding: 14px 20px;
  background-color: #5dbf8e;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #4a9d73;
}

/* Promotional Banners */
.promo-banners {
  display: flex;
  gap: 18px;
  /* padding: 0 103px; */
  margin: 40px 0;
}

.promo-banner {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 338px;
}

.promo-banner img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
}

.promo-content {
  position: absolute;
  top: 50%;
  left: 34px;
  transform: translateY(-50%);
  color: white;
}

.promo-contents {
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  transform: translateY(-55%);
  text-align: center;
}

.promo-title {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
  color: #222222;
  font-family: Helvetica-round;
}

.promo-subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #424242;
}

.promo-btn {
  display: flex;
  width: 151px;
  height: 45px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid #369566;
  border-radius: 10px;
  color: #369565;
  font-weight: 400;
  font-family: Helvetica-nesu-reg;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.promo-btn:hover {
  background-color: #369465;
  color: white;
}

/* Blog Section */
.blog-section {
  background-color: #f3f3f3;
  padding: 10px 30px 175px 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.blog-grid {
  display: grid;
  /* --- MODIFIED LINE BELOW --- */
  /* Changed minmax from 396px to a smaller value (e.g., 300px or 320px) 
       to allow 3 columns to fit in most desktop views. 
       Adjust '300px' based on your content and desired spacing. */
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* Adjusted minmax */
  gap: 20px;
  padding: 0 104px;
}

.blog-card {
  background-color: white;
  border-radius: 20px;
  padding: 14px 12px;
  transition: transform 0.3s ease;
}

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

.blog-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

.blog-image {
  width: 100%;
  height: 218px;
  object-fit: cover;
}

.blog-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #5dbf8e;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.blog-content h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  margin-bottom: 14px;
}

.blog-excerpt {
  font-size: 15px;
  line-height: 21px;
  color: #4d4d4d;
  font-family: Helvetica-nesu-reg;
}

.bg-decoration {
  position: absolute;
  top: 20px;
  right: 30px;
  opacity: 0.1; /* subtle effect */
  z-index: 0;
  object-fit: contain;
  background-color: white;
  background-blend-mode: color;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .top-header-content,
  .main-header-content,
  .nav-content {
    padding: 0 16px;
    flex-direction: column;
    gap: 16px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features-grid {
    flex-direction: column;
    gap: 30px;
  }

  .pets-slider,
  .products-grid {
    padding: 0 16px;
  }

  .promo-banners {
    flex-direction: column;
    padding: 0 16px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

@media (max-width: 640px) {
  .search-section {
    margin-left: 0;
    margin-top: 16px;
  }

  .feature-item {
    margin-bottom: 0;
  }

  .header-features {
    display: flex;
    gap: 16px;
    justify-items: center;
    align-content: center;
    align-items: center;
  }

  .nav-menu {
    flex-direction: column;
    gap: 16px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pets-slider {
    flex-direction: column;
  }

  .pet-card {
    min-width: 100%;
  }
}

.decoration-dog-paws-grey {
  position: relative;
  left: 168px;
  top: 30px;
  width: 60px;
  height: auto;
}
/* Container for title and decorations */
.trending-title-decoration {
  position: relative;
  /* OVERRIDE the previous flex centering */
  display: block; /* Change from flex to block, or remove justify-content/align-items */
  text-align: left; /* Ensure its content is left-aligned */
  /* Remove padding if it was added for image spacing, as images are absolute */
  padding-right: 0;
  padding-left: 0;
}

/* The title itself */
.trending-title-decoration h2 {
  display: inline-block; /* Keep this to make h2 shrink to text width */
  text-align: left; /* Ensure text inside h2 is left-aligned */
  /* Remove any padding-left/right that was added for images previously */
  padding-left: 0;
  padding-right: 0;
  font-family: Helvetica-round;
  font-size: 40px; /* <--- Set h2 font size to 40px */
}

/* Common styles for decoration images */
.decoration-deals-left {
  position: absolute;
  width: 50px;
  height: auto;
  z-index: 1;
}
.decoration-featured-left {
  position: absolute;
  width: 50px;
  height: auto;
  z-index: 1;
  top: 63px;
  left: 63.5%; /* Example: This value will need careful adjustment */
  transform: none; /* Remove previous transform that assumed centering */
}

.decoration-featured-lefts {
  position: absolute;
  width: 50px;
  height: auto;
  z-index: 1;
  top: 50px;
  left: 69%; /* Example: This value will need careful adjustment */
  transform: none; /* Remove previous transform that assumed centering */
}

.decoration-nearby-left {
  position: absolute;
  width: 50px;
  height: auto;
  z-index: 1;
  top: 6%;
  left: 60%; /* Example: This value will need careful adjustment */
  transform: none; /* Remove previous transform that assumed centering */
}
/* Specific positioning for img_group_27.svg (decoration-left) */
.decoration-deals-left {
  top: -20px; /* Adjust as needed */
  /* Now, position relative to the h2's left edge within its new left-aligned flow.
       This will require new trial-and-error values as the reference point has changed. */
  left: 39%; /* Example: This value will need careful adjustment */
  transform: none; /* Remove previous transform that assumed centering */
}

.decoration-lefts {
  position: absolute;
  width: 60px;
  height: 50px;
  z-index: 1;
}

/* Specific positioning for img_group_27.svg (decoration-left) */
.decoration-left {
  top: -10px;
  left: 54.5%; /* Example: This value will need careful adjustment */
  transform: none; /* Remove previous transform that assumed centering */
}

.decoration-lefts {
  top: -18px;
  left: 55.5%; /* Example: This value will need careful adjustment */
  transform: none; /* Remove previous transform that assumed centering */
}

/* Specific positioning for img_group_28.svg (decoration-right) */
.decoration-right {
  top: 10px; /* Adjust as needed */
  left: 59%; /* Example: This value will need careful adjustment, slightly more than decoration-left */
  transform: none; /* Remove previous transform */
}
.section-header-left {
  margin-right: auto; /* Pushes the section to the left */
  margin-left: 0; /* Ensures no left margin pushes it right */
  text-align: left; /* Aligns text and inline content within this section to the left */
  /* Optional: Limit its width if it's currently taking up full width and you want it narrower */
  max-width: 600px; /* Adjust as needed */
  margin-bottom: 25px;
}
/* Wrapper to contain both slider and controls */
.pets-slider-wrapper {
  position: relative; /* Establish positioning context for arrows */
  max-width: 100%; /* Or a specific max-width if desired */
  margin: 0 auto; /* Center the wrapper */
}

/* Controls container for arrows */
.pets-slider-controls {
  position: absolute;
  top: -88px;
  right: 110px;
  display: flex;
  margin: 0;
  gap: 20px;
  z-index: 1;
}

.slider-arrow {
  background-color: #f1f4f5; /* Example background for arrows */
  border: 1.5px solid #bcbcbc;
  border-radius: 50%; /* Make them circular */
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 20px; /* Size for potential arrow icon/text */
  color: #333;
  transition: background-color 0.3s ease;
}

.slider-arrow:hover {
  background-color: #e0e0e0;
}

/* Visual arrow icons (using pseudo-elements, or you can use SVG/FontAwesome) */
.left-arrow::before {
  content: "←"; /* Unicode left arrow */
}

.right-arrow::before {
  content: "→"; /* Unicode right arrow */
}

/* Main slider container */
.pets-slider {
  display: flex; /* Arrange pet cards in a row */
  overflow-x: scroll; /* Allow horizontal scrolling */
  scroll-snap-type: x mandatory; /* Snap to cards for smoother navigation */
  -webkit-overflow-scrolling: touch; /* For smoother scrolling on iOS */
  scroll-behavior: smooth; /* Smooth scrolling when programmatically moved */

  /* HIDE THE SCROLLBAR */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.pets-slider::-webkit-scrollbar {
  display: none;
}

/* Individual pet cards */
.pet-card {
  flex: 0 0 auto; /* Prevent cards from shrinking/growing, maintain their size */
  width: 343px; /* Explicit width for each card, adjust as needed */
  scroll-snap-align: start; /* Snap point for each card */
  /* Add existing styling for pet-card here */
  background-color: white; /* Example */
  border-radius: 30px; /* Example */
  box-shadow: unset;
}

/* Remove margin from the last card if desired */
.pets-slider .pet-card:last-child {
  margin-right: 0;
}

/* Add or adjust existing styles for inner elements if they conflict */
.sale-banner {
  padding: 112px 120px;
}

@media (max-width: 768px) {
  .product-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .sale-banner {
    padding: 15px 10px;
  }
}

@media (max-width: 320px) {
  .decoration-dog-paws-grey {
    position: relative;
    left: 125px;
    top: 42px;
    width: 60px;
    height: auto;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.price-container {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
}

.form-label {
  font-weight: 600;
  color: #000000;

  font-size: 16px;
}

.dual-range-container {
  position: relative;
  height: 3px;
  background: #cecece;
  border-radius: 3px;
  margin: 10px 0;
}

.range-track {
  position: absolute;
  height: 6px;
  background: #5dbf8e;
  border-radius: 3px;
}

.range-input {
  position: absolute;
  width: 100%;
  height: 6px;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  pointer-events: none;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: #5dbf8e;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  pointer-events: all;
  position: relative;
  z-index: 2;
}

.range-input::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #5dbf8e;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  pointer-events: all;
}

.price-labels {
  display: flex;
  justify-content: space-between;

  font-size: 12px;
  color: #000000;
  font-weight: 500;
}

.current-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: #5dbf8e;
  font-weight: 600;
}
/* order_confirmation */
.sucess_tick_order {
  position: relative;
  width: 166px;
  height: 166px;
  background: radial-gradient(circle, #c1efd8, #c1efd8 70%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sucess_tick_order::before {
  content: url("../images/order_tick.svg");
  position: absolute;
  background-color: #5dbf8e;
  width: 137px;
  height: 137px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-radius: 50%;
}
.order-success-text {
  font-family: Helvetica-round;
  font-weight: 700;
  font-size: 30px;
  color: #30a96d;
}
.order-sub-text {
  font-family: Helvetica-nesu;
  font-weight: 400;
  font-size: 20px;
  color: #6f6f6f;
}
.info-card {
  background: white;
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 28px rgba(9, 30, 15, 0.06);
}

.section-title {
  color: #369566;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.info-item label {
  display: block;
  color: #8c8c8c;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

.info-item value {
  display: block;
  color: #242424;
  font-size: 18px;
  font-weight: 700;
}

.address-text {
  color: #242424;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}
.w-return-btn1 {
  min-width: 200px;
}
.w-return-btn2 {
  min-width: 187px;
}
.btn-outline-custom {
  height: 58px;
  border: 1px solid #d1d1d1;
  color: #082833;
  background: white;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Helvetica-nesu-reg;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(13, 28, 15, 0.04);
}

.btn-outline-custom:hover {
  background-color: #f6f8f9;
  border-color: #bfc7c9;
  transform: translateY(-2px);
}

/* Icon + underlined text style for return/track buttons */
.btn-outline-custom .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 12px;
}

.btn-outline-custom .btn-text {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 700;
  color: #082833;
}

.w-return-btn1 { padding-left: 20px; }
.w-return-btn2 { padding-left: 18px; }

.order-header {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 1px;
}

.order-header-item label {
  display: block;
  color: #8c8c8c;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.order-header-item value {
  display: block;
  color: #111827;
  font-size: 17px;
  font-weight: 700;
  color: #0b2b22;
}

/* Make Order ID stand out and Status right aligned */
.order-header-item:first-child value {
  font-size: 20px;
  font-weight: 900;
}
.order-header-item:nth-child(3) value {
  text-align: right;
}

.order-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.order-item:last-child {
  border-bottom: none;
}

.product-image-order {
  width: 88px;
  height: 88px;

  /* margin-right: 16px; */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  overflow: hidden;
}

.product-image-order img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
}

.product-details-order {
  flex: 1;
  max-width: 283px;
}

.product-name-order {
  color: #282828;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 23px;
}

.product-qty-order {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.product-price-order {
  color: #000000;
  font-size: 22px;
  font-weight: 900;
  margin-left: auto;
  flex-shrink: 0;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  background-color: #dbeafe;
  color: #1e40af;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}

.order-item-checkout {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 8px;
}
.info-card .order-item-checkout:nth-child(n + 3) {
  margin-bottom: 10px;
}

.item-number-checkout {
  width: 25px;
  height: 25px;
  background-color: #369566;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}

.item-details-checkout {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
}

.item-name-checkout {
  max-width: 382px;
  color: #282828;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  flex: 1;
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cost-label-bold {
  color: #369566;
  font-size: 19px;
  font-weight: 700;
}
.cost-label {
  color: #369566;
  font-size: 18px;
  font-weight: 500;
}

.cost-value {
  color: #16a34a;
  font-size: 18px;
  font-weight: 600;
}

.subtotal-row-checkout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 33px;
  margin-bottom: 30px;
}

.subtotal-label {
  color: #282828;
  font-size: 20px;
  font-weight: 700;
}

.cost-breakdown {
  margin-left: 33px;
}

.place-order-btn {
  width: 100%;
  background-color: #029a69;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  margin: 25px auto 0;
  transition: background-color 0.3s ease;
  cursor: pointer;
  max-width: 262px;
  height: 55px;
  justify-content: center;
}

.place-order-btn:hover {
  background-color: #15803d;
}

.place-order-btn:active {
  background-color: #166534;
}
@media (max-width: 768px) {
  .order-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .order-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .info-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-price-order {
    margin-left: 0px;
    font-size: 19px;
  }
}

@media (max-width: 576px) {
  .info-card {
    padding: 16px;
  }

  .btn-outline-custom {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .sucess_tick_order {
    width: 120px;
    height: 120px;
  }
  .sucess_tick_order::before {
    width: 100px;
    height: 100px;
  }
  .order-success-text {
    font-size: 24px;
  }
  .order-sub-text {
    font-size: 16px;
  }

  .cost-label {
    font-size: 15px;
  }
  .cost-label-bold {
    font-size: 16px;
  }
  .subtotal-label {
    font-size: 16px;
  }
  .item-number-checkout {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .item-name-checkout {
    font-size: 16px;
  }

  .item-price-checkout {
    font-size: 20px;
  }
}
/* Search Results Dropdown */
.search-results {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  background: #eeeeee;
  border: 1px solid #e5e5e5;
  z-index: -1;
  max-height: 400px;
  overflow-y: auto;
  display: none;
  max-width: 417px;

  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-width: 1px;
  padding-top: 20px;
}

.search-results.show {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-results-title {
  color: #369566;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 17px 3px;
}

/* When results are open */
.search-box.results-open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

.search-results.show {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: 0;
}

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

.search-result-item {
  padding: 0;
  margin: 0;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 17px;
  color: #369566;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.2s ease;
}
.go-link {
  color: #7e7e7e;
}
.search-result-link:hover {
  background-color: #f9fafb;
  color: #369566;
  padding-left: 25px;
}

.search-result-arrow {
  width: 13.6px;
  height: 9.7px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
.paw-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20.5px;
  height: 18px;
  color: #6d6d6d;
}
.no-results {
  color: #767676;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  font-weight: 400;
}

.search-container {
  position: relative;
  z-index: 99;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-result-item {
  animation: fadeIn 0.3s ease;
}
/* wishlist */
.product-card-wishlist {
  padding: 20px 5px 20px 5px;
  border-bottom: 1px solid #d9d9d9;
}
.product-card-wishlist:last-child {
  border-bottom: none;
}

.product-image-wishlist {
  width: 150px;
  height: 170px;
  object-fit: contain;
}

.product-title-wishlist {
  font-size: 17px;
  font-weight: 500;
  color: #282828;
  margin-bottom: 15px;
  line-height: 27px;
}

.stock-badge {
  text-align: center;
  padding: 7px 16px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 131px;
  height: 40px;
}

.in-stock {
  background-color: #5dbf8e;
  color: white;
}

.out-of-stock {
  background-color: #fbdada;
  color: #c32929;
}

.price-wishlist {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.quantity-control-wishlist {
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e2e2;
  border-radius: 7px;
  overflow: hidden;
  height: 31px;
}

.quantity-control-wishlist button {
  background: white;
  border: none;
  padding: 3px 8px;
  cursor: pointer;
  color: #666;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-control-wishlist button:hover {
  background-color: #ffffff;
}

.quantity-control-wishlist input {
  border: 1px solid #ececec;
  text-align: center;
  width: 29px;
  padding: 8px 0;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
}

.quantity-control-wishlist input:focus {
  outline: none;
}

.btn-move-cart {
  gap: 3px;
  height: 45px;
  max-width: 148px;
  background: white;
  border: 0.5px solid #848282;
  color: #848282;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-delete-wishlist {
  height: 45px;
  padding: 8px;
  max-width: 45px;
  border-radius: 6px;
  background-color: #fbdada;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-delete-wishlist:hover {
  background-color: #f4e6e6;
  border-color: #fbdada;
}
.btn-move-cart:hover {
  background-color: #f5f5f5;
  border-color: #999;
}

.btn-delete {
  background-color: var(--light-pink);
  border: none;
  color: var(--primary-red);
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-delete:hover {
  background-color: #ffd0d0;
}
.page-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination {
  justify-content: center;
  margin-top: 30px;
}

.pagination .page-link {
  font-size: 14px;
  border: 1px solid #d1d5db;
  color: #000;
  min-width: 34.75px;
  height: 38px;
  /* padding: 10px 16px; */
  margin: 0 10px;
  border-radius: 4px;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination .page-link:hover {
  background-color: unset;
  border-color: unset;
}

.pagination .page-item.active .page-link {
  background-color: #369566;
  border-color: #369566;
  color: white;
}
.order-indicator {
  width: 3px;
  height: 100%;
  background-color: #369566;
  position: absolute;
  left: 0;
  top: 0;
}
.btn-success-order {
  /* max-width: 122px; */
  height: 39px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 10px;
  background-color: #2f8f5b;
  border-color: #2f8f5b;
}

.btn-success-order:hover {
  color: #fff;
  background-color: #267a4d;
  border-color: #267a4d;
}
.text-muted-order {
  color: #8c8c8c;
  font-size: 17px;
  font-weight: 500;
}
.fw-semibold-order {
  margin-top: 5px;
  color: #242424;
  font-size: 18px;
  font-weight: 500;
}
.qty-text-order {
  font-size: 17px;
  font-weight: 500;
  color: #000000;
}
.return-text {
  color: #7d7d7d;
  font-size: 17px;
  font-weight: 400;
}
.order-card {
  background-color: #ecf7f28c;
  padding: 10px 20px;
  position: relative;
}

.form-label {
  font-weight: 500;
  margin-bottom: 6px;
  color: #1e1e1e;
  font-size: 14px;
}

.custom-input {
  height: 45px !important;
  border-radius: 8px;
  border: 1px solid #abaaaa;
  font-size: 13px;
  font-weight: 500;
}

.custom-input::placeholder {
  color: #aeaeae;
}

/* Upload Box */
.upload-box {
  height: 48px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  cursor: pointer;
  color: #9a9a9a;
  font-size: 14px;
}

.upload-box:hover {
  border-color: #009a5a;
}

.upload-icon {
  font-size: 18px;
}

/* Submit Button */
.btn-submit-return {
  background-color: #029a69;
  color: #fff;
  height: 55px;
  min-width: 203px;

  border-radius: 10px;
  font-weight: 500;
  border: none;
  font-size: 16px;
}

.btn-submit-return:hover {
  background-color: #007e4a;
  color: #fff;
}
.feedback-title {
  color: #369566;
  font-size: 28px;
  font-weight: 500;
}
.form-label-feedback {
  font-weight: 500;
  margin-bottom: 6px;
  color: #000000;
  font-size: 16px;
}
.textarea-feedback::placeholder {
  color: #aeaeae;
  opacity: 1; /* important for Firefox */
}
.textarea-feedback {
  border: 1px solid #abaaaa;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  height: 109px;
}
.modal-feedback-wd {
  max-width: 680px;
}
.modal-order-wd {
  max-width: 683px;
}
.reset-heading {
  color: #5dbf8e;
  font-size: 24px;
  font-weight: 700;
}
.reset-paragraph {
  color: #000000;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
.btn:first-child:active {
  background-color: #267a4d;
}
.form-label-track {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #082833;
}
@media (max-width: 768px) {
  .btn-success-order {
    font-size: 12px;
  }
  .pagination li {
    display: none;
  }

  /* Previous */
  .pagination li:nth-child(2),

    /* Active page */
    .pagination li.active,

    /* Next */
    .pagination li:nth-last-child(2) {
    display: block;
  }
  .btn-move-cart {
    font-size: 13px;
  }
  .product-card-wishlist {
    padding: 10px 0px 0px 0px;
  }
  .product-image-wishlist {
    width: 100px;
    height: 100px;
  }

  .product-title-wishlist {
    font-size: 14px;
  }

  .price-wishlist {
    font-size: 20px;
  }

  .stock-badge {
    font-size: 12px;
    padding: 4px 12px;
  }
  .modal-feedback-wd {
    max-width: 500px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .pagination li {
    display: none;
  }

  /* First */
  .pagination li:first-child,

    /* Previous */
    .pagination li:nth-child(2),

    /* Active */
    .pagination li.active,

    /* Next */
    .pagination li:nth-last-child(2),

    /* Last */
    .pagination li:last-child {
    display: block;
  }
}

/* track order */

/* Sections */
.section-title-odr {
  color: #369566;
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 10px;
}

/* Items */
.item-row-odr {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
}

.item-img-odr {
  width: 69px;
  height: 69px;
  border-radius: 6px;
  object-fit: cover;
}

.item-title-odr {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
  color: #6d6d6d;
}

.item-price-odr {
  font-size: 16px;
  color: #369566;
  font-weight: 700;
}

/* Info rows */
.info-row-odr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 6px 0;
}

.info-row-odr.total {
  font-weight: 700;
}

/* Timeline */
.order-status {
  margin-top: 20px;
}

/* Step wrapper */
.status-step {
  position: relative;
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

/* Vertical line */
.status-line {
  position: absolute;
  left: 10px;
  top: 18px;
  height: calc(100% + 6px);
  border-left: 2px dotted #dbe7e3;
}

/* Completed line */
.status-step.completed .status-line {
  background: #369566;
}

/* Remove line for last item */
.status-step.last .status-line {
  display: none;
}

/* Dot */
.status-dot {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid #d4e1e5;
  z-index: 1;
}

/* Completed dot */
.status-step.completed .status-dot {
  border-color: #369566;
}

/* Text */
.status-content h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #424242;
}

.status-step.completed h6 {
  font-size: 19px;
  color: #369566;
  font-weight: 700;
}

.status-content p {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: #6d6d6d;
}

.order-id {
  font-size: 24px;
  font-weight: 500;
  color: #082833;
}
.order-txt {
  color: #6d6d6d;
  font-size: 16px;
  font-weight: 400;
}

.order-border-bottom,
.items-br {
  border-bottom: 1px solid #eeeeee;
}
.info-row-odr span {
  color: #6d6d6d;
  font-size: 16px;
  font-weight: 400;
}
.info-row-odr strong {
  color: #082833;
  font-size: 16px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .search-container {
    margin-left: -15px;
  }
}

@media (min-width: 1200px) {
  .search-container {
    margin-left: -20px;
  }
}
/* FAQ */
.accordion-button {
  padding: 22px 22px;
  background: #ffffff;
  color: #369566;
  font-weight: 500;
  font-size: 20px;
  font-family: Helvetica-nesu-reg;
}

.accordion-item {
  border-radius: 8px !important; /* change value as needed */
  overflow: hidden; /* VERY IMPORTANT */
  border: none;
  margin-bottom: 8px;
}
/* also round the open body */
.accordion-collapse {
  border-radius: 0 0 8px 8px !important;
}
.accordion-button:not(.collapsed) {
  background: #ffffff;
  color: #1f8f5a;
  box-shadow: none;
  border-radius: 5px;
}

.accordion-body {
  font-size: 17px;
  font-weight: 400;
  color: #082833;
  background: #ffffff;
  font-family: Helvetica-nesu-reg;
  padding-bottom: 30px;
}
.faq {
  background-color: #f9f9f9;
}
.faq-hd {
  font-family: Helvetica-round;

  color: #000000;
  font-size: 30px;
  font-weight: 700;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='9' viewBox='0 0 24 12' fill='none'%3E%3Cpath d='M19.438 1.99998L20.5 3.04498L12.71 10.711C12.5197 10.8955 12.2651 10.9987 12 10.9987C11.7349 10.9987 11.4803 10.8955 11.29 10.711L3.5 3.04498L4.563 1.99998L12 9.31798L19.438 1.99998Z' fill='%23369566'/%3E%3C/svg%3E");
  background-size: 23px 19px;
}

/* Rotate when opened */
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .accordion-button {
    font-size: 16px;
    line-height: 24px;
  }
  .accordion-body {
    font-size: 15px;
    padding-bottom: 20px;
  }
  .accordion-button:not(.collapsed) {
    padding-bottom: 0px;
  }
}
/* product tab */
.tab-btn {
  cursor: pointer;
  font-weight: 500;
  color: #082833;
  width: fit-content;
  padding: 10px 33px;
  border-radius: 12px;
  font-size: 16px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.tab-btn.active {
  background: #082833;
  padding: 10px 33px;
  height: 47px;
  border-radius: 12px;
  font-size: 16px;
  font-family: "Helvetica-nesu-reg";
  color: white;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}
.review-collection {
  max-height: 250px; /* you can adjust */
  min-height: 200px;
  overflow-y: auto;
  padding-right: 8px; /* space for scrollbar */
}

.review-collection::-webkit-scrollbar {
  width: 8px;
}

.review-collection::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 15px;
}

.review-collection::-webkit-scrollbar-track {
  background: unset;
}

.review-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.big-rating,
.review-count {
  font-size: 18px;
  font-weight: 500;
  color: #369566;
}

.stars {
  color: #2fa76b;
}

.review-txt {
  color: #7d7d7d;
  font-size: 18px;
  font-weight: 500;
  margin-left: 5px;
}
.review-name {
  margin-bottom: 2px;
  font-size: 16px;
  color: #082833;
  font-weight: 500;
}

.review-text {
  font-family: "Helvetica-nesu-reg";
  color: #082833;
  font-weight: 400;
  font-size: 14px;
}
.terms-para {
  font-family: "Helvetica-nesu-reg";
  color: #082833;
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
}
.terms-heading {
  font-family: "Helvetica-nesu-reg";
  color: #369566;
  font-weight: 700;
  font-size: 28px;
}
.terms-heading2 {
  font-family: "Helvetica-nesu-reg";
  color: #369566;
  font-weight: 700;
  font-size: 22px;
}
@media (max-width: 991px) {
  /* Tablet + Mobile */
  .terms-para {
    font-size: 16px;
    line-height: 30px;
  }

  .terms-heading {
    font-size: 24px;
  }

  .terms-heading2 {
    font-size: 20px;
  }
}
/* categories */

.category-dropdown {
  background: #f5f5f5;
  border-radius: 0 0 25px 25px;
  padding: 25px 35px;
  display: none;

  z-index: 999;
}

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

.category-list li {
  text-align: left;

  padding: 12px 0;
  cursor: pointer;
}
.category-list li a {
  text-decoration: none;
  font-size: 15px;
  color: #082833;
  transition: 0.3s;
}

.category-list li a:hover {
  color: #369566;
  padding-left: 6px;
}

.category-list hr {
  margin: 10px 0;
  border-color: #c6c6c6;
  opacity: 1;
}

/* Desktop */
@media (min-width: 992px) {
  .category-dropdown {
    position: absolute;
    top: 53px;
    left: 0;
    width: 292px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 6%);
  }
}

/* Show class */
.category-dropdown.show {
  display: block;
}
/* ===== Tablet ===== */
@media (max-width: 991px) {
  .category-dropdown {
    position: absolute;
    top: 47px;
    width: 100%;
    left: 0;
    border-radius: 15px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
  .category-dropdown {
    width: 100%;
    margin-top: 10px;
  }

  .category-list li {
    font-size: 16px;
    padding: 12px 0;
  }
}

/* Smooth slide animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
