:root {
  --cb-bg: #f8f5f2;
  --cb-bg-gradient: linear-gradient(120deg, #f8f5f2 80%, #f3e9d7 100%);
  --cb-bg-gradient-2: linear-gradient(120deg, #f8f5f2 85%, #f5ede3 100%);
  --cb-gold: #c9a14d;
  --cb-gold-light: #e8d3a0;
  --cb-gold-gradient: linear-gradient(90deg, #e8d3a0 0%, #c9a14d 100%);
  --cb-shadow: 0 2px 16px 0 rgba(180, 155, 90, 0.07), 0 1.5px 6px 0 rgba(100, 70, 20, 0.03);
  --cb-shadow-card: 0 4px 24px 0 rgba(180, 155, 90, 0.11), 0 1.5px 6px 0 rgba(100, 70, 20, 0.04);
  --cb-card-radius: 18px;
  --cb-card-radius-alt: 32px;
  --cb-radius-btn: 24px;
  --cb-radius-min: 10px;
  --cb-text: #6c5c3b;
  --cb-text-dark: #3c2e18;
  --cb-text-light: #a0917a;
  --cb-link: #c9a14d;
  --cb-link-hover: #b38b2e;
  --cb-border: #e8d3a0;
  --cb-border-light: #f3e9d7;
  --cb-cta-bg: #c9a14d;
  --cb-cta-bg-hover: #a8832d;
  --cb-cta-text: #fff;
  --cb-cta-text-hover: #fffbea;
  --cb-faq-bg: #f5ede3;
  --cb-review-bg: #f8f5f2;
  --cb-font: 'Inter', 'Segoe UI', Arial, sans-serif;
  --cb-h1: 2.3rem;
  --cb-h2: 1.6rem;
  --cb-h3: 1.15rem;
  --cb-text-size: 14px;
  --cb-max-width: 1240px;
  --cb-section-gap: 64px;
  --cb-section-gap-mobile: 32px;
  --cb-card-gap: 32px;
  --cb-card-gap-mobile: 16px;
}

html, body {
  height: 100%;
  background: var(--cb-bg-gradient);
  color: var(--cb-text);
  font-family: var(--cb-font);
  font-size: var(--cb-text-size);
  line-height: 1.7;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 320px;
  scroll-behavior: smooth;
}

body.cozybible-body {
  min-height: 100vh;
  background: var(--cb-bg-gradient);
  color: var(--cb-text-dark);
  font-size: var(--cb-text-size);
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--cb-link);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: var(--cb-link-hover);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--cb-radius-min);
  box-shadow: 0 2px 12px 0 rgba(180, 155, 90, 0.06);
}

h1, h2, h3, h4, h5 {
  color: var(--cb-text-dark);
  font-family: var(--cb-font);
  margin-top: 0;
  margin-bottom: 0.6em;
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1 { font-size: var(--cb-h1); }
h2 { font-size: var(--cb-h2); }
h3 { font-size: var(--cb-h3); }
h4, h5 { font-size: 1rem; }

section {
  padding: var(--cb-section-gap) 0;
}

@media (max-width: 900px) {
  section { padding: var(--cb-section-gap-mobile) 0; }
}

/* Header */
.cozybible-header {
  background: var(--cb-bg-gradient-2);
  box-shadow: var(--cb-shadow);
  border-bottom: 1px solid var(--cb-border-light);
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 68px;
}
.cozybible-header__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
}

.cozybible-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cozybible-brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 8px 0 rgba(201,161,77,0.08);
  background: #fff;
}
.cozybible-brand__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--cb-text-dark);
  letter-spacing: 0.03em;
}

