:root {
  --color-bg: #F1F5F9;
  --color-bg-gradient: linear-gradient(135deg, rgba(241,245,249,0.92) 0%, rgba(241,245,249,0.98) 100%);
  --color-accent: #0EA5E9;
  --color-accent-light: #38bdf8;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-card-bg: #fff;
  --color-shadow: rgba(30,41,59,0.05);
  --color-shadow-strong: rgba(30,41,59,0.10);
  --radius-main: 18px;
  --radius-card: 14px;
  --radius-btn: 8px;
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
  --max-width: 1240px;
  --gap-main: 40px;
  --gap-section: 64px;
  --gap-card: 24px;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size: 14px;
  --font-size-h1: 2.2rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.15rem;
  --font-size-h4: 1rem;
}

/* Reset & Base */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: var(--font-size);
  color: var(--color-text);
  background: var(--color-bg-gradient), var(--color-bg);
  min-height: 100vh;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body.letscreatepottery-body {
  background: var(--color-bg-gradient), var(--color-bg);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-card);
}
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover, a:focus {
  color: var(--color-accent-light);
  text-decoration: underline;
}
ul, ol {
  margin: 0 0 1.2em 1.2em;
  padding: 0;
}
li {
  margin-bottom: 0.45em;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  color: var(--color-text);
  margin-top: 0;
}
h1 { font-size: var(--font-size-h1); font-weight: 700; }
h2 { font-size: var(--font-size-h2); font-weight: 700; }
h3 { font-size: var(--font-size-h3); font-weight: 600; }
h4 { font-size: var(--font-size-h4); font-weight: 600; }
p { margin-top: 0; margin-bottom: 1em; }
strong { font-weight: 600; }

/* Layout */
.letscreatepottery-section {
  padding: 0 var(--gap-main);
  margin: 0 auto var(--gap-section) auto;
  max-width: var(--max-width);
  position: relative;
  z-index: 1;
}
.letscreatepottery-section__inner {
  background: var(--color-card-bg);
  border-radius: var(--radius-main);
  box-shadow: 0 4px 32px var(--color-shadow), 0 1.5px 6px var(--color-shadow-strong);
  padding: 40px 36px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .letscreatepottery-section__inner {
    padding: 24px 10px;
  }
  .letscreatepottery-section {
    padding: 0 2vw;
  }
}

/* Header */
.letscreatepottery-header {
  background: var(--color-card-bg);
  box-shadow: 0 2px 16px var(--color-shadow);
  border-radius: 0 0 var(--radius-main) var(--radius-main);
  margin-bottom: var(--gap-main);
  position: sticky;
  top: 0;
  z-index: 100;
}
.letscreatepottery-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 36px;
}
.letscreatepottery-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.letscreatepottery-logo__img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 8px var(--color-shadow);
  background: var(--color-bg-gradient);
}
.letscreatepottery-nav {
  margin-left: 32px;
}
.letscreatepottery-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.letscreatepottery-nav__item {
  margin: 0;
}
.letscreatepottery-nav__link {
  padding: 7px 14px;
  border-radius: var(--radius-btn);
  font-weight: 500;
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
  position: relative;
}
.letscreatepottery-nav__link:hover,
.letscreatepottery-nav__link:focus {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 8px var(--color-shadow);
}
@media (max-width: 900px) {
  .letscreatepottery-header__inner {
    padding: 12px 10px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .letscreatepottery-nav__list {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .letscreatepottery-header {
    border-radius: 0;
  }
  .letscreatepottery-header__inner {
    padding: 8px 2vw;
  }
}

/* HERO */
.letscreatepottery-hero {
  margin-bottom: var(--gap-section);
  padding: 0;
}
.letscreatepottery-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.letscreatepottery-hero__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.letscreatepottery-hero__col--left {
  gap: 16px;
}
.letscreatepottery-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.2em;
  color: var(--color-accent);
  letter-spacing: -0.01em;
}
.letscreatepottery-hero__tagline {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 1.2em;
}
.letscreatepottery-hero__meta {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 1em;
}
.letscreatepottery-hero__badge {
  background: var(--color-accent);
  color: #fff;
  padding: 3px 13px;
  border-radius: var(--radius-btn);
  font-size: 0.95em;
  font-weight: 500;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 4px var(--color-shadow);
}
.letscreatepottery-hero__rating {
  color: #eab308;
  background: rgba(234,179,8,0.08);
  padding: 3px 10px;
  border-radius: var(--radius-btn);
  font-size: 0.95em;
  font-weight: 500;
}
.letscreatepottery-hero__actions {
  display: flex;
  gap: 12px;
  margin-bottom: 1.2em;
  flex-wrap: wrap;
}
.letscreatepottery-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  outline: none;
  border: 1px solid transparent;
}
.letscreatepottery-btn:hover, .letscreatepottery-btn:focus {
  background: #fff;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  box-shadow: 0 3px 12px var(--color-shadow-strong);
}
.letscreatepottery-btn--ghost {
  background: #fff;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  box-shadow: 0 2px 8px var(--color-shadow);
}
.letscreatepottery-btn--ghost:hover, .letscreatepottery-btn--ghost:focus {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
}
.letscreatepottery-hero__kategorie {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  font-size: 0.97em;
  color: var(--color-text-light);
  list-style: none;
}
.letscreatepottery-hero__kategorie li {
  background: rgba(14,165,233,0.07);
  border-radius: 7px;
  padding: 3px 12px;
  font-weight: 500;
  position: relative;
}
.letscreatepottery-hero__col--right {
  align-items: flex-end;
  justify-content: flex-end;
}
.letscreatepottery-hero__visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.letscreatepottery-hero__img {
  border-radius: var(--radius-main) var(--radius-card) var(--radius-main) var(--radius-card);
  box-shadow: 0 4px 32px var(--color-shadow-strong);
  object-fit: cover;
  width: 100%;
  max-height: 320px;
}
.letscreatepottery-hero__preview {
  display: flex;
  gap: 10px;
}
.letscreatepottery-hero__mini {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--color-shadow);
}
@media (max-width: 900px) {
  .letscreatepottery-hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .letscreatepottery-hero__col--right {
    align-items: center;
    justify-content: center;
  }
  .letscreatepottery-hero__visual {
    align-items: center;
  }
}
@media (max-width: 600px) {
  .letscreatepottery-hero__title {
    font-size: 1.5rem;
  }
  .letscreatepottery-hero__img {
    max-height: 180px;
  }
  .letscreatepottery-hero__mini {
    width: 40px;
    height: 40px;
  }
}

