.marketplace-store {
  padding-bottom: 60px;
}

.store-banner {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: #108482;
}

.store-banner img {
  width: 100%;
  height: 100%;
}

.store-profile-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 0 10% 0 4%;
}

/* Avatar */
.store-avatar {
  position: relative;
  left: 2%;
  top: -90px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  background: #fff;
}

.store-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}

.store-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.separator {
  margin: 0 8px;
}

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

.store-actions .icon {
  width: 20px;
  height: 20px;
}

.store-actions button {
  display: flex;
  height: 40px;
  padding: 10px 13px;
  justify-content: center;
  align-items: center;
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  gap: 8px;
}

.btn-message,
.btn-favorites {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
}

.btn-message {
  background-color: #fff;
  color: #344054;
  border: 1px solid #d0d5dd;
  margin-bottom: 10px;
}

.btn-message:hover {
  background-color: #f9fafb;
}

.btn-favorites {
  background-color: #108482;
  color: #fff;
  position: relative;
}

.btn-favorites:hover {
  background-color: #0b706e;
}

.btn-message i,
.btn-favorites i {
  margin-right: 8px;
}

.favorites-count {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #f2f4f7;
  margin-top: 2px;
}

/* Store Navigation */
.store-navigation {
  border-bottom: 1px solid #eaecf0;
  margin-bottom: 24px;
}

.nav-tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item {
  margin-right: 32px;
}

.nav-link {
  display: block;
  padding: 12px 0;
  color: #667085;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: color 0.2s ease;
  cursor: pointer;
}

.nav-item .nav-link.active {
  color: #108482;
  font-weight: 500;
  border-bottom: 2px solid #eee;
}

.nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #108482;
}

.store-content .tab-content {
  overflow: visible;
  height: auto;
}

.nav-link:hover {
  color: #101828;
}

/* Store Sidebar */
.store-sidebar {
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.sidebar-title {
  font-size: 16px;
  font-weight: 600;
  color: #101828;
  margin-bottom: 16px;
}

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

.section-item {
  margin-bottom: 8px;
  cursor: pointer;
}

.section-item .section-label {
  display: block;
  padding: 8px 12px;
  color: #475467;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.section-item.active .section-label {
  background-color: #f2f4f7;
  color: #108482;
  font-weight: 500;
}

.section-item .section-label:hover {
  color: #108482;
}

.store-mobile-sections.section-list {
  display: flex;
  gap: 12px;
}

.store-mobile-sections .section-item {
  width: fit-content;
}

.store-mobile-sections .section-label {
  padding: 4px 10px;
  width: max-content;
  border-radius: 16px;
  background-color: #f2f4f7;
}

/* Search Container */
.search-container {
  position: relative;
  margin-bottom: 24px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #667085;
}

.search-input {
  width: 100%;
  padding: 10px 40px 10px 36px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

.search-input:focus {
  border-color: #108482;
  box-shadow: 0 0 0 4px rgba(16, 132, 130, 0.1);
}

.search-button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #108482;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-button:hover {
  color: #0b706e;
}

/* Products Grid */
.products-grid {
  margin-bottom: 40px;
  max-height: 700px;
  overflow-y: scroll;
  scrollbar-width: none;
}

.products-grid .row {
  margin-left: -10px;
  margin-right: -10px;
}

.products-grid .col-md-4,
.products-grid .col-sm-6 {
  margin-bottom: 20px;
}

.about-section .dogpack-btn-secondary {
  display: flex;
  height: 32px;
  padding: 10px 13px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Primary-500, #108482);
  font-family: "Be Vietnam Pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

.about-section .about-section-label {
  color: #475467;
}

.about-section ul {
  list-style: disc;
  padding: revert;
  margin: 0px;
}

.policy-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 12px;
}

.policy-list li {
  color: var(--Gray-700, #344054);
  /* Text sm/Medium */
  font-family: "Be Vietnam Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  margin-bottom: 8px;
}

.policy-list li strong {
  font-weight: 600;
}

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

.social-icon img {
  width: 24px;
  height: 24px;
}

.filter-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #212529;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.message-bubble .typing-dots {
  display: inline-block;
}

.message-bubble .typing-dots span {
  animation: blink 1.4s infinite both;
  font-weight: bold;
}

.message-bubble .typing-dots .dot1 {
  animation-delay: 0s;
}
.message-bubble .typing-dots .dot2 {
  animation-delay: 0.2s;
}
.message-bubble .typing-dots .dot3 {
  animation-delay: 0.4s;
}

@keyframes blink {
  0%,
  60%,
  100% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
}

.store-content .sortby-container .dropdown-menu {
  right: 0;
  left: auto;
}

.mobile-store-sections-data {
  display: none;
}

.store-content .tab-content {
  max-height: none !important;
}

.review-card-user-info {
  display: flex;
  align-items: start;
  gap: 8px;
}

@media only screen and (max-width: 1024px) {
  .nav-item {
    margin-right: 16px;
  }

  .nav-link {
    font-size: 14px;
  }
  .store-profile {
    flex-direction: column;
  }

  .store-header-details {
    flex-direction: column;
    gap: 8px;
  }

  .store-profile-row {
    flex-direction: column;
    align-items: center;
    margin-top: -60px;
    padding-bottom: 0;
    margin-left: auto;
    max-width: 100%;
    gap: 0px;
    padding: 0 16px;
  }

  .store-details {
    align-items: center;
    text-align: center;
    top: 0;
  }

  .store-avatar {
    position: relative;
    left: auto;
    top: auto;
    width: 130px;
    height: 130px;
    margin-bottom: 15px;
    translate: 0;
  }

  .btn-message {
    margin-right: 10px;
    margin-bottom: 0;
  }

  .btn-favorites {
    flex: 1;
  }
  .store-details-header {
    padding: 0 16px;
  }

  .store-details {
    flex-direction: column;
  }

  .store-avatar-mobile {
    width: 90px;
    height: 90px;
    border-radius: 50%;
  }

  .store-description {
    margin-top: 20px;
  }

  .marketplace-store {
    padding-right: 16px;
    padding-left: 16px;
  }
  .store-navigation .nav-tabs {
    justify-content: space-evenly;
  }

  .reviews-container .rev-item,
  .seller-response {
    max-width: 340px;
  }

  .store-sections-data {
    display: none;
  }

  .mobile-store-sections-data {
    display: block;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .review-card-user-info {
    display: flex;
    align-items: start;
    gap: 4px;
    flex-direction: column;
  }
}

@media (max-width: 567px) {
  .store-banner {
    height: 180px;
  }

  .store-profile {
    align-items: center;
    text-align: center;
  }

  .store-avatar {
    margin-right: 0;
  }

  .btn-message {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .btn-favorites {
    width: 100%;
  }

  .nav-item {
    margin-right: 12px;
  }

  .nav-link {
    padding: 10px 0;
    font-size: 13px;
  }
}