.cozybible-nav {
  margin-left: 32px;
}
.cozybible-nav__list {
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.cozybible-nav__link {
  font-weight: 600;
  color: var(--cb-link);
  padding: 7px 12px;
  border-radius: var(--cb-radius-btn);
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.cozybible-nav__link:hover,
.cozybible-nav__link:focus {
  background: var(--cb-gold-light);
  color: var(--cb-link-hover);
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(201,161,77,0.07);
}

@media (max-width: 900px) {
  .cozybible-header__inner {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 8px 12px;
  }
  .cozybible-nav__list {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* HERO */
.cozybible-hero {
  background: var(--cb-bg-gradient);
  min-height: 420px;
  display: flex;
  align-items: center;
  box-shadow: var(--cb-shadow);
}
.cozybible-hero__container {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 32px;
}
.cozybible-hero__left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0 32px 0;
}
.cozybible-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25em;
  color: var(--cb-text-dark);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(201,161,77,0.03);
}
.cozybible-hero__tagline {
  font-size: 1.13rem;
  color: var(--cb-text-light);
  margin-bottom: 1.2em;
  font-weight: 500;
}
.cozybible-hero__features {
  margin: 0 0 1.6em 0;
  padding: 0;
  list-style: none;
}
.cozybible-hero__features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 0.7em;
  color: var(--cb-text);
  font-size: 1em;
}
.cozybible-hero__features li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cb-gold);
  opacity: 0.22;
}

.cozybible-hero__ctas {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.cozybible-cta {
  display: inline-block;
  background: var(--cb-cta-bg);
  color: var(--cb-cta-text);
  font-weight: 700;
  font-size: 1em;
  border: none;
  border-radius: var(--cb-radius-btn);
  padding: 12px 30px;
  box-shadow: 0 2px 12px 0 rgba(201,161,77,0.08);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  outline: none;
  letter-spacing: 0.01em;
}
.cozybible-cta:hover,
.cozybible-cta:focus {
  background: var(--cb-cta-bg-hover);
  color: var(--cb-cta-text-hover);
  box-shadow: 0 4px 16px 0 rgba(201,161,77,0.15);
}
.cozybible-cta--secondary {
  background: #fff;
  color: var(--cb-gold);
  border: 1px solid var(--cb-gold-light);
  box-shadow: none;
}
.cozybible-cta--secondary:hover,
.cozybible-cta--secondary:focus {
  background: var(--cb-gold-light);
  color: var(--cb-link-hover);
  border-color: var(--cb-gold);
  box-shadow: 0 2px 8px 0 rgba(201,161,77,0.07);
}

.cozybible-hero__right {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}
.cozybible-hero__image {
  width: 320px;
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--cb-card-radius-alt);
  box-shadow: 0 6px 32px 0 rgba(201,161,77,0.13);
  margin-bottom: 12px;
}
.cozybible-hero__mini {
  font-size: 0.98em;
  color: var(--cb-text-light);
  text-align: center;
  margin-top: 0;
}

@media (max-width: 900px) {
  .cozybible-hero__container {
    flex-direction: column;
    gap: 32px;
    padding: 0 12px;
    align-items: stretch;
  }
  .cozybible-hero__left, .cozybible-hero__right {
    padding: 0;
    width: 100%;
    min-width: 0;
  }
  .cozybible-hero__right {
    align-items: center;
    margin-bottom: 0;
  }
  .cozybible-hero__image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 12px auto;
  }
}

/* --- WORLD SECTION --- */
.cozybible-world {
  background: var(--cb-bg-gradient-2);
}
.cozybible-world__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: stretch;
  padding: 0 32px;
}
.cozybible-world__media {
  flex: 0 0 340px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.cozybible-world__image {
  width: 320px;
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow-card);
}
.cozybible-world__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow-card);
  padding: 36px 36px 32px 36px;
  position: relative;
  z-index: 1;
}
.cozybible-world__title {
  font-size: 1.6rem;
  margin-bottom: 0.7em;
}
.cozybible-world__lead {
  color: var(--cb-text-light);
  margin-bottom: 1.3em;
}
.cozybible-world__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
}
.cozybible-world__block {
  background: var(--cb-bg-gradient-2);
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow);
  padding: 22px 18px 18px 18px;
  min-width: 0;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.cozybible-world__block h3 {
  font-size: 1.02em;
  margin-bottom: 0.4em;
  color: var(--cb-gold);
  font-weight: 700;
}
.cozybible-world__block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cozybible-world__block ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.5em;
  color: var(--cb-text);
  font-size: 0.98em;
}
.cozybible-world__block ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cb-gold);
  opacity: 0.18;
}

