/* ============================================================
   NOIR LABS — style.css
   Pixel-accurate replica of noirlabs.co (Webflow reference)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Roboto+Mono:wght@300;400;500&display=swap');

/* ---- CSS Custom Properties (Noir Labs - Accurate Ref) ---- */
:root {
  --bg-primary: #D8D8D8;    /* Silver-grey outer canvas */
  --bg-sidebar: #F5F5F5;    /* Soft off-white sidebar card */
  --text-main: #333333;
  --text-heading: #000000;
  --text-muted: #666666;
  --accent-blue: #0071e3;
  --border-light: rgba(0,0,0,0.06);
  --shadow-sidebar: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-tactile: 0 2px 8px rgba(0,0,0,0.05);
  --font-sans: 'Overpass', sans-serif;
  --font-mono: 'Overpass', sans-serif; /* Unified to Overpass */
  --transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  --sidebar-width: 320px;
  --nav-height: 80px;
  --grid-color: rgba(0,0,0,0.05);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
  margin: 0;
  line-height: 1.6;
}

button, a { 
  cursor: pointer; 
  border: none; 
  background: none; 
  font: inherit; 
  color: inherit; 
  text-decoration: none; 
  outline: none; /* No focus outline/square */
}





/* --------------------------------------------------------
   TRANSITIONS (Swup.js)
-------------------------------------------------------- */
.transition-fade {
  opacity: 1;
}
/* Only animate the product content, not the sidebar */
.transition-product {
  opacity: 1;
  transition: opacity 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}
html.is-animating .transition-product {
  opacity: 0;
}

/* --------------------------------------------------------
   GENERIC CONTENT PAGES (About, Music)
-------------------------------------------------------- */
.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px;
}

.heading-large {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 40px;
  color: var(--color-white);
}

.about-hero {
  margin-bottom: 80px;
}

.contact-box a {
  color: var(--color-gray-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  transition: border-color 0.2s;
}

.contact-box a:hover {
  border-color: var(--color-white);
}

/* FAQ */
.faq-section {
  margin-bottom: 80px;
}

.section-title {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--color-gray-soft);
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.accordion-trigger {
  padding: 20px 0;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--color-gray-soft);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 20px;
}

/* MUSIC */
.music-releases {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.release-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.release-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--color-border);
}

.release-meta {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  font-size: 0.75rem;
  color: var(--color-gray-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.song-title {
  font-size: 2rem;
  margin-bottom: 5px;
}

.artist-name {
  font-size: 1.2rem;
  color: var(--color-gray-soft);
  margin-bottom: 30px;
}

.release-links {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.release-links a {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}

.release-description {
  line-height: 1.6;
  color: var(--color-gray-soft);
}

.release-video {
  margin-top: 40px;
  aspect-ratio: 16/9;
  border: 1px solid var(--color-border);
}

.release-video iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .release-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============================================================
   NAV  (fixed, 90px tall — matches .side-nav height:90px)
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-primary);
  height: var(--nav-height);
  border-bottom: 1px solid var(--grid-color);
}

/* push page content below fixed nav */
body > main,
body > .bundles-section,
body > .newsletter-bar,
.page-wrapper { margin-top: 0; }

main {
  padding-top: var(--nav-height);
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 100vh;
}


.nav-inner {
  max-width: 100%;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

/* Logo — fixed left edge inside nav, matching .brand-container */
.nav-logo {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  transition: transform var(--transition);
}
.nav-logo:hover img {
  transform: scale(1.08);
}
.nav-logo img {
  height: 36px;
  width: auto;
  transition: transform 0.3s ease;
}

/* Nav links — centered in bar */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 15px; /* smaller, more precise */
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: color var(--transition), transform var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--text-main);
  transition: width var(--transition);
}
.nav-links a:hover {
  text-shadow: 0 0 10px rgba(0,0,0,0.1);
  transform: scale(1.05);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active { color: var(--text-main); font-weight: 600; opacity: 1; }
.nav-links a.active::after {
  width: 100%;
}

/* Nav Subscribe Popout CSS */
.nav-subscribe-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  height: var(--nav-height);
}
.nav-subscribe-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-main);
  cursor: pointer;
  padding: 0;
  transition: color var(--transition), transform var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}
