/** Shopify CDN: Minification failed

Line 1154:19 Unexpected "*"

**/
/* ============================================
   DR. COLLECTORS — Custom Theme Styles
   Brand: Artisanal, Natural, Premium
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --drc-cream: #FAF6EE;
  --drc-cream-dark: #F5F0E6;
  --drc-navy: #1E2A5E;
  --drc-navy-light: #2D3E7A;
  --drc-terracotta: #C4775A;
  --drc-terracotta-light: #D4917A;
  --drc-olive: #3D5A3E;
  --drc-sand: #D4C9B0;
  --drc-khaki: #B8A98E;
  --drc-warm-black: #1A1A18;

  --font-heading: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-body: 'Lora', Georgia, serif;
}

/* --- Global Typography Override --- */
body {
  font-family: var(--font-body) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  color: var(--drc-navy);
  background-color: var(--drc-cream);
}

h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5 {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--drc-navy);
  font-weight: 600;
}

h1, .h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  letter-spacing: 0.2em;
  line-height: 1.15;
}

h2, .h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: 0.18em;
  line-height: 1.2;
}

h3, .h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: 0.12em;
}

/* Subtitle style — italic serif */
.subtitle,
.rte em,
blockquote {
  font-family: var(--font-heading) !important;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* --- Links --- */
a {
  color: var(--drc-navy);
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

.link,
.customer a {
  font-family: var(--font-body) !important;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  text-underline-offset: 0;
}

.link:hover,
.customer a:hover {
  border-bottom-color: transparent;
}

/* --- Buttons --- */
.button,
.shopify-challenge__button,
button.button {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 1.4rem 3.6rem;
  transition: all 0.3s ease;
  border: 1px solid var(--drc-navy);
}

.button--primary {
  background-color: var(--drc-navy);
  color: var(--drc-cream);
}

.button--primary:hover {
  background-color: var(--drc-navy-light);
}

.button--secondary {
  background-color: transparent;
  color: var(--drc-navy);
  border: 1px solid var(--drc-navy);
}

.button--secondary:hover {
  background-color: var(--drc-navy);
  color: var(--drc-cream);
}

/* --- Header --- */
.section-header {
  background-color: var(--drc-cream);
  border-bottom: none;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 100;
  margin-bottom: 0 !important;
}

/* Teddy Forever bar */
.teddy-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--drc-navy);
  text-align: center;
  height: 24px;
  text-decoration: none;
  overflow: hidden;
  transition: height 0.3s ease;
}

.teddy-bar span {
  font-family: var(--font-heading) !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
  line-height: 1;
}

.teddy-bar:hover,
.teddy-bar:active,
.teddy-bar:focus,
.teddy-bar:visited {
  background-color: var(--drc-navy) !important;
  color: #fff !important;
  outline: none !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

.teddy-bar:hover span,
.teddy-bar:active span,
.teddy-bar:focus span,
.teddy-bar:visited span {
  color: #fff !important;
  opacity: 0.85;
}

.teddy-bar--hidden {
  height: 0 !important;
  pointer-events: none;
}

/* Remove all header separator lines */
.header-wrapper,
.header-wrapper--border-bottom {
  border-bottom: none !important;
}

/* Kill ALL gaps between header and hero */
.shopify-section-group-header-group,
.section-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

#MainContent {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#MainContent > .shopify-section:first-child,
#MainContent > .shopify-section:first-child > *,
#MainContent > .shopify-section:first-child .banner,
#MainContent > .shopify-section:first-child .spaced-section,
#MainContent > .shopify-section:first-child [class*="__padding"] {
  margin-top: 0 !important;
}

/* Override Dawn inline style margin-bottom on header */
.section-header[style] {
  margin-bottom: 0 !important;
}

sticky-header {
  margin-bottom: 0 !important;
}

sticky-header + *,
.header-wrapper + * {
  margin-top: 0 !important;
}

/* Sticky header — always visible */
.shopify-section-header-sticky .section-header {
  background-color: rgba(250, 246, 238, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Header shrink on scroll */
.scrolled-past-header .header {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.scrolled-past-header .header__heading-logo-wrapper {
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Logo */
.header__heading-logo-wrapper {
  transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.header__heading-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.scrolled-past-header .header__heading-logo {
  max-height: 40px;
}

/* Remove underline from logo link */
.header__heading-link {
  transition: opacity 0.3s ease;
  text-decoration: none;
  border-bottom: none;
}

.header__heading-link::after {
  display: none;
}

.header__heading-link:hover {
  opacity: 0.7;
}

/* Navigation links */
.header__menu-item,
.header__menu-item span,
.menu-drawer__menu-item {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--drc-navy);
  text-decoration: none;
  position: relative;
}

/* Remove underline from nav links — including active state */
.header__menu-item,
.header__menu-item.link,
.header__menu-item.list-menu__item,
.header__active-menu-item,
.header__menu-item .header__active-menu-item {
  border-bottom: none !important;
  text-decoration: none !important;
}

/* Subtle opacity hover on nav items */
.header__menu-item:hover {
  opacity: 0.6;
}

/* Header icons */
.header__icon {
  color: var(--drc-navy);
  transition: opacity 0.3s ease;
}

.header__icon:hover {
  opacity: 0.6;
}

/* Text-based header icons (Login, Cart) */
.header__icon--text {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}

.header__icon--text:after {
  display: none !important;
}

.header__icon-label {
  font-family: var(--font-body) !important;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--drc-navy);
  text-decoration: none !important;
  border-bottom: none !important;
}

.header__icon--text,
.header__icon--text:hover,
.header__icon--text span,
.header__icon--text:hover span {
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__icon-separator {
  color: var(--drc-navy);
  opacity: 0.25;
  font-size: 1.6rem;
  font-weight: 200;
  margin: 0 1rem;
  line-height: 1;
}

/* Smaller search icon */
.header__icon--search .icon {
  width: 1.8rem;
  height: 1.8rem;
}

/* Remove search bar border */
.header__icon--search {
  border: none !important;
}

/* Mobile: hide search + login, show only cart */
@media screen and (max-width: 749px) {
  .header__icon--search,
  .header__icon--account,
  .header__icon-separator {
    display: none !important;
  }
}

/* Cart count bubble */
.cart-count-bubble {
  background-color: var(--drc-terracotta);
  color: var(--drc-cream);
  font-family: var(--font-heading);
  font-size: 1rem;
}

/* --- Mega Menu --- */
.mega-menu__content {
  background-color: var(--drc-cream);
  border-top: 1px solid var(--drc-sand);
  box-shadow: 0 20px 40px rgba(30, 42, 94, 0.08);
  padding: 4rem 0;
}

.mega-menu__link {
  font-family: var(--font-body) !important;
  font-size: 1.3rem;
  color: var(--drc-navy);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease;
  padding: 0.4rem 0;
}

.mega-menu__link:hover {
  opacity: 0.6;
  text-decoration: none;
}

.mega-menu__link--level-2 {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--drc-navy);
  margin-bottom: 0.8rem;
}

/* Mega menu animation */
.js .mega-menu__content {
  opacity: 0;
  transform: translateY(-0.5rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mega-menu[open] .mega-menu__content {
  opacity: 1;
  transform: translateY(0);
}

/* Hide caret icon — cleaner look */
.header__menu-item .icon-caret {
  display: none;
}

/* --- Mobile Drawer Menu --- */
.menu-drawer {
  background-color: var(--drc-cream);
}

.menu-drawer__menu-item {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--drc-navy);
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--drc-sand);
}

.menu-drawer__submenu .menu-drawer__menu-item {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: none;
  border-bottom-color: rgba(212, 201, 176, 0.5);
}

.menu-drawer__close-button,
.menu-drawer__utility-links {
  color: var(--drc-navy);
}

/* Hamburger menu icon */
.header__icon--menu .icon-hamburger {
  color: var(--drc-navy);
}

/* --- Product Cards --- */
.card-wrapper {
  background-color: transparent;
}

.card__heading,
.card__heading a {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--drc-navy);
}

.card-information .price {
  font-family: var(--font-body) !important;
  font-size: 1.3rem;
  color: var(--drc-navy);
  letter-spacing: 0.05em;
}

/* Product card hover — image swap */
.card--media .media img {
  transition: opacity 0.4s ease;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */

/* Product layout */
.product {
  column-gap: 4rem;
}

/* Product title */
.product__title h1,
.product__title .h1 {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.3;
  margin-bottom: 1rem;
}

/* Price */
.price-item {
  font-family: var(--font-body) !important;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--drc-navy);
}

.price .price-item--sale {
  color: var(--drc-terracotta);
}

.price .price-item--regular.price-item--last {
  text-decoration: line-through;
  opacity: 0.5;
}

/* Description */
.product__description,
.product__description .rte,
.product__description p {
  font-family: var(--font-body) !important;
  line-height: 1.9;
  font-size: 1.45rem;
  color: var(--drc-navy);
}

/* Variant picker / size selector */
.product-form__input label,
.variant-input .field__label {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--drc-navy);
  margin-bottom: 0.8rem;
}

/* Size buttons */
.product-form__input input[type="radio"] + label {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  border-color: var(--drc-sand);
  color: var(--drc-navy);
  min-width: 4.4rem;
  padding: 0.8rem 1.4rem;
  transition: all 0.2s ease;
}

.product-form__input input[type="radio"]:checked + label {
  border-color: var(--drc-navy);
  background-color: var(--drc-navy);
  color: var(--drc-cream);
}

.product-form__input input[type="radio"] + label:hover {
  border-color: var(--drc-navy);
}

/* Sold out variant */
.product-form__input input[type="radio"]:disabled + label {
  opacity: 0.3;
  text-decoration: line-through;
}

/* Add to cart button */
.product-form__submit {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 500;
  font-size: 1.35rem;
  padding: 1.8rem 4rem;
  background-color: var(--drc-navy);
  color: var(--drc-cream);
  border: none;
  transition: background-color 0.3s ease;
  width: 100%;
}

.product-form__submit:hover {
  background-color: var(--drc-navy-light);
}

/* Sold out state */
.product-form__submit[disabled] {
  background-color: var(--drc-sand);
  color: var(--drc-navy);
  opacity: 0.6;
  border: 1px solid var(--drc-sand);
}

/* Dynamic checkout (Shop Pay, etc.) */
.shopify-payment-button__button {
  border-radius: 0 !important;
  font-family: var(--font-heading) !important;
}

/* Collapsible tabs (Materials, Shipping, etc.) */
.product .accordion summary {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--drc-navy);
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--drc-sand);
}