@media (max-width: 1100px) {
  .cozybible-world__inner {
    flex-direction: column;
    gap: 28px;
    padding: 0 12px;
  }
  .cozybible-world__media,
  .cozybible-world__content {
    width: 100%;
    max-width: 100%;
  }
  .cozybible-world__image {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .cozybible-world__blocks {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cozybible-world__content {
    padding: 22px 10px 22px 10px;
  }
}

/* --- CONTENT SECTION --- */
.cozybible-content {
  background: #fff;
}
.cozybible-content__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.cozybible-content__title {
  margin-bottom: 1.5em;
  text-align: center;
  color: var(--cb-gold);
  font-size: 1.4rem;
  font-weight: 800;
}
.cozybible-content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--cb-card-gap);
  margin-bottom: 2.2em;
}
.cozybible-content__card {
  background: var(--cb-bg-gradient-2);
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow-card);
  padding: 28px 22px 22px 22px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 0.7em;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid transparent;
}
.cozybible-content__card:hover {
  box-shadow: 0 6px 32px 0 rgba(201,161,77,0.15);
  border-color: var(--cb-gold-light);
  transform: translateY(-3px) scale(1.015);
}
.cozybible-content__card h3 {
  color: var(--cb-gold);
  font-size: 1.08em;
  margin-bottom: 0.4em;
  font-weight: 700;
}
.cozybible-content__card p {
  color: var(--cb-text);
  margin: 0;
  font-size: 0.99em;
}
.cozybible-content__stats {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  font-size: 1em;
  color: var(--cb-text-light);
  background: var(--cb-bg-gradient);
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow);
  padding: 16px 24px;
  margin: 0 auto;
  max-width: 600px;
}

.cozybible-content__stats strong {
  color: var(--cb-gold);
  font-weight: 700;
}

@media (max-width: 900px) {
  .cozybible-content__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--cb-card-gap-mobile);
  }
}
@media (max-width: 600px) {
  .cozybible-content__grid {
    grid-template-columns: 1fr;
    gap: var(--cb-card-gap-mobile);
  }
  .cozybible-content__inner {
    padding: 0 8px;
  }
  .cozybible-content__stats {
    flex-direction: column;
    gap: 12px;
    padding: 12px 8px;
  }
}

/* --- PLAY SECTION --- */
.cozybible-play {
  background: var(--cb-bg-gradient-2);
}
.cozybible-play__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: stretch;
  padding: 0 32px;
}
.cozybible-play__media {
  flex: 0 0 340px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.cozybible-play__image {
  width: 320px;
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow-card);
}
.cozybible-play__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow-card);
  padding: 36px 36px 32px 36px;
  position: relative;
  z-index: 1;
}
.cozybible-play__title {
  font-size: 1.3rem;
  color: var(--cb-gold);
  margin-bottom: 0.8em;
  font-weight: 800;
}
.cozybible-play__content h3 {
  color: var(--cb-text-dark);
  font-size: 1.06em;
  margin-bottom: 0.5em;
  font-weight: 700;
}
.cozybible-play__content ul,
.cozybible-play__content ol {
  margin: 0 0 1em 0;
  padding: 0;
  list-style: none;
}
.cozybible-play__content ul li,
.cozybible-play__content ol li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.5em;
  color: var(--cb-text);
  font-size: 0.98em;
}
.cozybible-play__content ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cb-gold);
  opacity: 0.18;
}
.cozybible-play__content ol li {
  counter-increment: cb-counter;
}
.cozybible-play__content ol li::before {
  content: counter(cb-counter) ".";
  position: absolute;
  left: 0; top: 0;
  color: var(--cb-gold);
  font-weight: 700;
  font-size: 0.98em;
  opacity: 0.8;
  width: 18px;
}

@media (max-width: 1100px) {
  .cozybible-play__inner {
    flex-direction: column;
    gap: 28px;
    padding: 0 12px;
  }
  .cozybible-play__media,
  .cozybible-play__content {
    width: 100%;
    max-width: 100%;
  }
  .cozybible-play__image {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .cozybible-play__content {
    padding: 22px 10px 22px 10px;
  }
}

/* --- RHYTHM SECTION --- */
.cozybible-rhythm {
  background: #fff;
}
.cozybible-rhythm__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.cozybible-rhythm__title {
  text-align: center;
  color: var(--cb-gold);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.3em;
}
.cozybible-rhythm__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.cozybible-rhythm__steps h3 {
  color: var(--cb-text-dark);
  font-size: 1.04em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.cozybible-rhythm__steps ol,
.cozybible-rhythm__steps ul {
  margin: 0 0 1em 0;
  padding: 0;
  list-style: none;
}
.cozybible-rhythm__steps ol li,
.cozybible-rhythm__steps ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.5em;
  color: var(--cb-text);
  font-size: 0.98em;
}
.cozybible-rhythm__steps ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cb-gold);
  opacity: 0.18;
}
.cozybible-rhythm__steps ol li {
  counter-increment: cb-rhythm;
}
.cozybible-rhythm__steps ol li::before {
  content: counter(cb-rhythm) ".";
  position: absolute;
  left: 0; top: 0;
  color: var(--cb-gold);
  font-weight: 700;
  font-size: 0.98em;
  opacity: 0.8;
  width: 18px;
}

