:root{
    --moss-dark:#232b1c;
    --moss:#3f4f2e;
    --moss-mid:#5c6f43;
    --amber:#d98e2b;
    --stone:#efe9dc;
    --stone-2:#e2dac6;
    --charcoal:#1b1a17;
    --line:rgba(239,233,220,0.18);
    --line-dark:rgba(27,26,23,0.14);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'IBM Plex Sans', sans-serif;
    background:var(--stone);
    color:var(--charcoal);
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  button{font-family:inherit; cursor:pointer; border:none;}

  .display{
    font-family:'Anton', sans-serif;
    font-weight:400;
    letter-spacing:0.01em;
    line-height:0.92;
  }
  .tag{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.72rem;
    letter-spacing:0.08em;
    font-weight:500;
  }

  .wrap{
    max-width:1240px;
    margin:0 auto;
    padding:0 32px;
  }

  /* ---------- topo pattern ---------- */
  .topo{
    position:absolute; inset:0;
    background-image:
      repeating-radial-gradient(ellipse 120% 90% at 20% 10%, transparent 0, transparent 34px, var(--line) 35px, transparent 36px, transparent 70px),
      repeating-radial-gradient(ellipse 90% 130% at 85% 80%, transparent 0, transparent 40px, var(--line) 41px, transparent 42px, transparent 82px);
    opacity:0.8;
    pointer-events:none;
  }
  .topo.dark{
    background-image:
      repeating-radial-gradient(ellipse 120% 90% at 20% 10%, transparent 0, transparent 34px, var(--line-dark) 35px, transparent 36px, transparent 70px),
      repeating-radial-gradient(ellipse 90% 130% at 85% 80%, transparent 0, transparent 40px, var(--line-dark) 41px, transparent 42px, transparent 82px);
  }

  /* ---------- nav ---------- */
  header{
    position:absolute; top:0; left:0; right:0; z-index:50;
    background:transparent;
    color:var(--stone);
  }
  header.solid{
    position:static;
    background:var(--moss-dark);
    border-bottom:1px solid rgba(239,233,220,0.12);
  }
  .nav-links a.active{ color:var(--amber); }
  .header-top{
    display:flex; justify-content:center; align-items:center;
    padding:22px 32px 18px;
  }
  .header-divider{
    height:1px;
    background:rgba(239,233,220,0.18);
    max-width:1240px;
    margin:0 auto;
  }
  .header-bottom{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    padding:16px 32px;
    max-width:1240px; margin:0 auto;
  }
  .header-bottom .nav-links{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
  }
  .logo{
    font-family:'Anton', sans-serif;
    font-size:1.4rem;
    letter-spacing:0.06em;
  }
  .logo img{
    height:26px;
    width:auto;
    display:block;
  }
  .nav-links{
    display:flex; gap:34px;
    list-style:none;
  }
  .nav-links a{
    font-size:0.82rem;
    letter-spacing:0.03em;
    font-weight:500;
    position:relative;
    padding-bottom:4px;
  }
  .nav-links a::after{
    content:'';
    position:absolute; left:0; bottom:0;
    width:0; height:1.5px;
    background:var(--amber);
    transition:width 0.25s ease;
  }
  .nav-links a:hover::after{ width:100%; }
  .nav-icons{ display:flex; gap:20px; align-items:center; }
  .nav-icons svg{ width:18px; height:18px; }
  .nav-toggle{ display:none; background:none; }

  /* ---------- hero ---------- */
  .hero{
    position:relative;
    min-height:96vh;
    display:flex; align-items:center;
    color:var(--stone);
    overflow:hidden;
  }
  .hero-photo{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    object-position:center 18%;
    transform:scale(1.01);
    z-index:0;
  }
  .hero-overlay{
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(20,22,15,0.55) 0%, rgba(20,22,15,0.25) 40%, rgba(20,22,15,0.75) 100%);
    z-index:1;
  }
  .hero-ridge{
    position:absolute; left:0; right:0; bottom:-2px;
    width:100%; height:auto;
  }
  .hero-content{
    position:relative; z-index:2;
    max-width:1240px; margin:0 auto;
    padding:0 32px;
    width:100%;
  }
  .hero-eyebrow{
    color:var(--amber);
    margin-bottom:18px;
    display:inline-flex; align-items:center; gap:10px;
  }
  .hero-eyebrow::before{
    content:'';
    width:26px; height:1px;
    background:var(--amber);
    display:inline-block;
  }
  .hero h1{
    font-size:clamp(2.6rem, 6.4vw, 5.4rem);
    max-width:11ch;
    text-transform:uppercase;
  }
  .hero h1 .accent{ color:var(--amber); }
  .hero p{
    margin-top:26px;
    max-width:38ch;
    font-size:1.02rem;
    line-height:1.65;
    color:rgba(239,233,220,0.82);
  }
  .hero-actions{
    margin-top:38px;
    display:flex; gap:16px; flex-wrap:wrap;
  }
  .btn{
    padding:15px 30px;
    font-size:0.82rem;
    letter-spacing:0.04em;
    font-weight:600;
    display:inline-block;
    transition:transform 0.2s ease, background 0.2s ease;
  }
  .btn-primary{
    background:var(--amber);
    color:var(--moss-dark);
  }
  .btn-primary:hover{ transform:translateY(-2px); }
  .btn-outline{
    border:1px solid rgba(239,233,220,0.4);
    color:var(--stone);
  }
  .btn-outline:hover{ border-color:var(--stone); }
  .btn-dark{
    background:var(--charcoal);
    color:var(--stone);
  }
  .btn-dark:hover{ transform:translateY(-2px); }

  .hero-coords{
    position:absolute;
    z-index:2;
    right:32px; top:50%;
    transform:translateY(-50%) rotate(90deg);
    transform-origin:right center;
    font-size:0.7rem;
    letter-spacing:0.15em;
    color:rgba(239,233,220,0.45);
    white-space:nowrap;
  }
  @media (max-width:900px){ .hero-coords{ display:none; } }

  /* ---------- category grid ---------- */
  .categories{
    padding:100px 0 90px;
    position:relative;
    background:var(--stone) url('assets/fondo_1.webp') repeat;
    background-size:560px auto;
  }
  .section-head{
    display:flex; justify-content:space-between; align-items:flex-end;
    margin-bottom:48px;
    flex-wrap:wrap; gap:16px;
  }
  .section-head .tag{ color:var(--moss); margin-bottom:12px; display:block; }
  .section-head h2{
    font-size:clamp(1.8rem, 3.4vw, 2.6rem);
    text-transform:uppercase;
  }
  .section-head p{
    max-width:32ch; font-size:0.92rem; color:#5a5648; line-height:1.6;
  }
  .cat-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:2px;
    background:var(--charcoal);
    border:1px solid var(--charcoal);
  }
  .cat-card{
    background:var(--stone);
    padding:44px 34px 34px;
    position:relative;
    min-height:340px;
    display:flex; flex-direction:column; justify-content:flex-end;
    transition:background 0.3s ease;
    overflow:hidden;
  }
  .cat-card:hover{ background:var(--stone-2); }
  .cat-icon{
    position:absolute; top:34px; right:34px;
    width:52px; height:52px;
    opacity:0.85;
  }
  .cat-num{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.72rem;
    color:var(--moss-mid);
    margin-bottom:auto;
  }
  .cat-card h3{
    font-family:'Anton', sans-serif;
    font-size:1.7rem;
    text-transform:uppercase;
    margin-top:60px;
    margin-bottom:8px;
  }
  .cat-card span.desc{
    font-size:0.85rem; color:#5a5648; margin-bottom:18px; display:block;
  }
  .cat-link{
    font-size:0.76rem; letter-spacing:0.05em; font-weight:600;
    display:inline-flex; align-items:center; gap:8px;
    color:var(--moss-dark);
    border-bottom:1px solid var(--moss-dark);
    padding-bottom:2px;
    width:fit-content;
  }

  /* ---------- brand strip ---------- */
  .brand-strip{
    position:relative;
    background:var(--charcoal);
    color:var(--stone);
    overflow:hidden;
    text-align:center;
  }
  .brand-photo{
    width:100%;
    height:clamp(420px, 78vh, 900px);
    object-fit:cover;
    object-position:center 15%;
    display:block;
  }
  .brand-strip-overlay{
    position:absolute; left:0; right:0; bottom:0;
    height:45%;
    background:linear-gradient(0deg, rgba(19,20,15,0.85) 0%, transparent 100%);
    pointer-events:none;
  }
  .brand-strip .quote{
    position:absolute; left:50%; bottom:56px;
    transform:translateX(-50%);
    max-width:560px; width:90%;
    z-index:2;
    font-size:1.1rem;
    line-height:1.65;
    color:rgba(239,233,220,0.92);
  }
  .brand-strip .quote strong{ color:var(--amber); font-weight:600; }
  @media (max-width:700px){ .brand-strip .quote{ bottom:32px; font-size:0.95rem; } }

  /* ---------- product rail ---------- */
  .products{
    padding:100px 0 110px;
    background:var(--stone) url('assets/fondo_1.webp') repeat;
    background-size:560px auto;
  }
  .rail{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:22px;
  }
  .product-card{
    border:1px solid #d9d1ba;
    background:#fff;
    padding-bottom:20px;
    transition:box-shadow 0.25s ease, transform 0.25s ease;
  }
  .product-card:hover{ box-shadow:0 14px 30px rgba(35,43,28,0.14); transform:translateY(-4px); }
  .swatch-img{
    aspect-ratio:4/5;
    display:flex; align-items:center; justify-content:center;
    position:relative;
    overflow:hidden;
    background:#f1efe7;
  }
  .swatch-img img{
    width:100%; height:100%;
    object-fit:cover;
    object-position:center;
    mix-blend-mode:multiply;
  }
  .product-info{ padding:18px 18px 0; }
  .product-info h4{
    font-size:0.86rem; letter-spacing:0.04em; font-weight:600;
    text-transform:uppercase;
    margin-bottom:6px;
  }
  .product-info .sizes{
    font-size:0.74rem; color:#8a836e; margin-bottom:10px;
    font-family:'IBM Plex Mono', monospace;
  }
  .product-info .price{ font-size:0.95rem; font-weight:600; }

  /* ---------- newsletter ---------- */
  .newsletter{
    background:var(--moss);
    color:var(--stone);
    padding:70px 0;
    position:relative;
    overflow:hidden;
  }
  .newsletter-inner{
    display:flex; justify-content:space-between; align-items:center;
    gap:40px; flex-wrap:wrap;
    position:relative; z-index:2;
  }
  .newsletter h3{
    font-family:'Anton', sans-serif;
    font-size:clamp(1.6rem, 3vw, 2.1rem);
    text-transform:uppercase;
    max-width:9ch;
  }
  .newsletter p{
    font-size:0.9rem; color:rgba(239,233,220,0.78);
    max-width:34ch; margin-top:10px; line-height:1.55;
  }
  .newsletter-form{
    display:flex; gap:0; flex:1; max-width:420px; min-width:280px;
  }
  .newsletter-form input{
    flex:1;
    padding:15px 18px;
    background:transparent;
    border:1px solid rgba(239,233,220,0.4);
    border-right:none;
    color:var(--stone);
    font-family:inherit; font-size:0.88rem;
  }
  .newsletter-form input::placeholder{ color:rgba(239,233,220,0.55); }
  .newsletter-form button{
    padding:15px 26px;
    background:var(--amber);
    color:var(--moss-dark);
    font-weight:600; font-size:0.8rem; letter-spacing:0.03em;
    white-space:nowrap;
  }

  /* ---------- collection banner ---------- */
  .collection{
    position:relative;
    min-height:66vh;
    display:flex; align-items:flex-end;
    color:var(--stone);
    overflow:hidden;
    padding:60px 0;
  }
  .collection-photo{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    object-position:center 30%;
    z-index:0;
  }
  .collection-overlay{
    position:absolute; inset:0;
    background:linear-gradient(0deg, rgba(19,20,15,0.82) 0%, rgba(19,20,15,0.25) 45%, rgba(19,20,15,0.35) 100%);
    z-index:1;
  }
  .collection-inner{
    position:relative; z-index:2;
    display:flex; justify-content:space-between; align-items:flex-end;
    width:100%; flex-wrap:wrap; gap:24px;
  }
  .collection .tag{ color:var(--amber); margin-bottom:14px; display:block; }
  .collection h2{
    font-size:clamp(2.6rem, 7vw, 5.2rem);
    text-transform:uppercase;
  }

  /* ---------- footer ---------- */
  footer{
    background:var(--charcoal);
    color:rgba(239,233,220,0.75);
    padding:80px 0 26px;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr repeat(3, 1fr);
    gap:40px;
    padding-bottom:56px;
    border-bottom:1px solid rgba(239,233,220,0.12);
  }
  .footer-brand .logo{ margin-bottom:16px; }
  .footer-brand .logo img{ height:26px; }
  .footer-brand p{ font-size:0.85rem; line-height:1.6; max-width:32ch; color:rgba(239,233,220,0.55); }
  .footer-col h5{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.72rem; letter-spacing:0.08em;
    color:rgba(239,233,220,0.4);
    margin-bottom:18px;
  }
  .footer-col ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
  .footer-col a{ font-size:0.86rem; }
  .footer-col a:hover{ color:var(--amber); }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding-top:26px; flex-wrap:wrap; gap:14px;
    font-size:0.78rem; color:rgba(239,233,220,0.4);
  }
  .footer-social{ display:flex; gap:16px; }
  .footer-social svg{ width:16px; height:16px; }

  /* ---------- catalog page ---------- */
  .cat-hero{
    background:var(--moss-dark);
    color:var(--stone);
    padding:64px 0 56px;
  }
  .cat-hero .tag{ color:var(--amber); display:block; margin-bottom:14px; }
  .cat-hero h1{
    font-size:clamp(2.2rem, 4.5vw, 3.4rem);
    text-transform:uppercase;
    margin-bottom:14px;
  }
  .cat-hero p{
    max-width:44ch;
    color:rgba(239,233,220,0.75);
    font-size:0.98rem;
    line-height:1.6;
  }

  .cat-shop{
    background:var(--stone) url('assets/fondo_1.webp') repeat;
    background-size:560px auto;
    padding:56px 0 110px;
  }
  .cat-shop-inner{
    display:grid;
    grid-template-columns:240px 1fr;
    gap:56px;
    align-items:start;
  }

  .filters{
    position:sticky;
    top:24px;
    border:1px solid #d9d1ba;
    background:#fff;
    padding:26px 24px;
  }
  .filters-head{
    display:flex; justify-content:space-between; align-items:center;
    margin-bottom:22px;
  }
  .filters-head h2{
    font-family:'Anton', sans-serif;
    font-size:1.15rem;
    text-transform:uppercase;
  }
  .filters-clear{
    background:none;
    font-size:0.76rem;
    color:var(--moss);
    text-decoration:underline;
    padding:0;
  }
  .filter-group{ margin-bottom:26px; }
  .filter-group:last-child{ margin-bottom:0; }
  .filter-group h3{
    font-family:'IBM Plex Mono', monospace;
    font-size:0.7rem;
    letter-spacing:0.06em;
    color:#8a836e;
    margin-bottom:12px;
    text-transform:uppercase;
  }
  .filter-pills{ display:flex; flex-direction:column; gap:8px; }
  .pill{
    background:none;
    text-align:left;
    padding:8px 10px;
    font-size:0.86rem;
    color:var(--charcoal);
    border-radius:3px;
  }
  .pill:hover{ background:var(--stone); }
  .pill.active{
    background:var(--moss-dark);
    color:var(--stone);
    font-weight:600;
  }
  .filter-sizes{ display:flex; gap:8px; flex-wrap:wrap; }
  .size-box{
    width:42px; height:38px;
    border:1px solid #d9d1ba;
    background:#fff;
    font-size:0.8rem;
    font-weight:600;
  }
  .size-box:hover{ border-color:var(--moss); }
  .size-box.active{
    background:var(--moss-dark);
    border-color:var(--moss-dark);
    color:var(--stone);
  }
  .price-range{
    position:relative;
    height:20px;
    margin-bottom:14px;
  }
  .price-track{
    position:absolute; top:50%; left:0; right:0;
    height:3px;
    background:#e2dac6;
    transform:translateY(-50%);
    border-radius:2px;
  }
  .price-track-fill{
    position:absolute; top:0; height:100%;
    background:var(--moss);
    border-radius:2px;
  }
  .price-slider{
    position:absolute; top:0; left:0; width:100%;
    -webkit-appearance:none; appearance:none;
    background:none;
    pointer-events:none;
    margin:0;
    height:20px;
  }
  .price-slider::-webkit-slider-thumb{
    -webkit-appearance:none;
    pointer-events:auto;
    width:16px; height:16px;
    border-radius:50%;
    background:var(--moss-dark);
    border:2px solid #fff;
    box-shadow:0 0 0 1px #d9d1ba;
    cursor:pointer;
    margin-top:0;
  }
  .price-slider::-moz-range-thumb{
    pointer-events:auto;
    width:16px; height:16px;
    border-radius:50%;
    background:var(--moss-dark);
    border:2px solid #fff;
    box-shadow:0 0 0 1px #d9d1ba;
    cursor:pointer;
  }
  .price-slider::-webkit-slider-runnable-track{ background:none; }
  .price-inputs{
    display:flex; align-items:center; gap:10px;
  }
  .price-inputs label{
    display:flex; align-items:center; gap:4px;
    font-size:0.8rem; color:#5a5648;
    border:1px solid #d9d1ba;
    padding:6px 8px;
    flex:1;
  }
  .price-inputs input{
    width:100%;
    border:none;
    font-family:'IBM Plex Sans', sans-serif;
    font-size:0.8rem;
    color:var(--charcoal);
  }
  .price-sep{ color:#8a836e; }

  .filter-colors{ display:flex; gap:10px; flex-wrap:wrap; max-width:170px; }
  .swatch-btn{
    width:28px; height:28px;
    border-radius:50%;
    background:var(--sw);
    border:2px solid transparent;
    box-shadow:0 0 0 1px #d9d1ba;
    position:relative;
  }
  .swatch-btn.active{
    border-color:#fff;
    box-shadow:0 0 0 2px var(--amber);
  }

  .cat-results-head{
    margin-bottom:22px;
  }
  .cat-results-head .tag{ color:#8a836e; }

  .cat-grid-shop{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
  }
  .cat-grid-shop.is-empty{ display:none; }

  .pcard-link{
    display:block;
    color:inherit;
    text-decoration:none;
  }
  .pcard{
    border:1px solid #d9d1ba;
    background:#fff;
    padding-bottom:18px;
    transition:box-shadow 0.25s ease, transform 0.25s ease;
  }
  .pcard:hover{ box-shadow:0 14px 30px rgba(35,43,28,0.14); transform:translateY(-4px); }
  .pcard-img{
    aspect-ratio:4/5;
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
    background:#f1efe7;
  }
  .pcard-img img{
    width:100%; height:100%;
    object-fit:cover;
    mix-blend-mode:multiply;
  }
  .pcard-img svg{ width:52%; height:52%; }
  .pcard-info{ padding:16px 16px 0; }
  .pcard-dot{
    display:inline-block;
    width:9px; height:9px;
    border-radius:50%;
    margin-right:7px;
    box-shadow:0 0 0 1px rgba(0,0,0,0.12);
    vertical-align:middle;
  }
  .pcard-info h4{
    font-size:0.82rem; letter-spacing:0.02em; font-weight:600;
    text-transform:uppercase;
    margin:12px 0 6px;
    display:flex; align-items:center;
  }
  .pcard-sizes{
    font-size:0.74rem; color:#8a836e; margin-bottom:10px; display:block;
    font-family:'IBM Plex Mono', monospace;
  }
  .pcard-price{ font-size:0.95rem; font-weight:600; }

  .cat-empty{
    display:none;
    text-align:center;
    padding:80px 20px;
    border:1px dashed #d9d1ba;
  }
  .cat-empty.is-visible{ display:block; }
  .cat-empty p{
    font-size:1rem; color:#5a5648; margin-bottom:20px;
  }
  .btn-outline-dark{
    border:1px solid var(--charcoal);
    color:var(--charcoal);
    display:inline-block;
    padding:12px 26px;
    font-size:0.8rem; font-weight:600; letter-spacing:0.03em;
  }
  .btn-outline-dark:hover{ background:var(--charcoal); color:var(--stone); }

  @media (max-width:900px){
    .cat-shop-inner{ grid-template-columns:1fr; }
    .filters{ position:static; }
    .cat-grid-shop{ grid-template-columns:repeat(2, 1fr); }
  }
  @media (max-width:520px){
    .cat-grid-shop{ grid-template-columns:1fr; }
  }

  @media (max-width:860px){
    .nav-links{ display:none; }
    .cat-grid{ grid-template-columns:1fr; }
    .rail{ grid-template-columns:repeat(2, 1fr); }
    .footer-grid{ grid-template-columns:1fr 1fr; }
    .newsletter-inner{ flex-direction:column; align-items:flex-start; }
  }
  @media (max-width:520px){
    .wrap, nav{ padding-left:20px; padding-right:20px; }
    .rail{ grid-template-columns:1fr; }
    .footer-grid{ grid-template-columns:1fr; }
  }

  /* ---------- product detail page ---------- */
  .product-page{
    background:var(--stone) url('assets/fondo_1.webp') repeat;
    background-size:560px auto;
    padding:36px 0 100px;
  }
  .back-link{
    display:inline-block;
    font-size:0.82rem;
    color:#5a5648;
    margin-bottom:28px;
  }
  .back-link:hover{ color:var(--moss-dark); }

  .product-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:56px;
    align-items:start;
  }

  .pdp-gallery{ position:sticky; top:24px; }
  .pdp-main-img{
    aspect-ratio:4/5;
    background:#f1efe7;
    display:flex; align-items:center; justify-content:center;
    border:1px solid #d9d1ba;
    overflow:hidden;
  }
  .pdp-main-img img{
    width:100%; height:100%;
    object-fit:cover;
    mix-blend-mode:multiply;
  }
  .pdp-main-img svg{ width:44%; height:44%; }

  .pdp-info{ max-width:520px; }
  .pdp-stock{
    color:var(--amber);
    display:block;
    margin-bottom:16px;
  }
  .pdp-title{
    font-family:'Anton', sans-serif;
    font-size:clamp(1.5rem, 2.6vw, 2.1rem);
    text-transform:uppercase;
    line-height:1.15;
    margin-bottom:14px;
  }
  .pdp-price{
    font-size:1.2rem; font-weight:600;
    margin-bottom:28px;
  }
  .pdp-subhead{
    font-family:'Anton', sans-serif;
    font-size:1rem;
    text-transform:uppercase;
    margin:26px 0 12px;
  }
  .pdp-list{
    list-style:none;
    display:flex; flex-direction:column; gap:8px;
  }
  .pdp-list li{
    font-size:0.88rem; color:#4a4638; line-height:1.5;
    padding-left:16px;
    position:relative;
  }
  .pdp-list li::before{
    content:'—';
    position:absolute; left:0; top:0;
    color:var(--moss);
  }

  .pdp-field{ margin-top:28px; }
  .pdp-field-label{
    display:block;
    font-size:0.8rem;
    color:#5a5648;
    margin-bottom:10px;
  }
  .pdp-field-label strong{ color:var(--charcoal); text-transform:uppercase; }

  .pdp-colors{ display:flex; gap:10px; }
  .pdp-color-thumb{
    width:52px; height:52px;
    border:2px solid transparent;
    box-shadow:0 0 0 1px #d9d1ba;
    display:block;
    overflow:hidden;
    background:#f1efe7;
  }
  .pdp-color-thumb img{ width:100%; height:100%; object-fit:cover; mix-blend-mode:multiply; }
  .pdp-swatch-dot{ display:block; width:100%; height:100%; }
  .pdp-color-thumb.active{ border-color:var(--amber); box-shadow:0 0 0 1px var(--amber); }

  .pdp-sizes{ display:flex; gap:10px; flex-wrap:wrap; }
  .pdp-size-box{
    width:48px; height:42px;
    border:1px solid #d9d1ba;
    background:#fff;
    font-size:0.82rem; font-weight:600;
  }
  .pdp-size-box:not(.disabled):hover{ border-color:var(--moss); }
  .pdp-size-box.active{
    background:var(--moss-dark);
    border-color:var(--moss-dark);
    color:var(--stone);
  }
  .pdp-size-box.disabled{
    color:#c7c0ab;
    text-decoration:line-through;
    cursor:not-allowed;
  }

  .pdp-qty{
    width:110px;
    padding:10px 12px;
    border:1px solid #d9d1ba;
    background:#fff;
    font-family:'IBM Plex Sans', sans-serif;
    font-size:0.86rem;
  }

  .pdp-add-btn{
    width:100%;
    margin-top:32px;
    padding:17px;
    background:var(--charcoal);
    color:var(--stone);
    font-size:0.85rem; font-weight:600; letter-spacing:0.04em;
    text-transform:uppercase;
    transition:background 0.2s ease;
  }
  .pdp-add-btn:hover{ background:var(--moss-dark); }
  .pdp-add-btn.added{ background:var(--moss); }

  .pdp-accordion{ margin-top:38px; border-top:1px solid #d9d1ba; }
  .pdp-accordion-head{
    width:100%;
    display:flex; justify-content:space-between; align-items:center;
    padding:16px 0;
    border-bottom:1px solid #d9d1ba;
    background:none;
    font-size:0.9rem; font-weight:600;
    text-align:left;
  }
  .pdp-accordion-head span{ font-size:1.1rem; color:#8a836e; transition:transform 0.2s ease; }
  .pdp-accordion-head.is-open span{ transform:rotate(45deg); }
  .pdp-accordion-body{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.25s ease;
  }
  .pdp-accordion-body.is-open{ max-height:200px; }
  .pdp-accordion-body p{
    font-size:0.85rem; color:#5a5648; line-height:1.6;
    padding:14px 0 18px;
  }

  .pdp-icons{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:12px;
    margin-top:40px;
    padding-top:28px;
    border-top:1px solid #d9d1ba;
  }
  .pdp-icon-item{
    display:flex; flex-direction:column; align-items:center; gap:8px;
    text-align:center;
  }
  .pdp-icon-item svg{ width:26px; height:26px; color:var(--moss); }
  .pdp-icon-item span{ font-size:0.68rem; color:#5a5648; }

  @media (max-width:860px){
    .product-layout{ grid-template-columns:1fr; }
    .pdp-gallery{ position:static; }
    .pdp-info{ max-width:none; }
  }