.product .accordion .accordion__content {
  font-family: var(--font-body) !important;
  font-size: 1.35rem;
  line-height: 1.8;
  padding: 1.5rem 0;
  color: var(--drc-navy);
}

/* Share button */
.share-button {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}

/* --- Product Gallery --- */
.product__media-wrapper {
  position: relative;
}

/* Thumbnail slider */
.thumbnail-slider .thumbnail {
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
  cursor: pointer;
}

.thumbnail-slider .thumbnail:hover,
.thumbnail-slider .thumbnail.is-active {
  border-color: var(--drc-navy);
}

/* Zoom on hover */
.product__modal-opener:hover .product__media img {
  cursor: zoom-in;
}

/* --- Related Products --- */
.related-products .title-wrapper h2 {
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
}

.related-products .grid {
  gap: 2rem;
}

/* --- Product Page Mobile --- */
@media screen and (max-width: 749px) {
  .product {
    column-gap: 0;
  }

  .product__title h1,
  .product__title .h1 {
    font-size: 2rem;
    letter-spacing: 0.15em;
  }

  .price-item {
    font-size: 1.6rem;
  }

  .product-form__submit {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
  }

  .product .accordion summary {
    font-size: 1.15rem;
    padding: 1.2rem 0;
  }

  .related-products .title-wrapper h2 {
    font-size: 1.8rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--drc-cream-dark);
  border-top: 1px solid var(--drc-sand);
  margin-top: 0 !important;
}

.footer__content-top {
  padding-top: 2rem;
}

/* Footer column headings */
.footer-block__heading {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--drc-navy);
  margin-bottom: 2rem;
}

/* Footer links */
.footer-block__details-content a,
.footer-block__details-content .list-menu__item--link {
  font-family: var(--font-body) !important;
  font-size: 1.35rem;
  color: var(--drc-navy);
  text-decoration: none;
  border-bottom: none;
  transition: opacity 0.3s ease;
  padding: 0.3rem 0;
  line-height: 1.8;
}

.footer-block__details-content a:hover,
.footer-block__details-content .list-menu__item--link:hover {
  opacity: 0.5;
  border-bottom: none;
}

/* Footer text blocks (locations) */
.footer-block__details-content.rte p {
  font-family: var(--font-body) !important;
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--drc-navy);
  margin-bottom: 1.5rem;
}

.footer-block__details-content.rte strong {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Social icons */
.footer__list-social {
  margin-top: 0.5rem;
  justify-content: center;
}

.footer__list-social a {
  color: var(--drc-navy);
  transition: opacity 0.3s ease;
}

.footer__list-social a:hover {
  opacity: 0.5;
}

.footer__list-social .icon {
  width: 3rem;
  height: 3rem;
}

/* Newsletter + social bottom area */
.footer-block--newsletter {
  text-align: center;
  max-width: 450px;
  margin: 2rem auto 0;
}

.footer__newsletter {
  margin-bottom: 1.5rem;
}

.footer__newsletter .newsletter-form__heading {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--drc-navy);
  margin-bottom: 1.5rem;
}

.footer__newsletter .field__input,
.footer__newsletter input[type="email"] {
  font-family: var(--font-body) !important;
  background-color: transparent;
  border: 1px solid var(--drc-navy);
  border-radius: 0;
  color: var(--drc-navy);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.footer__newsletter .field__label {
  display: none !important;
}

.footer__newsletter input[type="email"]::placeholder {
  color: var(--drc-navy);
  opacity: 0.4;
  font-style: italic;
}

.footer__newsletter .newsletter-form__button {
  background-color: var(--drc-navy);
  color: var(--drc-cream);
  border: 1px solid var(--drc-navy);
}

.footer__newsletter .newsletter-form__button:hover {
  background-color: var(--drc-navy-light);
}

/* Payment icons */
.footer__payment .list-payment {
  opacity: 0.5;
}

/* Footer logo */
.footer__logo-wrapper {
  text-align: center;
  padding: 3rem 0 1rem;
}

.footer__logo {
  width: 180px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer__logo-link:hover .footer__logo {
  opacity: 1;
}

/* Copyright */
.footer__content-bottom {
  border-top: 1px solid var(--drc-sand);
  margin-top: 3rem;
  padding-top: 2rem;
}

.copyright {
  font-family: var(--font-body) !important;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--drc-navy);
  opacity: 0.5;
}

/* Policy links */
.policies a {
  font-size: 1.1rem;
  color: var(--drc-navy);
  opacity: 0.5;
}

.policies a:hover {
  opacity: 0.8;
}

/* Footer accordion — desktop: always open, no chevron */
.footer-block__accordion {
  border: none;
}

.footer-block__accordion summary {
  list-style: none;
  cursor: default;
}

.footer-block__accordion summary::-webkit-details-marker {
  display: none;
}

.footer-block__chevron {
  display: none;
}

/* Desktop: force open, no accordion behavior */
@media screen and (min-width: 750px) {
  .footer-block__accordion {
    pointer-events: none;
  }

  .footer-block__accordion .footer-block__details-content {
    display: block !important;
    pointer-events: auto;
  }

  .footer-block__accordion summary {
    pointer-events: none;
  }
}

/* Footer mobile */
@media screen and (max-width: 749px) {
  .footer-block {
    padding-bottom: 0;
    border-bottom: 1px solid var(--drc-sand);
    margin-bottom: 0;
  }

  .footer-block__accordion summary {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 0;
  }

  .footer-block__chevron {
    display: inline-block;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    transform: rotate(0deg);
    line-height: 1;
  }

  .footer-block__accordion[open] .footer-block__chevron {
    transform: rotate(90deg);
  }

  .footer-block__accordion .footer-block__details-content {
    padding-bottom: 1.5rem;
  }

  .footer-block__heading {
    margin-bottom: 0;
  }

  .footer__content-top {
    padding-top: 1rem;
  }

  .footer__list-social .icon {
    width: 2.4rem;
    height: 2.4rem;
  }
}

/* ============================================
   COLLECTION PAGE
   ============================================ */

/* Collection banner / title */
.collection-hero__title,
.collection-banner__heading {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 4rem);
  color: var(--drc-navy);
  text-align: center;
}

