:root {
  --bg: #efe3d3;
  --surface: rgba(255, 255, 255, .62);
  --surface-strong: rgba(255, 255, 255, .82);
  --surface-2: rgba(244, 235, 221, .72);
  --ink: #241d17;
  --muted: #766a60;
  --line: rgba(159, 123, 76, .24);
  --gold: #b6843c;
  --gold-deep: #7f5224;
  --gold-soft: #ead6ad;
  --pearl: #fffaf0;
  --shadow: 0 22px 58px rgba(74, 54, 32, .14);
  --glass-shadow: 0 18px 50px rgba(70, 51, 31, .11), inset 0 1px 0 rgba(255, 255, 255, .86);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  background: var(--bg);
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  position: relative;
  margin: 0;
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  background:
    radial-gradient(circle at 55% 11%, rgba(255, 255, 255, .76) 0 8%, rgba(255, 255, 255, .24) 18%, transparent 31%),
    radial-gradient(circle at 86% 0%, rgba(198, 159, 95, .30), transparent 28%),
    radial-gradient(circle at 6% 18%, rgba(255, 255, 255, .56), transparent 32%),
    linear-gradient(180deg, #eadcc9 0%, #f6eee3 42%, #eee2d4 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  top: 88px;
  left: 58%;
  z-index: 0;
  width: min(58vw, 250px);
  height: min(58vw, 250px);
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 48%, rgba(255,255,255,.62) 0 32%, rgba(232,215,188,.42) 33% 49%, transparent 50%),
    radial-gradient(circle at 42% 40%, rgba(173,147,112,.12) 0 2%, transparent 2.4%),
    radial-gradient(circle at 57% 53%, rgba(173,147,112,.10) 0 1.7%, transparent 2.1%),
    radial-gradient(circle at 51% 60%, rgba(173,147,112,.08) 0 2.5%, transparent 3%);
  opacity: .74;
  filter: blur(.25px);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 6%, rgba(182,132,60,.34) 0 1px, transparent 2px),
    radial-gradient(circle at 83% 9%, rgba(182,132,60,.42) 0 1.4px, transparent 2.6px),
    radial-gradient(circle at 68% 18%, rgba(255,255,255,.78) 0 1.5px, transparent 3px),
    radial-gradient(circle at 90% 31%, rgba(182,132,60,.26) 0 1px, transparent 2px),
    radial-gradient(circle at 12% 36%, rgba(255,255,255,.62) 0 1px, transparent 2px),
    linear-gradient(115deg, transparent 0 18%, rgba(255,255,255,.16) 19%, transparent 31% 100%);
  pointer-events: none;
}

button,
input {
  font: inherit;
}

.app-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  max-width: 100%;
  margin: 0 auto;
  padding: calc(18px + env(safe-area-inset-top)) 16px calc(112px + env(safe-area-inset-bottom));
  overflow-x: hidden;
}

.app-shell::before {
  content: "";
  position: absolute;
  top: 40px;
  right: -74px;
  z-index: -1;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from 9deg, transparent 0deg 13deg, rgba(180,132,61,.28) 13deg 13.8deg, transparent 13.8deg 18deg),
    radial-gradient(circle, transparent 0 50%, rgba(180,132,61,.32) 50.4% 50.9%, transparent 51.3% 61%, rgba(180,132,61,.22) 61.4% 61.8%, transparent 62.2%);
  mask: radial-gradient(circle, transparent 0 47%, #000 48% 63%, transparent 64%);
  opacity: .42;
  pointer-events: none;
}

.topbar {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  min-height: 86px;
  margin-bottom: 8px;
  text-align: center;
}

.brand {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .01em;
  text-transform: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .65);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 290px;
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: 1.05;
  font-weight: 500;
  text-align: left;
}

.icon-button {
  position: absolute;
  top: 2px;
  right: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(142, 105, 56, .26);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #5e4630;
  background: rgba(255, 255, 255, .52);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
}

.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-strip,
.hero-panel,
.section-card,
.product-card {
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 250, 240, .42));
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(22px) saturate(1.22);
}

.profile-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 12px;
  border-radius: 18px;
  position: relative;
}

.profile-strip::after {
  content: "›";
  margin-left: auto;
  color: var(--gold-deep);
  font-size: 24px;
  line-height: 1;
}

.moon-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fffaf2;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.28), transparent 23%),
    linear-gradient(145deg, #c49d61, #7b5127);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 11px 24px rgba(109, 75, 34, .2);
  font-size: 23px;
}

.profile-title {
  font-size: 15px;
  font-weight: 720;
}

