/** Shopify CDN: Minification failed

Line 204:0 Unexpected "}"

**/
/* White Angelica Font Declaration */
@font-face {
  font-family: 'White Angelica';
  src: url('/cdn/shop/files/White_Angelica.woff?v=1758571772') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   Video Page Styles
   Uses theme variables and design system
   ========================================================================== */

/* Container */
.video-page {
  padding: 1.5rem 0 3rem;
}

.video-page__container {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  padding: 0 var(--space-outer, 1.5rem);
}

/* ==========================================================================
   Mobile/Desktop Products Visibility
   Products shown after chapters on mobile, in sidebar on desktop
   ========================================================================== */

.video-page__products-mobile {
  display: block;
  margin-top: 1.5rem;
}

.video-page__products-desktop {
  display: none;
}

@media (min-width: 750px) {
  .video-page__products-mobile {
    display: none;
  }

  .video-page__products-desktop {
    display: block;
  }
}

/* ==========================================================================
   Breadcrumbs (styled to match stitch-page)
   ========================================================================== */

.video-page__breadcrumb {
  margin-bottom: 2rem;
}

.video-page__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-body-50);
  color: var(--color-text-meta);
}

.video-page__breadcrumb-list li {
  display: flex;
  align-items: center;
}

.video-page__breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  opacity: 0.5;
}

.video-page__breadcrumb-list a {
  color: var(--color-text-meta);
  text-decoration: none;
  transition: color 0.2s ease;
}

.video-page__breadcrumb-list a:hover {
  color: var(--color-text);
}

.video-page__breadcrumb-list li:last-child {
  color: var(--color-text);
}

/* ==========================================================================
   Title
   ========================================================================== */

.video-page__title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: rgb(var(--color-foreground));
}

@media screen and (min-width: 750px) {
  .video-page__title {
    font-size: 32px;
  }
}

/* ==========================================================================
   Intro / Short Summary (above video) - Collapsible on mobile
   ========================================================================== */

.video-page__intro-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.video-page__intro {
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: var(--font-size-body-100, 15px);
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.8);
  width: 100%;
  max-width: 100%;
}

.video-page__intro p {
  margin: 0;
}

/* Toggle button - hidden (feature disabled) */
.video-page__intro-toggle {
  display: none;
}

/* Remove spacing from Shopify's rich text wrapper */
.video-page__intro .metafield-rich_text_field {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.video-page__intro .metafield-rich_text_field > *:first-child {
  margin-top: 0 !important;
}

/* ==========================================================================
   Meta Tags Row
   ========================================================================== */

/* Meta Tags Row */
.video-page__meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
}

.video-page__meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: var(--font-size-body-75, 13px);
  color: rgba(var(--color-foreground), 0.7);
  padding: 4px 14px;
  border-radius: 100px;
  background: rgba(var(--color-foreground), 0.04);
  text-decoration: none;
  transition: all 0.2s ease;
}

.video-page__meta-tag:hover {
  background: rgba(var(--color-foreground), 0.08);
  color: rgb(var(--color-foreground));
}

.video-page__meta-tag svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.video-page__meta-tag--category {
  background-color: #eee7f1;
  color: rgb(var(--color-foreground));
}

.video-page__meta-tag--category:hover {
  background-color: #e4dce7;
}
}