.collection-hero__description,
.collection-banner__description {
  font-family: var(--font-body) !important;
  font-style: italic;
  font-size: 1.4rem;
  max-width: 60rem;
  margin: 1rem auto 0;
  text-align: center;
  opacity: 0.7;
}

/* Filters — horizontal */
.facets__label,
.facets__summary span,
.facet-filters__label {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--drc-navy);
}

.facets__summary {
  border-bottom: 1px solid var(--drc-sand);
  padding-bottom: 0.8rem;
}

.facets__disclosure {
  border-color: var(--drc-sand);
}

/* Sort dropdown */
.facet-filters__sort.select__select {
  font-family: var(--font-body) !important;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

/* Active filter tags */
.active-facets__button {
  font-family: var(--font-body) !important;
  font-size: 1.2rem;
  border: 1px solid var(--drc-navy);
  color: var(--drc-navy);
  background: transparent;
}

/* Product count */
.product-count__text {
  font-family: var(--font-body) !important;
  font-size: 1.2rem;
  opacity: 0.5;
}

/* Collection grid — 3 columns */
.collection .grid--3-col-desktop {
  gap: 2rem;
}

@media screen and (min-width: 990px) {
  .collection .grid--3-col-desktop {
    gap: 2.4rem;
  }
}

/* Product cards in collection */
.collection .card__heading a {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
}

.collection .price {
  font-size: 1.3rem;
}

/* Hover image swap — smooth crossfade */
.card__media .media img:first-child {
  transition: opacity 0.5s ease;
}

.card-wrapper:hover .card__media .media img:first-child {
  opacity: 0;
}

.card__media .media img + img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card-wrapper:hover .card__media .media img + img {
  opacity: 1;
}

/* Pagination */
.pagination__item {
  font-family: var(--font-heading) !important;
  letter-spacing: 0.1em;
}

.pagination__item--current {
  border-bottom: 2px solid var(--drc-navy);
}

/* Collection mobile */
@media screen and (max-width: 749px) {
  .collection .grid {
    gap: 1.2rem;
  }

  .collection .card__heading a {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
  }

  .collection-hero__title {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
  }
}

/* --- Announcement Bar — hidden --- */
.utility-bar {
  display: none !important;
}

/* --- Cart Drawer --- */
.cart-drawer {
  background-color: var(--drc-cream);
}

.cart-drawer__overlay {
  background-color: rgba(30, 42, 94, 0.3);
}

/* --- Selection / Highlight --- */
::selection {
  background-color: rgba(30, 42, 94, 0.15);
  color: var(--drc-navy);
}

/* --- Focus States (Accessibility) --- */
*:focus-visible {
  outline: 2px solid var(--drc-navy);
  outline-offset: 3px;
}

/* --- Smooth scrolling --- */
html {
  scroll-behavior: smooth;
}

/* --- Image treatments --- */
.media img {
  object-fit: cover;
}

/* --- Spacing refinements --- */
.section-template--*__padding {
  padding-top: clamp(3rem, 5vw, 7rem);
  padding-bottom: clamp(3rem, 5vw, 7rem);
}

/* --- Mobile optimizations --- */
@media screen and (max-width: 749px) {
  h1, .h1 {
    letter-spacing: 0.12em;
  }

  .button,
  .product-form__submit {
    padding: 1.2rem 2.4rem;
    font-size: 1.2rem;
    width: 100%;
  }

  .page-width {
    padding: 0 1.8rem;
  }

  /* Mobile header */
  .header {
    padding: 12px 1.5rem !important;
  }

  .scrolled-past-header .header {
    padding: 6px 1.5rem !important;
  }

  .header__heading-logo {
    max-height: 45px;
  }

  .scrolled-past-header .header__heading-logo {
    max-height: 32px;
  }

  /* Mobile announcement bar */
  .announcement-bar {
    font-size: 1rem;
    letter-spacing: 0.1em;
    padding: 0.6rem 0;
  }

  /* Mobile mega menu items bigger tap targets */
  .menu-drawer__menu-item {
    padding: 1.4rem 0;
    font-size: 1.5rem;
  }
}

/* Tablet */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .header__menu-item {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }
}

/* ============================================
   HOMEPAGE SECTIONS
   ============================================ */

/* --- Hero Banner --- */
.banner--large,
.banner--large:not(.banner--adapt) {
  min-height: calc(100vh - 80px) !important;
  max-height: calc(100vh - 80px) !important;
}

@media screen and (max-width: 749px) {
  .banner--large,
  .banner--large:not(.banner--adapt) {
    min-height: calc(100vh - 65px) !important;
    max-height: calc(100vh - 65px) !important;
  }
}

.banner__media img,
.banner__media .banner__img {
  object-position: center 40% !important;
}

.banner__content {
  z-index: 2;
}

.banner__heading {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 300;
  color: var(--drc-cream);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.banner__text .subtitle,
.banner__text p {
  font-family: var(--font-heading) !important;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.08em;
  font-size: 1.8rem;
  color: var(--drc-cream);
}

@media screen and (max-width: 749px) {
  .banner__text .subtitle,
  .banner__text p {
    font-size: 1.4rem;
  }
}

/* Hero CTA button */
.banner .button,
.banner .button--primary,
.banner .button--secondary {
  border: 1px solid var(--drc-cream);
  color: var(--drc-cream);
  background: transparent;
  padding: 1.6rem 5rem;
  font-size: 1.2rem;
  letter-spacing: 0.25em;
}

.banner .button:hover,
.banner .button--primary:hover,
.banner .button--secondary:hover {
  background-color: var(--drc-cream);
  color: var(--drc-navy);
}

/* Hero content — bottom left with padding */
.banner__content.banner__content--bottom-left {
  padding: 4rem 5rem;
}

@media screen and (max-width: 749px) {
  .banner__content.banner__content--bottom-left {
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    top: auto !important;
    bottom: 0 !important;
    transform: none !important;
    position: absolute !important;
  }

  .banner__heading {
    font-size: 3.5rem !important;
    letter-spacing: 0.2em;
  }

  .banner__media::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
  }
}

/* --- Featured Collection Section --- */
.featured-collection .title-wrapper {
  margin-bottom: 3rem;
}

.featured-collection .title-wrapper h2 {
  font-weight: 400;
  letter-spacing: 0.2em;
}

/* Featured collection slider — scroll snap */
.featured-collection .slider {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 1.5rem;
}

.featured-collection .slider .grid__item {
  scroll-snap-align: start;
}

/* Hide scrollbar but keep scroll */
.featured-collection .slider::-webkit-scrollbar {
  display: none;
}

.featured-collection .slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media screen and (max-width: 749px) {
  .featured-collection .grid--2-col-tablet-down .grid__item:nth-child(n+7) {
    display: none;
  }
}

/* View all link */
.view-all {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--drc-navy);
  text-decoration: none;
}

.view-all:hover {
  opacity: 0.6;
}

/* ============================================
   FEATURED PRODUCT STORY (Rope Belt)
   ============================================ */
.featured-story {
  background-color: var(--drc-cream-dark);
  padding: 6rem 0;
}

.featured-story__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

/* Images — side by side, offset effect */
.featured-story__images {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.featured-story__image-main {
  overflow: hidden;
  max-height: 65vh;
}

.featured-story__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.featured-story__image-small {
  max-height: 55vh;
  overflow: hidden;
  margin-top: 10rem;
}

.featured-story__image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Content */
.featured-story__title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--drc-navy);
}

.featured-story__text p {
  font-family: var(--font-body) !important;
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--drc-navy);
  margin-bottom: 3.5rem;
}

.featured-story__cta {
  margin-bottom: 2rem;
}

.featured-story__cta .button {
  padding: 1.4rem 4rem;
  background: transparent;
  border: 1px solid var(--drc-navy);
  color: var(--drc-navy);
}

.featured-story__cta .button:hover {
  background-color: var(--drc-navy);
  color: var(--drc-cream);
}

.featured-story__secondary {
  margin-top: 0.5rem;
}

