/**
 * YaDa Shop Theme
 * Storefront styling (header, home sections, WooCommerce).
 *
 * NOTE: This file intentionally contains no references to other themes.
 */

/* ---------------------------
   Base / Tokens
--------------------------- */
:root {
  --yada-black: #000000;
  --yada-charcoal: #2d2d2d;
  --yada-gray: #6b6b6b;
  --yada-light-gray: #f5f5f5;
  --yada-white: #ffffff;
  --yada-accent: #d4a373;

  --yada-radius: 2px;
  --yada-container: 1320px;

  --yada-font-body: "Open Sans", "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, "Segoe UI", sans-serif;
  --yada-font-heading: "Montserrat", "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, "Segoe UI", sans-serif;

  --yada-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--yada-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  font-kerning: normal;
}

.site-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--yada-ease), opacity 0.2s var(--yada-ease);
}

a:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.yada-container {
  width: min(var(--yada-container), 100% - 40px);
  margin-inline: auto;
}

/* Legacy alias (older templates used this) */
.inner-width {
  width: min(var(--yada-container), 100% - 40px);
  margin-inline: auto;
}

/* Default content spacing so every page aligns */
.site-main {
  flex: 1;
  padding: 80px 0;
}

.site-main.yada-home,
.site-main.yada-page {
  padding: 0;
}

/* Basic typography for content pages */
.entry-header,
.page-header {
  text-align: center;
  margin-bottom: 30px;
}