.profile-subtitle {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.mini-link-button {
  margin-top: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(185, 136, 59, .3);
  border-radius: 999px;
  color: #7a4e25;
  background: rgba(255, 246, 228, .72);
  font-size: 13px;
  font-weight: 760;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  padding: 22px 20px 20px;
  border-radius: 28px;
  min-height: 168px;
  background:
    radial-gradient(circle at 72% 32%, rgba(255,255,255,.64) 0 13%, rgba(255,255,255,.22) 14% 24%, transparent 25%),
    linear-gradient(145deg, rgba(255,255,255,.64), rgba(245,234,218,.42));
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: -38px -42px auto auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(185, 136, 59, .2);
  background:
    repeating-conic-gradient(from 12deg, rgba(182, 132, 60, .17) 0deg 3deg, transparent 3deg 18deg);
  mask: radial-gradient(circle, transparent 0 40%, #000 41% 43%, transparent 44% 56%, #000 57% 58%, transparent 59%);
}

.hero-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 286px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
  font-weight: 500;
}

.hero-panel p {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.zodiac-ring {
  position: absolute;
  right: 24px;
  top: 36px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(185, 136, 59, .24);
  border-radius: 50%;
  color: var(--gold);
  opacity: .92;
}

.zodiac-ring span {
  position: absolute;
  font-size: 18px;
}

.zodiac-ring span:nth-child(1) {
  top: 12px;
  left: 40px;
}

.zodiac-ring span:nth-child(2) {
  right: 14px;
  top: 46px;
}

.zodiac-ring span:nth-child(3) {
  left: 18px;
  bottom: 14px;
}

.section-block {
  margin-top: 24px;
}

.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.section-title-row h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.section-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 1px 8px;
  margin-inline: -1px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

.section-grid::-webkit-scrollbar,
#popularList::-webkit-scrollbar {
  display: none;
}

.section-card {
  flex: 0 0 92px;
  min-height: 96px;
  padding: 12px 8px;
  border-radius: 22px;
  text-align: center;
  color: inherit;
  scroll-snap-align: start;
}

.section-icon {
  width: 43px;
  height: 43px;
  margin: 0 auto 10px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: var(--gold-deep);
  background:
    radial-gradient(circle at 36% 20%, rgba(255,255,255,.9), transparent 34%),
    linear-gradient(145deg, #fff8e9, #d7b474);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 10px 22px rgba(127, 82, 36, .12);
}

.section-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-card h4 {
  margin: 0;
  font-size: 12px;
  line-height: 1.16;
  font-weight: 760;
}

.product-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.section-card p {
  display: none;
}

.product-list {
  display: grid;
  gap: 10px;
}

#popularList {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 1px 8px;
  scroll-snap-type: x proximity;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}

#popularList .product-card {
  flex: 0 0 calc((100% - 20px) / 3);
  min-height: 204px;
  align-content: space-between;
  grid-template-columns: 1fr;
  text-align: center;
  scroll-snap-align: start;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  padding: 14px;
  border-radius: 20px;
  cursor: pointer;
}

.product-card h4 {
  margin: 0 0 5px;
  font-size: 14px;
  line-height: 1.2;
}

#popularList .product-card h4 {
  min-height: 48px;
  display: grid;
  place-items: end center;
}

#popularList .product-card p {
  display: none;
}

#popularList .product-card::before {
  content: "☽";
  width: 58px;
  height: 58px;
  margin: 0 auto 7px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(182, 132, 60, .24);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 37% 28%, rgba(255,255,255,.85), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.62), rgba(236,218,184,.34));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.price-button {
  min-width: 78px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(145deg, #c7964c, #8a5a26);
  box-shadow: 0 13px 28px rgba(123, 82, 39, .24), inset 0 1px 0 rgba(255,255,255,.26);
  font-size: 14px;
  font-weight: 740;
  cursor: pointer;
}

#popularList .price-button {
  width: 100%;
  min-width: 0;
  font-size: 13px;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 20;
  width: min(calc(100vw - 24px), 430px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(159, 123, 76, .24);
  border-radius: 24px;
  background: rgba(255, 250, 240, .67);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(24px) saturate(1.25);
}

.nav-item {
  height: 42px;
  border: 0;
  border-radius: 18px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 720;
}

.nav-item.active {
  color: var(--gold-deep);
  background: rgba(255, 255, 255, .72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 9px 24px rgba(71, 52, 29, .1);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  width: 100vw;
  height: 100vh;
  background:
    radial-gradient(circle at 50% 14%, rgba(255,255,255,.24), transparent 28%),
    rgba(40, 32, 24, .28);
  backdrop-filter: blur(3px);
}

.drawer {
  position: fixed;
  left: 50%;
  bottom: 0;
  z-index: 31;
  width: min(100vw, 460px);
  max-height: 82vh;
  overflow: auto;
  transform: translate(-50%, calc(100% + 32px));
  visibility: hidden;
  pointer-events: none;
  padding: 10px 16px calc(24px + env(safe-area-inset-bottom));
  border-radius: 26px 26px 0 0;
  border: 1px solid rgba(255,255,255,.54);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.78), transparent 24%),
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(241,230,214,.78));
  box-shadow: 0 -24px 70px rgba(45, 34, 21, .24), inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(28px) saturate(1.2);
  transition: transform .24s ease;
}