.nav-subscribe-btn::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: var(--text-main);
  transition: width var(--transition);
}
.nav-subscribe-wrapper:hover .nav-subscribe-btn {
  text-shadow: 0 0 10px rgba(0,0,0,0.1);
  transform: scale(1.05);
}
.nav-subscribe-wrapper:hover .nav-subscribe-btn::after {
  width: 100%;
}
.nav-subscribe-popout {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  background: rgba(245, 245, 245, 0.85);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  pointer-events: none;
  z-index: 100;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out, visibility 0.25s;
  text-transform: none;
}
@media (hover: hover) and (pointer: fine) {
  .nav-subscribe-wrapper:hover .nav-subscribe-popout {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-subscribe-wrapper:hover .popout-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.05s;
  }
}
.popout-content {
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.3s ease-out, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.popout-msg {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: normal;
}
.popout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.popout-form input {
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg-sidebar);
}
.popout-form .btn-subscribe {
  width: 100%;
  background: var(--text-heading);
  color: #FFFFFF;
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.popout-form .btn-subscribe:hover {
  opacity: 0.8;
}

/* Account Icon */
.nav-account-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: transform var(--transition);
}
.nav-account-icon::after {
  display: none !important;
}
.nav-account-icon:hover {
  transform: scale(1.1);
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--main-black);
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--static);
  flex-direction: column;
  padding: 8px 0 16px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  z-index: 998;
}
.mobile-nav a {
  display: block;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--main-black);
  padding: 12px 24px;
  line-height: 1.4;
}
.mobile-nav a:hover { opacity: 0.6; }
.site-header.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.nav-open .hamburger span:nth-child(2) { opacity: 0; }
.site-header.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.nav-open .mobile-nav { display: flex; }

/* Mobile Subscribe Panel */
.mobile-subscribe-wrapper {
  display: flex;
  flex-direction: column;
}
.mobile-subscribe-btn {
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--main-black);
  padding: 12px 24px;
  cursor: pointer;
  line-height: 1.4;
  width: 100%;
  transition: opacity var(--transition);
}
.mobile-subscribe-btn:hover {
  opacity: 0.6;
}
.mobile-subscribe-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 48px; 
}
.mobile-subscribe-panel.active {
  max-height: 300px;
  padding-bottom: 12px;
}
.nav-account-icon-mobile {
  padding: 12px 24px;
  color: var(--main-black);
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
}
.nav-account-icon-mobile svg {
  width: 28px;
  height: 28px;
}
.nav-account-icon-mobile:hover {
  opacity: 0.6;
}

/* --- Cookie Consent Pill --- */
.cookie-consent-pill {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #000000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 10px 10px 24px;
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 9999;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  white-space: nowrap;
}
.cookie-consent-pill.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
.cookie-actions {
  display: flex;
  gap: 8px;
}
.btn-cookie {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}
#cookie-accept {
  background: #FFFFFF;
  color: #000000;
}
#cookie-accept:hover {
  background: #E0E0E0;
  transform: scale(1.05);
}
#cookie-reject {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.8;
}
#cookie-reject:hover {
  opacity: 1;
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .cookie-consent-pill {
    width: 90%;
    flex-direction: column;
    padding: 20px;
    border-radius: 20px;
    gap: 16px;
    text-align: center;
    white-space: normal;
  }
}

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.page-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   SIDEBAR & PRODUCT GRID
   ============================================================ */
.products-layout {
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr;
  gap: 100px;
  align-items: flex-start; /* Sidebar stays anchored to top */
  height: calc(100vh - var(--nav-height));
  max-height: calc(100vh - var(--nav-height));
  overflow: hidden; /* Zero-scroll environment */
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px; /* Reduced top-padding for top-aligned sidebar */
  box-sizing: border-box;
}

/* White Sidebar Card */
.plugin_nav_wrapper {
  background: var(--bg-sidebar);
  border-radius: 24px;
  padding: 30px 20px;
  box-shadow: var(--shadow-sidebar);
  height: fit-content;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border: none;
  border-radius: 16px;
  background-color: #f8f3f170;
  box-shadow: 11px 11px 20px -16px #000;
  transition: width 0.3s ease;
}

@media screen and (min-width: 1920px) {
  .plugin_nav_wrapper {
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: stretch;
  }
}

