/* ================================================================
   MONOSOUNDS — Product Page Styles
   Ready-to-paste version with reduced gap before Listen in action
   Target file in WordPress:
   /wp-content/themes/monosounds/css/monosounds-product.css
   ================================================================ */

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-v12-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('../fonts/space-grotesk-v12-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans-v29-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans-v29-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- VARIABLES ---- */
:root {
  --ms-yellow:       #FFE600;
  --ms-black:        #0A0A0A;
  --ms-white:        #FFFFFF;
  --ms-bg:           #F5F5F5;
  --ms-bg-card:      #FFFFFF;
  --ms-bg-dark:      #1A1A1A;
  --ms-text:         #0A0A0A;
  --ms-text-mid:     #444444;
  --ms-text-muted:   #888888;
  --ms-border:       #E2E2E2;
  --ms-purple:       #8B5CF6;
  --ms-radius:       14px;
  --ms-radius-sm:    10px;
  --ms-radius-pill:  100px;
}

/* ---- LAYOUT ---- */
.ms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.ms-breadcrumb,
.ms-hero,
.ms-bundle-story,
.ms-listen-section,
.ms-dark-cta,
.ms-daw-section,
.ms-trust-section,
.ms-categories-section,
.ms-faq-section,
.ms-related-section,
.ms-cart-toast,
.ms-sticky-bar {
  font-family: 'Open Sans', sans-serif;
  color: var(--ms-text);
}

.ms-product-title,
.ms-price-current,
.ms-card-product-name,
.ms-bundle-story-kicker,
.ms-bundle-story h2,
.ms-bundle-metric-value,
.ms-bundle-jump,
.ms-bundle-item-kicker,
.ms-bundle-item-title,
.ms-bundle-item-price,
.ms-bundle-preview-head,
.ms-bundle-preview-name,
.ms-bundle-final-kicker,
.ms-bundle-final-title,
.ms-bundle-final-link,
.ms-contents-header,
.ms-contents-item-title,
.ms-listen-section h2,
.ms-dark-cta-tagline,
.ms-dark-cta-title,
.ms-daw-section h2,
.ms-trust-section h2,
.ms-categories-section h2,
.ms-faq-section h2,
.ms-related-section h2,
.ms-btn-outline,
.ms-add-to-cart-wrap .single_add_to_cart_button,
.ms-add-to-cart-wrap button.button,
.ms-dark-cta-action .single_add_to_cart_button,
.ms-dark-cta-action button.button,
.ms-sticky-cart .single_add_to_cart_button,
.ms-sticky-cart button.button,
.ms-dark-cta-action .ms-complex-jump,
.ms-sticky-cart .ms-complex-jump {
  font-family: 'Space Grotesk', sans-serif;
}

/* ---- BREADCRUMB ---- */
.ms-breadcrumb {
  padding: 14px 0;
  border-bottom: 1px solid var(--ms-border);
  background: var(--ms-bg);
}
.ms-breadcrumb .ms-container {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ms-text-muted);
}
.ms-breadcrumb a { color: var(--ms-text-mid); text-decoration: none; }
.ms-breadcrumb a:hover { color: var(--ms-black); }
.ms-breadcrumb .sep { opacity: 0.4; }

/* ---- HERO ---- */
.ms-hero {
  padding: 56px 0 24px;
  background: var(--ms-bg);
}
.ms-hero .ms-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
}
.ms-hero-left > *:last-child,
.ms-product-description > *:last-child {
  margin-bottom: 0 !important;
}

.ms-product-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

/* Tags row */
.ms-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.ms-tag {
  padding: 5px 14px;
  border: 1.5px solid var(--ms-border);
  border-radius: var(--ms-radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--ms-text-mid);
  background: var(--ms-white);
}