.featured-story__secondary-link {
  font-family: var(--font-body) !important;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--drc-navy);
  opacity: 0.6;
  text-decoration: none;
  transition: opacity 0.3s ease;
  border-bottom: none;
}

.featured-story__secondary-link:hover {
  opacity: 1;
}

/* Mobile — hide small image, stack layout */
@media screen and (max-width: 749px) {
  .featured-story {
    padding: 4rem 0;
  }

  .featured-story__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .featured-story__images {
    grid-template-columns: 1fr;
    position: relative;
  }

  .featured-story__image-main img {
    width: 70%;
  }

  .featured-story__image-small {
    display: block;
    position: absolute;
    bottom: -2rem;
    right: 0;
    width: 45%;
    max-height: 35vh;
    margin-top: 0;
  }

  .featured-story__title {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
  }

  .featured-story__text p {
    font-size: 1.35rem;
  }

  .featured-story__cta .button {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   STORY SPLIT (Quality / Founders)
   ============================================ */
.story-split {
  padding: 0;
  overflow: hidden;
}

.story-split__grid {
  display: grid;
  gap: 0;
  align-items: stretch;
}

/* Image left 60/40 */
.story-split__grid--image-left {
  grid-template-columns: 1.5fr 1fr;
}

/* Image right 40/60 */
.story-split__grid--image-right {
  grid-template-columns: 1fr 1.5fr;
}

.story-split__grid--image-right .story-split__content {
  order: -1;
}

.story-split__image {
  overflow: hidden;
  max-height: 600px;
}

.story-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.story-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5rem;
  background-color: var(--drc-cream);
}

.story-split__title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--drc-navy);
}

.story-split__text p {
  font-family: var(--font-body) !important;
  font-size: 1.45rem;
  line-height: 1.9;
  color: var(--drc-navy);
  margin-bottom: 3rem;
}

.story-split .button--secondary {
  align-self: flex-start;
  padding: 1.4rem 3.5rem;
}

/* Mobile — stack */
@media screen and (max-width: 749px) {
  .story-split__grid--image-left,
  .story-split__grid--image-right {
    grid-template-columns: 1fr;
  }

  .story-split__grid--image-right .story-split__content {
    order: 1;
  }

  .story-split__image {
    min-height: 40vh;
    max-height: 50vh;
  }

  .story-split__content {
    padding: 3rem 2rem;
  }

  .story-split__title {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }

  .story-split__text p {
    font-size: 1.35rem;
  }

  .story-split .button--secondary {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   SHOP BY CATEGORY
   ============================================ */
.shop-category {
  padding: 6rem 0;
  background-color: var(--drc-cream);
}

.shop-category__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.shop-category__title {
  font-family: var(--font-heading) !important;
  text-transform: lowercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--drc-navy);
}

.shop-category__arrows {
  display: flex;
  gap: 1rem;
}

.shop-category__arrow {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--drc-navy);
  cursor: pointer;
  padding: 0.5rem;
  transition: opacity 0.3s ease;
  font-family: var(--font-heading);
}

.shop-category__arrow:hover {
  opacity: 0.5;
}

/* Slider */
.shop-category__slider {
  display: flex;
  gap: 5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 0;
  padding-bottom: 1rem;
}

.shop-category__slider::-webkit-scrollbar {
  display: none;
}

.shop-category__slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Card */
.shop-category__card {
  flex: 0 0 calc(33.333% - 4rem);
  scroll-snap-align: start;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.shop-category__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4.5;
}

.shop-category__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.shop-category__card:hover .shop-category__image img {
  transform: scale(1.03);
}

/* Label overlay */
.shop-category__label {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  color: var(--drc-cream);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

/* Mobile */
@media screen and (max-width: 749px) {
  .shop-category {
    padding: 4rem 0;
  }

  .shop-category__card {
    flex: 0 0 75vw;
  }

  .shop-category__label {
    bottom: 2rem;
    left: 2rem;
    font-size: 1.8rem;
  }

  .shop-category__title {
    font-size: 1.8rem;
  }
}

/* --- Storytelling Banner (2nd image-banner) --- */
.banner--medium {
  min-height: 60vh;
}

@media screen and (max-width: 749px) {
  .banner--medium {
    min-height: 50vh;
  }
}

/* --- Image with Text (Rope Belt) --- */
.image-with-text {
  gap: 0;
}

.image-with-text__content {
  padding: 5rem 4rem;
}

@media screen and (max-width: 749px) {
  .image-with-text__content {
    padding: 3rem 2rem;
  }
}

.image-with-text h2,
.image-with-text .h1 {
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.image-with-text .rte p {
  font-family: var(--font-body) !important;
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--drc-navy);
}

/* --- Journal / Blog Section --- */
.blog .title-wrapper h2 {
  font-weight: 400;
  letter-spacing: 0.2em;
}

.article-card__title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
  font-size: 1.4rem;
}

.article-card__info {
  font-family: var(--font-body) !important;
  font-size: 1.2rem;
  opacity: 0.6;
  letter-spacing: 0.05em;
}

/* ============================================
   ROPE BELT EDITORIAL PAGE
   ============================================ */
.rb-editorial__hero {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}

.rb-editorial__hero img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.rb-editorial__body {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.rb-editorial__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--drc-navy);
  text-align: center;
  margin: 6rem 0 4rem;
}

.rb-editorial__section {
  max-width: 60rem;
  margin: 0 auto 4rem;
}

.rb-editorial__section p {
  font-family: var(--font-body);
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
  margin-bottom: 2rem;
  text-align: justify;
}

.rb-editorial__section h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--drc-navy);
  margin-bottom: 2rem;
}

.rb-editorial__accent {
  font-style: italic;
  font-size: 1.7rem !important;
  opacity: 0.85;
}

/* Image layouts */
.rb-editorial__images {
  margin: 5rem 0;
}

.rb-editorial__images--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 70%;
}

.rb-editorial__images--trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.rb-editorial__images--trio .rb-editorial__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.rb-editorial__images--trio .rb-editorial__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  margin-left: auto;
  margin-right: auto;
}

.rb-editorial__img {
  overflow: hidden;
}

.rb-editorial__images--pair .rb-editorial__img {
  aspect-ratio: 3 / 4;
}

.rb-editorial__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-fit: cover;
}

.rb-editorial__images--full img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 55vh;
  object-fit: cover;
}

.rb-editorial__images--no-crop img {
  max-height: none;
  max-width: 80%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center 25%;
}

.rb-editorial__images--drawing {
  text-align: center;
  max-width: 30rem;
  margin: 5rem auto;
}

.rb-editorial__images--drawing img {
  width: 100%;
  height: auto;
  display: block;
}

/* Split text + image */
.rb-editorial__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 5rem 0;
}

.rb-editorial__split-text h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--drc-navy);
  margin-bottom: 2rem;
}

.rb-editorial__split-text p {
  font-family: var(--font-body);
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
  margin-bottom: 2rem;
  text-align: justify;
}

.rb-editorial__split-img {
  overflow: hidden;
  max-width: 85%;
  margin-left: auto;
}

.rb-editorial__split-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Duffel bag image — desktop/mobile toggle */
.rb-editorial__duffel-mobile {
  display: none;
}

.rb-editorial__duffel-desktop {
  display: block;
}

/* Intro hook — mobile only above image */
.rb-editorial__intro-hook {
  display: none;
}

.rb-editorial__intro-hook--desktop {
  display: block;
}

@media screen and (max-width: 749px) {
  .rb-editorial__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rb-editorial__split-img {
    max-width: 100%;
  }

  .rb-editorial__intro-hook {
    display: block;
    font-family: var(--font-body);
    font-size: 1.5rem;
    line-height: 2;
    color: var(--drc-navy);
    margin-bottom: 2rem;
    text-align: center;
  }

  .rb-editorial__intro-hook--desktop {
    display: none;
  }

  .rb-editorial__images--pair {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rb-editorial__images--trio {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .rb-editorial__images--trio .rb-editorial__img:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .rb-editorial__duffel-mobile {
    display: block;
    max-width: 50%;
    margin: 2rem auto;
  }

  .rb-editorial__duffel-mobile img {
    width: 100%;
    height: auto;
    display: block;
  }

  .rb-editorial__duffel-desktop {
    display: none;
  }

  .rb-editorial__images--pair .rb-editorial__img:first-child {
    display: none;
  }
}

.rb-editorial__section--closing {
  text-align: center;
  margin: 5rem auto 1rem;
}

.rb-editorial__section--closing p {
  font-family: var(--font-heading) !important;
  font-size: 1.8rem !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.6;
  text-align: center !important;
}

/* Shop CTA section */
.rb-editorial__shop {
  padding: 2rem 0 8rem;
  text-align: center;
}

.rb-editorial__shop-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--drc-navy);
  margin-bottom: 4rem;
}