.drawer.open {
  transform: translate(-50%, 0);
  visibility: visible;
  pointer-events: auto;
}

.drawer-handle {
  width: 42px;
  height: 4px;
  margin: 2px auto 18px;
  border-radius: 999px;
  background: rgba(154, 124, 85, .32);
}

.drawer-close {
  position: absolute;
  top: 15px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(142, 105, 56, .22);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #7a5c3c;
  background: rgba(255, 255, 255, .6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 20px rgba(74,54,32,.1);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.drawer h3 {
  margin: 0 0 10px;
  padding-inline: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 500;
  text-align: center;
}

.drawer-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-line;
}

.drawer-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.drawer-action {
  min-height: 54px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.56);
  color: var(--ink);
  text-align: left;
  font-weight: 720;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

.checkout-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.action-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.action-field {
  display: grid;
  gap: 7px;
}

.action-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.checkout-form input,
.action-field input,
.action-field select,
.action-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(255,255,255,.66);
  font-size: 15px;
  font-family: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.74);
}

.checkout-form input,
.action-field input,
.action-field select {
  height: 48px;
  padding: 0 14px;
}

.action-field textarea {
  min-height: 118px;
  resize: vertical;
  padding: 13px 14px;
  line-height: 1.45;
}

.checkout-form .price-button {
  width: 100%;
}

.action-form .price-button {
  width: 100%;
  margin-top: 4px;
}

.upload-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.upload-drop {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
  border: 1px dashed rgba(183, 144, 91, .55);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.68), rgba(250, 244, 234, .42));
  color: var(--ink);
  text-align: center;
}

.upload-drop input {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.upload-drop span {
  min-height: 42px;
  padding: 11px 18px;
  border-radius: 999px;
  background: linear-gradient(145deg, #c7964c, #8a5a26);
  color: #fffdf9;
  font-size: 14px;
  font-weight: 780;
}

.upload-drop small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.upload-form .price-button {
  width: 100%;
}

.status-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.loader-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold-soft);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.result-text {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.result-text b {
  font-weight: 780;
}

.result-text i {
  color: var(--muted);
}

.result-list,
.shop-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.shop-section {
  margin-top: 20px;
}

.shop-section h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 820;
}

.shop-section .shop-list {
  margin-top: 0;
}

.result-item,
.shop-row,
.paywall-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.58);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.74);
}

.result-item {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  text-align: left;
}

.result-item strong,
.shop-row strong,
.paywall-card strong {
  font-size: 14px;
  line-height: 1.25;
}

.result-item span,
.shop-row span,
.paywall-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.shop-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  cursor: pointer;
}

.shop-row > div,
.paywall-card {
  display: grid;
  gap: 5px;
}

.shop-row small {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(190, 151, 85, .1);
  color: #7d5a32;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 760;
}

.shop-row strong em {
  display: inline-grid;
  place-items: center;
  min-height: 21px;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #261f19;
  color: #fffaf1;
  font-family: Inter, system-ui, sans-serif;
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  font-weight: 780;
  vertical-align: 2px;
  text-transform: uppercase;
}

.shop-row-highlight {
  border-color: rgba(154, 103, 42, .34);
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, .74), transparent 28%),
    radial-gradient(circle at 94% 20%, rgba(205, 166, 96, .25), transparent 36%),
    linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,244,221,.66));
  box-shadow: 0 18px 46px rgba(107, 74, 35, .12);
}

.paywall-card {
  margin-top: 16px;
  padding: 16px;
  text-align: center;
}

.paywall-card::before {
  content: "☉";
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(182, 132, 60, .3);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 36% 25%, rgba(255,255,255,.82), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.68), rgba(236,218,184,.36));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
}

.paywall-card .price-button {
  width: 100%;
  margin-top: 8px;
}

.checkout-hero {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 6px 4px 4px;
  text-align: center;
}

.checkout-symbol {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(182, 132, 60, .3);
  border-radius: 50%;
  color: var(--gold);
  background:
    radial-gradient(circle at 36% 25%, rgba(255,255,255,.86), transparent 35%),
    linear-gradient(145deg, rgba(255,255,255,.68), rgba(236,218,184,.38));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 12px 28px rgba(113, 78, 37, .12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.checkout-hero .drawer-text {
  max-width: 310px;
  text-align: center;
}

.checkout-price {
  color: var(--gold-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.benefit-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 4px;
}

.benefit-list span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 8px 6px;
  border: 1px solid rgba(159, 123, 76, .2);
  border-radius: 18px;
  color: #6d5f52;
  background: rgba(255,255,255,.48);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.68);
}

.secondary-button {
  width: 100%;
  min-height: 46px;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
  color: var(--ink);
  font-weight: 760;
}

.secondary-button.compact {
  margin-top: 0;
}

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

@media (max-width: 340px) {
  h1 {
    font-size: 30px;
  }

  .section-grid {
    grid-template-columns: 1fr;
  }
}