@media screen and (max-width: 991px) {
  .plugin_nav_wrapper {
    position: static;
    height: auto;
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 16px 0;
    gap: 4px;
    scrollbar-width: none;
    margin-bottom: 20px;
    border: none;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
  }
  .plugin_nav_wrapper::-webkit-scrollbar { display: none; }
  .plugin_nav_wrapper .plugin-nav-item {
    flex-shrink: 0;
    margin-bottom: 0;
    padding: 8px 16px;
    border-radius: 8px;
  }
  .plugin_nav_wrapper .plugin-nav-item.active {
    background: rgba(0,0,0,0.06);
  }
  .plugin_nav_wrapper .plugin-nav-tagline { display: none; }
  .plugin_nav_wrapper .plugin-nav-cta { display: none !important; }
  .plugin_nav_wrapper .plugin-nav-name { font-size: 17px; margin-bottom: 0; }
  .plugin_nav_wrapper .plugin-nav-divider { display: none; }
}

@media screen and (max-width: 767px) {
  .plugin_nav_wrapper {
    padding: 12px 12px 0;
  }
}
.plugin-nav::-webkit-scrollbar { display: none; }

/* Plugin items — Tactile Card Style */
.plugin-nav-item {
  display: block;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 12px;
  padding: 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.plugin-nav-item:hover { 
  background: #EBEBEB;
  box-shadow: var(--shadow-tactile);
  transform: translateY(-2px);
}
.plugin-nav-item.active { 
  background: #EBEBEB;
  box-shadow: var(--shadow-tactile);
}


.plugin-nav-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

/* "New" badge */
.badge-new {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--grey);
  border: 1px solid rgba(0,0,0,0.25);
  padding: 1px 7px;
  border-radius: 4px;
}

.plugin-nav-tagline {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Buy CTA — shown only on active item */
.plugin-nav-cta {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 10px;
}
.plugin-nav-item.active .plugin-nav-cta { display: flex; }

.plugin-nav-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: auto;
}

/* Divider between plugins and bundles */
.plugin-nav-divider {
  background-color: #00000017;
  width: 80%;
  height: 2px;
  margin: 10px 0 12px;
}

/* Bundle links */
.plugin-nav-bundle {
  margin-bottom: 8px;
}

.plugin-nav-bundle-name {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--main-black);
  line-height: 25px;
  white-space: nowrap;
  display: block;
}

/* New badge style */
.new {
  position: relative;
  margin-left: 10px;
  padding: 2px 8px;
  align-self: center;
  border-radius: 8px;
  background-color: var(--snow);
  color: var(--main-black);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.info-tab-wrapper {
  width: 100%;
  padding: 0;
  margin-top: 24px;
}


.product-section {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}


.product-section.active,
.product-section.standalone,
.product-section.bundle-view {
  display: block;
  opacity: 1;
}

/* Flex wrapper to vertically center the showcase column independently */
.product-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10vh; /* Fixed padding to push down, eliminating shifts from variable tab height */
}

/* ---- Product Media (Grid-balanced for perfect centering) ---- */
.product-media {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 40px;
  margin: 0 auto 20px; /* Tightened margin for zero-scroll fit */
  width: 100%;
}


.product-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.product-image-wrap img {
  width: 100%; /* Force high-impact scaling */
  object-fit: contain;
}


.product-image-wrap.portrait img {
  max-width: 320px;
  max-height: 400px;
}

.product-image-wrap.landscape img {
  max-width: 840px; /* Significantly larger as requested */
  max-height: 600px;
  width: 100%; /* Ensure it fills the capacity */
}




/* Video buttons — left column */
.product-video-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.btn-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  color: var(--main-black);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  transition: opacity var(--transition);
}
.btn-video::before {
  content: '';
  display: block;
  width: 28px;
  height: 28px;
  background: var(--text-heading);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-bottom: 8px;
}

.btn-video:hover { opacity: 0.5; }

/* Use the actual SVG play icon from Webflow */
.btn-video .play-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}

/* Image block — center column */
.product-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15); /* Softer, deep shadow */
  display: block;
  transform-origin: 50% 0;
  border: none;
}