.rb-editorial__products {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.rb-editorial__product {
  width: 22%;
  text-decoration: none;
  text-align: center;
}

.rb-editorial__product-img {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.rb-editorial__product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease;
}

.rb-editorial__product:hover .rb-editorial__product-img img {
  transform: scale(1.03);
}

.rb-editorial__product-name {
  display: block;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--drc-navy);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

.rb-editorial__shop-cta {
  margin-top: 2rem;
}

@media screen and (max-width: 749px) {
  .rb-editorial__hero img {
    height: 50vh;
  }

  .rb-editorial__title {
    font-size: 2.6rem;
    margin: 4rem 0 3rem;
  }

  .rb-editorial__section p {
    font-size: 1.4rem;
    line-height: 1.85;
  }

  .rb-editorial__images--pair {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rb-editorial__images--pair .rb-editorial__img:last-child {
    margin-top: 0;
  }

  .rb-editorial__products {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .rb-editorial__product {
    width: 42%;
  }
}

/* ============================================
   FOR TEDDY EDITORIAL PAGE
   ============================================ */
.teddy-editorial {
  padding: 2rem 0 6rem;
  background-color: var(--drc-cream);
}

.teddy-editorial__body {
  max-width: 80rem;
  margin: 0 auto;
}

.teddy-editorial__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--drc-navy);
  text-align: center;
  margin-bottom: 3rem;
}

.teddy-editorial__portrait {
  text-align: center;
  max-width: 35rem;
  margin: 0 auto 3rem;
}

.teddy-editorial__portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.teddy-editorial__dates {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--drc-navy);
  opacity: 0.7;
  margin-bottom: 4rem;
}

.teddy-editorial__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.teddy-editorial__nashville-mobile {
  display: none;
}

.teddy-editorial__nashville-desktop {
  display: block;
}

.teddy-editorial__split-text p {
  font-family: var(--font-body);
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
  margin-bottom: 2rem;
  text-align: justify;
}

.teddy-editorial__split-img {
  overflow: hidden;
}

.teddy-editorial__split-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.teddy-editorial__section {
  max-width: 60rem;
  margin: 0 auto 3rem;
}

.teddy-editorial__section p {
  font-family: var(--font-body);
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
  margin-bottom: 2rem;
  text-align: justify;
}

.teddy-editorial__image-center {
  max-width: 40rem;
  margin: 3rem auto 4rem;
  text-align: center;
  overflow: hidden;
  max-height: 45vh;
}

.teddy-editorial__image-center img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

.teddy-editorial__closing {
  text-align: center;
  margin: 4rem 0 2rem;
}

.teddy-editorial__closing p {
  font-family: var(--font-heading) !important;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--drc-navy);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.teddy-editorial__family {
  max-width: 70%;
  margin: 2rem auto 0;
}

.teddy-editorial__family img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 749px) {
  .teddy-editorial__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .teddy-editorial__nashville-mobile {
    display: block;
    font-family: var(--font-body);
    font-size: 1.4rem;
    line-height: 1.85;
    color: var(--drc-navy);
    text-align: justify;
    margin-bottom: 2rem;
  }

  .teddy-editorial__nashville-desktop {
    display: none;
  }

  .teddy-editorial__portrait {
    max-width: 25rem;
  }

  .teddy-editorial__family {
    max-width: 90%;
  }

  .teddy-editorial__section p,
  .teddy-editorial__split-text p {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}

/* ============================================
   OUR STORY EDITORIAL PAGE
   ============================================ */
.story-editorial {
  padding: 2rem 0 6rem;
  background-color: var(--drc-cream);
}

.story-editorial__body {
  max-width: 80rem;
  margin: 0 auto;
}

.story-editorial__title {
  font-family: var(--font-heading) !important;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--drc-navy);
  text-align: center;
  margin-bottom: 4rem;
}

.story-editorial__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 4rem 0;
}

.story-editorial__split--reverse {
  direction: rtl;
}

.story-editorial__split--reverse > * {
  direction: ltr;
}

.story-editorial__split-text p {
  font-family: var(--font-body);
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
  margin-bottom: 2rem;
  text-align: justify;
}

.story-editorial__split-img {
  overflow: hidden;
}

.story-editorial__split-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.story-editorial__section {
  max-width: 80rem;
  margin: 0 auto 3rem;
}

.story-editorial__section p {
  font-family: var(--font-body);
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
  margin-bottom: 2rem;
  text-align: justify;
}

.story-editorial__section h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--drc-navy);
  margin-bottom: 2rem;
  text-align: center;
}

.story-editorial__section--centered p {
  text-align: center;
}

.story-editorial__accent {
  font-style: italic;
  font-size: 1.7rem !important;
  opacity: 0.85;
}

.story-editorial__illustration {
  text-align: center;
  max-width: 20rem;
  margin: 4rem auto;
}

.story-editorial__illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.story-editorial__image-full {
  margin: 3rem 0 4rem;
  overflow: hidden;
}

.story-editorial__image-full img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.story-editorial__closing {
  text-align: center;
  margin: 4rem 0 2rem;
}

.story-editorial__closing p {
  font-family: var(--font-heading) !important;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--drc-navy);
}

.story-editorial__teddy {
  text-align: center;
  max-width: 25rem;
  margin: 2rem auto 0;
}

.story-editorial__teddy img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 749px) {
  .story-editorial__split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-editorial__split--reverse {
    direction: ltr;
  }

  .story-editorial__section p,
  .story-editorial__split-text p {
    font-size: 1.4rem;
    line-height: 1.85;
  }

  .story-editorial__teddy {
    max-width: 20rem;
  }
}

/* ============================================
   CONTENT PAGES (Our Story, Rope Belt)
   ============================================ */

/* Rich text sections — editorial spacing */
.template-page .rich-text .rich-text__wrapper {
  max-width: 72rem;
}

.template-page .rich-text .rich-text__text .rte p {
  font-family: var(--font-body) !important;
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
}

.template-page .rich-text .rich-text__text .rte em {
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
}

/* Alternating image-with-text — tighter flow */
.template-page .image-with-text + .image-with-text {
  margin-top: -2rem;
}