/* Product description (from the_content()) */
.ms-product-description,
.ms-product-description p,
.ms-product-description ul,
.ms-product-description ol,
.ms-product-description li,
.ms-product-description a,
.ms-product-description span,
.ms-product-description strong,
.ms-product-description em,
.ms-product-description div,
.ms-product-description blockquote {
  font-family: 'Open Sans', sans-serif !important;
}
.ms-product-description {
  color: var(--ms-text-mid);
  line-height: 1.75;
}
.ms-product-description h1,
.ms-product-description h2,
.ms-product-description h3,
.ms-product-description h4,
.ms-product-description h5,
.ms-product-description h6 {
  font-family: 'Space Grotesk', sans-serif !important;
}
.ms-product-description h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 32px 0 12px;
  color: var(--ms-black);
}
.ms-product-description p { margin-bottom: 16px; font-size: 16px; }
.ms-product-description a {
  color: var(--ms-black);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(10, 10, 10, 0.18);
  text-underline-offset: 0.16em;
}
.ms-product-description a:hover { text-decoration-color: rgba(10, 10, 10, 0.42); }
.ms-product-description ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.ms-product-description ul li {
  display: flex;
  gap: 10px;
  font-size: 15px;
}
.ms-product-description ul li::before {
  content: '->';
  font-weight: 700;
  color: var(--ms-black);
  flex-shrink: 0;
}

/* ---- RIGHT COLUMN — sticky wrapper for both cards ---- */
.ms-hero-right-sticky {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---- PRODUCT CARD (right column) ---- */
.ms-product-card {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #ffe44b 0%, #ffd80e 56%, #f2c900 100%);
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.12);
  border-radius: var(--ms-radius);
  overflow: hidden;
}
.ms-card-artwork {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #111;
}
.ms-card-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ms-badge-new {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  padding: 4px 12px;
  background: var(--ms-purple);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--ms-radius-pill);
}
.ms-badge-hot {
  position: absolute;
  top: 44px; left: 14px;
  z-index: 2;
  padding: 4px 12px;
  background: var(--ms-black);
  color: var(--ms-yellow);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--ms-radius-pill);
}
.ms-card-body { padding: 18px 20px 22px; }

/* Price row */
.ms-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.ms-price-current {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ms-price-current .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; }
.ms-price-old {
  font-size: 16px;
  opacity: 0.45;
  text-decoration: line-through;
  font-weight: 500;
  font-family: 'Space Grotesk', sans-serif;
}
.ms-price-save {
  padding: 2px 8px;
  background: var(--ms-black);
  color: var(--ms-yellow);
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--ms-radius-pill);
  font-family: 'Space Grotesk', sans-serif;
}
.ms-card-product-name {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
}

/* Override WooCommerce Add to Cart button inside card */
.ms-add-to-cart-wrap .single_add_to_cart_button,
.ms-add-to-cart-wrap button.button {
  width: 100% !important;
  padding: 14px 24px !important;
  background: transparent !important;
  border: 2px solid var(--ms-black) !important;
  border-radius: var(--ms-radius-pill) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--ms-black) !important;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  letter-spacing: 0.01em;
  text-transform: none !important;
  box-shadow: none !important;
}
.ms-add-to-cart-wrap .single_add_to_cart_button:hover,
.ms-add-to-cart-wrap button.button:hover {
  background: var(--ms-black) !important;
  color: var(--ms-yellow) !important;
}
/* Qty input — hide or minimise */
.ms-add-to-cart-wrap .quantity { display: none !important; }