/* Landscape images — full width, constrained height */
.product-image-wrap.landscape {
  max-height: 320px;
}
.product-image-wrap.landscape img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Portrait/square images — container clips corners like landscape */
.product-image-wrap.portrait {
  max-height: 400px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  overflow: hidden;
}
.product-image-wrap.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Narrow the product-media grid when containing a portrait image */
.product-media:has(.product-image-wrap.portrait) {
  grid-template-columns: 1fr 320px 1fr; /* Balanced columns */
  max-width: 700px; /* Wider to allow play buttons more room */
  column-gap: 24px;
}


/* Bundle media — override 3-col grid for bundle pages */
.product-media.bundle {
  display: block;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Bundle grid */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: center;
}
.bundle-grid img {
  width: 100%;
  border-radius: 8px;
  display: block;
}
.bundle-grid img.landscape {
  height: auto;
  object-fit: cover;
}
.bundle-grid img.portrait {
  max-height: 240px;
  object-fit: contain;
}

/* ---- Tabs (Tactile Minimal) ---- */
.tab-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  gap: 8px;
  background: rgba(0,0,0,0.015);
  backdrop-filter: blur(10px);
  padding: 4px;
  border-radius: 100px; /* Pillow shape matching cookie pill */
  border: 1px solid rgba(0,0,0,0.03);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  letter-spacing: 0.02em;
}
.tab-btn:hover { color: var(--text-main); background: rgba(0,0,0,0.03); }
.tab-btn.active {
  color: #FFFFFF;
  background: #000000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Center tab panel content to align with product image */
.tab-panel .text-rich {
  max-width: 500px;
  margin: 0 auto;
  padding: 24px 0;
}
.tab-panel .text-rich ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
}
.tab-panel .text-rich li {
  font-size: 14px;
  font-weight: 400;
  color: var(--main-black);
  list-style: disc;
  list-style-position: outside;
  line-height: 1.65;
}
.tab-panel .text-rich li strong {
  font-weight: 700;
}
.tab-panel .text-rich h5 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 8px;
}

/* Tab content area */
.tab-content-area {
  padding: 20px 3%;
  font-size: 12px;
  line-height: 22px;
}

/* ---- Overview: Bento Grid Layout ---- */
.overview-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.overview-blocks > div {
  background: transparent;
  padding: 32px;
  border-radius: 16px;
  border: none;
  box-shadow: none;
  transition: transform var(--transition);
}

.overview-blocks > div:hover {
  transform: translateY(-4px);
}

.overview-header {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.3;
}

.overview-body {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.overview-blocks.single-col {
  grid-template-columns: 1fr;
  grid-template-rows: auto; /* Standard vertical flow for single col */
  grid-auto-flow: row;
  max-width: 480px;
  row-gap: 15px;
}

/* ---- Features (rich text) ---- */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 25px;
  padding-right: 25px;
}
.features-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--main-black);
  list-style: disc;
  list-style-position: outside;
  line-height: 1.65;
}
.features-list li strong {
  font-weight: 700;
}

/* ---- Changelog (rich text) ---- */
.changelog {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 25px;
  padding-right: 25px;
}
.changelog-version {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 8px;
}
.changelog-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.changelog-list li {
  font-size: 14px;
  color: var(--main-black);
  list-style: disc;
  list-style-position: outside;
  padding-left: 4px;
  line-height: 1.6;
}

/* ============================================================
   BUTTONS (Tactile Minimal)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-buy {
  background: var(--accent-blue);
  color: var(--bg-sidebar);
  width: auto;
  height: auto;
  min-width: 80px;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.2);
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 113, 227, 0.3);
  background: #0077ed;
}

.btn-buy:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text-heading);
  border: 1px solid var(--text-heading);
}
.btn-secondary:hover { opacity: 0.6; }


/* ============================================================
   BUNDLES SECTION
   ============================================================ */
.bundles-section {
  padding: 80px 60px;
  background: var(--static);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.section-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 40px;
  text-align: center;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.bundle-card {
  background: transparent;
  padding: 32px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: none;
}

.bundle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.15);
  box-shadow: 2px 8px 24px rgba(0,0,0,0.08);
}

.bundle-name {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 12px;
}

.bundle-includes {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.bundle-price {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  color: var(--royal-blue);
}

.bundle-price-was {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--grey);
  text-decoration: line-through;
  opacity: 0.6;
}