/* Content page headings */
.template-page .image-with-text h2 {
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.template-page .image-with-text .rte p {
  font-size: 1.5rem;
  line-height: 1.9;
}

@media screen and (max-width: 749px) {
  .template-page .rich-text .rich-text__text .rte p {
    font-size: 1.4rem;
    line-height: 1.85;
  }

  .template-page .image-with-text + .image-with-text {
    margin-top: 0;
  }
}

/* ============================================
   JOURNAL / BLOG
   ============================================ */

/* Blog listing page */
.template-blog .blog-articles {
  gap: 2.5rem;
}

.template-blog .blog-articles__article .article-card__title {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  margin-top: 1.2rem;
}

.template-blog .blog-articles__article .article-card__info {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

/* Article image hover */
.template-blog .article-card .article-card__image-wrapper img {
  transition: transform 0.6s ease;
}

.template-blog .article-card:hover .article-card__image-wrapper img {
  transform: scale(1.03);
}

/* Article page — editorial layout */
.template-article .article-template {
  max-width: 80rem;
  margin: 0 auto;
}

.template-article .article-template__hero-medium,
.template-article .article-template__hero-large {
  margin-bottom: 3rem;
}

.template-article .article-template__title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.25;
  text-align: center;
  margin-bottom: 1rem;
}

.template-article .article-template__date {
  font-family: var(--font-body) !important;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-align: center;
  opacity: 0.5;
  margin-bottom: 3rem;
}

/* Article body text */
.template-article .article-template__content .rte {
  font-family: var(--font-body) !important;
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
  max-width: 68rem;
  margin: 0 auto;
}

.template-article .article-template__content .rte p {
  margin-bottom: 2rem;
}

.template-article .article-template__content .rte h2,
.template-article .article-template__content .rte h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.template-article .article-template__content .rte blockquote {
  border-left: 2px solid var(--drc-sand);
  padding-left: 2rem;
  margin: 3rem 0;
  font-style: italic;
  font-size: 1.7rem;
  color: var(--drc-navy);
  opacity: 0.8;
}

.template-article .article-template__content .rte img {
  margin: 3rem 0;
  width: 100%;
}

/* Article back link */
.template-article .article-template__back {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.15rem;
  margin-top: 3rem;
  text-align: center;
}

/* "More from the Journal" section below articles */
.template-article .featured-blog .title-wrapper h2 {
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
}

@media screen and (max-width: 749px) {
  .template-article .article-template__content .rte {
    font-size: 1.4rem;
    line-height: 1.85;
  }

  .template-article .article-template__title {
    font-size: 2rem;
    letter-spacing: 0.12em;
  }

  .template-article .article-template__content .rte blockquote {
    font-size: 1.45rem;
    padding-left: 1.5rem;
  }

  .template-blog .blog-articles__article .article-card__title {
    font-size: 1.3rem;
  }
}

/* ============================================
   PANTS STORY
   ============================================ */
.pants-story {
  padding: 6rem 0;
  background-color: var(--drc-cream);
}

/* Rows */
.pants-story__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.pants-story__row--bottom {
  align-items: flex-start;
}

/* Cards */
.pants-story__card {
  text-decoration: none;
  text-align: center;
  display: block;
}

.pants-story__image {
  overflow: hidden;
  aspect-ratio: 3 / 4.5;
}

.pants-story__image--contain {
  aspect-ratio: auto;
}

.pants-story__image--contain img {
  object-fit: contain !important;
}

.pants-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.pants-story__card:hover .pants-story__image img {
  transform: scale(1.03);
}

.pants-story__name {
  display: block;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--drc-navy);
  margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* Top row — staggered heights */
.pants-story__card--1 {
  width: 18%;
  margin-top: 0;
}

.pants-story__card--2 {
  width: 18%;
  margin-bottom: 3rem;
}

.pants-story__card--3 {
  width: 18%;
  margin-bottom: 1rem;
}

/* Bottom row — staggered, spaced apart */
.pants-story__card--4 {
  width: 16%;
  margin-left: 8%;
  margin-top: 0;
}

.pants-story__card--5 {
  width: 20%;
  margin-right: 5%;
  margin-top: -1.5rem;
}

/* Center text block */
.pants-story__text {
  text-align: center;
  max-width: 50rem;
  margin: 2rem auto;
  padding: 0 2rem;
}

.pants-story__text p {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.6;
  color: var(--drc-navy);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.pants-story__link {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--drc-navy);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s ease;
}

.pants-story__link:hover {
  opacity: 0.6;
}

@media screen and (max-width: 749px) {
  .pants-story {
    padding: 4rem 0;
  }

  .pants-story__row {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .pants-story__card--1,
  .pants-story__card--2 {
    width: 42% !important;
    margin: 0 !important;
  }

  .pants-story__card--3 {
    display: none;
  }

  .pants-story__card--4,
  .pants-story__card--5 {
    width: 42% !important;
    margin: 0 !important;
  }

  .pants-story__text {
    margin: 2rem auto;
  }

  .pants-story__text p {
    font-size: 1.4rem;
  }
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.photo-gallery {
  width: 100%;
  overflow: hidden;
}

.photo-gallery__row {
  display: flex;
  gap: 4px;
}

.photo-gallery__row--top {
  align-items: flex-end;
  margin-bottom: 4px;
}

.photo-gallery__row--bottom {
  align-items: flex-start;
}

.photo-gallery__item {
  flex: 1;
  overflow: hidden;
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.photo-gallery__item:hover img {
  transform: scale(1.03);
}

/* Row 1 — jagged top, aligned bottom */
.photo-gallery__item--1 { height: 38vw; }
.photo-gallery__item--2 { height: 32vw; }
.photo-gallery__item--3 { height: 35vw; }
.photo-gallery__item--4 { height: 30vw; }

/* Row 2 — aligned top, jagged bottom */
.photo-gallery__item--5 { height: 30vw; }
.photo-gallery__item--6 { height: 36vw; }
.photo-gallery__item--7 { height: 32vw; }
.photo-gallery__item--8 { height: 38vw; }

@media screen and (max-width: 749px) {
  .photo-gallery__row {
    flex-wrap: wrap;
    gap: 3px;
  }

  .photo-gallery__row--top {
    margin-bottom: 3px;
  }

  .photo-gallery__item {
    flex: 0 0 calc(50% - 1.5px);
  }

  .photo-gallery__item--1 { height: 60vw; }
  .photo-gallery__item--2 { height: 50vw; }
  .photo-gallery__item--3 { height: 55vw; }
  .photo-gallery__item--4 { height: 48vw; }
  .photo-gallery__item--5 { height: 48vw; }
  .photo-gallery__item--6 { height: 58vw; }
  .photo-gallery__item--7 { height: 52vw; }
  .photo-gallery__item--8 { height: 60vw; }
}

/* --- Scrollbar styling (subtle) --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--drc-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--drc-sand);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--drc-khaki);
}

/* ============================================
   CARPENTER EDITORIAL PAGE
   ============================================ */

.carpenter-editorial__body {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.carpenter-editorial__title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 3.5rem;
  color: var(--drc-navy);
  text-align: center;
  margin: 4rem 0 3rem;
}

.carpenter-editorial__title-mobile {
  display: none;
}

/* Intro */
.carpenter-editorial__intro {
  max-width: 60rem;
  margin: 0 auto 5rem;
  text-align: justify;
}

.carpenter-editorial__intro h2 {
  font-family: var(--font-heading) !important;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--drc-navy);
  text-align: center;
  margin: 3rem 0 1.5rem;
}

.carpenter-editorial__intro p {
  font-family: var(--font-body) !important;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--drc-navy);
  margin-bottom: 1.5rem;
}

/* Timeline */
.carpenter-editorial__timeline {
  position: relative;
  padding: 4rem 0;
}

.carpenter-editorial__timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--drc-navy);
  opacity: 0.2;
  transform: translateX(-50%);
}

/* Entry */
.carpenter-editorial__entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 6rem;
  align-items: center;
}

.carpenter-editorial__entry-img {
  overflow: visible;
}

.carpenter-editorial__entry-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* P23 smaller image */
.carpenter-editorial__entry-img--p23 img {
  max-width: 85%;
  margin: 0 auto;
  display: block;
}

/* Duo photo layout — main + overlay */
.carpenter-editorial__entry-img--duo {
  position: relative;
}

.carpenter-editorial__entry-img--duo .carpenter-editorial__img-main {
  width: 75%;
  display: block;
}

.carpenter-editorial__entry-img--duo .carpenter-editorial__img-overlay {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 45%;
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.1);
}

.carpenter-editorial__year {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  color: var(--drc-navy);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.carpenter-editorial__model {
  font-family: var(--font-heading) !important;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--drc-navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.carpenter-editorial__entry-text p {
  font-family: var(--font-body) !important;
  font-size: 1.5rem;
  line-height: 1.9;
  color: var(--drc-navy);
  text-align: justify;
  margin-bottom: 1rem;
}

/* Intro illustration — mobile only */
.carpenter-editorial__intro-illustration {
  display: none;
}

@media screen and (max-width: 749px) {
  .carpenter-editorial__intro-illustration {
    display: block;
    text-align: center;
    margin: 2rem 0;
  }

  .carpenter-editorial__intro-illustration img {
    max-width: 60%;
    height: auto;
  }
}

/* Shop buttons per entry */
.carpenter-editorial__shop-btn {
  font-family: var(--font-heading) !important;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--drc-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--drc-navy);
  padding-bottom: 0.2rem;
  transition: opacity 0.3s ease;
  display: inline-block;
  margin-top: 1.5rem;
}

.carpenter-editorial__shop-btn:hover {
  opacity: 0.5;
}

.carpenter-editorial__shop-btn--mobile {
  display: none;
}

@media screen and (max-width: 749px) {
  .carpenter-editorial__shop-btn--desktop {
    display: none;
  }

  .carpenter-editorial__shop-btn--mobile {
    display: block;
    order: 3;
    margin: 1rem 0 0;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Bridge */
.carpenter-editorial__bridge {
  max-width: 60rem;
  margin: -2rem auto 3rem;
  text-align: justify;
}

.carpenter-editorial__bridge p {
  font-family: var(--font-body) !important;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--drc-navy);
}

/* Closing */
.carpenter-editorial__closing {
  text-align: center;
  margin: 3rem 0 4rem;
}

.carpenter-editorial__closing p {
  font-family: var(--font-body) !important;
  font-size: 2rem;
  line-height: 1.8;
  color: var(--drc-navy);
}

/* Shop section */
.carpenter-editorial__shop {
  padding: 4rem 0 5rem;
  border-top: 1px solid var(--drc-sand);
}

.carpenter-editorial__shop-title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 2rem;
  color: var(--drc-navy);
  text-align: center;
  margin-bottom: 3rem;
}

.carpenter-editorial__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.carpenter-editorial__product {
  text-decoration: none;
  color: var(--drc-navy);
  transition: opacity 0.3s ease;
}

.carpenter-editorial__product:hover {
  opacity: 0.8;
}

.carpenter-editorial__product-img {
  overflow: hidden;
  margin-bottom: 1rem;
}

.carpenter-editorial__product-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 20%;
}