.video-page__meta-tag--category {
  color: var(--color-text-link, #2563eb);
  border-color: rgba(37, 99, 235, 0.25);
}

.video-page__meta-tag--category:hover {
  background: rgba(37, 99, 235, 0.08);
}

/* ==========================================================================
   Main Grid (Two Column Layout)
   ========================================================================== */

.video-page__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 990px) {
  .video-page__grid {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
}

/* ==========================================================================
   Main Column
   ========================================================================== */

.video-page__main {
  min-width: 0;
}

/* Video Player - Lite YouTube Embed */
.video-page__player {
  position: relative;
  margin-bottom: 0.75rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* YouTube Link */
.video-page__youtube-link {
  display: block;
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #6c8273;
  text-decoration: none;
  transition: color 0.2s ease;
}

.video-page__youtube-link:hover {
  color: #5a6e62;
  text-decoration: underline;
}

lite-youtube {
  background-color: #000;
  position: relative;
  display: block;
  contain: content;
  background-position: center center;
  background-size: cover;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  width: 100%;
}

lite-youtube::before {
  display: none; /* Removed gradient overlay */
}

lite-youtube > iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
}

lite-youtube > .lty-playbtn {
  display: block;
  width: 68px;
  height: 48px;
  position: absolute;
  cursor: pointer;
  transform: translate3d(-50%, -50%, 0);
  top: 50%;
  left: 50%;
  z-index: 1;
  background-color: transparent;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
  filter: grayscale(100%);
  transition: filter .1s cubic-bezier(0, 0, 0.2, 1);
  border: none;
}

lite-youtube:hover > .lty-playbtn,
lite-youtube .lty-playbtn:focus {
  filter: none;
}

lite-youtube.lyt-activated {
  cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated > .lty-playbtn {
  opacity: 0;
  pointer-events: none;
}

.lyt-visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ==========================================================================
   Kapitel (Chapters) - Show More/Less
   ========================================================================== */

.video-page__chapters {
  background: #fff;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.video-page__chapters-title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: normal;
  margin: 0 0 1rem;
  color: rgb(var(--color-foreground));
}

.video-page__chapters-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Single column layout - removed 2-column grid for desktop */

/* DISABLED: Expand/collapse - all chapters now visible
   Uncomment below to re-enable expand/collapse functionality

.video-page__chapters-list li.video-page__chapter-hidden-mobile {
  display: none;
}

.video-page__chapters-list.is-expanded li.video-page__chapter-hidden-mobile {
  display: flex;
}

.video-page__chapters-list li.video-page__chapter-hidden {
  display: none;
}

.video-page__chapters-list.is-expanded li.video-page__chapter-hidden {
  display: flex;
}
*/

/* Hide toggle button if 3 or fewer chapters (nothing to expand) */
.video-page__chapters-toggle[data-hidden-mobile="0"]:not(.is-expanded) {
  display: none;
}

/* Toggle Button - DISABLED: hidden since all chapters are now visible */
.video-page__chapters-toggle {
  display: none;
  /* Was: display: inline-flex; - uncomment to re-enable */
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: var(--font-size-body-75, 13px);
  font-weight: 600;
  color: #6c8273;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.video-page__chapters-toggle:hover {
  color: #5a6e62;
}

.video-page__chapters-toggle-icon {
  transition: transform 0.3s ease;
}

.video-page__chapters-toggle.is-expanded .video-page__chapters-toggle-icon {
  transform: rotate(180deg);
}

.video-page__chapters-dot {
  display: none;
}

.video-page__chapters-list li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.3;
  padding: 4px 0;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.06);
  cursor: pointer;
  transition: background-color 0.15s ease;
  margin: 0 -8px;
  padding-left: 8px;
  padding-right: 8px;
  border-radius: 4px;
}

.video-page__chapters-list li:hover {
  background-color: rgba(108, 130, 115, 0.08);
}

.video-page__chapters-list li:hover .video-page__chapter-time {
  color: #5a6e62;
}

.video-page__chapters-list li:hover .video-page__chapter-title {
  color: rgb(var(--color-foreground));
}

.video-page__chapters-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.video-page__chapter-time {
  flex-shrink: 0;
  min-width: 40px;
  font-weight: 600;
  color: #6c8273;
}

.video-page__chapter-title {
  color: rgba(var(--color-foreground), 0.8);
}

/* ==========================================================================
   Summary & Instructions
   ========================================================================== */

.video-page__summary {
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: var(--font-size-body-100, 15px);
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.85);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(var(--color-foreground), 0.08);
}

.video-page__summary strong {
  font-family: 'Figtree Bold', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
}

.video-page__section-title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: var(--font-size-heading-4-base, 20px);
  font-weight: normal;
  margin: 0 0 1rem;
  color: rgb(var(--color-foreground));
}

/* Instructions Card */
.video-page__instructions-card {
  background: #fff;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 6px;
  padding: 24px;
  margin-top: 1.5rem;
}

.video-page__instructions-card-title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin: 0 0 20px;
  padding-bottom: 0;
  border-bottom: none;
  color: rgb(var(--color-foreground));
}

.video-page__instructions-card-title::before {
  display: none;
}

/* Instructions Read More - Collapsible on mobile */
.video-page__instructions-content-wrapper {
  position: relative;
  max-height: 270px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* Desktop: always expanded */
@media (min-width: 750px) {
  .video-page__instructions-content-wrapper {
    max-height: none;
    overflow: visible;
  }
}

.video-page__instructions-content-wrapper.is-expanded {
  max-height: none;
  overflow: visible;
}

.video-page__instructions-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: var(--font-size-body-75, 13px);
  font-weight: 600;
  color: #6c8273;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.video-page__instructions-toggle:hover {
  color: #5a6e62;
}

.video-page__instructions-toggle-icon {
  transition: transform 0.3s ease;
}