.bundle-card .btn-buy {
  background: var(--royal-blue);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.2s ease;
  height: auto;
  width: 100%;
  border: none;
}
.bundle-card .btn-buy:hover {
  opacity: 0.8;
  background: var(--royal-blue);
  color: #fff;
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative;
  width: min(900px, 90vw);
}
.modal-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: -4px 4px 30px rgba(0,0,0,0.5);
}
.modal-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.modal-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

/* ============================================================
   NEWSLETTER — fixed bottom bar
   ============================================================ */
.newsletter-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  height: var(--bar-height);
  background: var(--static);
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  gap: 24px;
}
.newsletter-bar-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--main-black);
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter-bar-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  max-width: 500px;
}
.newsletter-bar-form input[type="email"] {
  flex: 1;
  height: 40px;
  background: rgba(0,0,0,0.06);
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 0 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--main-black);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-bar-form input[type="email"]::placeholder { color: var(--grey); }
.newsletter-bar-form input[type="email"]:focus { border-color: rgba(0,0,0,0.3); }
.newsletter-bar-form .btn-subscribe {
  height: 40px;
  padding: 0 22px;
  background: var(--main-black);
  color: var(--white);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity var(--transition);
  cursor: pointer;
  border: none;
}
.newsletter-bar-form .btn-subscribe:hover { opacity: 0.75; }

/* ============================================================
   INNER PAGES (about, music)
   ============================================================ */
.inner-page {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 40px 80px;
}
/* Music Page Override for large cinematic grid */
.inner-page:has(.release-layout) {
  max-width: 1240px;
}
.inner-page h1 {
  font-family: var(--font-sans);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--main-black);
  margin-bottom: 28px;
}
.inner-page p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dim-grey);
  line-height: 1.75;
  margin-bottom: 16px;
}
.inner-page a {
  color: var(--main-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.inner-page a:hover { opacity: 0.7; }

.faq-list { margin-top: 48px; }
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.12);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
.faq-question {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--dim-grey);
  line-height: 1.7;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 12px;
}
.faq-answer a { color: var(--dim-grey); }
.faq-answer a:hover { color: var(--main-black); }