/* WORLD SECTION */
.letscreatepottery-world__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
  align-items: stretch;
}
.letscreatepottery-world__col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.letscreatepottery-world__img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-top: 0.5em;
}
.letscreatepottery-world__lead {
  font-size: 1.05em;
  font-weight: 500;
  color: var(--color-text-light);
  margin-bottom: 1em;
}
.letscreatepottery-world__features {
  margin-bottom: 0.8em;
  list-style: none;
  padding-left: 0;
}
.letscreatepottery-world__features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5em;
}
.letscreatepottery-world__features li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.35;
}
.letscreatepottery-world__subtitle {
  margin-top: 1.7em;
  font-size: 1.07em;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.letscreatepottery-world__list {
  margin-bottom: 1em;
  list-style: none;
  padding-left: 0;
}
.letscreatepottery-world__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.45em;
}
.letscreatepottery-world__list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.18;
}
@media (max-width: 900px) {
  .letscreatepottery-world__cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .letscreatepottery-world__img {
    max-height: 180px;
  }
}

/* RHYTHM SECTION */
.letscreatepottery-rhythm__steps {
  background: rgba(14,165,233,0.03);
  border-radius: var(--radius-card);
  padding: 22px 20px 18px 22px;
  margin-bottom: 24px;
  box-shadow: 0 1.5px 8px var(--color-shadow);
}
.letscreatepottery-rhythm__subtitle {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.8em;
}
.letscreatepottery-rhythm__list {
  margin: 0 0 0.6em 0;
  padding: 0;
  counter-reset: rhythm;
  list-style: none;
}
.letscreatepottery-rhythm__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.7em;
  color: var(--color-text);
}
.letscreatepottery-rhythm__list li::before {
  counter-increment: rhythm;
  content: counter(rhythm) ".";
  position: absolute;
  left: 0; top: 0;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1em;
}
.letscreatepottery-rhythm__why {
  background: rgba(14,165,233,0.02);
  border-radius: var(--radius-card);
  padding: 18px 18px 12px 18px;
  box-shadow: 0 1px 6px var(--color-shadow);
}
.letscreatepottery-rhythm__why ul {
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
}
.letscreatepottery-rhythm__why li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.5em;
  color: var(--color-text-light);
}
.letscreatepottery-rhythm__why li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.13;
}
@media (max-width: 600px) {
  .letscreatepottery-rhythm__steps, .letscreatepottery-rhythm__why {
    padding: 12px 7px 8px 12px;
  }
}