.video-page__instructions-toggle.is-expanded .video-page__instructions-toggle-icon {
  transform: rotate(180deg);
}

/* Hide toggle if content is short enough */
.video-page__instructions-toggle.is-hidden {
  display: none;
}

/* Hide toggle on desktop */
@media (min-width: 750px) {
  .video-page__instructions-toggle {
    display: none;
  }
}

.video-page__instructions-card-content {
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.85);
}

.video-page__instructions-card-content h3 {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: normal;
  margin: 24px 0 12px;
  color: rgb(var(--color-foreground));
}

.video-page__instructions-card-content h3:first-child {
  margin-top: 0;
}

.video-page__instructions-card-content p {
  margin-bottom: 12px;
}

.video-page__instructions-card-content ol,
.video-page__instructions-card-content ul {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}

.video-page__instructions-card-content li {
  position: relative;
  margin-bottom: 10px;
  color: rgba(var(--color-foreground), 0.8);
  padding-left: 24px;
}

/* Custom bullet for unordered lists to match sidebar */
.video-page__instructions-card-content ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6c8273;
}

/* Custom numbers for ordered lists */
.video-page__instructions-card-content ol {
  counter-reset: video-instructions-counter;
}

.video-page__instructions-card-content ol li {
  counter-increment: video-instructions-counter;
}

.video-page__instructions-card-content ol li::before {
  content: counter(video-instructions-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 600;
  color: #6c8273;
  width: 20px;
}

.video-page__instructions-card-content li:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.video-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Sidebar - not sticky, scrolls with page */

/* Sidebar Products - hidden on mobile when in sidebar, shown on desktop */
.video-page__sidebar-products {
  padding: 0.5rem 0;
}

/* Hide sidebar products section ONLY when inside the sidebar (not in mobile wrapper) */
.video-page__sidebar .video-page__sidebar-products {
  display: none;
}

@media screen and (min-width: 750px) {
  .video-page__sidebar .video-page__sidebar-products {
    display: block;
  }
}

@media screen and (min-width: 990px) {
  .video-page__sidebar-products {
    padding-top: 0;
  }
}

/* Sidebar Section Title */
.video-page__sidebar-section-title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  color: rgb(var(--color-foreground));
  margin: 0 0 1rem;
}

/* Simple Links List */
.video-page__sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-page__sidebar-links li {
  margin-bottom: 0.4rem;
}

.video-page__sidebar-links a {
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: var(--font-size-body-75, 13px);
  color: var(--color-text-link, #2563eb);
  text-decoration: none;
}

.video-page__sidebar-links a:hover {
  text-decoration: underline;
}

/* Product Card (Featured in Sidebar) - Product Duo Style */
.video-page__product-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.video-page__product-card-image {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.video-page__product-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.video-page__product-card-image:hover img {
  transform: scale(1.05);
}

.video-page__product-card-content {
  padding: 16px;
}

.video-page__product-card-title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  margin: 0 0 4px;
  color: rgb(var(--color-foreground));
}

.video-page__product-card-price {
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgb(var(--color-foreground));
  margin: 0 0 12px;
}

.video-page__product-card-link {
  display: block;
  width: 100%;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #6c8273;
  text-decoration: none;
  text-align: center;
  transition: text-decoration 0.2s ease;
}

.video-page__product-card-link:hover {
  text-decoration: underline;
}

/* Addon Section Title - matches sidebar-section-title style */
.video-page__addon-section-title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  color: rgb(var(--color-foreground));
  margin: 1.5rem 0 1rem;
}

/* Addon Product Cards */
.video-page__addon-products {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.video-page__addon-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 6px;
  padding: 10px 12px;
}

.video-page__addon-image {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
}

.video-page__addon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-page__addon-info {
  flex: 1;
  min-width: 0;
}

.video-page__addon-title {
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 2px;
  color: rgb(var(--color-foreground));
  line-height: 1.3;
}

.video-page__addon-price {
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: rgba(var(--color-foreground), 0.6);
}

.video-page__addon-btn {
  flex-shrink: 0;
  padding: 8px 14px;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #6c8273;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-page__addon-btn:hover {
  background: #5a6e62;
}

/* Product Form (Variant & Add to Cart) */
.video-page__product-form {
  margin-bottom: 12px;
}

.video-page__product-variants {
  margin-bottom: 8px;
}