/* Music page */
.release-card {
  background: var(--menu-bg);
  border-radius: 12px;
  padding: 32px;
  margin-top: 48px;
  box-shadow: 2px 4px 16px rgba(0,0,0,0.09);
}
.release-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 6px;
}
.release-title {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 4px;
}
.release-artist {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 20px;
}
.release-links {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.release-video {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
  margin-bottom: 24px;
  box-shadow: -4px 4px 20px 1px rgba(0,0,0,0.38);
}
.release-video iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.release-description p {
  font-size: 14px;
  color: var(--dim-grey);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ============================================================
   MOBILE  (≤ 991px: stack layout, show swiper-style nav)
   ============================================================ */
@media (max-width: 991px) {
  main { padding-top: var(--nav-height); }
  .page-wrapper { padding: 0 20px; }
  .bundles-section { padding: 40px 20px 32px; }

  .products-layout {
    display: block;
  }

  .plugin-nav {
    position: static;
    height: auto;
    overflow-x: auto;
    overflow-y: visible;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 16px 0;
    gap: 4px;
    scrollbar-width: none;
    margin-bottom: 20px;
  }
  .plugin-nav::-webkit-scrollbar { display: none; }
  .plugin-nav-item {
    flex-shrink: 0;
    margin-bottom: 0;
    padding: 8px 16px;
    border-radius: 8px;
    opacity: 0.5;
  }
  .plugin-nav-item.active {
    opacity: 1;
    background: rgba(0,0,0,0.06);
  }
  .plugin-nav-tagline { display: none; }
  .plugin-nav-cta { display: none !important; }
  .plugin-nav-name { font-size: 17px; margin-bottom: 0; }
  .plugin-nav-divider { display: none; }
  .plugin-nav-bundle { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    padding: 8px 16px;
  }

  .product-container.swiper {
    height: auto;
    overflow: hidden;
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .product-container .swiper-wrapper {
    display: flex;
  }
  .product-section.swiper-slide {
    display: block !important;
    height: auto;
    margin-bottom: 0;
  }

  .product-media {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .product-video-btns {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 16px;
    order: -1;
  }
  .product-image-wrap { grid-column: 1; }
  .product-image-wrap.portrait {
    max-width: 100%;
  }
  .product-image-wrap.landscape {
    max-width: 100%;
  }
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .overview-blocks { grid-template-columns: 1fr; }
  .bundles-grid { grid-template-columns: 1fr; }

  .newsletter-bar {
    padding: 0 20px;
    gap: 12px;
    height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  :root { --nav-height: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { justify-content: space-between; }
  .nav-logo { position: static; transform: none; }
  .inner-page { padding: 40px 20px 60px; }
  .newsletter-bar-label { display: none; }
  .newsletter-bar-form { max-width: 100%; }
}


/* ============================================================
   MUSIC PAGE REDESIGN 2.0
   ============================================================ */
/* ============================================================
   MUSIC PAGE REDESIGN 2.0 (Spirit Jumper)
   ============================================================ */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; /* Tightened for more balanced, streamlined feel */
  align-items: center; /* Vertically center content with artwork */
  max-width: 1400px;
  margin: 60px auto;
}


.music-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.music-artwork {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 4px; /* Subtle radius from image */
}

.music-meta-footer {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}

.music-right {
  display: flex;
  flex-direction: column;
}

.release-title {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 0 0 4px;
}

.release-artist {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-heading);
  margin-bottom: 24px;
}

.plugin-nav-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.plugin-nav-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #6a6a6a;
  margin-bottom: 4px;
  max-width: 240px;
  line-height: 1.4;
}

.release-nav {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.release-nav a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.release-nav a:hover {
  opacity: 0.6;
}

.release-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8; /* More breathable, editorial feel */
  color: #444;
  margin-bottom: 24px;
  max-width: 500px;
  letter-spacing: -0.01em;
}


.release-credits {
  font-family: var(--font-sans);
  font-size: 13px;
  font-style: italic;
  color: #777;
  margin-bottom: 30px;
}

.video-container {
  width: 100%;
  max-width: 500px; /* Scale from image */
  aspect-ratio: 16/9;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}



/* ============================================================
   BUNDLE VIEWS & OVERLAYS
   ============================================================ */
.bundle-stack {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 20px;
}

.bundle-stack img {
  position: static;
  max-width: 180px;
  height: auto;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.bundle-stack img:hover {
  transform: translateY(-5px);
}

.bundle-info {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.bundle-info h2 {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 700;
  color: var(--main-black);
  margin-bottom: 20px;
}

.bundle-info p {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--main-black);
  line-height: 1.5;
  margin-bottom: 30px;
}

.bundle-includes {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--grey);
  font-style: italic;
  margin-top: 12px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-container {
  max-width: 800px;
  margin: 120px auto 60px auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-mission {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-heading);
  text-align: center;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.about-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin: 30px 0;
}

.about-contact {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-heading);
  text-align: center;
}

.about-contact a {
  color: #1a0dab;
  text-decoration: underline;
}

.about-contact a:hover {
  text-decoration: none;
}

.about-subscribe-wrapper {
  text-align: center;
  width: 100%;
  margin: 20px 0 60px 0;
}

.about-subscribe-label {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 15px;
}

.about-subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.about-subscribe-input {
  padding: 12px 20px;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 15px;
  width: 300px;
  background: #E5E5E5;
}

.about-subscribe-btn {
  background: var(--text-heading);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.3s ease;
  cursor: pointer;
  border: none;
}

.about-subscribe-btn:hover {
  opacity: 0.8;
}

.faq-category-heading {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-heading);
  margin: 40px 0 20px 0;
  text-align: center;
}

.faq-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  cursor: pointer;
  outline: none;
  transition: background 0.2s ease;
}

.accordion-trigger:hover {
  background: #EDEDED;
}

.accordion-trigger.active {
  background: #EDEDED;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.accordion-content p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 24px;
}

.accordion-content a {
  color: inherit;
  text-decoration: underline;
}


/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 100px; /* Above footer */
  right: 40px;
  width: 340px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--outline);
  z-index: 1100;
  display: none; /* Shown via JS */
  animation: slideUp 0.5s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-content p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-heading);
  line-height: 1.5;
  margin-bottom: 20px;
}

.cookie-btns {
  display: flex;
  gap: 12px;
}

.btn-cookie {
  padding: 8px 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-heading);
}

.btn-outline:hover {
  background: var(--border-light);
}