/* Grouped / bundle-style forms inside the right card */
.ms-product-card :is(.grouped_form, .bundle_form, .bundled_form, .woosb-form) {
  margin-top: 16px;
}
.ms-product-card :is(.ms-grouped-list-shell, .bundled_items, .woosb-products) {
  margin-top: 16px;
  margin-bottom: 14px;
  padding: 8px 16px;
  max-height: 336px;
  overflow: auto;
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 246, 189, 0.3) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 10px 24px rgba(255, 220, 0, 0.12);
}
.ms-product-card :is(.ms-grouped-list-shell, .bundled_items, .woosb-products)::-webkit-scrollbar {
  width: 8px;
}
.ms-product-card :is(.ms-grouped-list-shell, .bundled_items, .woosb-products)::-webkit-scrollbar-thumb {
  background: rgba(10, 10, 10, 0.2);
  border-radius: 999px;
}
.ms-product-card :is(.group_table, .woocommerce-grouped-product-list) {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-collapse: collapse;
}
.ms-product-card :is(.group_table, .woocommerce-grouped-product-list) tr,
.ms-product-card .bundled_item,
.ms-product-card .bundled_table_item,
.ms-product-card .woosb-product {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.ms-product-card :is(.group_table, .woocommerce-grouped-product-list) tr:last-child,
.ms-product-card .bundled_item:last-child,
.ms-product-card .bundled_table_item:last-child,
.ms-product-card .woosb-product:last-child {
  border-bottom: none;
}
.ms-product-card :is(.group_table, .woocommerce-grouped-product-list) td {
  padding: 11px 0 !important;
  border: 0 !important;
  vertical-align: middle;
}
.ms-product-card .woocommerce-grouped-product-list-item__quantity,
.ms-product-card .bundled_item_images_col,
.ms-product-card .bundled_item_qty_col,
.ms-product-card .woosb-product-thumb {
  width: 62px;
  padding-right: 12px !important;
}
.ms-product-card .woocommerce-grouped-product-list-item__label label {
  display: block;
  margin: 0;
}
.ms-product-card :is(.woocommerce-grouped-product-list-item__label a, .bundled_product_title a, .bundled_item_title a, .bundled_table_item a, .woosb-title a) {
  color: var(--ms-black);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.35;
  text-decoration: none;
}
.ms-product-card :is(.woocommerce-grouped-product-list-item__label a, .bundled_product_title a, .bundled_item_title a, .bundled_table_item a, .woosb-title a):hover {
  color: rgba(10, 10, 10, 0.68);
}
.ms-product-card :is(.woocommerce-grouped-product-list-item__price, .bundled_product_price, .bundled_item_price, .woosb-price, .bundle_price) {
  text-align: right;
  white-space: nowrap;
}
.ms-product-card :is(.woocommerce-grouped-product-list-item__price, .bundled_product_price, .bundled_item_price, .woosb-price, .bundle_price, .price) {
  color: var(--ms-black);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}
.ms-product-card :is(del, del .amount) {
  opacity: 0.42;
  font-family: 'Space Grotesk', sans-serif;
}
.ms-product-card ins {
  background: none;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
}
.ms-product-card :is(.bundled_item img, .bundled_table_item img, .woocommerce-grouped-product-list-item img, .woosb-product-thumb img) {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.66);
  object-fit: cover;
}
.ms-product-card .woosb-thumb {
  display: none !important;
}
.ms-product-card .woosb-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
}
.ms-product-card .woosb-title {
  min-width: 0;
}
.ms-product-card .woosb-name {
  margin: 0;
  font-size: 0;
  line-height: 0;
}
.ms-product-card .woosb-name a {
  display: inline;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ms-black);
  text-decoration: none;
}
.ms-product-card .woosb-name a:hover {
  color: rgba(10, 10, 10, 0.68);
}
.ms-product-card .woosb-price,
.ms-product-card .woosb-price * {
  font-family: 'Space Grotesk', sans-serif !important;
}
.ms-product-card .woosb-price {
  text-align: right;
  white-space: nowrap;
  align-self: center;
}
.ms-product-card .woosb-product .quantity,
.ms-product-card .woosb-product .woosb-qty {
  display: none !important;
}
.ms-product-card .grouped_form .quantity input.qty,
.ms-product-card :is(.bundle_form, .bundled_form, .woosb-form) .quantity input.qty {
  width: 48px;
  min-height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ms-black);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.ms-product-card .wc-grouped-product-add-to-cart-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--ms-black);
}
.ms-product-card .grouped_form .single_add_to_cart_button,
.ms-product-card :is(.bundle_form, .bundled_form, .woosb-form) .single_add_to_cart_button,
.ms-product-card :is(.bundle_button, .woosb-btn) {
  width: 100% !important;
  margin-top: 4px;
}

/* Trust micro badges */
.ms-card-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1.5px solid rgba(0,0,0,0.12);
}
.ms-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
}

