/* FishMe site overrides */

/* Guest prompt — split-panel modal */
body.fishme-guest-delivery-prompt-open {
  overflow: hidden;
}

.fishme-guest-delivery-prompt {
  position: fixed;
  inset: 0;
  z-index: 1280;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.fishme-guest-delivery-prompt[hidden] {
  display: none;
}

.fishme-guest-delivery-prompt__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 0, 1, 0.58);
  backdrop-filter: blur(6px);
}

.fishme-guest-delivery-prompt__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  width: min(720px, 100%);
  max-height: min(90vh, 640px);
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 32px 80px rgba(19, 0, 1, 0.34);
  transform: scale(0.96) translateY(12px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.fishme-guest-delivery-prompt:not([hidden]) .fishme-guest-delivery-prompt__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.fishme-guest-delivery-prompt__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fishme-guest-delivery-prompt__close:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.04);
}

.fishme-guest-delivery-prompt__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px 26px;
  color: #fff;
  overflow: hidden;
}

.fishme-guest-delivery-prompt__visual-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(19, 0, 1, 0.82) 0%, rgba(135, 1, 6, 0.72) 42%, rgba(192, 2, 8, 0.68) 100%),
    url("../images/shop/fishme-hero.jpg") center / cover no-repeat;
}

.fishme-guest-delivery-prompt__visual-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  top: -60px;
  right: -50px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 51, 58, 0.45) 0%, transparent 68%);
  pointer-events: none;
}

.fishme-guest-delivery-prompt__kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.fishme-guest-delivery-prompt__visual h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.fishme-guest-delivery-prompt__visual-lead {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.fishme-guest-delivery-prompt__flow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.fishme-guest-delivery-prompt__flow-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.fishme-guest-delivery-prompt__flow-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fishme-guest-delivery-prompt__flow-step--active .fishme-guest-delivery-prompt__flow-icon {
  background: #fff;
  color: #c00208;
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.fishme-guest-delivery-prompt__flow-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.fishme-guest-delivery-prompt__flow-line {
  flex-shrink: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.65) 100%);
}

.fishme-guest-delivery-prompt__content {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 24px;
  background: #fff;
}

.fishme-guest-delivery-prompt__desc {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: #6e777d;
}

.fishme-guest-delivery-prompt__highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.fishme-guest-delivery-prompt__highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8f9fa;
  border: 1px solid #ececec;
}

.fishme-guest-delivery-prompt__highlight > i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #c00208;
  background: rgba(192, 2, 8, 0.08);
}

.fishme-guest-delivery-prompt__highlight strong {
  display: block;
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 700;
  color: #1f1f25;
}

.fishme-guest-delivery-prompt__highlight span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: #6e777d;
}

.fishme-guest-delivery-prompt__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: auto;
}

.fishme-guest-delivery-prompt__primary {
  width: 100%;
  justify-content: center;
  gap: 8px;
  margin: 0;
  min-height: 48px;
}

.fishme-guest-delivery-prompt__secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e2e2e2;
  font-size: 14px;
  font-weight: 700;
  color: #1f1f25 !important;
  text-decoration: none !important;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.fishme-guest-delivery-prompt__secondary:hover,
.fishme-guest-delivery-prompt__secondary:focus {
  color: #c00208 !important;
  border-color: rgba(192, 2, 8, 0.35);
  background: rgba(192, 2, 8, 0.04);
}

.fishme-guest-delivery-prompt__dismiss {
  align-self: center;
  border: none;
  background: transparent;
  color: #6e777d;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 4px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fishme-guest-delivery-prompt__dismiss:hover {
  color: #1f1f25;
}

