/* Final Lilith's Shop page — unique image filename prevents old cache */

:root {
  --black: #020203;
  --wine: #260008;
  --blood: #8d001b;
  --red: #e00036;
  --silver: #d8c8c8;
  --muted: #a98f94;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: #f8eef1;
  background:
    radial-gradient(circle at 50% 10%, rgba(115, 0, 24, .18), transparent 34%),
    linear-gradient(180deg, #080003, #000);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.shop-header {
  padding: 10px;
  background: #000;
  border-bottom: 1px solid rgba(224, 0, 54, .28);
}

.shop-menu {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.shop-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 58px;
  padding: 9px 8px;
  border: 1px solid rgba(224, 0, 54, .48);
  border-radius: 999px;
  background: rgba(20, 0, 6, .96);
  color: #e5d8da;
  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: clamp(10px, 2.8vw, 15px);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.shop-menu a:hover,
.shop-menu a:focus-visible,
.shop-menu a.active {
  color: #fff;
  border-color: #ef1749;
  background: linear-gradient(180deg, #510013, #210006);
  box-shadow: 0 0 17px rgba(239, 23, 73, .25);
  outline: none;
}

/* Favorites and Shop sit beside each other on the final row. */
.shop-menu a[href="liliths-favorites.html"] {
  grid-column: 1;
}

.shop-menu a[href="liliths-shop.html"] {
  grid-column: 2;
}

.shop-banner {
  width: min(1180px, calc(100% - 22px));
  margin: 24px auto 0;
}

.shop-banner img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(224, 0, 54, .46);
  border-radius: 24px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, .72),
    0 0 24px rgba(126, 0, 26, .20);
}

.shop-link-section {
  padding: 48px 18px 72px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(135, 0, 26, .25), transparent 46%),
    #030002;
}

.shop-link-section > p:first-child {
  width: min(760px, 100%);
  margin: 0 auto 28px;
  color: #d8c5c9;
  font-size: clamp(20px, 3.4vw, 30px);
  line-height: 1.4;
}

.shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  max-width: 100%;
  padding: 17px clamp(22px, 6vw, 48px);
  border: 1px solid rgba(255, 32, 78, .76);
  border-radius: 18px;
  background: linear-gradient(180deg, #4e0010, #190005);
  color: #fff0f3;
  font-family: "Cinzel Decorative", Georgia, serif;
  font-size: clamp(16px, 3.6vw, 26px);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 0 13px rgba(255, 0, 61, .9);
  box-shadow:
    inset 0 0 32px rgba(255, 0, 61, .13),
    0 0 27px rgba(255, 0, 61, .26);
}

.shop-note {
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.shop-footer {
  padding: 26px 16px 34px;
  text-align: center;
  color: #816c71;
  border-top: 1px solid rgba(224, 0, 54, .18);
  background: #000;
}

@media (min-width: 800px) {
  .shop-menu {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
  }

  .shop-menu a[href="liliths-favorites.html"],
  .shop-menu a[href="liliths-shop.html"] {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .shop-menu {
    gap: 7px;
  }

  .shop-menu a {
    min-height: 50px;
    padding: 8px 5px;
    font-size: 9px;
  }

  .shop-banner {
    width: calc(100% - 16px);
    margin-top: 17px;
  }

  .shop-banner img {
    border-radius: 18px;
  }
}