@media (max-width: 900px) {
  .cozybible-rhythm__steps {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cozybible-rhythm__inner {
    padding: 0 8px;
  }
}

/* --- FEATURES SECTION --- */
.cozybible-features {
  background: var(--cb-bg-gradient-2);
}
.cozybible-features__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.cozybible-features__title {
  text-align: center;
  color: var(--cb-gold);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.3em;
}
.cozybible-features__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
  margin: 0 auto;
  max-width: 900px;
  padding: 0;
  list-style: none;
}
.cozybible-features__list li {
  background: #fff;
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow);
  padding: 18px 20px;
  font-size: 1em;
  color: var(--cb-text);
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.cozybible-features__list li strong {
  color: var(--cb-gold);
  margin-right: 0.3em;
  font-weight: 700;
}

@media (max-width: 700px) {
  .cozybible-features__list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }
  .cozybible-features__inner {
    padding: 0 8px;
  }
}

/* --- FAQ SECTION --- */
.cozybible-faq {
  background: #fff;
}
.cozybible-faq__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.cozybible-faq__title {
  text-align: center;
  color: var(--cb-gold);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.3em;
}
.cozybible-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.cozybible-faq__item {
  background: var(--cb-faq-bg);
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow);
  padding: 24px 18px 18px 18px;
  min-width: 0;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  border: 1px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.cozybible-faq__item:hover {
  box-shadow: 0 6px 32px 0 rgba(201,161,77,0.13);
  border-color: var(--cb-gold-light);
}
.cozybible-faq__item h3 {
  color: var(--cb-gold);
  font-size: 1.01em;
  margin-bottom: 0.4em;
  font-weight: 700;
}
.cozybible-faq__item p {
  color: var(--cb-text);
  margin: 0;
  font-size: 0.98em;
}

@media (max-width: 900px) {
  .cozybible-faq__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .cozybible-faq__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .cozybible-faq__inner {
    padding: 0 8px;
  }
}

/* --- GALLERY SECTION --- */
.cozybible-gallery {
  background: var(--cb-bg-gradient-2);
}
.cozybible-gallery__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.cozybible-gallery__title {
  text-align: center;
  color: var(--cb-gold);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.3em;
}
.cozybible-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 auto;
}
.cozybible-gallery__item {
  background: #fff;
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cozybible-gallery__item:hover {
  box-shadow: 0 8px 32px 0 rgba(201,161,77,0.18);
  transform: translateY(-3px) scale(1.012);
}
.cozybible-gallery__item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--cb-card-radius) var(--cb-card-radius) 0 0;
  box-shadow: none;
}
.cozybible-gallery__item figcaption {
  font-size: 0.96em;
  color: var(--cb-text-light);
  padding: 10px 12px 12px 12px;
  background: transparent;
}

@media (max-width: 1100px) {
  .cozybible-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .cozybible-gallery__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .cozybible-gallery__inner {
    padding: 0 8px;
  }
  .cozybible-gallery__item img {
    height: 120px;
  }
}

/* --- REVIEWS SECTION --- */
.cozybible-reviews {
  background: #fff;
}
.cozybible-reviews__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.cozybible-reviews__title {
  text-align: center;
  color: var(--cb-gold);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1.3em;
}
.cozybible-reviews__list {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}
.cozybible-reviews__item {
  background: var(--cb-review-bg);
  border-radius: var(--cb-card-radius-alt);
  box-shadow: var(--cb-shadow-card);
  padding: 26px 22px 22px 22px;
  min-width: 0;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  border: 1px solid transparent;
  transition: box-shadow 0.2s, border-color 0.2s;
  max-width: 320px;
}
.cozybible-reviews__item:hover {
  box-shadow: 0 6px 32px 0 rgba(201,161,77,0.13);
  border-color: var(--cb-gold-light);
}
.cozybible-reviews__item h3 {
  color: var(--cb-gold);
  font-size: 1em;
  margin-bottom: 0.4em;
  font-weight: 700;
}
.cozybible-reviews__item p {
  color: var(--cb-text);
  margin: 0;
  font-size: 0.98em;
  font-style: italic;
}

