:root {
  --yl-ink: #171717;
  --yl-muted: #74706d;
  --yl-aqua: #45d3c8;
  --yl-aqua-dark: #159b94;
  --yl-blush: #f7eeee;
  --yl-sand: #f8f6f2;
  --yl-white: #fff;
  --yl-border: #e8e3de;
  --yl-shadow: 0 18px 55px rgba(26, 22, 18, .09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { color: var(--yl-ink); background: var(--yl-white); font-family: "Lato", Arial, sans-serif; }
a { color: inherit; transition: color .2s ease, opacity .2s ease, transform .2s ease; }
a:hover { color: var(--yl-aqua-dark); text-decoration: none; }
img { max-width: 100%; }
.yl-page { min-height: 100vh; }
.yl-container { width: min(1180px, calc(100% - 36px)); margin-inline: auto; }
.yl-announcement { padding: 9px 16px; text-align: center; color: #0e4b48; background: #dff8f5; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.yl-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); box-shadow: 0 1px 0 var(--yl-border); backdrop-filter: blur(14px); }
.yl-header-main { min-height: 90px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.yl-brand img { display: block; width: 190px; height: auto; }
.yl-navigation { display: flex; justify-content: center; gap: clamp(16px, 2.4vw, 34px); }
.yl-navigation a { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.yl-header-actions { display: flex; align-items: center; gap: 12px; }
.yl-search { display: flex; width: 190px; border-bottom: 1px solid var(--yl-border); }
.yl-search input { min-width: 0; padding: 8px 2px; border: 0; background: transparent; font-size: 13px; }
.yl-search button { padding: 5px 4px; border: 0; background: transparent; font-size: 22px; }
.yl-language select { border: 0; background: transparent; font-weight: 700; }
.yl-cart-summary, .yl-account { display: inline-flex; gap: 6px; align-items: center; white-space: nowrap; font-size: 13px; font-weight: 700; }
.yl-cart-summary strong { min-width: 19px; height: 19px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--yl-aqua-dark); font-size: 11px; }
.yl-menu-toggle { display: none; width: 38px; padding: 8px; border: 0; background: transparent; }
.yl-menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: var(--yl-ink); }
.yl-section { padding: clamp(64px, 8vw, 110px) 0; }
.yl-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 36px; }
.yl-section-heading h1, .yl-section-heading h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-weight: 400; font-size: clamp(34px, 4vw, 54px); }
.yl-eyebrow { margin: 0 0 9px; color: var(--yl-aqua-dark); font-size: 12px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.yl-button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 27px; border: 1px solid var(--yl-ink); color: #fff; background: var(--yl-ink); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; }
.yl-button:hover { color: #fff; background: var(--yl-aqua-dark); border-color: var(--yl-aqua-dark); }
.yl-button-outline { color: var(--yl-ink); background: transparent; }
.yl-button-danger { background: #942f2f; border-color: #942f2f; }
.yl-hero { min-height: 620px; display: grid; align-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at 74% 48%, rgba(69,211,200,.34), transparent 29%), linear-gradient(135deg, #f9f4f0 0%, #fff 48%, #e9fbf9 100%); }
.yl-hero::after { content: ""; position: absolute; width: 460px; height: 460px; right: 7%; top: 13%; border: 1px solid rgba(21,155,148,.35); border-radius: 50%; box-shadow: 0 0 0 44px rgba(255,255,255,.3), 0 0 0 88px rgba(69,211,200,.08); }
.yl-hero-content { position: relative; z-index: 1; max-width: 610px; }
.yl-hero h1 { margin: 0 0 22px; font-family: "Playfair Display", Georgia, serif; font-weight: 400; font-size: clamp(52px, 7vw, 90px); line-height: .98; }
.yl-hero p:not(.yl-eyebrow) { max-width: 520px; margin-bottom: 30px; color: var(--yl-muted); font-size: 18px; line-height: 1.7; }
.yl-hero-banner { min-height: 520px; background-size: cover; background-position: center; }
.yl-category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.yl-category-card { min-height: 330px; position: relative; display: flex; align-items: end; overflow: hidden; background: var(--yl-sand); }
.yl-category-card img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .45s ease; }
.yl-category-card:hover img { transform: scale(1.04); }
.yl-category-card div { width: calc(100% - 28px); position: relative; margin: 14px; padding: 20px; background: rgba(255,255,255,.92); }
.yl-category-card h3 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: 25px; font-weight: 400; }
.yl-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.yl-product-card { min-width: 0; background: #fff; }
.yl-product-image { aspect-ratio: 580 / 778; display: block; overflow: hidden; background: var(--yl-sand); }
.yl-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.yl-product-card:hover .yl-product-image img { transform: scale(1.035); }
.yl-product-body { padding: 17px 2px 8px; }
.yl-product-body h3 { min-height: 48px; margin: 8px 0; font-family: "Playfair Display", Georgia, serif; font-size: 20px; font-weight: 400; line-height: 1.3; }
.yl-rating { color: #d7a84d; font-size: 11px; letter-spacing: .08em; }
.yl-rating span { color: var(--yl-muted); letter-spacing: 0; }
.yl-price { display: flex; align-items: baseline; gap: 9px; }
.yl-price strong { font-size: 18px; color: var(--yl-aqua-dark); }
.yl-price del { color: var(--yl-muted); }
.yl-price small { color: var(--yl-muted); font-size: 10px; }
.yl-collection:nth-of-type(even) { background: var(--yl-sand); }
.yl-empty { padding: 40px; border: 1px dashed #ccc3ba; text-align: center; color: var(--yl-muted); background: rgba(255,255,255,.5); }
.yl-page-hero { padding: 72px 0; text-align: center; background: var(--yl-sand); }
.yl-page-hero h1 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(40px, 6vw, 65px); font-weight: 400; }
.yl-breadcrumbs { margin-top: 14px; color: var(--yl-muted); font-size: 13px; }
.yl-catalog-layout { display: grid; grid-template-columns: 230px 1fr; gap: 45px; }
.yl-filter { padding: 25px; background: var(--yl-sand); }
.yl-filter label { display: block; margin: 16px 0 6px; font-weight: 700; font-size: 12px; text-transform: uppercase; }
.yl-filter input, .yl-filter select, .yl-field input, .yl-field select, .yl-field textarea { width: 100%; padding: 12px; border: 1px solid var(--yl-border); background: #fff; }
.yl-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 46px; }
.yl-pagination a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--yl-border); }
.yl-pagination a.active { color: #fff; background: var(--yl-ink); border-color: var(--yl-ink); }
.yl-product-detail { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 60px; }
.yl-gallery-main { aspect-ratio: 940/1060; overflow: hidden; background: var(--yl-sand); }
.yl-gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.yl-gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; }
.yl-gallery-thumbs button { width: 84px; height: 84px; padding: 0; border: 1px solid var(--yl-border); background: #fff; }
.yl-gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.yl-product-info h1 { margin-top: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(38px, 5vw, 62px); font-weight: 400; }
.yl-product-info .yl-price { margin: 22px 0; }
.yl-product-description { color: var(--yl-muted); line-height: 1.8; }
.yl-variant-list { display: grid; gap: 10px; margin: 25px 0; }
.yl-variant { padding: 14px; border: 1px solid var(--yl-border); }
.yl-variant label { display: flex; gap: 10px; align-items: center; }
.yl-quantity { width: 90px !important; }
.yl-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.yl-field { display: grid; gap: 7px; }
.yl-field-wide { grid-column: 1 / -1; }
.yl-field label { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.field-validation-error, .validation-summary-errors { color: #a52626; font-size: 13px; }
.yl-notice { padding: 15px 18px; border-left: 4px solid var(--yl-aqua-dark); background: #e9fbf9; }
.yl-cart-table { width: 100%; border-collapse: collapse; }
.yl-cart-table th, .yl-cart-table td { padding: 17px 12px; border-bottom: 1px solid var(--yl-border); text-align: left; vertical-align: middle; }
.yl-cart-table img { width: 70px; height: 90px; object-fit: cover; background: var(--yl-sand); }
.yl-cart-total { margin-top: 30px; display: flex; justify-content: flex-end; align-items: center; gap: 25px; font-size: 24px; }
.yl-two-column { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 50px; }
.yl-summary { padding: 28px; background: var(--yl-sand); }
.yl-summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--yl-border); }
.yl-content { max-width: 800px; margin-inline: auto; font-size: 17px; line-height: 1.85; }
.yl-content h2, .yl-content h3 { font-family: "Playfair Display", Georgia, serif; font-weight: 400; }
.yl-reviews { margin-top: 50px; }
.yl-review { padding: 20px 0; border-bottom: 1px solid var(--yl-border); }
.yl-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #22b66d; box-shadow: var(--yl-shadow); font-weight: 900; }
.yl-footer { margin-top: 45px; padding: 42px 0 16px; color: #d5d1cc; background: #191817; }
.yl-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 34px; }
.yl-footer h3 { margin: 0 0 10px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.yl-footer p { margin: 6px 0 0; font-size: 13px; line-height: 1.55; }
.yl-footer a { display: block; margin: 5px 0; color: #d5d1cc; font-size: 13px; line-height: 1.4; }
.yl-footer-logo { width: 155px; height: auto; filter: brightness(0) invert(1); margin-bottom: 8px; }
.yl-footer-bottom { margin-top: 24px; padding-top: 14px; border-top: 1px solid #33302e; color: #918c87; font-size: 11px; }
@media (max-width: 1050px) {
  .yl-header-main { grid-template-columns: auto auto; }
  .yl-menu-toggle { display: block; justify-self: end; }
  .yl-navigation { display: none; grid-column: 1 / -1; flex-direction: column; padding: 18px 0; border-top: 1px solid var(--yl-border); }
  .yl-navigation.open { display: flex; }
  .yl-header-actions { grid-column: 1 / -1; justify-content: center; padding-bottom: 14px; }
  .yl-category-grid, .yl-product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .yl-container { width: min(100% - 24px, 1180px); }
  .yl-header-main { min-height: 72px; gap: 12px; }
  .yl-brand img { width: 150px; }
  .yl-header-actions { flex-wrap: wrap; }
  .yl-search { order: 5; width: 100%; }
  .yl-account { display: none; }
  .yl-hero { min-height: 560px; }
  .yl-hero::after { width: 300px; height: 300px; right: -120px; top: 80px; }
  .yl-category-grid, .yl-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .yl-category-card { min-height: 260px; }
  .yl-catalog-layout, .yl-product-detail, .yl-two-column { grid-template-columns: 1fr; }
  .yl-form-grid { grid-template-columns: 1fr; }
  .yl-field-wide { grid-column: auto; }
  .yl-cart-table thead { display: none; }
  .yl-cart-table tr, .yl-cart-table td { display: block; }
  .yl-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 450px) {
  .yl-category-grid, .yl-product-grid { grid-template-columns: 1fr; }
  .yl-product-image { aspect-ratio: 4 / 5; }
  .yl-footer-grid { grid-template-columns: 1fr; }
}