@media (max-width: 720px) {
  .fishme-guest-delivery-prompt {
    align-items: flex-end;
    padding: 12px;
  }

  .fishme-guest-delivery-prompt__dialog {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: min(92vh, 760px);
    border-radius: 20px 20px 0 0;
  }

  .fishme-guest-delivery-prompt__visual {
    padding: 22px 20px 18px;
  }

  .fishme-guest-delivery-prompt__visual h2 {
    font-size: 21px;
  }

  .fishme-guest-delivery-prompt__flow {
    padding: 12px 10px;
  }

  .fishme-guest-delivery-prompt__flow-label {
    font-size: 9px;
  }

  .fishme-guest-delivery-prompt__content {
    padding: 20px 20px 18px;
    overflow: auto;
  }

}

.rts-caregory-area-one .category-infinite-scroll .swiper-slide {
  width: 118px;
}

@media (min-width: 480px) {
  .rts-caregory-area-one .category-infinite-scroll .swiper-slide {
    width: 128px;
  }
}

@media (min-width: 1140px) {
  .rts-caregory-area-one .category-infinite-scroll .swiper-slide {
    width: 140px;
  }
}

.rts-caregory-area-one .single-category-one {
  padding-left: 10px;
  padding-right: 10px;
}

.rts-caregory-area-one .single-category-one p {
  white-space: nowrap;
  font-size: 12px;
  line-height: 1.2;
  margin-bottom: 0;
}

/* Feature strip (footer area) */
.rts-feature-area .single-feature-area {
  cursor: pointer;
  background-color: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.rts-feature-area .single-feature-area:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  background-color: #fff;
  box-shadow: 0 16px 28px rgba(192, 2, 8, 0.14);
}

.rts-feature-area .single-feature-area .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(192, 2, 8, 0.06);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.rts-feature-area .single-feature-area:hover .icon {
  transform: scale(1.1);
  background-color: rgba(192, 2, 8, 0.14);
}

.rts-feature-area .single-feature-area .title {
  transition: color 0.3s ease;
}

.rts-feature-area .single-feature-area:hover .title {
  color: var(--color-primary);
}

/* Service cards (about page) */
.rts-service-area .single-service-area-style-one {
  cursor: pointer;
  box-shadow: 0 14px 21px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.rts-service-area .single-service-area-style-one:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 36px rgba(192, 2, 8, 0.14);
}

.rts-service-area .single-service-area-style-one .icon-area {
  transition: border-color 0.3s ease;
}

.rts-service-area .single-service-area-style-one:hover .icon-area {
  border-bottom-color: var(--color-primary);
}