.carpenter-editorial__product-name {
  font-family: var(--font-heading) !important;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  text-align: center;
}

.carpenter-editorial__shop-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .carpenter-editorial__title {
    font-size: 2.4rem;
    margin: 3rem 0 2rem;
  }

  .carpenter-editorial__title-desktop {
    display: none;
  }

  .carpenter-editorial__title-mobile {
    display: block;
  }

  .carpenter-editorial__intro h2 {
    font-size: 1.8rem;
  }

  .carpenter-editorial__timeline-line {
    display: none;
  }

  .carpenter-editorial__entry {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .carpenter-editorial__entry-text {
    order: 1;
  }

  .carpenter-editorial__entry-img {
    order: 2;
  }

  .carpenter-editorial__model {
    font-size: 2rem;
  }

  .carpenter-editorial__products {
    grid-template-columns: repeat(2, 1fr);
  }

  .carpenter-editorial__entry-img--duo .carpenter-editorial__img-main {
    width: 70%;
  }

  .carpenter-editorial__entry-img--duo .carpenter-editorial__img-overlay {
    width: 50%;
    bottom: -1rem;
  }
}

/* ============================================
   CUSTOM DESKTOP NAVIGATION — DROPDOWNS
   ============================================ */
.drc-nav {
  display: flex;
  align-items: center;
}

.drc-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 3rem;
}

.drc-nav__item {
  position: relative;
}

.drc-nav__link {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--drc-navy) !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  box-shadow: none !important;
  transition: opacity 0.3s ease;
}

.drc-nav__link:hover,
.drc-nav__link:focus,
.drc-nav__link:active,
.drc-nav__link:visited {
  color: var(--drc-navy) !important;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  box-shadow: none !important;
  opacity: 0.7;
}

/* Dropdown — full-width transparent panel for slide animation, visible bg only on list */
.drc-nav__item {
  position: static;
}

.drc-nav {
  position: static;
}

.header {
  position: relative;
}

.drc-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: transparent;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  z-index: 99;
}

/* Invisible bridge between nav word and dropdown to keep hover */
.drc-nav__item--has-dropdown .drc-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 2rem;
}

.drc-nav__link {
  position: relative;
}

.drc-nav__item--has-dropdown:hover .drc-nav__dropdown,
.drc-nav__item--has-dropdown:focus-within .drc-nav__dropdown {
  max-height: 500px;
  opacity: 1;
}

.drc-nav__dropdown-list {
  list-style: none;
  margin: 0;
  display: inline-flex;
  flex-direction: column;
  background-color: var(--drc-cream);
  border-left: 1px solid rgba(30, 42, 94, 0.08);
  border-right: 1px solid rgba(30, 42, 94, 0.08);
  border-bottom: 1px solid rgba(30, 42, 94, 0.08);
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.drc-nav__dropdown-link {
  display: block;
  padding: 0.45rem 2rem;
  font-family: var(--font-body) !important;
  font-size: 1.25rem;
  color: var(--drc-navy) !important;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  box-shadow: none !important;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.drc-nav__dropdown-link:hover,
.drc-nav__dropdown-link:focus {
  opacity: 0.6;
  color: var(--drc-navy) !important;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
}

/* ============================================
   MEGA MENU — SHOP DROPDOWN
   ============================================ */
.drc-nav__dropdown--mega {
  background-color: var(--drc-cream);
  border-bottom: 1px solid rgba(30, 42, 94, 0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.drc-mega {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr 1.4fr;
  gap: 2rem;
  padding: 2.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.drc-mega__heading {
  display: block;
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--drc-navy);
  margin-bottom: 1.2rem;
  opacity: 0.5;
}

.drc-mega__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drc-mega__link {
  display: block;
  padding: 0.35rem 0;
  font-family: var(--font-body) !important;
  font-size: 1.25rem;
  color: var(--drc-navy) !important;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  box-shadow: none !important;
  transition: opacity 0.2s ease;
}

.drc-mega__link:hover,
.drc-mega__link:focus {
  opacity: 0.6;
  color: var(--drc-navy) !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

.drc-mega__col--product {
  display: flex;
  flex-direction: column;
}

.drc-mega__product {
  display: block;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.drc-mega__product img {
  width: 75%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 0.8rem;
}

.drc-mega__product-name {
  display: block;
  font-family: var(--font-body) !important;
  font-size: 1.15rem;
  color: var(--drc-navy) !important;
  transition: opacity 0.2s ease;
}

.drc-mega__product:hover .drc-mega__product-name {
  opacity: 0.6;
}

/* OUR WORLD mega — 6 columns: drawing, links, drawing, links, drawing, links */
.drc-mega--ourworld {
  grid-template-columns: auto 1fr auto 1fr auto 1fr;
  align-items: start;
}

.drc-mega__col--drawing {
  display: flex;
  align-items: center;
  justify-content: center;
}

.drc-mega__drawing {
  height: 180px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* ============================================
   FEATURED PRODUCTS TEMP (homepage)
   ============================================ */
.drc-featured-temp__title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--drc-navy);
  margin-bottom: 2.5rem;
}

.drc-featured-temp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.drc-featured-temp__item {
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.drc-featured-temp__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--drc-cream-dark);
}

.drc-featured-temp__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.drc-featured-temp__item:hover .drc-featured-temp__img-wrap img {
  transform: scale(1.03);
}

.drc-featured-temp__name {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--drc-navy);
}

@media screen and (max-width: 749px) {
  .drc-featured-temp__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .drc-featured-temp__name {
    font-size: 1rem;
  }
}

/* ============================================
   MOBILE DRAWER — ACCORDION MENUS (div-based)
   ============================================ */
.drc-mobile-menu {
  flex-direction: column !important;
  gap: 0 !important;
}

.drc-mobile-menu__item {
  display: block !important;
  width: 100%;
  border-bottom: 1px solid rgba(30, 42, 94, 0.08);
}

.drc-mobile-menu__toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 1.5rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

.drc-mobile-menu__toggle--link {
  color: inherit !important;
}

.drc-mobile-menu__label {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--drc-navy) !important;
}

.drc-mobile-menu__chevron {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--drc-navy);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: auto;
  padding-right: 0.5rem;
}

.drc-mobile-menu__item--open > .drc-mobile-menu__toggle .drc-mobile-menu__chevron {
  transform: rotate(90deg);
}

.drc-mobile-menu__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 1.5rem;
}

.drc-mobile-menu__item--open > .drc-mobile-menu__sub {
  max-height: 500px;
}

.drc-mobile-menu__link {
  display: block;
  padding: 0.7rem 0;
  font-family: var(--font-body) !important;
  font-size: 1.4rem;
  color: var(--drc-navy) !important;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  box-shadow: none !important;
  transition: opacity 0.2s ease;
}

.drc-mobile-menu__link:hover,
.drc-mobile-menu__link:focus {
  opacity: 0.6;
  color: var(--drc-navy) !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

/* ============================================
   STOCKISTS PAGE
   ============================================ */
.stockists__hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 350px;
  max-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stockists__hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.stockists__hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--drc-navy);
  text-align: center;
}

