/* ============================================================
   ROUX LABS — Page styles (minimalist / Supreme-style)
   ============================================================ */

/* ============================================================
   BRAND HERO — single big logo moment, lots of whitespace
   ============================================================ */
.brand-hero{
    padding: var(--s-9) 0 var(--s-7);
    text-align: center;
}
.brand-hero .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-5);
}
.brand-hero-mark{
    width: clamp(220px, 38vw, 460px);
    height: auto;
    display: block;
}
.brand-hero-tagline{
    margin: 0;
    color: var(--grey-700);
    font-size: 14px;
    letter-spacing: 0.01em;
    max-width: 52ch;
}
.brand-hero-cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--s-2);
    margin-top: var(--s-3);
}
.brand-hero-trust{
    font-size: 11px;
    color: var(--grey-500);
}

/* ============================================================
   COLLECTION HEAD — tiny meta row above the grid
   ============================================================ */
.grid-head{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--s-5) 0 var(--s-3);
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
    font-size: 12px;
    color: var(--grey-700);
}
.grid-head span:first-child{ color: var(--ink); font-weight: 500; }

/* ============================================================
   PRODUCT GRID — Supreme-tight cards. Photo + name + price.
   ============================================================ */
.product-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-6) var(--s-5);
    padding: var(--s-6) var(--gutter) var(--s-7);
    max-width: var(--container);
    margin: 0 auto;
}
@media (max-width: 1100px){ .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px){  .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){  .product-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5) var(--s-3); padding-left: var(--s-3); padding-right: var(--s-3); } }

.product-card{
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
    text-decoration: none;
    color: var(--ink);
    transition: opacity 0.15s ease;
}
.product-card:hover{ opacity: 0.7; }

.product-card .image{
    aspect-ratio: 1 / 1;
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-card .image svg,
.product-card .image img{
    width: 78%;
    height: 78%;
    object-fit: contain;
}
.product-card .label{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--s-3);
    font-size: 13px;
    line-height: 1.3;
}
.product-card .label .name{
    color: var(--ink);
    font-weight: 500;
}
.product-card .label .price{
    color: var(--ink);
    font-variant-numeric: tabular-nums;
}

/* ============================================================
   PRODUCT DETAIL PAGE (PDP)
   ============================================================ */
.pdp{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--s-7);
    padding: var(--s-6) var(--gutter) var(--s-7);
    max-width: var(--container);
    margin: 0 auto;
}
@media (max-width: 900px){ .pdp { grid-template-columns: 1fr; gap: var(--s-5); } }

.pdp-gallery{
    display: flex;
    flex-direction: column;
    gap: var(--s-3);
}
.pdp-gallery .hero-shot{
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 1 / 1;
    padding: var(--s-5);
}
.pdp-gallery .hero-shot svg,
.pdp-gallery .hero-shot img { max-width: 76%; max-height: 76%; }

.pdp-thumbs{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-2);
}
.pdp-thumbs .thumb{
    aspect-ratio: 1 / 1;
    background: var(--paper);
    border: 1px solid var(--line);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    padding: 6px;
    transition: border-color 0.12s ease;
}
.pdp-thumbs .thumb:hover{ border-color: var(--grey-500); }
.pdp-thumbs .thumb.active { border-color: var(--ink); }
.pdp-thumbs .thumb svg,
.pdp-thumbs .thumb img { max-width: 100%; max-height: 100%; }

.pdp-info{
    display: flex;
    flex-direction: column;
    gap: var(--s-4);
}
.pdp-info h1{
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    margin: 0;
}
.pdp-price{
    font-size: 18px;
    font-variant-numeric: tabular-nums;
    color: var(--ink);
}

.pdp-section{
    border-top: 1px solid var(--line);
    padding-top: var(--s-4);
}
.pdp-section h3{
    font-family: var(--f-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: var(--s-3);
    color: var(--grey-700);
}

.variant-row{
    display: flex;
    gap: var(--s-2);
    flex-wrap: wrap;
}
.variant-chip{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    font-family: var(--f-body);
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
}
.variant-chip:hover { border-color: var(--ink); }
.variant-chip.active{ background: var(--ink); color: var(--paper); border-color: var(--ink); }
.variant-chip.disabled{ opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

/* L/R orientation toggle */
.orientation-toggle{
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
}
.orientation-toggle .opt{
    padding: var(--s-3);
    text-align: center;
    cursor: pointer;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 13px;
    font-weight: 500;
    border-right: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.orientation-toggle .opt:last-child { border-right: 0; }
.orientation-toggle .opt:hover { border-color: var(--ink); }
.orientation-toggle .opt.active{ background: var(--ink); color: var(--paper); }
.orientation-toggle .opt .sub{
    font-size: 11px;
    color: var(--grey-700);
    font-weight: 400;
}
.orientation-toggle .opt.active .sub{ color: var(--grey-300); }

.specs{
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    font-size: 13px;
}
.specs dt, .specs dd{
    padding: 8px 0;
    border-bottom: 1px solid var(--line);
    margin: 0;
}
.specs dt{ color: var(--grey-700); }
.specs dd{ text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }

/* ============================================================
   GENERIC PAGE PADDING
   ============================================================ */
.page-pad{
    padding: var(--s-7) 0;
    min-height: 50vh;
}
.page-pad h1{
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 600;
    margin-bottom: var(--s-3);
}
.page-pad .sub{
    font-size: 13px;
    color: var(--grey-700);
    margin-bottom: var(--s-5);
}

.two-col{
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--s-7);
}
@media (max-width: 800px){ .two-col { grid-template-columns: 1fr; } }

/* ============================================================
   ABOUT / SUPPORT BODY — readable prose, no decoration
   ============================================================ */
.prose{
    max-width: 64ch;
}
.prose h2{
    font-size: 18px;
    font-weight: 600;
    margin: var(--s-6) 0 var(--s-2);
}
.prose p{
    font-size: 15px;
    line-height: 1.6;
    color: var(--grey-700);
    margin: 0 0 var(--s-3);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-item{
    border-bottom: 1px solid var(--line);
    padding: var(--s-3) 0;
}
.faq-item summary{
    list-style: none;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--ink); }
.faq-item p {
    margin: var(--s-3) 0 0;
    color: var(--grey-700);
    font-size: 13px;
    line-height: 1.55;
    max-width: 70ch;
}

/* ============================================================
   CHECKOUT TOTALS
   ============================================================ */
.totals{
    border-top: 1px solid var(--line);
    padding-top: var(--s-3);
    margin-top: var(--s-3);
    font-size: 13px;
}
.totals .line{
    display: flex; justify-content: space-between;
    padding: 4px 0;
    color: var(--grey-700);
}
.totals .grand{
    color: var(--ink);
    font-size: 16px;
    font-weight: 600;
    padding-top: var(--s-3);
    border-top: 1px solid var(--line);
    margin-top: var(--s-3);
}

/* ============================================================
   CALLOUT — soft box, used on success / checkout-aside / about
   ============================================================ */
.callout{
    border: 1px solid var(--line);
    padding: var(--s-5);
    background: var(--paper);
}
.callout h2,
.callout h3{
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 var(--s-3);
}
.callout p{
    color: var(--grey-700);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}
