/* SHOP PAGE */

.shop-page {
  background: var(--mint);
}

/* SHOP HERO */

.shop-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(90, 157, 67, 0.2), transparent 34%),
    radial-gradient(circle at 14% 12%, rgba(77, 140, 216, 0.12), transparent 34%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: #fff;
  padding: 64px 0 62px;
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.24;
  pointer-events: none;
}

.shop-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.shop-hero-copy h1 {
  max-width: 690px;
  margin: 0 0 22px;
  font-size: clamp(2.85rem, 4.6vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.shop-hero-copy h1 span {
  display: block;
  color: #fff;
}

.shop-hero-copy h1 strong {
  display: block;
  color: var(--lime);
  font-weight: 900;
}

.shop-hero-sub {
  max-width: 700px;
  margin: 0 0 18px;
  color: #f0e7b4;
  font-size: clamp(1.2rem, 1.9vw, 1.52rem);
  line-height: 1.26;
  font-weight: 900;
}

.shop-hero-copy p:not(.shop-hero-sub) {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.shop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* HERO PANEL */

.shop-hero-panel {
  border-radius: 30px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.shop-panel-header {
  margin-bottom: 22px;
}

.shop-panel-header span {
  display: inline-flex;
  padding: 8px 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(143, 207, 95, 0.12);
  border: 1px solid rgba(143, 207, 95, 0.22);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.shop-panel-header strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.shop-hero-list {
  display: grid;
  gap: 12px;
}

.shop-hero-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(3, 20, 36, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.shop-hero-item:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 207, 95, 0.42);
  background: rgba(5, 31, 54, 0.56);
}

.shop-hero-item > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(143, 207, 95, 0.12);
  border: 1px solid rgba(143, 207, 95, 0.25);
  color: var(--lime);
  font-size: 1.5rem;
}

.shop-hero-item strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 1.08rem;
}

.shop-hero-item small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.28;
}

/* CATEGORY STRIP */

.shop-category-strip {
  background: #fff;
  border-bottom: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 10px 26px rgba(3, 20, 36, 0.06);
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.shop-category-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 76px;
  padding: 16px;
  color: var(--navy);
  font-weight: 900;
  border-right: 1px solid rgba(16, 35, 58, 0.08);
}

.shop-category-grid a:last-child {
  border-right: 0;
}

.shop-category-grid a:hover {
  color: var(--green);
  background: var(--mint);
}

.shop-category-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(59, 127, 50, 0.1);
  color: var(--green);
}

/* SHOP SECTIONS */

.shop-section {
  padding: 84px 0;
}

.shop-featured {
  background: var(--mint);
}

.shop-products {
  background: #fff;
}

.shop-products-head {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 48px;
}

.shop-products-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.shop-products-head p {
  max-width: 680px;
  margin: 0;
  color: rgba(16, 35, 58, 0.78);
  font-size: 1.1rem;
}

/* FEATURED CARDS */

.shop-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.shop-featured-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 20px 46px rgba(13, 39, 63, 0.08);
}

.shop-featured-card.primary {
  background:
    radial-gradient(circle at 80% 18%, rgba(143, 207, 95, 0.2), transparent 30%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.shop-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.shop-product-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(59, 127, 50, 0.1);
  color: var(--green);
  border: 1px solid rgba(59, 127, 50, 0.14);
  font-size: 1.7rem;
  font-weight: 900;
}

.shop-featured-card.primary .shop-product-icon {
  background: rgba(143, 207, 95, 0.12);
  color: var(--lime);
  border-color: rgba(143, 207, 95, 0.28);
}

.shop-product-label,
.shop-card-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-featured-card.primary .shop-product-label {
  background: rgba(143, 207, 95, 0.12);
  color: var(--lime);
}

.shop-featured-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.shop-featured-card.primary h3 {
  color: #fff;
}

.shop-featured-card p {
  margin: 0 0 24px;
  color: rgba(16, 35, 58, 0.76);
  font-size: 1.04rem;
}

.shop-featured-card.primary p {
  color: rgba(255, 255, 255, 0.78);
}

.shop-mini-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}

.shop-mini-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(16, 35, 58, 0.82);
  font-weight: 800;
}