@media (max-width: 900px) {
  .cozybible-reviews__list {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .cozybible-reviews__inner {
    padding: 0 8px;
  }
}

/* --- EXTRA SECTION --- */
.cozybible-extra {
  background: var(--cb-bg-gradient);
}
.cozybible-extra__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: stretch;
  padding: 0 32px;
}
.cozybible-extra__media {
  flex: 0 0 340px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.cozybible-extra__image {
  width: 320px;
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow-card);
}
.cozybible-extra__text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  border-radius: var(--cb-card-radius);
  box-shadow: var(--cb-shadow-card);
  padding: 36px 36px 32px 36px;
  position: relative;
  z-index: 1;
}
.cozybible-extra__title {
  font-size: 1.2rem;
  color: var(--cb-gold);
  margin-bottom: 0.8em;
  font-weight: 800;
}
.cozybible-extra__text ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cozybible-extra__text ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 0.5em;
  color: var(--cb-text);
  font-size: 0.98em;
}
.cozybible-extra__text ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cb-gold);
  opacity: 0.18;
}

@media (max-width: 1100px) {
  .cozybible-extra__inner {
    flex-direction: column;
    gap: 28px;
    padding: 0 12px;
  }
  .cozybible-extra__media,
  .cozybible-extra__text {
    width: 100%;
    max-width: 100%;
  }
  .cozybible-extra__image {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .cozybible-extra__text {
    padding: 22px 10px 22px 10px;
  }
}

/* --- FOOTER --- */
.cozybible-footer {
  background: #fff;
  border-top: 1px solid var(--cb-border-light);
  box-shadow: 0 -2px 12px 0 rgba(201,161,77,0.05);
  padding: 0;
}
.cozybible-footer__inner {
  max-width: var(--cb-max-width);
  margin: 0 auto;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 32px 20px 32px;
}
.cozybible-footer__col {
  flex: 1 1 0;
  min-width: 0;
  margin-bottom: 16px;
}
.cozybible-footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--cb-text-dark);
  margin-bottom: 0.5em;
  font-size: 1.05em;
}
.cozybible-footer__logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(201,161,77,0.07);
}
.cozybible-footer__col h4 {
  font-size: 1em;
  color: var(--cb-gold);
  margin-bottom: 0.7em;
  font-weight: 700;
}
.cozybible-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cozybible-footer__col ul li {
  margin-bottom: 0.5em;
}
.cozybible-footer__col ul li a {
  color: var(--cb-link);
  font-size: 0.98em;
  transition: color 0.18s;
}
.cozybible-footer__col ul li a:hover {
  color: var(--cb-link-hover);
  text-decoration: underline;
}
.cozybible-footer__col p {
  color: var(--cb-text-light);
  font-size: 0.95em;
  margin-top: 0.6em;
  margin-bottom: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .cozybible-footer__inner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 8px 10px 8px;
  }
  .cozybible-footer__col {
    margin-bottom: 10px;
  }
}

/* --- COOKIE BANNER --- */
.cozybible-cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: rgba(248,245,242,0.98);
  box-shadow: 0 -2px 24px 0 rgba(201,161,77,0.11);
  border-top: 1px solid var(--cb-border);
  padding: 0;
  display: none;
  animation: cb-cookie-in 0.4s;
}
@keyframes cb-cookie-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cozybible-cookie__inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 18px 18px 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.cozybible-cookie__inner p {
  color: var(--cb-text);
  font-size: 0.96em;
  margin: 0;
}
.cozybible-cookie__accept {
  background: var(--cb-cta-bg);
  color: var(--cb-cta-text);
  font-weight: 700;
  font-size: 0.98em;
  border: none;
  border-radius: var(--cb-radius-btn);
  padding: 8px 22px;
  box-shadow: 0 2px 8px 0 rgba(201,161,77,0.08);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;