.entry-title,
.page-header h1 {
  font-family: var(--yada-font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000;
  font-size: clamp(28px, 4vw, 44px);
  margin: 0;
}

.entry-content {
  color: #444;
}

/* Keep editorial text readable without constraining Woo/blocks layouts */
.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > :where(p, ul, ol, blockquote, pre, h2, h3, h4, h5, h6) {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.entry-content > :where(.woocommerce, .wc-block-cart, .wc-block-checkout) {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.entry-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------------------------
   Header
--------------------------- */
.yada-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.yada-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.yada-site-title {
  font-family: var(--yada-font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 20px;
}

.yada-header__left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.yada-header__center {
  justify-self: center;
}

.yada-brand-mark {
  font-family: var(--yada-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 18px; /* slightly bigger than the old MENU */
  color: #000;
}

.yada-header-cats {
  display: flex;
  align-items: center;
  gap: 18px;
}

.yada-header-cats__link {
  font-family: var(--yada-font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  color: #000;
  padding: 10px 0;
}

.yada-header-cats__link:hover {
  opacity: 0.85;
}

.yada-hamburger {
  display: none; /* shown on mobile */
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: #000;
}

.yada-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.yada-icon {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yada-icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #000;
  text-decoration: none;
}

.yada-cart__count {
  position: absolute;
  top: 6px;
  right: 6px;
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 11px;
}

.yada-searchbar {
  border-top: 1px solid #e0e0e0;
  padding: 14px 0;
}

.yada-searchbar form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.yada-searchbar input[type="search"] {
  width: 100%;
  height: 44px;
  border: 1px solid #e0e0e0;
  padding: 0 14px;
  font-size: 14px;
}

.yada-searchbar input[type="submit"] {
  height: 44px;
  padding: 0 18px;
  background: #000;
  color: #fff;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--yada-font-heading);
  font-weight: 600;
  font-size: 13px;
}

/* Off-canvas menu (full-screen overlay) */
.yada-offcanvas[hidden] {
  display: none;
}

.yada-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.yada-offcanvas__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.yada-offcanvas__panel {
  position: absolute;
  inset: 0;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.yada-offcanvas__close {
  position: absolute;
  top: 24px;
  right: 24px;
  border: 0;
  background: transparent;
  font-family: var(--yada-font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  cursor: pointer;
}

.yada-offcanvas__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  text-align: center;
}

.yada-offcanvas__menu a {
  font-family: var(--yada-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 22px;
  color: #000;
}

.yada-offcanvas__submenu-toggle {
  font-family: var(--yada-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 22px;
  color: #000;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.yada-offcanvas__submenu-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.yada-offcanvas__submenu-list a {
  font-size: 16px;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.yada-offcanvas__submenu-toggle[aria-expanded="true"] + .yada-offcanvas__submenu-list {
  display: grid;
}

.yada-offcanvas__submenu-toggle::after {
  content: "›";
  display: inline-block;
  margin-left: 10px;
  transform: rotate(90deg);
  opacity: 0.65;
}

.yada-offcanvas__submenu-toggle[aria-expanded="true"]::after {
  transform: rotate(-90deg);
}

@media (max-width: 992px) {
  .yada-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .yada-header__center {
    justify-self: center;
  }

  .yada-hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .yada-header-cats {
    display: none;
  }
}

@media (min-width: 993px) {
  /* No desktop hamburger/menu. */
  .yada-offcanvas {
    display: none;
  }
}

.yada-menu-open {
  overflow: hidden;
}

/* ---------------------------
   Buttons
--------------------------- */
.yada-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-family: var(--yada-font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--yada-radius);
  cursor: pointer;
  transition: transform 0.2s var(--yada-ease), background 0.2s var(--yada-ease);
}

.yada-button:hover {
  background: #333;
  transform: translateY(-2px);
}

.yada-button--outline {
  background: transparent;
  color: #000;
  border: 2px solid #000;
}

.yada-button--outline:hover {
  background: #000;
  color: #fff;
}

/* Back-compat: if any plugin/theme output uses .button, make it match */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-family: var(--yada-font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--yada-radius);
  cursor: pointer;
  transition: transform 0.2s var(--yada-ease), background 0.2s var(--yada-ease);
}

.button:hover {
  background: #333;
  transform: translateY(-2px);
}

/* ---------------------------
   Home: Hero
--------------------------- */
.yada-hero {
  position: relative;
  width: 100%;
  /* Crop the lower portion of the video so the trust bar appears immediately. */
  height: calc(100vh - var(--yada-hero-trust-offset, 90px));
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.yada-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.yada-hero__media video,
.yada-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: translateY(calc(-1 * var(--yada-hero-crop, 0px)));
}

.yada-hero__media video {
  display: block;
  pointer-events: none;
}

.yada-hero__media {
  height: 100%;
}

.yada-hero__media video,
.yada-hero__media img {
  height: calc(100% + var(--yada-hero-crop, 0px));
}

.yada-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.yada-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 820px;
  padding: 0 20px;
}

.yada-hero__eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: var(--yada-font-heading);
}

.yada-hero__title {
  font-family: var(--yada-font-heading);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 40px;
  letter-spacing: -1px;
}

.yada-hero__text {
  max-width: 760px;
  margin: -22px auto 32px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.yada-hero__text p {
  margin: 0 0 12px;
}

.yada-hero__text p:last-child {
  margin-bottom: 0;
}

/* ---------------------------
   Home: Tagline
--------------------------- */
.yada-trust {
  padding: 28px 0;
  border-bottom: 1px solid #e7e7e7;
  background: #fff;
}

.yada-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.yada-trust__title {
  margin: 0 0 6px;
  font-family: var(--yada-font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #111;
}

.yada-trust__text {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.yada-tagline {
  padding: 80px 0;
  text-align: center;
}

.yada-tagline__eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--yada-font-heading);
}

.yada-tagline__title {
  font-family: var(--yada-font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  max-width: 900px;
  margin: 0 auto;
}

.yada-tagline__title p {
  margin: 0;
}

.yada-split__copy p {
  margin: 0 0 14px;
}

.yada-split__copy p:last-child {
  margin-bottom: 0;
}

/* Single product: brand note */
.yada-product-note {
  margin: 24px 0 0;
  padding: 18px 18px;
  border: 1px solid #e0e0e0;
}

.yada-product-note__title {
  font-family: var(--yada-font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.yada-product-note__text {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.yada-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 60px 0 0;
}

/* ---------------------------
   About page
--------------------------- */
.yada-about-hero {
  padding: 100px 0 70px;
  text-align: center;
}

.yada-about-hero__eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
  font-weight: 600;
  font-family: var(--yada-font-heading);
}

.yada-about-hero__title {
  font-family: var(--yada-font-heading);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 700;
  margin: 0 0 18px;
  color: #000;
}

.yada-about-hero__text {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #444;
  font-size: 16px;
}

.yada-about-story {
  padding: 60px 0;
}

.yada-about-story__grid,
.yada-about-shipping__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.yada-about-story h2,
.yada-about-shipping h2 {
  font-family: var(--yada-font-heading);
  font-size: 24px;
  margin: 0 0 12px;
}

.yada-about-steps {
  padding: 60px 0;
  background: #f9f9f9;
}

.yada-about-steps__header {
  text-align: center;
  margin-bottom: 40px;
}

.yada-about-steps__eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 10px;
  font-weight: 600;
  font-family: var(--yada-font-heading);
}

.yada-about-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.yada-about-step {
  background: #fff;
  padding: 24px;
  border: 1px solid #e5e5e5;
}

.yada-about-step h3 {
  margin: 0 0 10px;
  font-family: var(--yada-font-heading);
  font-size: 18px;
}

.yada-about-step p {
  margin: 0;
  color: #555;
}

.yada-about-shipping {
  padding: 60px 0 80px;
}

.yada-about-content {
  padding: 40px 0 80px;
}

/* ---------------------------
   Home: Products
--------------------------- */
.yada-products {
  padding: 80px 0;
}

.yada-products__header {
  text-align: center;
  margin-bottom: 60px;
}

.yada-products__eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: var(--yada-font-heading);
}

.yada-products__title {
  font-family: var(--yada-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

/* Home: Split section */
.yada-split {
  padding: 80px 0;
  background: #f9f9f9;
}

.yada-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.yada-split__eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 10px;
  font-weight: 600;
  font-family: var(--yada-font-heading);
}

.yada-split__title {
  font-family: var(--yada-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.yada-split__copy {
  color: #666;
  line-height: 1.8;
  margin: 0 0 24px;
}

/* Home: Features */
.yada-features {
  padding: 60px 0 80px;
}

.yada-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.yada-feature {
  text-align: center;
  padding: 30px 20px;
}

.yada-feature__title {
  font-family: var(--yada-font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #000;
}

.yada-feature__text {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Home: Social */
.yada-social {
  padding: 80px 0;
  background: #fafafa;
  text-align: center;
}

.yada-social__title {
  font-family: var(--yada-font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px;
}

.yada-social__placeholder {
  color: #999;
  margin: 0;
}

.yada-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-items: stretch;
  align-items: start;
}

/* WooCommerce adds clearfix pseudo-elements for float-based layouts.
 * When we switch the list to CSS grid, those pseudo-elements become empty "grid items"
 * (shows up as an empty first cell in Related products). */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  content: none !important;
  display: none !important;
}

/* WooCommerce also applies column width + float/clear rules for its legacy layout:
 * e.g. `.woocommerce ul.products.columns-3 li.product { width: 30.75%; float: left; }`
 * That breaks our CSS grid and causes odd sizing until you uncheck it in DevTools. */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
  width: auto !important;
  float: none !important;
  clear: none !important;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce ul.products li.product a,
.woocommerce-page ul.products li.product a {
  display: block;
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link,
.woocommerce ul.products li.product a.woocommerce-loop-product__link,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
}

/* Default loop images */
.woocommerce ul.products li.product > a > img,
.woocommerce-page ul.products li.product > a > img {
  width: 100%;
  height: auto;
  display: block;
}

/* Our theme card wrapper: image should fill the frame (fixes "tiny image in big box") */
.woocommerce ul.products li.product .yada-product-card__image img,
.woocommerce-page ul.products li.product .yada-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--yada-font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  margin: 14px 0 10px;
}

.woocommerce ul.products li.product .price {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.woocommerce ul.products.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.woocommerce ul.products.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.woocommerce ul.products.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.yada-product-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.yada-product-card:hover {
  transform: translateY(-4px);
}

.yada-product-card__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  background: var(--yada-light-gray);
  aspect-ratio: 4 / 5;
}

.yada-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.yada-product-card:hover .yada-product-card__image img {
  transform: scale(1.05);
}

.yada-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000;
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.yada-badge--sale {
  background: #000;
}

.yada-product-card__name {
  font-family: var(--yada-font-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  margin: 0 0 10px;
}

.yada-product-card__price {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

/* ---------------------------
   Shop archive
--------------------------- */
.yada-shop-archive {
  padding: 0;
}

.yada-shop-archive__header {
  text-align: center;
  margin-bottom: 30px;
}

.yada-shop-archive__title {
  font-family: var(--yada-font-heading);
  font-size: 40px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

/* ---------------------------
   WooCommerce: Notices + forms + tables (Cart/Checkout/Account)
--------------------------- */
.woocommerce-notices-wrapper {
  margin: 0 auto 25px;
  max-width: 820px;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 14px 16px;
  margin: 0 0 12px;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  position: static;
  margin: 0;
  flex: 0 0 auto;
}

.woocommerce-message .button {
  margin-left: auto;
  white-space: nowrap;
}

/* Let notice buttons render normally (cart notices use "Return to shop"). */

.woocommerce-error {
  border-color: #e74c3c;
}

.woocommerce-message {
  border-color: #000;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce button,
.woocommerce input[type="submit"] {
  border-radius: var(--yada-radius);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 12px 14px;
  font-size: 14px;
}

.woocommerce-cart .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
}

.woocommerce-cart .cart_totals,
.woocommerce-checkout .woocommerce-checkout-review-order,
.woocommerce-checkout #order_review,
.woocommerce-checkout #customer_details {
  border: 1px solid #e0e0e0;
  padding: 18px;
}

/* Woo blocks: keep them aligned with theme width */
.wc-block-cart,
.wc-block-checkout,
.woocommerce-account .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
}

.wc-block-cart__submit-container,
.wc-block-checkout__actions_row {
  margin-top: 20px;
}

.wc-block-components-button,
.wc-block-components-checkout-place-order-button {
  border-radius: var(--yada-radius) !important;
  background: #000 !important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--yada-font-heading);
  font-weight: 600;
}

.wc-block-components-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: #333 !important;
}

.woocommerce-cart h1,
.woocommerce-checkout h1,
.woocommerce-account h1 {
  font-family: var(--yada-font-heading);
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px;
}

/* Cart empty cross-sell section ("New in store") */
.woocommerce-cart .cross-sells,
.woocommerce-cart .cart-empty + .woocommerce-message,
.woocommerce-cart .cart-empty + .woocommerce-info {
  margin-top: 40px;
}

/* ---------------------------
   Footer
--------------------------- */
.yada-footer {
  position: relative;
  overflow: hidden;
  background: #0b0b0b;
  color: #fff;
  padding: 120px 0 60px;
  border-top: 0;
}

.yada-footer__mark {
  position: absolute;
  left: 50%;
  top: 24px;
  transform: translateX(-50%);
  font-family: var(--yada-font-heading);
  font-weight: 800;
  letter-spacing: -0.06em;
  font-size: clamp(120px, 18vw, 260px);
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.yada-footer .yada-container {
  position: relative;
  z-index: 2;
}

.yada-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.yada-footer__brand {
  font-family: var(--yada-font-heading);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 18px;
}

.yada-footer__heading {
  font-family: var(--yada-font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.yada-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.yada-footer__menu a {
  color: #fff;
  opacity: 0.75;
}

.yada-footer__menu a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.yada-footer__text {
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 12px;
}

.yada-footer__bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.yada-footer__social-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
}

.yada-footer__social-list a {
  font-family: var(--yada-font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #fff;
}

.yada-footer__terms a {
  color: rgba(255, 255, 255, 0.75);
}

.yada-footer__terms a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.yada-footer__badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
  min-width: 0;
}

.yada-footer__badge {
  display: block;
  height: 38px;
  width: auto;
  max-width: min(520px, 92vw);
  object-fit: contain;
}

/* Defensive: some plugins set img { max-width:100%; height:auto } or worse on Woo pages. */
.woocommerce .yada-footer__badges img,
.woocommerce-page .yada-footer__badges img {
  max-width: min(520px, 92vw) !important;
  width: auto !important;
  height: 38px !important;
}

.yada-checkout-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 0 0;
}

.yada-checkout-badge {
  display: block;
  height: 34px;
  width: auto;
  max-width: min(520px, 92vw);
  object-fit: contain;
}

/* ---------------------------
   WooCommerce: Single Product
--------------------------- */
.woocommerce-breadcrumb {
  font-size: 14px;
  color: #666;
  margin: 0 0 28px;
}

.yada-shop-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0 30px;
}

.yada-shop-toolbar .woocommerce-ordering select {
  height: 44px;
  border: 1px solid #e0e0e0;
  padding: 0 14px;
  font-size: 14px;
  background: #fff;
}

/* Single product page layout:
 * - Top area is a 2-column grid (gallery + sticky summary)
 * - Related products and other sections flow full-width below
 */
.woocommerce div.product .yada-product-top {
  display: grid;
  /* Give the gallery a bit more real estate on desktop (closer to the Swag demo). */
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 70px;
  align-items: start;
  --yada-gallery-height: min(760px, calc(100vh - 240px));
}

.woocommerce div.product .yada-product-top div.images,
.woocommerce div.product .yada-product-top div.summary {
  float: none;
  width: auto;
}

.woocommerce div.product .yada-product-top div.images {
  /* In WooCommerce markup this is usually the gallery element itself:
   * <div class="woocommerce-product-gallery ... images">
   */
  margin: 0;
  position: sticky;
  top: 110px;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

/* WooCommerce (flexslider) wraps the main gallery in `.flex-viewport`.
 * Without explicitly placing it, CSS grid will put the main image into the 120px column,
 * making it look tiny on wide screens. */
.woocommerce div.product .yada-product-top div.images .flex-viewport {
  grid-column: 2;
  height: var(--yada-gallery-height);
}

.woocommerce div.product .yada-product-top div.images .flex-control-thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  position: static;
  height: var(--yada-gallery-height);
  max-height: var(--yada-gallery-height);
  overflow: auto;
  grid-column: 1;
  grid-row: 1;
}

.woocommerce div.product .yada-product-top div.images .flex-control-thumbs li {
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #f2f2f2;
  /* WooCommerce default CSS sets `width: 25%` for thumbnail <li> items.
   * That makes thumbs tiny in our vertical column. Override for desktop. */
  width: 100%;
  flex: 0 0 auto;
}

.woocommerce div.product .yada-product-top div.images .flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
}

.woocommerce div.product .yada-product-top div.images .woocommerce-product-gallery__wrapper {
  grid-column: 2;
}

.woocommerce div.product .yada-product-top div.images .woocommerce-product-gallery__wrapper {
  margin: 0;
  background: #f6f6f6;
  /*
   * Fix “small image on wide screens”:
   * Using aspect-ratio ties height to width, which makes the canvas overly tall on desktop.
   * Instead, size the canvas off the viewport height so imagery stays visually large and consistent.
   */
  height: var(--yada-gallery-height);
  overflow: hidden;
}

.woocommerce div.product .yada-product-top div.images .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
  margin: 0;
}

/* If the Woo slider JS doesn't initialize, prevent stacked gallery images */
.woocommerce div.product .yada-product-top div.images:not(.flexslider) .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:not(:first-child) {
  display: none;
}

.woocommerce div.product .yada-product-top div.images .woocommerce-product-gallery__wrapper img {
  width: 100%;
  height: 100%;
  /* Avoid cropping (the demo keeps the full product in view). */
  object-fit: contain;
  padding: 10px;
  display: block;
  transition: transform 0.35s var(--yada-ease);
}

/* Hover "lift" when WooCommerce zoom isn't active (lightweight fallback). */
.woocommerce div.product .yada-product-top div.images:not(.woocommerce-product-gallery--zoom) .woocommerce-product-gallery__wrapper:hover img {
  transform: scale(1.05);
}

.woocommerce div.product .yada-product-top div.images .flex-control-thumbs img {
  opacity: 0.75;
  transition: opacity 0.2s var(--yada-ease), transform 0.2s var(--yada-ease);
}

.woocommerce div.product .yada-product-top div.images .flex-control-thumbs img:hover {
  opacity: 1;
  transform: scale(1.02);
}

.woocommerce div.product .yada-product-top div.images .flex-control-thumbs img.flex-active {
  opacity: 1;
  outline: 2px solid rgba(0, 0, 0, 0.85);
  outline-offset: -2px;
}

.woocommerce div.product .yada-product-top div.images .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  z-index: 3;
}

.woocommerce div.product .yada-product-top div.summary {
  max-width: none;
  justify-self: start;
}

/* Swag-like summary box */
.woocommerce div.product .yada-product-top div.summary {
  background: #fff;
  border: 1px solid #e7e7e7;
  padding: 32px 32px;
  position: relative;
  min-height: var(--yada-gallery-height);
  overflow: visible;
}

.woocommerce div.product .summary.entry-summary {
  display: grid;
  gap: 14px;
  padding-top: 8px;
  overflow: visible;
}

.woocommerce div.product form.cart {
  margin-top: 0;
  display: grid;
  gap: 12px;
  overflow: visible;
}

.woocommerce div.product form.variations_form {
  display: grid;
  gap: 10px;
  overflow: visible;
}

.woocommerce div.product form.variations_form table.variations {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2px;
}

.woocommerce div.product form.variations_form table.variations td,
.woocommerce div.product form.variations_form table.variations th {
  padding: 0;
}

.woocommerce div.product form.variations_form table.variations td.label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  padding-bottom: 6px;
}

.woocommerce div.product form.variations_form .variations select {
  height: 42px;
  padding: 0 12px;
  font-size: 14px;
}

.yada-size-table-toggle {
  margin-top: 10px;
  padding: 6px 0 0;
  border-top: 0;
  margin-bottom: 8px;
  width: 100%;
  display: block;
}

.yada-size-table-toggle__summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #222;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
}

.yada-size-table-toggle__summary::-webkit-details-marker {
  display: none;
}

.yada-size-table-toggle__summary::after {
  content: "›";
  display: inline-block;
  margin-left: 8px;
  transform: rotate(90deg);
  opacity: 0.7;
}

.yada-size-table-toggle[open] > .yada-size-table-toggle__summary::after {
  transform: rotate(-90deg);
}

.yada-size-table-toggle__content {
  margin-top: 10px;
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.yada-size-table-toggle__summary:hover {
  border-bottom-color: #111;
}

.yada-size-table {
  min-width: 700px;
}

.woocommerce div.product form.cart .quantity label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.woocommerce div.product form.cart .quantity input.qty {
  border-radius: var(--yada-radius);
  appearance: auto;
  -moz-appearance: auto;
}

.woocommerce div.product form.cart .quantity input.qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: auto;
  margin: 0;
}

.woocommerce div.product form.cart {
  border-top: 1px solid #ededed;
  padding-top: 16px;
}

.woocommerce div.product form.cart .quantity {
  margin: 0;
  width: 100%;
  display: grid;
  gap: 6px;
}

.woocommerce div.product form.cart .quantity input.qty {
  height: 42px;
  text-align: center;
  width: 100%;
}

.woocommerce div.product form.cart .single_variation_wrap {
  display: grid;
  gap: 12px;
}

.woocommerce div.product form.cart .single_variation_wrap .woocommerce-variation {
  margin: 0;
}

.woocommerce div.product form.cart .quantity {
  margin: 0 0 12px;
}

.woocommerce div.product form.cart .quantity input.qty {
  width: 100%;
  height: 44px;
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 0 12px;
}

.woocommerce div.product .product_title {
  font-family: var(--yada-font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.5px;
}

.woocommerce div.product p.price {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.woocommerce div.product form.cart button.single_add_to_cart_button {
  height: 50px;
  line-height: 50px;
  padding: 0 40px;
  border-radius: var(--yada-radius);
  background: #000;
  color: #fff;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  width: 100%;
}

.woocommerce div.product form.cart button.single_add_to_cart_button:hover {
  background: #333;
}

.woocommerce div.product .woocommerce-tabs {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #e0e0e0;
  grid-column: 1 / -1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Accordion (Description/Reviews) */
.yada-product-accordion {
  margin: 24px 0 0;
  max-width: none;
  width: 100%;
  border-top: 1px solid #dcdcdc;
}

.yada-accordion {
  border-bottom: 1px solid #dcdcdc;
}

.yada-accordion__summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--yada-font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.yada-accordion__summary::-webkit-details-marker {
  display: none;
}

.yada-accordion__summary::after {
  content: "›";
  transform: rotate(90deg);
  opacity: 0.7;
}

details[open] > .yada-accordion__summary::after {
  transform: rotate(-90deg);
}

.yada-accordion__content {
  padding: 0 0 18px;
  color: #333;
}

.yada-accordion__content p:first-child {
  margin-top: 0;
}

.yada-accordion__content p:last-child {
  margin-bottom: 0;
}

.yada-size-block {
  display: grid;
  gap: 12px;
}

.yada-size-note {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.yada-size-table__wrap {
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  max-width: 100%;
}

.yada-size-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: #fff;
}

.yada-size-table th,
.yada-size-table td {
  white-space: nowrap;
}

.yada-size-table th,
.yada-size-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eaeaea;
  font-size: 13px;
  text-align: left;
}

.yada-size-table th {
  background: #fafafa;
  font-weight: 600;
}

.yada-size-table tbody tr:last-child td {
  border-bottom: 0;
}

.yada-info-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.yada-size-model {
  margin: 0;
  font-size: 14px;
  color: #444;
}

.yada-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.yada-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #222;
  background: #fafafa;
}

/* Ensure product badges sit in flow inside the summary box */
.woocommerce div.product .summary.entry-summary .yada-badge {
  position: static;
}

.yada-product-trust {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: #444;
  font-size: 13px;
}

.woocommerce div.product .summary.entry-summary .woocommerce-product-details__short-description {
  margin: 0;
  color: #444;
}

.woocommerce div.product .summary.entry-summary .woocommerce-product-details__short-description p {
  margin: 0 0 10px;
}

.woocommerce div.product .summary.entry-summary .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

.yada-product-trust li::before {
  content: "•";
  margin-right: 8px;
  color: #111;
}

.yada-payment-badge {
  margin-top: 12px;
  display: flex;
  align-items: center;
}

.yada-payment-badge img {
  height: 34px;
  width: auto;
  display: block;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs a {
  position: relative;
  display: inline-block;
  padding: 16px 0;
  font-family: var(--yada-font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #666;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs a:hover {
  color: #000;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: #000;
}

.related.products {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #e0e0e0;
}

.related.products > h2 {
  font-family: var(--yada-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  text-align: left;
}

.related.products ul.products {
  display: grid;
  gap: 40px;
}

.related.products ul.products {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.related.products .yada-product-card__image {
  aspect-ratio: 4 / 5;
}

.related.products ul.products.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.related.products ul.products.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.related.products ul.products.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .woocommerce div.product .yada-product-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .woocommerce div.product .yada-product-top div.images {
    grid-template-columns: 1fr;
  }
  .woocommerce div.product .yada-product-top div.images .flex-viewport {
    grid-column: auto;
  }
  .woocommerce div.product .yada-product-top div.images .flex-control-thumbs {
    flex-direction: row;
    position: static;
    max-height: none;
    grid-column: auto;
    grid-row: auto;
  }
  /* On mobile, make thumbs consistent tiles instead of full-width blocks. */
  .woocommerce div.product .yada-product-top div.images .flex-control-thumbs li {
    width: 100px;
    flex: 0 0 100px;
  }
  .woocommerce div.product .yada-product-top div.summary {
    position: static;
  }
  .related.products ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .yada-products__grid,
  .woocommerce ul.products,
  .yada-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .yada-split__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .yada-trust__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .yada-about-story__grid,
  .yada-about-shipping__grid,
  .yada-about-steps__grid {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product .yada-product-top {
    gap: 30px;
  }

  .woocommerce div.product .yada-product-top div.images,
  .woocommerce div.product .yada-product-top div.summary {
    position: static;
    min-height: auto;
  }

  .woocommerce div.product .yada-product-top div.images {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product .yada-product-top div.images .flex-viewport,
  .woocommerce div.product .yada-product-top div.images .woocommerce-product-gallery__wrapper {
    height: auto;
  }

  .woocommerce div.product .yada-product-top div.images .flex-control-thumbs {
    flex-direction: row;
    height: auto;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
  }

  .woocommerce div.product .yada-product-top div.images .flex-control-thumbs li {
    width: 90px;
    flex: 0 0 90px;
  }

  .woocommerce div.product .summary.entry-summary {
    padding-top: 0;
    gap: 12px;
  }

  .woocommerce-breadcrumb {
    margin: 0 0 16px;
  }

  .yada-shop-toolbar {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .yada-hero {
    height: calc(70vh - var(--yada-hero-trust-offset, 90px));
    min-height: 460px;
  }
  .yada-tagline,
  .yada-products {
    padding: 60px 0;
  }
  .related.products ul.products {
    grid-template-columns: 1fr;
  }

  .yada-products__grid,
  .woocommerce ul.products,
  .yada-blog-grid {
    grid-template-columns: 1fr;
  }

  .yada-features__grid {
    grid-template-columns: 1fr;
  }

  .yada-about-hero {
    padding: 80px 0 50px;
  }

  .woocommerce div.product .yada-product-top div.summary {
    padding: 24px;
  }

  .woocommerce div.product .product_title {
    font-size: 28px;
  }

  .woocommerce div.product p.price {
    font-size: 20px;
  }

  .woocommerce div.product form.variations_form .variations select {
    width: 100%;
  }

  .woocommerce div.product form.cart {
    gap: 10px;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .woocommerce ul.products.columns-2,
  .woocommerce ul.products.columns-3,
  .woocommerce ul.products.columns-4 {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .related.products ul.products {
    grid-template-columns: 1fr !important;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
  }

  .yada-shop-toolbar .woocommerce-ordering select {
    width: 100%;
  }

  .yada-size-table {
    min-width: 520px;
  }

  .yada-footer {
    padding: 80px 0 40px;
  }

  .yada-footer__mark {
    font-size: clamp(80px, 26vw, 140px);
    top: 12px;
    opacity: 0.05;
  }

  .yada-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .yada-footer__terms {
    display: block;
    line-height: 1.6;
  }

  .yada-footer__terms span {
    display: none;
  }

  .yada-footer__terms a {
    display: block;
  }

  .yada-footer__badges {
    justify-content: flex-start;
  }
}

/* ---------------------------
   Pages: About / Contact / Blog
--------------------------- */
.yada-page-hero {
  padding: 70px 0 50px;
  text-align: center;
}

.yada-page-eyebrow {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  margin: 0 0 12px;
  font-weight: 600;
  font-family: var(--yada-font-heading);
}

.yada-page-title {
  font-family: var(--yada-font-heading);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  color: #000;
  margin: 0 0 18px;
  letter-spacing: -1px;
}

.yada-page-intro {
  max-width: 900px;
  margin: 0 auto;
  color: #444;
}

.yada-section-title {
  font-family: var(--yada-font-heading);
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0 0 22px;
}

.yada-about-story,
.yada-team-section,
.yada-philosophy-section,
.yada-contact-section {
  padding: 60px 0;
}

.yada-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.yada-team-photo {
  background: #f5f5f5;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 14px;
}

.yada-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yada-team-name {
  margin: 0 0 4px;
  font-family: var(--yada-font-heading);
  font-weight: 700;
  font-size: 18px;
}

.yada-team-title {
  margin: 0 0 10px;
  color: #666;
  font-size: 14px;
}

.yada-team-social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.yada-team-social a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--yada-font-heading);
  font-weight: 600;
}

.yada-philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 30px;
}

.yada-philosophy-image {
  background: #f5f5f5;
  overflow: hidden;
}

.yada-philosophy-image img {
  width: 100%;
  height: auto;
}

.yada-value-item p {
  margin: 0 0 14px;
}

.yada-contact-image {
  background: #f5f5f5;
  overflow: hidden;
  margin-bottom: 30px;
}

.yada-contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.yada-form input,
.yada-form textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  padding: 12px 14px;
  font-size: 14px;
}

.yada-submit-button {
  height: 50px;
  padding: 0 40px;
  border: 0;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--yada-font-heading);
  font-weight: 600;
}

.yada-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 0 70px;
}

.yada-blog-image {
  background: #f5f5f5;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: 14px;
}

.yada-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yada-blog-title {
  margin: 0 0 10px;
  font-family: var(--yada-font-heading);
  font-size: 18px;
  font-weight: 700;
}

.yada-blog-excerpt {
  color: #444;
  font-size: 14px;
  margin-bottom: 12px;
}

.yada-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.yada-pagination a,
.yada-pagination span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
}

.yada-pagination .current {
  background: #000;
  color: #fff;
  border-color: #000;
}

.yada-single-post {
  padding: 70px 0;
}

.yada-post-header {
  text-align: center;
  margin-bottom: 30px;
}

.yada-post-title {
  font-family: var(--yada-font-heading);
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 12px;
}

.yada-post-meta {
  color: #666;
  font-size: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.yada-post-featured-image {
  background: #f5f5f5;
  margin-bottom: 30px;
}

.yada-post-content {
  max-width: 820px;
  margin: 0 auto;
}

.yada-post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
  padding-top: 24px;
}

/* Hide post tags visually but keep in DOM for SEO */
.yada-post-footer,
.yada-post-tags {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 992px) {
  .yada-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yada-philosophy-grid,
  .yada-contact-content {
    grid-template-columns: 1fr;
  }
}