/* HOW TO PLAY SECTION */
.letscreatepottery-how__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  margin-bottom: 30px;
}
.letscreatepottery-how__col {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}
.letscreatepottery-how__subtitle {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.6em;
}
.letscreatepottery-how__list {
  list-style: none;
  padding-left: 0;
}
.letscreatepottery-how__list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.5em;
}
.letscreatepottery-how__list li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.15;
}
.letscreatepottery-how__smalltitle {
  font-size: 1em;
  font-weight: 600;
  margin: 1.2em 0 0.4em 0;
  color: var(--color-accent);
}
.letscreatepottery-how__imgwrap {
  margin-top: 18px;
  text-align: center;
}
.letscreatepottery-how__img {
  max-height: 220px;
  width: auto;
  object-fit: cover;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 12px var(--color-shadow);
}
@media (max-width: 900px) {
  .letscreatepottery-how__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .letscreatepottery-how__img {
    max-height: 120px;
  }
}

/* UNIQUE SECTION */
.letscreatepottery-unique__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.letscreatepottery-unique__list li {
  background: rgba(14,165,233,0.025);
  border-radius: var(--radius-card);
  box-shadow: 0 1.5px 8px var(--color-shadow);
  padding: 18px 18px 14px 18px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.letscreatepottery-unique__list strong {
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.2em;
  font-size: 1.04em;
}

/* CONTENT SECTION */
.letscreatepottery-content__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
}
.letscreatepottery-content__col {
  background: rgba(14,165,233,0.02);
  border-radius: var(--radius-card);
  box-shadow: 0 1.5px 8px var(--color-shadow);
  padding: 18px 18px 14px 18px;
  min-height: 180px;
}
.letscreatepottery-content__col h3 {
  color: var(--color-accent);
  margin-bottom: 0.7em;
  font-size: 1.08em;
}
.letscreatepottery-content__col ul {
  list-style: none;
  padding-left: 0;
}
.letscreatepottery-content__col ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.5em;
}
.letscreatepottery-content__col ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.11;
}
@media (max-width: 900px) {
  .letscreatepottery-content__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* IMPRESSIONS SECTION */
.letscreatepottery-impressions__lead {
  font-size: 1.09em;
  color: var(--color-text-light);
  margin-bottom: 1.1em;
}
.letscreatepottery-impressions__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 1.8em;
}
.letscreatepottery-impressions__col h3 {
  color: var(--color-accent);
  font-size: 1.04em;
  margin-bottom: 0.5em;
}
.letscreatepottery-impressions__col ul {
  list-style: none;
  padding-left: 0;
}
.letscreatepottery-impressions__col ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.45em;
}
.letscreatepottery-impressions__col ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.13;
}
.letscreatepottery-impressions__img {
  text-align: center;
}
.letscreatepottery-impressions__photo {
  max-height: 180px;
  object-fit: cover;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 12px var(--color-shadow);
}
@media (max-width: 900px) {
  .letscreatepottery-impressions__cols {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .letscreatepottery-impressions__photo {
    max-height: 100px;
  }
}

/* FAQ SECTION */
.letscreatepottery-faq__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 64px;
  margin: 0;
  padding: 0;
}
.letscreatepottery-faq__list dt {
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 1.2em;
  margin-bottom: 0.2em;
  font-size: 1em;
}
.letscreatepottery-faq__list dd {
  margin: 0 0 1.2em 0;
  color: var(--color-text-light);
  font-size: 0.98em;
}
@media (max-width: 900px) {
  .letscreatepottery-faq__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* REVIEWS SECTION */
.letscreatepottery-reviews__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-bottom: 1.2em;
}
.letscreatepottery-review {
  background: rgba(14,165,233,0.025);
  border-radius: var(--radius-card);
  box-shadow: 0 1.5px 8px var(--color-shadow);
  padding: 18px 18px 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  min-height: 120px;
}
.letscreatepottery-review__author {
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 0.1em;
  font-size: 1.04em;
}
.letscreatepottery-review__type {
  color: var(--color-text-light);
  font-size: 0.98em;
  margin-bottom: 0.2em;
}
.letscreatepottery-review__quote {
  font-style: italic;
  color: var(--color-text);
  font-size: 1em;
  margin: 0;
}
.letscreatepottery-reviews__more {
  color: var(--color-text-light);
  font-size: 0.98em;
  text-align: right;
}