.stockists__body {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

/* Filters */
.stockists__filters {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(30, 42, 94, 0.1);
  padding-bottom: 2rem;
}

.stockists__filter {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--drc-navy);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  border-bottom: 2px solid transparent;
}

.stockists__filter:hover {
  opacity: 0.7;
}

.stockists__filter--active {
  opacity: 1;
  border-bottom: 2px solid var(--drc-navy);
}

/* Store grid */
.stockists__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}

.stockists__store {
  padding: 2rem 0;
}

.stockists__city {
  display: block;
  font-family: var(--font-body) !important;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--drc-navy);
  opacity: 0.5;
  margin-bottom: 0.4rem;
}

.stockists__name {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--drc-navy);
  margin-bottom: 0.8rem;
}

.stockists__address {
  font-family: var(--font-body) !important;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--drc-navy);
  margin-bottom: 1rem;
}

.stockists__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stockists__ig-link,
.stockists__map-link {
  font-family: var(--font-body) !important;
  font-size: 1.1rem;
  color: var(--drc-navy) !important;
  text-decoration: none !important;
  background-image: none !important;
  box-shadow: none !important;
  transition: opacity 0.2s ease;
}

.stockists__ig-link {
  border-bottom: none !important;
  opacity: 0.6;
}

.stockists__map-link {
  border-bottom: 1px solid var(--drc-navy) !important;
  width: fit-content;
}

.stockists__ig-link:hover,
.stockists__map-link:hover {
  opacity: 0.5;
}

@media screen and (max-width: 749px) {
  .stockists__hero {
    height: 35vh;
    min-height: 250px;
  }

  .stockists__filters {
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .stockists__filter {
    font-size: 1.1rem;
  }

  .stockists__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stockists__store {
    border-bottom: 1px solid rgba(30, 42, 94, 0.08);
    padding-bottom: 2rem;
  }
}

/* ============================================
   JOURNAL — BLOG
   ============================================ */
.journal {
  padding: 4rem 0 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.journal__page-title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  color: var(--drc-navy);
  text-align: center;
  margin-bottom: 4rem;
}

.journal__excerpt {
  font-family: var(--font-body) !important;
  font-style: normal;
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
  opacity: 0.7;
  margin-top: 0.8rem;
}

.journal__empty {
  text-align: center;
  font-family: var(--font-body) !important;
  font-size: 1.4rem;
  color: var(--drc-navy);
  opacity: 0.5;
}

.journal__placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--drc-cream-dark);
}

/* Article list — alternating layout */
.journal__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.journal__entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  text-decoration: none !important;
  border-bottom: none !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Odd entries: image left, text right (default) */
/* Even entries: image right, text left */
.journal__entry--img-right .journal__entry-img {
  order: 2;
}
.journal__entry--img-right .journal__entry-content {
  order: 1;
}

.journal__entry-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.journal__entry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.journal__entry:hover .journal__entry-img img {
  transform: scale(1.03);
}

.journal__entry-title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 600;
  color: var(--drc-navy);
  margin-bottom: 0;
  line-height: 1.3;
}

.journal__entry-content {
  max-width: 100%;
}

.journal__read-more {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-body) !important;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--drc-navy);
  border-bottom: 1px solid var(--drc-navy);
  padding-bottom: 2px;
}

@media screen and (max-width: 749px) {
  .journal {
    padding: 1rem 1.5rem 4rem;
  }

  .journal__page-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }

  .journal__list {
    gap: 2.5rem;
  }

  .journal__entry {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .journal__entry--img-right .journal__entry-img {
    order: 0;
  }
  .journal__entry--img-right .journal__entry-content {
    order: 0;
  }

  .journal__entry-img {
    aspect-ratio: auto;
    width: 100%;
    height: auto;
  }

  .journal__entry-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: auto;
  }

  .journal__entry-title {
    font-size: 1.4rem;
  }

  .journal__excerpt {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-top: 0.4rem;
  }

  .journal__read-more {
    margin-top: 0.8rem;
    font-size: 1rem;
  }
}

/* ============================================
   JOURNAL — ARTICLE
   ============================================ */
.journal-article__hero {
  width: 100%;
  max-height: 60vh;
  overflow: hidden;
}

.journal-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-article__body {
  max-width: 750px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

.journal__date {
  font-family: var(--font-body) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.1rem;
  color: var(--drc-navy);
  opacity: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.journal-article__title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--drc-navy);
  margin-bottom: 3rem;
  line-height: 1.2;
}

.journal-article__content {
  font-family: var(--font-body) !important;
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
}

.journal-article__content p {
  margin-bottom: 2rem;
}

.journal-article__content img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

.journal-article__back {
  margin-top: 4rem;
  text-align: center;
}

/* ============================================
   ARCHIVE PAGE
   ============================================ */
.archive {
  padding-bottom: 6rem;
}

.archive__header {
  max-width: 750px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  text-align: center;
}

.archive__title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  color: var(--drc-navy);
  margin-bottom: 2.5rem;
}

.archive__intro {
  font-family: var(--font-body) !important;
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 2;
  color: var(--drc-navy);
  text-align: center;
  margin-bottom: 1.5rem;
}

.archive__gallery {
  margin-bottom: 4rem;
}

.archive__placeholder {
  width: 100%;
  height: 100%;
  background-color: var(--drc-cream-dark);
}

/* ============================================
   COLLECTION GRID — Product Cards
   ============================================ */

/* Grid spacing */
.collection .product-grid {
  gap: 3rem 2rem !important;
}

@media screen and (min-width: 990px) {
  .collection .product-grid {
    gap: 4rem 3rem !important;
  }
}

/* Card wrapper — clean, no borders, no shadows */
.product-grid .card-wrapper {
  background: transparent;
}

.product-grid .card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.product-grid .card__inner {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Image hover — swap to 2nd photo */
.product-grid .card__media .media--hover-effect > img + img {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-grid .card-wrapper:hover .card__media .media--hover-effect > img + img {
  opacity: 1;
}

.product-grid .card__media .media--hover-effect > img:first-child {
  transition: opacity 0.4s ease;
}

.product-grid .card-wrapper:hover .card__media .media--hover-effect > img:first-child {
  opacity: 0;
}

/* Product title — Cormorant Garamond, lowercase, weight 600 */
.product-grid .card__heading,
.product-grid .card__heading a {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  text-transform: lowercase !important;
  font-size: 1.4rem !important;
  letter-spacing: 0.01em !important;
  color: var(--drc-navy) !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
}

/* Price — Lora, weight 400, discret */
.product-grid .price-item,
.product-grid .price .money {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
  font-size: 1.3rem !important;
  color: var(--drc-navy) !important;
  opacity: 0.7;
  letter-spacing: 0.01em !important;
}

/* Price layout — inline with title like imogene */
.product-grid .card__content {
  padding: 1rem 0 0 0 !important;
}

.product-grid .card__information {
  padding: 0 !important;
}

.product-grid .card-information {
  margin-top: 0.2rem;
}

/* Hide badges */
.product-grid .card__badge {
  display: none;
}

/* Collection banner title */
.main-collection-banner .title--primary,
.collection-hero__title {
  font-family: var(--font-heading) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  color: var(--drc-navy);
  text-align: center;
}

/* Facets / Sorting bar — clean style */
.facets-wrapper {
  border-bottom: 1px solid rgba(30, 42, 94, 0.1) !important;
  border-top: none !important;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.facets__form .facets__summary,
.facet-filters__label,
.facet-filters__sort,
.facets__heading {
  font-family: var(--font-body) !important;
  font-size: 1.1rem !important;
  text-transform: lowercase !important;
  letter-spacing: 0.05em !important;
  color: var(--drc-navy) !important;
}

/* Product count */
.product-count__text {
  font-family: var(--font-body) !important;
  font-size: 1.1rem !important;
  color: var(--drc-navy) !important;
  opacity: 0.5;
}

/* Compare at price / sale */
.product-grid .price--on-sale .price-item--regular {
  text-decoration: line-through;
  opacity: 0.4;
}

.product-grid .price--on-sale .price-item--sale {
  color: var(--drc-terracotta) !important;
  opacity: 1;
}
