:root {
  --yocles-black: #1e1e1e;
  --yocles-ink: #282828;
  --yocles-muted: #7b7b7b;
  --yocles-line: #e8e8e1;
  --yocles-soft: #f8f8f8;
  --yocles-white: #ffffff;
  --yocles-gold: #fbcd0a;
  --yocles-green: #108474;
  --yocles-radius: 8px;
  --yocles-page: min(1200px, calc(100vw - 40px));
  --yocles-font-heading: "Poppins", "DM Sans", Arial, sans-serif;
  --yocles-font-body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--yocles-ink);
  background: var(--yocles-white);
  font-family: var(--yocles-font-body);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-family: var(--yocles-font-heading); line-height: 1.1; margin: 0 0 16px; letter-spacing: 0; color: var(--yocles-black); }
p { margin: 0 0 16px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; top: 10px; left: 10px; width: auto; height: auto; clip: auto; z-index: 1000; background: var(--yocles-gold); color: #000; padding: 10px 14px; }

.yocles-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--yocles-line);
  backdrop-filter: blur(14px);
}
.yocles-header__inner {
  width: var(--yocles-page);
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.yocles-logo { display: inline-flex; align-items: center; }
.yocles-logo img { width: 176px; height: auto; display: block; }
.yocles-logo--footer img { width: 150px; }
.yocles-nav__list { display: flex; align-items: center; justify-content: center; gap: 26px; margin: 0; padding: 0; list-style: none; font-weight: 600; font-size: 14px; }
.yocles-nav__list a { padding: 26px 0; display: inline-flex; }
.yocles-nav__list a:hover { color: var(--yocles-green); }
.yocles-header__actions { display: flex; align-items: center; gap: 12px; }
.yocles-icon-link { width: 42px; height: 42px; border: 1px solid var(--yocles-line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; position: relative; }
.yocles-icon-link svg { width: 20px; height: 20px; fill: currentColor; }
.yocles-cart-link span { position: absolute; top: -5px; right: -5px; width: 20px; height: 20px; border-radius: 50%; background: var(--yocles-gold); color: #000; font-size: 12px; display: grid; place-items: center; }
.yocles-menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 8px; }
.yocles-menu-toggle span:not(.screen-reader-text) { display: block; height: 2px; margin: 5px 0; background: var(--yocles-black); }

.yocles-hero { position: relative; min-height: calc(100vh - 74px); overflow: hidden; background: #111; }
.yocles-hero__track, .yocles-hero__slide { min-height: calc(100vh - 74px); }
.yocles-hero__slide {
  display: none;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.12) 58%, rgba(0,0,0,.18)), var(--hero-image);
  background-position: center;
  background-size: cover;
}
.yocles-hero__slide.is-active { display: flex; }
.yocles-hero__content { width: var(--yocles-page); margin: 0 auto; color: var(--yocles-white); padding: 80px 0 130px; }
.yocles-hero h1 { color: var(--yocles-white); font-size: clamp(44px, 7vw, 92px); max-width: 760px; }
.yocles-hero p:not(.yocles-kicker) { max-width: 520px; font-size: 18px; color: rgba(255,255,255,.86); }
.yocles-kicker { margin-bottom: 12px; color: var(--yocles-green); font-family: var(--yocles-font-heading); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
.yocles-hero .yocles-kicker { color: var(--yocles-gold); }
.yocles-hero__dots { position: absolute; left: 50%; bottom: 44px; transform: translateX(-50%); display: flex; gap: 10px; }
.yocles-hero__dots button { width: 38px; height: 4px; border: 0; border-radius: 99px; background: rgba(255,255,255,.45); }
.yocles-hero__dots button.is-active { background: var(--yocles-gold); }

.yocles-button, .button, button.button, input[type="submit"] {
  min-height: 48px;
  border: 0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--yocles-gold);
  color: #000;
  font-family: var(--yocles-font-heading);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.yocles-button:hover, .button:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.yocles-button--dark { background: var(--yocles-black); color: var(--yocles-white); }
.yocles-button--ghost { background: transparent; color: var(--yocles-black); border: 1px solid var(--yocles-black); }
.yocles-button--small { min-height: 40px; padding: 9px 16px; font-size: 13px; }

.yocles-section { width: var(--yocles-page); margin: 0 auto; padding: 82px 0; }
.yocles-section__head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.yocles-section__head h2, .yocles-image-band h2 { font-size: clamp(30px, 4vw, 54px); }
.yocles-product-grid, .products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.yocles-product-card {
  border: 1px solid var(--yocles-line);
  border-radius: var(--yocles-radius);
  overflow: hidden;
  background: var(--yocles-white);
}
.yocles-product-card__media { aspect-ratio: 1 / 1; display: block; background: var(--yocles-soft); overflow: hidden; }
.yocles-product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.yocles-product-card:hover img { transform: scale(1.04); }
.yocles-product-card__body { padding: 18px; }
.yocles-product-card h3 { font-size: 18px; min-height: 42px; }
.yocles-product-card__price { font-weight: 700; margin: 12px 0 16px; color: var(--yocles-black); }
.price del { color: var(--yocles-muted); margin-right: 8px; font-weight: 400; }
.price ins { color: var(--yocles-green); text-decoration: none; }

.yocles-image-band {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 54px;
  background: var(--yocles-soft);
  padding: 72px max(20px, calc((100vw - 1200px) / 2));
}
.yocles-image-band img { width: 100%; border-radius: var(--yocles-radius); aspect-ratio: 16 / 10; object-fit: cover; }
.yocles-image-band p:not(.yocles-kicker) { color: var(--yocles-muted); max-width: 560px; }
.yocles-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.yocles-feature-grid article { border: 1px solid var(--yocles-line); border-radius: var(--yocles-radius); padding: 18px; background: #fff; }
.yocles-feature-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; margin-bottom: 20px; }
.yocles-feature-grid span { color: var(--yocles-gold); font-weight: 700; font-family: var(--yocles-font-heading); }
.yocles-feature-grid h3 { margin-top: 14px; font-size: 22px; }

.yocles-page-hero {
  min-height: 300px;
  display: grid;
  align-items: center;
  background: linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.18)), url("https://yocles.com/cdn/shop/files/4_ba50a9e5-4b2b-4921-a0c6-af62359aebad.jpg?v=1778134353&width=1920") center / cover;
  color: #fff;
}
.yocles-page-hero > div { width: var(--yocles-page); margin: 0 auto; padding: 56px 0; }
.yocles-page-hero h1 { color: #fff; font-size: clamp(36px, 5vw, 66px); }
.yocles-page-hero p { max-width: 680px; color: rgba(255,255,255,.86); }
.yocles-content { max-width: 900px; }
.yocles-page-content { font-size: 17px; }
.yocles-page-content img { border-radius: var(--yocles-radius); margin: 24px 0; }
.yocles-page-content h2 { margin-top: 42px; font-size: clamp(25px, 3vw, 34px); }
.yocles-page-content h3 { margin-top: 28px; font-size: 20px; }
.yocles-page-content ul, .yocles-page-content ol { padding-left: 24px; margin: 0 0 22px; }
.yocles-page-content li + li { margin-top: 9px; }
.yoclez-page-intro { padding: 26px 30px; border-left: 4px solid var(--yocles-green); border-radius: 0 var(--yocles-radius) var(--yocles-radius) 0; background: var(--yocles-soft); font-size: 19px; }
.yoclez-page-intro p:last-child, .yoclez-info-box p:last-child { margin-bottom: 0; }
.yoclez-info-box { margin: 34px 0; padding: 24px 28px; border: 1px solid var(--yocles-line); border-radius: var(--yocles-radius); background: #fff; }
.yoclez-info-box h2 { margin-top: 0; }
.yoclez-link-grid, .yoclez-feature-list, .yoclez-contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 30px 0; }
.yoclez-link-grid > a, .yoclez-feature-list > section, .yoclez-contact-grid > section { padding: 22px; border: 1px solid var(--yocles-line); border-radius: var(--yocles-radius); background: #fff; }
.yoclez-link-grid > a { display: grid; gap: 6px; transition: border-color .2s ease, transform .2s ease; }
.yoclez-link-grid > a:hover { border-color: var(--yocles-green); transform: translateY(-2px); }
.yoclez-link-grid strong { font-family: var(--yocles-font-heading); font-size: 18px; }
.yoclez-link-grid span { color: var(--yocles-muted); font-size: 15px; }
.yoclez-feature-list h3, .yoclez-contact-grid h2 { margin-top: 0; }
.yoclez-app-links { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 30px; }
.yoclez-table-wrap { margin: 24px 0 32px; overflow-x: auto; border: 1px solid var(--yocles-line); border-radius: var(--yocles-radius); }
.yoclez-policy-table { width: 100%; min-width: 680px; border-collapse: collapse; font-size: 15px; }
.yoclez-policy-table th, .yoclez-policy-table td { padding: 14px 16px; border-bottom: 1px solid var(--yocles-line); text-align: left; vertical-align: top; }
.yoclez-policy-table th { background: var(--yocles-soft); font-family: var(--yocles-font-heading); }
.yoclez-policy-table tbody tr:last-child td { border-bottom: 0; }
.yoclez-contact-form { margin-top: 28px; }

.yocles-product__hero {
  width: var(--yocles-page);
  margin: 0 auto;
  padding: 58px 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 56px;
}
.yocles-product__gallery { display: grid; grid-template-columns: 84px 1fr; gap: 18px; align-items: start; }
.yocles-product__thumbs { display: grid; gap: 12px; }
.yocles-product__thumbs button { border: 1px solid var(--yocles-line); background: var(--yocles-soft); border-radius: 6px; padding: 0; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.yocles-product__thumbs button.is-active { border-color: var(--yocles-green); }
.yocles-product__thumbs img, .yocles-product__image img { width: 100%; height: 100%; object-fit: cover; }
.yocles-product__image { aspect-ratio: 1 / 1; background: var(--yocles-soft); border-radius: var(--yocles-radius); overflow: hidden; }
.yocles-product__summary { position: sticky; top: 96px; align-self: start; }
.yocles-product__summary h1 { font-size: clamp(34px, 4vw, 56px); }
.yocles-product__price { font-size: 26px; margin: 16px 0 24px; font-weight: 700; }
.yocles-product__short { color: var(--yocles-muted); margin-bottom: 22px; }
.yocles-cart-form { display: grid; grid-template-columns: 132px 1fr 1fr; gap: 12px; }
.quantity input.qty { width: 100%; min-height: 48px; border: 1px solid var(--yocles-line); border-radius: 4px; text-align: center; font-weight: 700; }
.yocles-product-details { padding-top: 34px; }
.yocles-product-details h2, .yocles-reviews h2, .yocles-contact-cta h2 { font-size: clamp(28px, 3vw, 42px); }
.yocles-product-details__body { max-width: 860px; color: var(--yocles-ink); }
.yocles-product-details__body p { border-bottom: 1px solid var(--yocles-line); padding: 10px 0; margin: 0; }
.yocles-reviews, .yocles-contact-cta { border-top: 1px solid var(--yocles-line); }
.comment-form input, .comment-form textarea, .wpcf7-form input, .wpcf7-form textarea, .yocles-search-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--yocles-line);
  border-radius: 4px;
  padding: 12px 14px;
  font: inherit;
}
.comment-form textarea, .wpcf7-form textarea { min-height: 160px; }
.wpcf7-form p { margin-bottom: 16px; }

.yocles-shop__tools { margin-bottom: 28px; display: flex; justify-content: space-between; gap: 20px; color: var(--yocles-muted); }
.woocommerce-result-count, .woocommerce-ordering { margin: 0; }
.woocommerce-ordering select { min-height: 42px; border: 1px solid var(--yocles-line); border-radius: 4px; padding: 0 12px; background: #fff; }

.yocles-post-list { display: grid; gap: 24px; }
.yocles-post-card { border-bottom: 1px solid var(--yocles-line); padding-bottom: 24px; }
.yocles-post-card h2 { font-size: 28px; }
.yocles-article header { margin-bottom: 28px; }
.yocles-article h1 { font-size: clamp(36px, 5vw, 64px); }
.yocles-article__image { border-radius: var(--yocles-radius); margin-bottom: 28px; }

.yocles-footer { background: var(--yocles-black); color: rgba(255,255,255,.78); padding: 62px 0 24px; }
.yocles-footer h2, .yocles-footer .yocles-logo { color: #fff; }
.yocles-footer .yocles-logo img { filter: invert(1); }
.yocles-footer__grid { width: var(--yocles-page); margin: 0 auto; display: grid; grid-template-columns: minmax(220px, 1.4fr) repeat(5, minmax(120px, 1fr)); gap: 28px; }
.yocles-footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.yocles-footer a:hover { color: var(--yocles-gold); }
.yocles-socials { display: grid; gap: 8px; }
.yocles-footer__bottom { width: var(--yocles-page); margin: 42px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); display: flex; justify-content: space-between; gap: 20px; font-size: 14px; }
.yocles-footer__bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 980px) {
  :root { --yocles-page: min(100vw - 28px, 760px); }
  .yocles-header__inner { grid-template-columns: auto 1fr auto; min-height: 66px; gap: 12px; }
  .yocles-menu-toggle { display: block; }
  .yocles-nav { display: none; position: absolute; left: 0; right: 0; top: 66px; background: #fff; border-bottom: 1px solid var(--yocles-line); padding: 10px 18px 18px; }
  .yocles-header.is-open .yocles-nav { display: block; }
  .yocles-nav__list { display: grid; gap: 0; justify-content: stretch; }
  .yocles-nav__list a { padding: 12px 0; }
  .yocles-hero, .yocles-hero__track, .yocles-hero__slide { min-height: 620px; }
  .yocles-hero h1 { font-size: 46px; }
  .yocles-product-grid, .products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .yocles-image-band, .yocles-product__hero { grid-template-columns: 1fr; }
  .yocles-feature-grid, .yocles-footer__grid { grid-template-columns: 1fr; }
  .yocles-product__summary { position: static; }
}

@media (max-width: 620px) {
  :root { --yocles-page: calc(100vw - 24px); }
  .yocles-logo img { width: 142px; }
  .yocles-logo--footer img { width: 150px; }
  .yocles-header__actions { gap: 6px; }
  .yocles-icon-link { width: 38px; height: 38px; }
  .yocles-hero, .yocles-hero__track, .yocles-hero__slide { min-height: 560px; }
  .yocles-hero h1 { font-size: 38px; }
  .yocles-hero__content { padding-bottom: 100px; }
  .yocles-section { padding: 56px 0; }
  .yocles-section__head { display: block; }
  .yocles-product-grid, .products { grid-template-columns: 1fr; }
  .yocles-product__gallery { grid-template-columns: 1fr; }
  .yocles-product__thumbs { grid-template-columns: repeat(5, 1fr); order: 2; }
  .yocles-cart-form { grid-template-columns: 1fr; }
  .yocles-footer__bottom { display: block; }
  .yoclez-page-intro, .yoclez-info-box { padding: 20px; }
  .yoclez-link-grid, .yoclez-feature-list, .yoclez-contact-grid { grid-template-columns: 1fr; }
}