/* GALLERY SECTION */
.letscreatepottery-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 22px;
  margin-top: 1.5em;
}
.letscreatepottery-gallery__item {
  background: rgba(14,165,233,0.025);
  border-radius: var(--radius-card);
  box-shadow: 0 1.5px 8px var(--color-shadow);
  padding: 12px 12px 8px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 160px;
}
.letscreatepottery-gallery__item img {
  max-height: 110px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.7em;
}
.letscreatepottery-gallery__item figcaption {
  color: var(--color-text-light);
  font-size: 0.97em;
  text-align: center;
}
@media (max-width: 600px) {
  .letscreatepottery-gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .letscreatepottery-gallery__item img {
    max-height: 60px;
  }
}

/* SUMMARY SECTION */
.letscreatepottery-summary__cta {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-btn);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 1em;
  margin-top: 1.5em;
  box-shadow: 0 2px 8px var(--color-shadow);
  display: inline-block;
  transition: background var(--transition), color var(--transition);
}
.letscreatepottery-summary__cta:hover, .letscreatepottery-summary__cta:focus {
  background: #fff;
  color: var(--color-accent);
}

/* FOOTER */
.letscreatepottery-footer {
  background: var(--color-card-bg);
  border-radius: var(--radius-main) var(--radius-main) 0 0;
  box-shadow: 0 -2px 16px var(--color-shadow);
  margin-top: var(--gap-section);
  padding-top: 32px;
}
.letscreatepottery-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 36px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 36px 18px 36px;
}
.letscreatepottery-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  font-size: 0.97em;
}
.letscreatepottery-footer__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 1.08em;
}
.letscreatepottery-footer__brandimg {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.letscreatepottery-footer__col h4 {
  color: var(--color-accent);
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 0.4em;
}
.letscreatepottery-footer__col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.letscreatepottery-footer__col ul li {
  margin-bottom: 0.3em;
}
.letscreatepottery-footer__col ul li a {
  color: var(--color-text-light);
  transition: color var(--transition);
}
.letscreatepottery-footer__col ul li a:hover,
.letscreatepottery-footer__col ul li a:focus {
  color: var(--color-accent);
}
.letscreatepottery-footer__bottom {
  text-align: center;
  color: var(--color-text-light);
  font-size: 0.95em;
  margin-top: 18px;
  padding-bottom: 18px;
}
@media (max-width: 900px) {
  .letscreatepottery-footer__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px 12px 10px;
  }
}

/* COOKIE BANNER */
.letscreatepottery-cookie {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  background: var(--color-card-bg);
  border-radius: var(--radius-main);
  box-shadow: 0 2px 16px var(--color-shadow-strong);
  padding: 18px 32px;
  z-index: 9999;
  align-items: center;
  gap: 18px;
  min-width: 220px;
  max-width: 90vw;
  transition: box-shadow var(--transition);
  font-size: 1em;
}
.letscreatepottery-cookie__text {
  color: var(--color-text);
  margin: 0;
  font-size: 1em;
}
.letscreatepottery-cookie__btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-btn);
  padding: 8px 18px;
  font-weight: 600;
  font-size: 1em;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 1.5px 8px var(--color-shadow);
  transition: background var(--transition), color var(--transition);
}
.letscreatepottery-cookie__btn:hover, .letscreatepottery-cookie__btn:focus {
  background: #fff;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}
@media (max-width: 600px) {
  .letscreatepottery-cookie {
    flex-direction: column;
    padding: 10px 8px;
    bottom: 10px;
    min-width: 0;
    font-size: 0.97em;
  }
  .letscreatepottery-cookie__btn {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }
}

/* Section Title */
.letscreatepottery-section__title {
  font-size: 1.5rem;
  color: var(--color-accent);
  font-weight: 800;
  margin-bottom: 1.3em;
  letter-spacing: -0.01em;
  text-shadow: 0 1.5px 6px var(--color-shadow);
}

/* Responsive max-width for section inner */
@media (max-width: 1300px) {
  .letscreatepottery-section,
  .letscreatepottery-section__inner {
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .letscreatepottery-section__title {
    font-size: 1.1rem;
    margin-bottom: 1em;
  }
  .letscreatepottery-section__inner {
    padding: 10px 2vw;
  }
}

/* Misc */
::-webkit-scrollbar {
  width: 8px;
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 6px;
  opacity: 0.2;
}
::selection {
  background: var(--color-accent);
  color: #fff;
}