/* ---- WHAT'S INCLUDED CARD ---- */
.ms-contents-card {
  background: linear-gradient(180deg, #101010 0%, #060606 100%);
  border: 1px solid rgba(255, 230, 0, 0.16);
  border-radius: calc(var(--ms-radius) + 4px);
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}
.ms-contents-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ms-yellow);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ms-contents-header svg {
  flex-shrink: 0;
  stroke: var(--ms-yellow);
}
.ms-contents-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ms-contents-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 15px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}
.ms-contents-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ms-yellow);
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255,230,0,0.1);
}
.ms-contents-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ms-contents-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ms-white);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.ms-contents-item-text {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}
.ms-contents-card a,
.ms-contents-card a:visited {
  color: var(--ms-yellow);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 230, 0, 0.4);
  text-underline-offset: 0.16em;
}
.ms-contents-card a:hover {
  color: var(--ms-white);
  text-decoration-color: rgba(255, 255, 255, 0.34);
}

/* ---- BUNDLE STORY ---- */
.ms-bundle-story {
  padding: 24px 0 72px;
  background:
    radial-gradient(circle at top left, rgba(255, 230, 0, 0.12) 0, rgba(255, 230, 0, 0) 26%),
    linear-gradient(180deg, #f5f5f5 0%, #ececec 100%);
}
.ms-bundle-story-head {
  max-width: 820px;
  margin-bottom: 26px;
}
.ms-bundle-story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 230, 0, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ms-black);
}
.ms-bundle-story h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.ms-bundle-story-intro {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ms-text-mid);
}
.ms-bundle-story-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.ms-bundle-metric {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(10, 10, 10, 0.05);
}
.ms-bundle-metric-value {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ms-black);
}
.ms-bundle-metric-label {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(10, 10, 10, 0.58);
}
.ms-bundle-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.ms-bundle-jump {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ms-black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.ms-bundle-jump:hover {
  background: var(--ms-black);
  color: var(--ms-white);
}
.ms-bundle-jump-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ms-yellow);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: var(--ms-black);
}
.ms-bundle-story-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ms-bundle-item {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.18fr);
  gap: 30px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.06);
}
.ms-bundle-item:nth-child(even) {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.92fr);
}
.ms-bundle-item:nth-child(even) .ms-bundle-item-media {
  order: 2;
}
.ms-bundle-item:nth-child(even) .ms-bundle-item-copy {
  order: 1;
}
.ms-bundle-item-media {
  position: relative;
  min-height: 760px;
  padding: 26px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 230, 0, 0.13) 0, rgba(255, 230, 0, 0) 22%),
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.08) 0, rgba(255,255,255,0) 18%),
    linear-gradient(180deg, #0b0b0c 0%, #101012 100%);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.20);
  color: var(--ms-white);
}
.ms-bundle-item-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0) 52%, rgba(255,255,255,0.02) 100%);
  pointer-events: none;
}
.ms-bundle-item-index {
  position: relative;
  z-index: 1;
  min-width: 86px;
  height: 74px;
  padding: 0 14px;
  background: var(--ms-yellow);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--ms-black);
  box-shadow: 0 18px 40px rgba(255, 230, 0, 0.22);
}
.ms-bundle-identity-top,
.ms-bundle-identity-hero,
.ms-bundle-identity-meta,
.ms-bundle-identity-traits {
  position: relative;
  z-index: 1;
}
.ms-bundle-identity-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.ms-bundle-identity-label {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}
.ms-bundle-identity-kicker {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.ms-bundle-identity-type {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ms-white);
}
.ms-bundle-identity-hero {
  padding-bottom: 8px;
}
.ms-bundle-identity-title {
  margin: 0 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 2.6vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--ms-white);
}
.ms-bundle-identity-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
}
.ms-bundle-identity-live,
.ms-bundle-identity-reactive-wave,
.ms-bundle-identity-current {
  display: none !important;
}
.ms-bundle-identity-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: auto;
}
.ms-bundle-identity-stat {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}
.ms-bundle-identity-stat-label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}
.ms-bundle-identity-stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ms-white);
}
.ms-bundle-identity-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ms-bundle-identity-trait {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ms-white);
}
.ms-bundle-item-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.ms-bundle-item-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.ms-bundle-item-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.55);
}
.ms-bundle-item-price {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ms-black);
}
.ms-bundle-item-price .price,
.ms-bundle-item-price .amount {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.ms-bundle-item-price del {
  opacity: 0.42;
}
.ms-bundle-item-price ins {
  background: none;
  text-decoration: none;
}
.ms-bundle-item-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ms-black);
}
.ms-bundle-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ms-bundle-item-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.06);
  color: rgba(10, 10, 10, 0.72);
  font-size: 12px;
  font-weight: 700;
}
.ms-bundle-item-desc {
  margin: 0;
  position: relative;
  padding: 42px 16px 16px;
  border: 1px solid rgba(255, 230, 0, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #101010 0%, #060606 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.76);
}
.ms-bundle-item-desc::before {
  content: "Pack overview";
  position: absolute;
  top: 14px;
  left: 36px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ms-yellow);
}
.ms-bundle-item-desc::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ms-yellow);
  box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.1);
}
.ms-bundle-item-desc,
.ms-bundle-item-desc * {
  font-family: 'Space Grotesk', sans-serif !important;
}
.ms-bundle-item-desc strong,
.ms-bundle-item-desc b {
  color: var(--ms-white);
  font-weight: 700;
}
.ms-bundle-item-desc br {
  line-height: 1.9;
}
.ms-bundle-item-desc a {
  color: var(--ms-yellow);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 230, 0, 0.34);
  text-underline-offset: 0.16em;
}
.ms-bundle-item-desc a:hover {
  color: var(--ms-white);
  text-decoration-color: rgba(255, 255, 255, 0.34);
}
.ms-bundle-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ms-bundle-item-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--ms-black);
  color: var(--ms-white);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ms-bundle-item-link:hover {
  background: #232323;
  color: var(--ms-white);
}
.ms-bundle-item-link--ghost {
  background: transparent;
  border: 1.5px solid rgba(10, 10, 10, 0.14);
  color: var(--ms-black);
}
.ms-bundle-item-link--ghost:hover {
  background: rgba(10, 10, 10, 0.05);
  color: var(--ms-black);
}
.ms-bundle-preview-shell {
  margin-top: 8px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #121212 0%, #070707 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.ms-bundle-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 230, 0, 0.84);
}
.ms-bundle-preview-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ms-bundle-preview-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 12px 12px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.ms-play-btn--sm {
  width: 38px;
  height: 38px;
  border-width: 1.5px;
  color: var(--ms-yellow);
  border-color: rgba(255, 230, 0, 0.55);
  background: rgba(255, 230, 0, 0.1);
}
.ms-bundle-preview-card.ms-playing .ms-play-btn--sm,
.ms-play-btn--sm:hover {
  background: var(--ms-yellow);
  color: var(--ms-black);
  border-color: var(--ms-yellow);
}
.ms-bundle-preview-copy {
  min-width: 0;
}
.ms-bundle-preview-name {
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ms-yellow);
}
.ms-bundle-preview-desc {
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.66);
}
.ms-bundle-waveform {
  width: 100%;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 230, 0, 0.04);
}
.ms-bundle-waveform wave {
  border-right: none !important;
}
.ms-bundle-final-cta {
  margin-top: 22px;
  padding: 28px 30px;
  border-radius: 24px;
  background: var(--ms-yellow);
  color: var(--ms-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ms-bundle-final-kicker {
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ms-bundle-final-title {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.ms-bundle-final-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 2px solid var(--ms-black);
  color: var(--ms-black);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.ms-bundle-final-link:hover {
  background: var(--ms-black);
  color: var(--ms-yellow);
}

/* ---- LISTEN IN ACTION ---- */
.ms-listen-section {
  padding: 28px 0 80px;
  background: var(--ms-bg);
}
.ms-listen-section h2 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 0 0 40px;
}
.ms-tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ms-track-card {
  background: var(--ms-white);
  border: 1.5px solid var(--ms-border);
  border-radius: var(--ms-radius);
  padding: 18px 18px 20px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ms-track-card:hover,
.ms-track-card.ms-playing {
  border-color: var(--ms-black);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.ms-track-header {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 12px;
}
.ms-track-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.ms-track-num { font-size: 11px; color: var(--ms-text-muted); vertical-align: super; font-weight: 500; }
.ms-track-player { display: flex; align-items: center; gap: 12px; }
.ms-play-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid var(--ms-black);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  color: var(--ms-black);
}
.ms-play-btn:hover,
.ms-track-card.ms-playing .ms-play-btn {
  background: var(--ms-black);
  color: var(--ms-white);
}
.ms-bundle-preview-card .ms-play-btn--sm {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}
.ms-bundle-preview-card .ms-play-btn--sm:hover,
.ms-bundle-preview-card.ms-playing .ms-play-btn--sm {
  background: var(--ms-yellow);
  color: var(--ms-black);
  border-color: var(--ms-yellow);
}
.ms-bundle-preview-card .ms-play-btn--sm svg {
  fill: currentColor;
}
.ms-waveform-wrap { flex: 1; }
.ms-wavesurfer { width: 100%; height: 48px; }
/* WaveSurfer canvas override */
.ms-wavesurfer wave { border-right: none !important; }

/* ---- DARK CTA BANNER ---- */
.ms-dark-cta {
  margin: 0 32px;
  border-radius: var(--ms-radius);
  background: var(--ms-bg-dark);
  color: var(--ms-white);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.ms-dark-cta-tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--ms-yellow);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.ms-dark-cta-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ms-dark-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.ms-dark-cta-desc a,
.ms-dark-cta-action a {
  color: var(--ms-white);
}
.ms-dark-cta-desc a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 230, 0, 0.34);
  text-underline-offset: 0.16em;
}
.ms-dark-cta-desc a:hover,
.ms-dark-cta-action a:hover {
  color: var(--ms-yellow);
}
/* Dark CTA button override */
.ms-dark-cta-action .single_add_to_cart_button,
.ms-dark-cta-action button.button {
  padding: 14px 32px !important;
  background: transparent !important;
  border: 2px solid var(--ms-white) !important;
  border-radius: var(--ms-radius-pill) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--ms-white) !important;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.ms-dark-cta-action .single_add_to_cart_button:hover,
.ms-dark-cta-action button.button:hover {
  background: var(--ms-white) !important;
  color: var(--ms-black) !important;
}
.ms-dark-cta-action .quantity { display: none !important; }
.ms-dark-cta-action .ms-complex-jump,
.ms-sticky-cart .ms-complex-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: var(--ms-radius-pill);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ms-dark-cta-action .ms-complex-jump {
  border: 2px solid var(--ms-white);
  color: var(--ms-white);
}
.ms-dark-cta-action .ms-complex-jump:hover {
  background: var(--ms-white);
  color: var(--ms-black);
}
.ms-sticky-cart .ms-complex-jump {
  border: 2px solid var(--ms-black);
  color: var(--ms-black);
}
.ms-sticky-cart .ms-complex-jump:hover {
  background: var(--ms-black);
  color: var(--ms-yellow);
}

/* ---- DAW SECTION ---- */
.ms-daw-section { padding: 80px 0; background: var(--ms-bg); }
.ms-daw-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 40px;
}
.ms-daw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ms-daw-card {
  background: var(--ms-white);
  border: 1.5px solid var(--ms-border);
  border-radius: var(--ms-radius);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: border-color 0.2s;
}
.ms-daw-card:hover { border-color: var(--ms-black); }
.ms-daw-icon { font-size: 36px; line-height: 1; }
.ms-daw-name { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-align: center; }

/* ---- THEY TRUST US ---- */
.ms-trust-section { padding: 60px 0; text-align: center; background: var(--ms-bg); }
.ms-trust-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
}
.ms-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ms-logo-item {
  padding: 16px 28px;
  border: 1.5px solid var(--ms-border);
  border-radius: var(--ms-radius-sm);
  background: var(--ms-white);
  min-width: 160px; min-height: 70px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.ms-logo-item:hover { border-color: var(--ms-black); }
.ms-logo-item img { max-height: 36px; filter: grayscale(1); }
.ms-logo-text { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ms-text-mid); }