.video-page__product-select {
  width: 100%;
  height: 40px;
  padding: 0 32px 0 12px;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  color: rgb(var(--color-foreground));
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.video-page__product-select:focus {
  outline: none;
  border-color: rgb(var(--color-foreground));
}

.video-page__product-atc-btn {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: #6c8273;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-page__product-atc-btn:hover {
  background: #5a6e62;
}

.video-page__product-atc-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.video-page__product-atc-btn {
  position: relative;
}

.video-page__product-atc-btn .btn__loading-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-page__product-atc-btn[data-loading="true"] span[data-add-to-cart-text] {
  opacity: 0;
}

.video-page__product-atc-btn[data-loading="true"] .btn__loading-wrap {
  opacity: 1;
}

/* Sidebar Cards (Materials & Pro Tip) */
.video-page__sidebar-card {
  background: #fff;
  border: 1px solid rgba(var(--color-foreground), 0.08);
  border-radius: 6px;
  padding: 16px;
  /* margin-top removed - flex gap handles spacing */
}

.video-page__sidebar-card-title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  margin: 0 0 16px;
  color: rgb(var(--color-foreground));
}

.video-page__sidebar-card-title::before {
  display: none;
}

.video-page__sidebar-card-content {
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.85);
}

.video-page__sidebar-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-page__sidebar-card-content li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  color: rgba(var(--color-foreground), 0.8);
}

.video-page__sidebar-card-content li:last-child {
  margin-bottom: 0;
}

.video-page__sidebar-card-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6c8273;
}

/* Materials Disclaimer */
.video-page__materials-disclaimer {
  margin: 1rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(var(--color-foreground), 0.5);
}

/* Pro Tip Card - Same as Materials */

/* Stitches Used */
.video-page__sidebar-stitches {
  padding: 0.25rem 0;
}

.video-page__sidebar-stitches-title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: normal;
  text-transform: none;
  letter-spacing: normal;
  color: rgb(var(--color-foreground));
  margin: 0 0 1rem;
}

.video-page__sidebar-stitches-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.video-page__stitch-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.4rem 0.65rem;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: var(--font-size-body-75, 13px);
  color: rgb(var(--color-foreground));
  background: #fff;
  border: 1px solid rgba(var(--color-foreground), 0.12);
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.video-page__stitch-tag:hover {
  border-color: rgba(var(--color-foreground), 0.25);
  background: rgba(var(--color-foreground), 0.02);
}

.video-page__stitch-tag svg {
  width: 10px;
  height: 10px;
  opacity: 0.4;
}

/* ==========================================================================
   Related Products & Videos (Full Width)
   ========================================================================== */

.video-page__related-products,
.video-page__related-videos {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
}

.video-page__related-title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: normal;
  margin: 0 0 1.5rem;
  color: rgb(var(--color-foreground));
}

.video-page__more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #6c8273;
  text-decoration: none;
  transition: color 0.2s ease;
}

.video-page__more-link:hover {
  color: #5a6e62;
  text-decoration: underline;
}

.video-page__more-link svg {
  flex-shrink: 0;
}