.rts-service-area .single-service-area-style-one .icon-area img {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.rts-service-area .single-service-area-style-one:hover .icon-area img {
  transform: scale(1.08);
}

.rts-service-area .single-service-area-style-one .icon-area .bg-text {
  transition: color 0.3s ease;
}

.rts-service-area .single-service-area-style-one:hover .icon-area .bg-text {
  color: rgba(192, 2, 8, 0.12);
}

.rts-service-area .single-service-area-style-one .bottom-content .title {
  transition: color 0.3s ease;
}

.rts-service-area .single-service-area-style-one:hover .bottom-content .title {
  color: var(--color-primary);
}

/* Header mid bar — delivery + track order */
.header-mid-one-wrapper {
  background: linear-gradient(180deg, #faf8f6 0%, #fff 100%);
  border-bottom: 1px solid rgba(226, 226, 226, 0.85);
}

.fishme-header-mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  min-height: 48px;
}

.fishme-header-mid-delivery {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.fishme-header-mid-delivery-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(192, 2, 8, 0.08);
  color: var(--color-primary, #c00208);
  font-size: 15px;
}

.fishme-header-mid-delivery-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.fishme-header-mid-delivery-label {
  font-size: 13px;
  font-weight: 600;
  color: #1f1f25;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.fishme-header-mid-delivery-hours {
  font-size: 12px;
  font-weight: 500;
  color: #6e777d;
  line-height: 1.35;
}

.fishme-header-mid-track {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary, #c00208);
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(192, 2, 8, 0.22);
  border-radius: 50px;
  box-shadow: 0 1px 3px rgba(31, 31, 37, 0.04);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.fishme-header-mid-track i {
  font-size: 14px;
}

.fishme-header-mid-track:hover {
  color: #fff;
  background: var(--color-primary, #c00208);
  border-color: var(--color-primary, #c00208);
  box-shadow: 0 4px 14px rgba(192, 2, 8, 0.22);
  transform: translateY(-1px);
}

@media (max-width: 575px) {
  .fishme-header-mid {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .fishme-header-mid-delivery-hours {
    font-size: 11px;
  }

  .fishme-header-mid-track {
    width: 100%;
    justify-content: center;
  }
}

/* Header profile dropdown */
.accont-wishlist-cart-area-header,
.accont-wishlist-cart-area-header .fishme-header-profile {
  overflow: visible;
}

.fishme-header-profile {
  position: relative;
  z-index: 20;
}

.fishme-header-profile.is-open {
  z-index: 1300;
}

.fishme-header-profile-trigger {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-left: 0;
  padding: 0;
  min-height: 40px;
  height: 40px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-weight: 500;
  color: #1f1f25;
  transition: color 0.2s ease;
}

.fishme-header-profile-trigger:hover,
.fishme-header-profile.is-open .fishme-header-profile-trigger {
  background: transparent;
  color: var(--color-primary, #c00208);
  box-shadow: none;
}

.fishme-header-profile-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-width: 0;
  text-align: left;
}

.fishme-header-profile-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fishme-header-profile-label {
  font-size: 14px;
  font-weight: 500;
  color: inherit;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fishme-header-profile-role {
  font-size: 11px;
  font-weight: 500;
  color: #8a9199;
  line-height: 1.2;
  white-space: nowrap;
}

.fishme-header-profile.is-authenticated .fishme-header-profile-role {
  color: #22a06b;
}

.fishme-header-profile-icon-wrap {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fishme-header-profile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fishme-header-profile-icon--guest {
  background: #f0f1f3;
  color: #4a4f55;
  font-size: 15px;
  border: none;
}

.fishme-header-profile-icon--auth {
  background: var(--color-primary, #c00208);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: none;
}

.fishme-header-profile-status {
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22a06b;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(34, 160, 107, 0.4);
}

.fishme-header-profile-chevron {
  font-size: 10px;
  color: #9aa0a6;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  margin-top: 1px;
}

.fishme-header-profile-trigger:hover .fishme-header-profile-chevron,
.fishme-header-profile.is-open .fishme-header-profile-chevron {
  color: var(--color-primary, #c00208);
}

.fishme-header-profile.is-open .fishme-header-profile-chevron {
  transform: rotate(180deg);
}

.accont-wishlist-cart-area-header .fishme-header-profile {
  margin-left: 0;
}

.accont-wishlist-cart-area-header .fishme-header-profile-trigger.account {
  display: inline-flex;
}

.accont-wishlist-cart-area-header .fishme-header-profile-trigger.account:hover {
  background: transparent;
  color: var(--color-primary, #c00208);
}

.fishme-header-profile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 1301;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(226, 226, 226, 0.95);
  border-radius: 14px;
  box-shadow:
    0 8px 20px rgba(31, 31, 37, 0.06),
    0 20px 48px rgba(31, 31, 37, 0.14);
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  pointer-events: none;
}

.fishme-header-profile-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 28px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(226, 226, 226, 0.95);
  border-top: 1px solid rgba(226, 226, 226, 0.95);
  transform: rotate(45deg);
}

.fishme-header-profile.is-open .fishme-header-profile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fishme-header-profile-menu[hidden] {
  display: block;
}

.fishme-header-profile-menu-inner {
  padding: 8px;
}

.fishme-header-profile-menu-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 12px 14px;
  margin-bottom: 6px;
  border-radius: 10px;
}

.fishme-header-profile-menu-banner--guest {
  background: linear-gradient(135deg, #faf8f6 0%, #f5f0ee 100%);
}

.fishme-header-profile-menu-banner--auth {
  background: linear-gradient(135deg, rgba(192, 2, 8, 0.06) 0%, rgba(192, 2, 8, 0.02) 100%);
}

.fishme-header-profile-menu-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e8e8e8;
  color: #6e777d;
  font-size: 16px;
  flex-shrink: 0;
}

.fishme-header-profile-menu-banner-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e3333a 0%, #c00208 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(192, 2, 8, 0.25);
}

.fishme-header-profile-menu-banner .fishme-header-profile-menu-heading {
  margin: 0 0 4px;
  font-size: 15px;
}

.fishme-header-profile-menu-banner .fishme-header-profile-menu-sub {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.fishme-header-profile-menu-heading {
  font-size: 14px;
  font-weight: 700;
  color: #1f1f25;
  line-height: 1.35;
}

.fishme-header-profile-menu-sub {
  font-size: 12px;
  color: #6e777d;
  line-height: 1.45;
}

.fishme-header-profile-menu-link,
.fishme-header-profile-menu-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  margin: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: #1f1f25;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.fishme-header-profile-menu-link i,
.fishme-header-profile-menu-logout i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f5f6f7;
  color: #6e777d;
  font-size: 13px;
  flex-shrink: 0;
}

.fishme-header-profile-menu-link:hover,
.fishme-header-profile-menu-logout:hover {
  background: rgba(192, 2, 8, 0.06);
  color: var(--color-primary, #c00208);
}

.fishme-header-profile-menu-link:hover i,
.fishme-header-profile-menu-logout:hover i {
  background: rgba(192, 2, 8, 0.1);
  color: var(--color-primary, #c00208);
}

.fishme-header-profile-menu-link--primary {
  font-weight: 600;
  color: var(--color-primary, #c00208);
}

.fishme-header-profile-menu-link--primary i {
  background: rgba(192, 2, 8, 0.1);
  color: var(--color-primary, #c00208);
}

.fishme-header-profile-menu-logout {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  border-radius: 8px;
  color: #6e777d;
}

.fishme-header-profile-menu-logout:hover {
  color: var(--color-primary, #c00208);
}

@media (max-width: 1199px) {
  .fishme-header-profile-text {
    display: none;
  }

  .fishme-header-profile-trigger {
    gap: 0;
  }
}

@media (max-width: 767px) {
  .fishme-header-profile-icon {
    width: 30px;
    height: 30px;
  }
}

/* Header mini-cart — center delete button on each row */
.category-hover-header .category-sub-menu.card-number-show .cart-item-1 {
  align-items: center;
}

.category-hover-header .category-sub-menu.card-number-show .cart-item-1 .img-name {
  flex: 1;
  min-width: 0;
}

.category-hover-header .category-sub-menu.card-number-show .cart-item-1 .close-c1 {
  position: relative;
  top: auto;
  right: auto;
  align-self: center;
  flex-shrink: 0;
  height: 32px;
  width: 32px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.category-hover-header .category-sub-menu.card-number-show .cart-item-1 .close-c1:hover {
  background: rgba(192, 2, 8, 0.1);
  color: var(--color-primary, #c00208);
}

.category-hover-header .category-sub-menu.card-number-show .cart-item-1 .close-c1 i {
  font-size: 14px;
}

@media only screen and (max-width: 575px) {
  .category-hover-header .category-sub-menu.card-number-show .cart-item-1 .close-c1 {
    top: auto;
  }
}

/* Header shipping address selector — compact chip, centered in header */
.search-header-area-main .logo-search-category-wrapper:has(.fishme-header-shipping-wrap) {
  position: relative;
}

.logo-search-category-wrapper .fishme-header-shipping-wrap.category-search-wrapper {
  display: flex !important;
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-50%, -50%);
  flex: 0 1 auto;
  min-width: 0;
  width: auto;
  max-width: min(380px, 42vw);
  margin: 0;
  z-index: 12;
}

.logo-search-category-wrapper .fishme-header-shipping-wrap .location-area.fishme-header-shipping-trigger {
  display: flex !important;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: auto;
  margin: 0;
  padding: 8px 10px 8px 8px;
  background: linear-gradient(135deg, #fff 0%, #fff6f6 100%);
  cursor: pointer;
  border: 1px solid rgba(192, 2, 8, 0.12);
  border-radius: 999px;
  text-align: left;
  font: inherit;
  color: inherit;
  appearance: none;
  box-shadow: 0 2px 8px rgba(192, 2, 8, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.logo-search-category-wrapper .fishme-header-shipping-wrap .location-area.fishme-header-shipping-trigger::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  /* background: linear-gradient(180deg, #e8353a 0%, var(--color-primary, #c00208) 100%); */
  border-radius: 999px 0 0 999px;
  opacity: 0.85;
}

.logo-search-category-wrapper .fishme-header-shipping-wrap .location-area.fishme-header-shipping-trigger:hover,
.fishme-header-shipping.is-open .fishme-header-shipping-trigger {
  border-color: rgba(192, 2, 8, 0.28);
  box-shadow: 0 6px 18px rgba(192, 2, 8, 0.12);
  transform: translateY(-1px);
}

.fishme-header-shipping.is-disabled .fishme-header-shipping-trigger {
  cursor: not-allowed;
  opacity: 0.6;
  filter: grayscale(0.2);
  transform: none;
  box-shadow: none;
}

.fishme-header-shipping.is-disabled .fishme-header-shipping-trigger::before {
  opacity: 0.35;
}

.fishme-header-shipping.is-disabled .fishme-header-shipping-chevron {
  background: rgba(0, 0, 0, 0.06);
  color: #6e777d;
}

.fishme-header-shipping-wrap .fishme-header-shipping-trigger .information {
  flex: 1;
  min-width: 0;
  padding-left: 2px;
}

.fishme-header-shipping-kicker {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-primary, #c00208);
  line-height: 1.2;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fishme-header-shipping-wrap .fishme-header-shipping-trigger .information p {
  margin: 2px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  display: block;
  color: #1f1f25;
}

.fishme-header-shipping-summary-label {
  font-weight: 700;
  color: #1f1f25;
}

.fishme-header-shipping-summary-detail {
  font-weight: 500;
  color: #4a4f55;
}

.fishme-header-shipping-chevron {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-left: 2px;
  border-radius: 50%;
  background: rgba(192, 2, 8, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--color-primary, #c00208);
  transition: transform 0.2s ease, background 0.2s ease;
}

.fishme-header-shipping-wrap .fishme-header-shipping-trigger .icon {
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  border-right: 0;
  border-radius: 50%;
  background: var(--color-primary, #c00208);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(192, 2, 8, 0.25);
}

.fishme-header-shipping.is-open .fishme-header-shipping-chevron {
  transform: rotate(180deg);
  background: var(--color-primary, #c00208);
  color: #fff;
}

.fishme-header-shipping {
  position: relative;
  width: 100%;
  min-width: 0;
}

.fishme-header-shipping .fishme-header-shipping-menu {
  left: 50%;
  right: auto;
  min-width: 300px;
  max-width: min(360px, calc(100vw - 32px));
  padding: 8px 0;
  z-index: 10050;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-white, #fff);
  border: 1px solid #f0f0f0;
  box-shadow: 0px 10px 25px rgba(24, 16, 16, 0.08);
  transform: translateX(-50%) translateY(30px);
}

.fishme-header-shipping.is-open .fishme-header-shipping-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(8px);
}

.fishme-header-shipping .fishme-header-shipping-menu[hidden] {
  display: none !important;
}

.fishme-shipping-menu-item,
.fishme-shipping-menu-add {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: #1f1f25;
  transition: background 0.15s ease;
}

.fishme-shipping-menu-item:hover,
.fishme-shipping-menu-add:hover {
  background: #f8f9fa;
}

.fishme-shipping-menu-item.is-selected {
  background: rgba(192, 2, 8, 0.05);
}

.fishme-shipping-menu-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f3f4f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary, #c00208);
}

.fishme-shipping-menu-item-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.fishme-shipping-menu-item-body strong {
  font-size: 14px;
  font-weight: 600;
}

.fishme-shipping-menu-item-body span {
  font-size: 12px;
  color: #74787c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fishme-shipping-menu-item-check {
  color: var(--color-primary, #c00208);
  font-size: 13px;
  flex-shrink: 0;
}

.fishme-shipping-menu-divider {
  height: 1px;
  margin: 6px 0;
  background: #f0f0f0;
  list-style: none;
}

.fishme-shipping-menu-add {
  color: var(--color-primary, #c00208);
  font-weight: 600;
}

.fishme-shipping-menu-add i {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(192, 2, 8, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1270px) {
  .logo-search-category-wrapper .fishme-header-shipping-wrap.category-search-wrapper {
    display: none !important;
  }
}

/* Toast notifications */
.fishme-toast-root {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: min(392px, calc(100vw - 32px));
  pointer-events: none;
}

.fishme-toast {
  position: relative;
  width: 100%;
  border-radius: 14px;
  background: var(--color-white, #fff);
  border: 1px solid rgba(192, 2, 8, 0.16);
  box-shadow:
    0 16px 40px rgba(192, 2, 8, 0.08),
    0 2px 8px rgba(192, 2, 8, 0.06);
  overflow: hidden;
  pointer-events: auto;
  opacity: 0;
  transform: translate3d(20px, -8px, 0);
  transition:
    opacity 0.28s ease,
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.fishme-toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-primary, #c00208);
}

.fishme-toast.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fishme-toast.is-leaving {
  opacity: 0;
  transform: translate3d(14px, 0, 0);
}

.fishme-toast__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 16px 14px 18px;
}

.fishme-toast__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background: rgba(192, 2, 8, 0.08);
  color: var(--color-primary, #c00208);
}

.fishme-toast__body {
  flex: 1;
  min-width: 0;
  padding-top: 1px;
}

.fishme-toast__badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  margin-bottom: 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  background: rgba(192, 2, 8, 0.08);
  color: var(--color-primary, #c00208);
}

.fishme-toast__message {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-heading-1, #1f1f25);
}

.fishme-toast__close {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--color-body, #6e777d);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.fishme-toast__close:hover {
  background: rgba(192, 2, 8, 0.06);
  color: var(--color-primary, #c00208);
}

.fishme-toast__progress {
  display: block;
  height: 3px;
  background: rgba(192, 2, 8, 0.12);
  transform-origin: left center;
  transform: scaleX(1);
  animation: fishme-toast-progress linear forwards;
}

@keyframes fishme-toast-progress {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.fishme-toast--success::before {
  background: #c00208;
}

.fishme-toast--success {
  border-color: rgba(192, 2, 8, 0.22);
  box-shadow:
    0 16px 40px rgba(192, 2, 8, 0.1),
    0 2px 8px rgba(192, 2, 8, 0.06);
}

.fishme-toast--success .fishme-toast__icon {
  background: rgba(192, 2, 8, 0.08);
  color: #c00208;
}

.fishme-toast--success .fishme-toast__badge {
  background: rgba(192, 2, 8, 0.08);
  color: #c00208;
}

.fishme-toast--success .fishme-toast__progress {
  background: rgba(192, 2, 8, 0.2);
}

.fishme-toast--info::before {
  background: var(--color-primary-3, #e3333a);
}

.fishme-toast--info {
  border-color: rgba(192, 2, 8, 0.22);
  box-shadow:
    0 16px 40px rgba(192, 2, 8, 0.1),
    0 2px 8px rgba(192, 2, 8, 0.06);
}

.fishme-toast--info .fishme-toast__icon {
  background: rgba(192, 2, 8, 0.08);
  color: var(--color-primary, #c00208);
}

.fishme-toast--info .fishme-toast__badge {
  background: rgba(192, 2, 8, 0.08);
  color: var(--color-primary, #c00208);
}

.fishme-toast--info .fishme-toast__progress {
  background: rgba(192, 2, 8, 0.2);
}

.fishme-toast--error::before {
  background: var(--color-danger, #dc2626);
}

.fishme-toast--error {
  border-color: rgba(220, 38, 38, 0.28);
  box-shadow:
    0 16px 40px rgba(220, 38, 38, 0.08),
    0 2px 8px rgba(220, 38, 38, 0.06);
}

.fishme-toast--error .fishme-toast__icon {
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-danger, #dc2626);
}

.fishme-toast--error .fishme-toast__badge {
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-danger, #dc2626);
}

.fishme-toast--error .fishme-toast__progress {
  background: rgba(220, 38, 38, 0.28);
}

@media (max-width: 575px) {
  .fishme-toast-root {
    top: auto;
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    align-items: stretch;
  }

  .fishme-toast {
    transform: translate3d(0, 18px, 0);
  }

  .fishme-toast.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .fishme-toast.is-leaving {
    transform: translate3d(0, 10px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fishme-toast {
    transition: none;
  }

  .fishme-toast__progress {
    animation: none;
    display: none;
  }
}

.single-action[data-wishlist-toggle] {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.single-action[data-wishlist-toggle].is-wishlisted i,
.single-action[data-wishlist-toggle].is-wishlisted:hover i {
  color: #c00208;
}

/* Home — featured seafood carousel: uniform card size */
.fishme-section-container {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.rts-Fish-feature-area.fishme-home-featured-section {
  width: 100%;
}

.rts-Fish-feature-area.fishme-home-featured-section > .fishme-section-container {
  overflow: hidden;
}

.rts-Fish-feature-area .fishme-home-featured-head {
  margin-top: 32px;
  margin-bottom: 28px;
}

.fishme-home-featured-cards.category-area-main-wrapper-one {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 24px;
  padding-bottom: 12px;
  box-sizing: border-box;
}

.fishme-home-featured-cards .fishme-home-featured-swiper,
.fishme-home-featured-cards .swiper {
  overflow: hidden;
  height: auto !important;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.fishme-home-featured-cards .swiper-wrapper {
  align-items: stretch;
  height: auto !important;
  margin-bottom: 20px;
  padding-bottom: 8px;
  box-sizing: border-box;
}

.fishme-home-featured-cards .swiper-slide {
  height: auto !important;
  display: flex;
  box-sizing: border-box;
  align-self: stretch;
}

.fishme-home-featured-cards .single-shopping-card-one {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.fishme-home-featured-cards .image-and-action-area-wrapper {
  flex-shrink: 0;
}

.fishme-home-featured-cards .image-and-action-area-wrapper .action-share-option {
  z-index: 6;
  pointer-events: auto;
}

.fishme-home-featured-cards .action-share-option .single-action {
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  background: transparent;
}

.fishme-home-featured-cards .thumbnail-preview {
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.fishme-home-featured-cards .thumbnail-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fishme-home-featured-cards .body-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 4px;
}

.fishme-home-featured-cards .body-content a .title {
  min-height: 2.6em;
  margin-bottom: 8px;
}

.fishme-home-featured-cards .body-content .availability {
  display: block;
  min-height: 1.35em;
  line-height: 1.35;
}

.fishme-home-featured-cards .body-content .price-area {
  margin-top: auto;
  padding-top: 8px;
}

.fishme-home-featured-cards .cart-counter-action {
  margin-top: 10px;
  flex-wrap: nowrap;
  gap: 6px;
}

.fishme-home-featured-cards .cart-counter-action .quantity-edit {
  flex-shrink: 0;
}

.fishme-home-featured-cards .cart-counter-action .rts-btn {
  flex: 1 1 auto;
  min-width: 0;
  justify-content: center;
}

@media (max-width: 479px) {
  .fishme-home-featured-cards .cart-counter-action {
    flex-wrap: wrap;
  }

  .fishme-home-featured-cards .cart-counter-action .rts-btn {
    width: 100%;
  }
}

/* ── Shared loaders ─────────────────────────────────────────────── */

.fishme-loader-host {
  position: relative;
}

.fishme-loader {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #6e777d;
  font-size: 14px;
  font-weight: 500;
}

.fishme-loader--block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  min-height: 120px;
  padding: 28px 16px;
}

.fishme-loader--overlay {
  flex-direction: column;
  gap: 12px;
  color: #3c4043;
}

.fishme-loader--inline {
  display: inline-flex;
  gap: 8px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.fishme-loader__spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(192, 2, 8, 0.18);
  border-top-color: #c00208;
  border-radius: 50%;
  animation: fishme-loader-spin 0.75s linear infinite;
  flex-shrink: 0;
}

.fishme-loader--overlay .fishme-loader__spinner {
  width: 28px;
  height: 28px;
  border-width: 3px;
}

.fishme-loader--inline .fishme-loader__spinner {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

.fishme-loader-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
}

.fishme-loader-skeleton {
  display: grid;
  gap: 12px;
}

.fishme-loader-skeleton__line {
  height: 14px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ececec 0%, #f7f7f7 50%, #ececec 100%);
  background-size: 200% 100%;
  animation: fishme-loader-shimmer 1.2s ease-in-out infinite;
}

.fishme-loader-skeleton__line--short {
  width: 55%;
}

.fishme-loader-skeleton__line--tall {
  height: 88px;
}

.rts-btn.is-loading,
button.is-loading {
  pointer-events: none;
}

.fishme-outlet-picker__loading,
.fishme-shop-show-outlets__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 16px;
}

.fishme-cart-summary.fishme-loader-host,
.details-product-area.fishme-loader-host,
[data-header-mini-cart].fishme-loader-host {
  min-height: 80px;
}

[data-subscription-plan-panel].fishme-loader-host,
[data-subscription-summary-card].fishme-loader-host {
  min-height: 140px;
}

[data-subscriptions-list].fishme-loader-host {
  min-height: 200px;
}

.product-details-popup .details-product-area.fishme-loader-host {
  min-height: 280px;
}

/* Payment overlay (Razorpay checkout flow) */
body.fishme-payment-overlay-open {
  overflow: hidden;
}

.fishme-payment-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.fishme-payment-overlay[hidden] {
  display: none !important;
}

.fishme-payment-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}

.fishme-payment-overlay__card {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  padding: 32px 28px 28px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.fishme-payment-overlay__spinner {
  width: 44px;
  height: 44px;
  margin: 0 auto 22px;
  border: 4px solid rgba(192, 2, 8, 0.15);
  border-top-color: #c00208;
  border-radius: 50%;
  animation: fishme-loader-spin 0.75s linear infinite;
}

.fishme-payment-overlay__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.fishme-payment-overlay__step {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
  color: transparent;
  font-size: 0;
  overflow: hidden;
}

.fishme-payment-overlay__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 2px);
  top: 50%;
  width: 16px;
  height: 2px;
  transform: translateY(-50%);
  background: #e2e8f0;
}

.fishme-payment-overlay__step.is-active {
  background: #c00208;
  box-shadow: 0 0 0 4px rgba(192, 2, 8, 0.18);
}

.fishme-payment-overlay__step.is-done {
  background: #629d23;
}

.fishme-payment-overlay__step.is-done:not(:last-child)::after {
  background: #629d23;
}

.fishme-payment-overlay__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1f1f25;
}

.fishme-payment-overlay__message {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5f6368;
}

@keyframes fishme-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fishme-loader-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}


.fishme-checkout-outlet-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-body, #4e4e4e);
    margin: 0.75rem 0 0.35rem;
}

.fishme-cart-shipping-breakdown,
.fishme-checkout-shipping-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.35rem;
}

.fishme-cart-summary-row--compact,
.fishme-checkout-summary__row--compact {
    font-size: 0.8125rem;
    padding-left: 0.5rem;
}