/* ---- CATEGORIES ---- */
.ms-categories-section { padding: 48px 0; text-align: center; background: var(--ms-bg); }
.ms-categories-section h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.ms-cat-pills { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.ms-cat-pill {
  padding: 8px 20px;
  border: 1.5px solid var(--ms-border);
  border-radius: var(--ms-radius-pill);
  background: var(--ms-white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.ms-cat-pill:hover { border-color: var(--ms-black); background: var(--ms-black); color: var(--ms-white); }

/* ---- FAQ ---- */
.ms-faq-section { padding: 80px 0; background: var(--ms-bg); }
.ms-faq-section h2 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 48px;
}
.ms-faq-list { max-width: 860px; margin: 0 auto; }
.ms-faq-item {
  background: var(--ms-white);
  border: 1.5px solid var(--ms-border);
  border-bottom: none;
}
.ms-faq-item:first-child { border-radius: var(--ms-radius-sm) var(--ms-radius-sm) 0 0; }
.ms-faq-item:last-child  { border-radius: 0 0 var(--ms-radius-sm) var(--ms-radius-sm); border-bottom: 1.5px solid var(--ms-border); }
.ms-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  gap: 20px;
  user-select: none;
  transition: background 0.15s;
}
.ms-faq-q:hover { background: var(--ms-bg); }
.ms-faq-plus {
  font-size: 22px;
  font-weight: 300;
  color: var(--ms-text-mid);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.ms-faq-item.ms-open .ms-faq-plus { transform: rotate(45deg); }
.ms-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.ms-faq-item.ms-open .ms-faq-a { max-height: 300px; }
.ms-faq-a p { padding: 0 28px 20px; font-size: 14px; color: var(--ms-text-mid); line-height: 1.75; }
.ms-faq-help { text-align: center; margin-top: 36px; }
.ms-faq-help p { font-size: 15px; font-weight: 500; margin-bottom: 14px; }
.ms-btn-outline {
  padding: 13px 32px;
  background: transparent;
  border: 2px solid var(--ms-black);
  border-radius: var(--ms-radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.ms-btn-outline:hover { background: var(--ms-black); color: var(--ms-white); }

/* ---- RELATED PRODUCTS ---- */
.ms-related-section { padding: 80px 0; background: var(--ms-bg); }
.ms-related-section h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 36px;
}
.ms-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ms-related-card {
  background: var(--ms-white);
  border: 1.5px solid var(--ms-border);
  border-radius: var(--ms-radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ms-related-card:hover {
  border-color: var(--ms-black);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.ms-related-artwork { aspect-ratio: 4/3; overflow: hidden; background: var(--ms-bg); }
.ms-related-artwork img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ms-related-body { padding: 14px 16px 18px; }
.ms-related-price { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.ms-related-name { font-size: 13px; font-weight: 500; color: var(--ms-text-mid); line-height: 1.35; }

/* ---- CART TOAST ---- */
.ms-cart-toast {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 1001;
  width: min(380px, calc(100vw - 32px));
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.ms-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.ms-cart-toast-inner {
  background: var(--ms-yellow);
  color: var(--ms-black);
  border: 2px solid var(--ms-black);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.16);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  pointer-events: auto;
}
.ms-cart-toast-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ms-cart-toast-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.68;
}
.ms-cart-toast-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}
.ms-cart-toast-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ms-cart-toast-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: var(--ms-radius-pill);
  background: var(--ms-black);
  color: var(--ms-yellow);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.ms-cart-toast-link:hover {
  background: #222;
  color: var(--ms-yellow);
}
.ms-cart-toast-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(10,10,10,0.18);
  background: transparent;
  color: var(--ms-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 22px;
  line-height: 1;
}
.ms-cart-toast-close:hover {
  border-color: var(--ms-black);
  background: rgba(255,255,255,0.35);
}

/* ---- STICKY BAR ---- */
.ms-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--ms-yellow);
  border-top: 2px solid rgba(0,0,0,0.1);
  padding: 10px 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.ms-sticky-bar.ms-sticky-visible { transform: translateY(0); }
.ms-sticky-bar .ms-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.ms-sticky-name { font-size: 15px; font-weight: 700; flex: 1; }
.ms-sticky-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
}
.ms-sticky-price .ms-sticky-old {
  font-size: 14px;
  text-decoration: line-through;
  opacity: 0.45;
  font-weight: 500;
}
.ms-sticky-cart .single_add_to_cart_button,
.ms-sticky-cart button.button {
  padding: 11px 26px !important;
  background: transparent !important;
  border: 2px solid var(--ms-black) !important;
  border-radius: var(--ms-radius-pill) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--ms-black) !important;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}
.ms-sticky-cart .single_add_to_cart_button:hover,
.ms-sticky-cart button.button:hover {
  background: var(--ms-black) !important;
  color: var(--ms-yellow) !important;
}
.ms-sticky-cart .quantity { display: none !important; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .ms-hero {
    padding: 40px 0 20px;
  }
  .ms-hero .ms-container { grid-template-columns: 1fr; }
  .ms-bundle-story {
    padding: 18px 0 56px;
  }
  .ms-bundle-story-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ms-bundle-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ms-bundle-item:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .ms-bundle-item-media {
    order: 1;
    min-height: auto;
    padding: 22px;
    justify-content: flex-start;
    gap: 18px;
  }
  .ms-bundle-item-copy {
    order: 2;
  }
  .ms-bundle-item:nth-child(even) .ms-bundle-item-media {
    order: 1;
  }
  .ms-bundle-item:nth-child(even) .ms-bundle-item-copy {
    order: 2;
  }
  .ms-bundle-identity-title {
    font-size: 36px;
  }
  .ms-bundle-identity-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
  }
  .ms-bundle-identity-traits {
    margin-top: 0;
  }
  .ms-bundle-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .ms-hero-right-sticky { position: static; }
  .ms-listen-section { padding: 24px 0 64px; }
  .ms-tracks-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-daw-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-related-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-dark-cta { grid-template-columns: 1fr; gap: 24px; margin: 0 16px; }
  .ms-cart-toast {
    right: 16px;
    bottom: 84px;
  }
}
@media (max-width: 600px) {
  .ms-container { padding: 0 16px; }
  .ms-bundle-story-head {
    margin-bottom: 20px;
  }
  .ms-bundle-story h2 {
    font-size: 34px;
  }
  .ms-bundle-story-metrics {
    grid-template-columns: 1fr;
  }
  .ms-bundle-jump-list {
    gap: 8px;
  }
  .ms-bundle-jump {
    width: 100%;
    justify-content: flex-start;
  }
  .ms-bundle-item {
    padding: 16px;
    border-radius: 22px;
  }
  .ms-bundle-item-media {
    min-height: auto;
    padding: 18px;
    border-radius: 24px;
  }
  .ms-bundle-item-index {
    min-width: 72px;
    height: 60px;
    padding: 0 12px;
    font-size: 16px;
  }
  .ms-bundle-identity-type {
    font-size: 18px;
  }
  .ms-bundle-identity-title {
    font-size: 30px;
  }
  .ms-bundle-identity-copy {
    font-size: 14px;
  }
  .ms-bundle-item-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .ms-bundle-item-title {
    font-size: 28px;
  }
  .ms-bundle-preview-shell {
    padding: 14px;
  }
  .ms-bundle-preview-card {
    padding: 10px;
  }
  .ms-bundle-final-cta {
    padding: 22px 18px;
    gap: 16px;
  }
  .ms-tracks-grid { grid-template-columns: 1fr; }
  .ms-related-grid { grid-template-columns: 1fr; }
  .ms-daw-grid { grid-template-columns: repeat(2, 1fr); }
  .ms-dark-cta { padding: 28px 20px; margin: 0 10px; }
  .ms-listen-section { padding: 20px 0 56px; }
  .ms-cart-toast {
    right: 12px;
    left: 12px;
    bottom: 76px;
    width: auto;
  }
  .ms-cart-toast-inner {
    padding: 14px;
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }
  .ms-cart-toast-actions {
    width: 100%;
    justify-content: space-between;
  }
  .ms-sticky-name { display: none; }
}