.video-page__products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media screen and (min-width: 750px) {
  .video-page__products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

/* Style product items as cards within the video page grid */
.video-page__products-grid .product-item {
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(var(--color-foreground), 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%; /* Ensure full height for equal cards */
}

.video-page__products-grid .product-item:hover {
  border-color: rgba(var(--color-foreground), 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  background: #fff;
}

/* Force white background on inner elements on hover */
.video-page__products-grid .product-item:hover .product-item__inner,
.video-page__products-grid .product-item:hover .product-item__media,
.video-page__products-grid .product-item:hover .product-item__meta {
  background: #fff;
}

.video-page__products-grid .product-item .product-item__image img {
  transition: transform 0.3s ease;
}

.video-page__products-grid .product-item:hover .product-item__image img {
  transform: scale(1.03);
}

.video-page__products-grid .product-item__meta {
  padding: 12px;
}

/* Related Videos Slider */
.video-page__videos-slider {
  position: relative;
  overflow: hidden;
}

.video-page__videos-slider .swiper-slide {
  width: 280px;
  height: auto;
}

@media screen and (min-width: 750px) {
  .video-page__videos-slider .swiper-slide {
    width: 300px;
  }
}

@media screen and (min-width: 990px) {
  .video-page__videos-slider .swiper-slide {
    width: calc(25% - 12px);
  }
}

/* Slider Navigation */
.video-page__slider-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

@media screen and (min-width: 990px) {
  .video-page__slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    pointer-events: none;
    margin-top: 0;
    padding: 0 0.5rem;
    z-index: 10;
  }
}

.video-page__slider-prev,
.video-page__slider-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(var(--color-foreground), 0.12);
  color: rgb(var(--color-foreground));
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.video-page__slider-prev:hover,
.video-page__slider-next:hover {
  background: rgb(var(--color-foreground, 51, 51, 51));
  border-color: rgb(var(--color-foreground, 51, 51, 51));
  color: #fff;
}

.video-page__slider-prev.swiper-button-disabled,
.video-page__slider-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* ==========================================================================
   Video Card (for Related Videos)
   ========================================================================== */

.video-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(var(--color-foreground), 0.06);
  transition: all 0.3s ease;
}

.video-card:hover {
  border-color: rgba(var(--color-foreground), 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.video-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-card__thumbnail {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(var(--color-foreground), 0.04);
}

.video-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-card:hover .video-card__thumbnail img {
  transform: scale(1.03);
}

.video-card__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.video-card__play-icon svg {
  width: 16px;
  height: 16px;
}

.video-card:hover .video-card__play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.video-card__duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  padding: 0.15rem 0.4rem;
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 3px;
}

.video-card__content {
  padding: 0.75rem;
}

.video-card__title {
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: var(--font-size-body-75, 13px);
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 0.35rem;
  color: rgb(var(--color-foreground));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 11px;
  color: rgba(var(--color-foreground), 0.5);
}

.video-card__type {
  padding: 0.1rem 0.35rem;
  background: rgba(var(--color-foreground), 0.04);
  border-radius: 3px;
}

/* ==========================================================================
   Mobile Adjustments
   ========================================================================== */

@media screen and (max-width: 989px) {
  .video-page__grid {
    display: flex;
    flex-direction: column;
  }
  
  .video-page__sidebar {
    order: 2;
  }
  
  .video-page__main {
    order: 1;
  }
}

/* ==========================================================================
   RTE Content Styling
   ========================================================================== */

.video-page .rte h1,
.video-page .rte h2,
.video-page .rte h3,
.video-page .rte h4,
.video-page .rte h5,
.video-page .rte h6 {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-weight: normal;
}

.video-page .rte p,
.video-page .rte li {
  font-family: 'Figtree Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   Linda's Personal Tip Card
   ========================================================================== */

/* Container styling to match the beige poster vibe */
.linda-tip-card {
  background-color: #F9F6ED; /* Warm beige from inspiration */
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

/* Header layout */
.linda-tip-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(0,0,0,0.1); /* Dashed line like a coupon/note */
}

/* Avatar styling */
.linda-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Typography */
.linda-title-wrapper {
  display: flex;
  flex-direction: column;
}

.linda-handwritten {
  font-family: 'White Angelica', cursive;
  font-size: 16px;
  color: #6A5B4E; /* Softer brown for handwriting */
  line-height: 1;
  margin-bottom: 8px; /* Added more space */
  transform: rotate(-2deg); /* Slight tilt for handwritten feel */
}

.linda-card-title {
  font-family: 'Ivy Ora Display', Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  margin: 0;
  color: #333;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Content */
.linda-card-content {
  position: relative;
  font-family: 'Ivy Ora Display', Georgia, serif; /* Matches your headings but italic looks like a letter */
  font-style: italic;
  font-size: 16px; /* Smaller font size as requested */
  color: #5A4A3E; /* Warm dark brown instead of generic grey */
  line-height: 1.5;
  margin-bottom: 24px;
  margin-top: 15px; /* Added space between header and text */
  z-index: 1;
}


/* Newsletter Section */
.linda-newsletter {
  background: white;
  padding: 14px; /* Reduced padding */
  border-radius: 6px; /* Reduced radius */
  box-shadow: none; /* Removed shadow */
}

.linda-newsletter-text {
  font-size: 0.85rem;
  margin: 0 0 12px 0;
  color: #333;
}

.linda-newsletter-text strong {
  font-family: 'Ivy Ora Display', Georgia, serif; /* Updated font */
  font-weight: normal; /* Ivy usually looks better normal weight */
  font-size: 1.1rem; /* Slightly larger for emphasis */
  display: block; /* Ensures it sits on its own line like a mini-header */
  margin-bottom: -12px; /* Negative margin to pull text up */
  line-height: 1; /* Tighter line height to pull text below closer */
}

.linda-input-group {
  display: flex;
  gap: 8px;
}

.linda-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.linda-submit-btn {
  background-color: #6c8273; /* Matches other buttons */
  color: white;
  border: none;
  border-radius: 4px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.linda-submit-btn:hover {
  background-color: #5a6e62;
}

.linda-success-message {
  color: #6c8273;
  font-size: 0.8rem;
  margin-top: 8px;
  font-weight: bold;
}

.linda-error-message {
  color: #c44;
  font-size: 0.8rem;
  margin-top: 8px;
  font-weight: bold;
}