.shop-mini-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.shop-featured-card.primary .shop-mini-list li {
  color: rgba(255, 255, 255, 0.84);
}

.shop-featured-card.primary .shop-mini-list li::before {
  color: var(--lime);
}

.shop-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 35, 58, 0.08);
}

.shop-featured-card.primary .shop-card-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.shop-price {
  display: block;
  color: var(--green);
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.shop-featured-card.primary .shop-price {
  color: var(--lime);
}

.shop-card-bottom small {
  display: block;
  color: rgba(16, 35, 58, 0.62);
  font-weight: 800;
}

.shop-featured-card.primary .shop-card-bottom small {
  color: rgba(255, 255, 255, 0.64);
}

/* PRODUCT GROUPS */

.shop-product-group {
  padding: 44px 0 52px;
  border-top: 1px solid rgba(16, 35, 58, 0.08);
}

.shop-product-group:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.shop-group-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.shop-group-head > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  background: var(--navy);
  color: var(--lime);
  font-size: 1.7rem;
}

.shop-group-head h3 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.shop-group-head p {
  margin: 0;
  color: rgba(16, 35, 58, 0.72);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.shop-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 16px 34px rgba(13, 39, 63, 0.07);
}

.shop-card.featured {
  border-color: rgba(59, 127, 50, 0.24);
  box-shadow: 0 20px 44px rgba(59, 127, 50, 0.12);
}

.shop-card-wide {
  grid-column: span 2;
}

.shop-card .shop-product-icon {
  margin: 18px 0 20px;
}

.shop-card h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.shop-card p {
  margin: 0 0 24px;
  color: rgba(16, 35, 58, 0.72);
}

.shop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 35, 58, 0.08);
}

.shop-card-footer strong {
  display: block;
  color: var(--green);
  font-size: 1.45rem;
  line-height: 1;
}

.shop-card-footer small {
  display: block;
  margin-top: 4px;
  color: rgba(16, 35, 58, 0.58);
  font-weight: 800;
}

.shop-link {
  color: var(--navy);
  font-weight: 900;
  white-space: nowrap;
}

.shop-link:hover {
  color: var(--green);
}

/* GUIDANCE */

.shop-guidance {
  background: var(--olive);
}

.shop-guidance-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.shop-guidance h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.shop-guidance p {
  margin: 0;
  max-width: 660px;
  color: rgba(16, 35, 58, 0.78);
  font-size: 1.08rem;
}

.shop-guidance-options {
  display: grid;
  gap: 12px;
}

.shop-guidance-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(16, 35, 58, 0.08);
  box-shadow: 0 14px 30px rgba(3, 20, 36, 0.08);
}

.shop-guidance-options strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.shop-guidance-options span {
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

/* SHOP RESPONSIVE */

@media (max-width: 720px) {
  .shop-hero {
    padding: 50px 0 50px;
  }

  .shop-hero-copy h1 {
    font-size: clamp(2.35rem, 10vw, 3.45rem);
  }

  .shop-hero-sub {
    font-size: 1.12rem;
  }

  .shop-hero-actions {
    flex-direction: column;
  }

  .shop-hero-actions .btn {
    width: 100%;
  }

  .shop-hero-panel {
    padding: 20px;
  }

  .shop-panel-header strong {
    font-size: 1.5rem;
  }

  .shop-hero-item {
    grid-template-columns: 46px 1fr;
    padding: 14px;
  }

  .shop-hero-item > span {
    width: 42px;
    height: 42px;
  }

  .shop-category-grid {
    grid-template-columns: 1fr;
  }

  .shop-category-grid a {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(16, 35, 58, 0.08);
  }

  .shop-category-grid a:last-child {
    border-bottom: 0;
  }

  .shop-section {
    padding: 62px 0;
  }

  .shop-featured-card,
  .shop-card {
    padding: 24px;
    min-height: unset;
  }

  .shop-card-bottom,
  .shop-card-footer,
  .shop-guidance-options a {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-card-bottom .btn {
    width: 100%;
  }

  .shop-group-head {
    align-items: flex-start;
  }

  .shop-guidance-options span {
    white-space: normal;
  }
}