/* ============================================================
   WooCommerce category pages
   ============================================================ */
body.tax-product_cat {
    padding-top: 0;
}

body.tax-product_cat .top-bar {
    background: rgba(0, 0, 0, 0.5);
}

body.tax-product_cat .site-nav {
    background: transparent;
    border-bottom: 0;
}

body.tax-product_cat .site-nav__links a,
body.tax-product_cat .site-nav__products-btn,
body.tax-product_cat .site-nav__icon-btn,
body.tax-product_cat .site-nav__cart-count {
    color: var(--color-white);
}

body.tax-product_cat .site-nav__links a.is-active::before,
body.tax-product_cat .site-nav__products-btn.is-active::before {
    display: none;
}

body.tax-product_cat .nav-icon--dark,
body.tax-product_cat .site-nav__logo-img--default,
body.tax-product_cat .site-nav__hamburger-icon--dark {
    display: none !important;
}

body.tax-product_cat .nav-icon--light,
body.tax-product_cat .site-nav__logo-img--light,
body.tax-product_cat .site-nav__hamburger-icon--light {
    display: block !important;
}

body.tax-product_cat .site-header.is-scrolled .top-bar {
    background: var(--color-black);
}

body.tax-product_cat .site-header.is-scrolled .site-nav {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-100);
}

body.tax-product_cat .site-header.is-scrolled .site-nav__links a,
body.tax-product_cat .site-header.is-scrolled .site-nav__products-btn,
body.tax-product_cat .site-header.is-scrolled .site-nav__icon-btn,
body.tax-product_cat .site-header.is-scrolled .site-nav__cart-count {
    color: var(--color-black);
}

body.tax-product_cat .site-header.is-scrolled .nav-icon--dark,
body.tax-product_cat .site-header.is-scrolled .site-nav__logo-img--default,
body.tax-product_cat .site-header.is-scrolled .site-nav__hamburger-icon--dark {
    display: block !important;
}

body.tax-product_cat .site-header.is-scrolled .nav-icon--light,
body.tax-product_cat .site-header.is-scrolled .site-nav__logo-img--light,
body.tax-product_cat .site-header.is-scrolled .site-nav__hamburger-icon--light {
    display: none !important;
}

.panos-shop {
    background: var(--color-white);
}

.shop-hero {
    position: relative;
    height: 850px;
    padding-bottom: 0;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.shop-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.6) 5%, rgba(49, 49, 49, 0) 46%),
        rgba(0, 0, 0, 0.3);
}

.shop-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.shop-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--color-black);
    font-size: 12px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 1.2px;
    line-height: 1;
    text-transform: uppercase;
}

.shop-breadcrumbs--light {
    color: var(--color-white);
}

.shop-hero .shop-breadcrumbs {
    position: absolute;
    top: 178px;
    left: 0;
}

.shop-breadcrumbs a {
    transition: color 0.2s ease;
}

.shop-breadcrumbs a:hover {
    color: var(--color-primary);
}

.shop-breadcrumbs__sep {
    font-size: 16px;
    line-height: 0;
}

.shop-hero__title {
    margin: 58px 0 0;
    color: var(--color-white);
    font-size: 140px;
    font-weight: var(--font-weight-thin);
    letter-spacing: 42px;
    line-height: 1;
    text-align: center;
}

.shop-child-cats {
    margin-top: -84px;
    padding-bottom: 104px;
}

.shop-child-cats__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.shop-child-card {
    position: relative;
    display: flex;
    min-height: 400px;
    padding: 72px;
    background: var(--color-off-white);
    overflow: hidden;
}

.shop-child-card__image {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shop-child-card__image img {
    position: absolute;
    right: -4%;
    top: -18%;
    width: 88%;
    height: 135%;
    max-width: none;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.shop-child-card:nth-child(1) .shop-child-card__image img {
    right: -15%;
    top: -30%;
    width: 115%;
    height: 150%;
}

.shop-child-card:nth-child(2) .shop-child-card__image img {
    right: 0;
    top: -6%;
    width: 78%;
    height: 112%;
}

.shop-child-card:nth-child(3) .shop-child-card__image img {
    right: -22%;
    top: -28%;
    width: 100%;
    height: 148%;
}

.shop-child-card:nth-child(4) .shop-child-card__image img {
    right: -16%;
    top: -10%;
    width: 92%;
    height: 132%;
}

.shop-child-card:hover .shop-child-card__image img {
    transform: scale(1.035);
}

.shop-child-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.shop-child-card__title {
    color: var(--color-black);
    font-size: 32px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0.96px;
    line-height: 1;
    text-transform: uppercase;
}

.shop-child-card__more {
    color: var(--color-gray-600);
    font-size: 14px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 1.4px;
    line-height: 1;
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-transform: uppercase;
}

.shop-intro {
    padding-bottom: var(--section-spacing);
}

.shop-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 650px) minmax(0, 754px);
    gap: 182px;
    justify-content: center;
}

.shop-intro__item {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.shop-intro__header {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
}

.shop-intro__header h2 {
    margin: 0;
    color: var(--color-black);
    font-size: 48px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0;
    line-height: 1.3;
}

.shop-intro__header span {
    display: block;
    width: 104px;
    height: 12px;
    background: var(--color-primary);
}

.shop-intro__body {
    color: var(--color-gray-700);
    font-size: 18px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0;
    line-height: 1.6;
}

.shop-intro__body p:not(:last-child) {
    margin-bottom: 28px;
}

.shop-intro__body a {
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
}

/* ============================================================
   Product category archive
   ============================================================ */
.shop-category-switcher {
    padding-top: 64px;
    padding-bottom: 32px;
}

.shop-category-switcher__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.shop-category-switcher h2 {
    margin: 0;
    color: var(--color-black);
    font-size: 32px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0.96px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.shop-category-switcher__buttons {
    display: grid;
    grid-template-columns: repeat(4, 350px);
    gap: 12px;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
}

.shop-category-switcher__buttons::-webkit-scrollbar {
    display: none;
}

.shop-category-switcher__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 48px;
    border: 1px solid var(--color-gray-100);
    color: var(--color-black);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 1.6px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.shop-category-switcher__button.is-active,
.shop-category-switcher__button:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
}

.shop-products {
    padding-bottom: var(--section-spacing);
}

.shop-type-nav {
    position: sticky;
    top: 124px;
    z-index: 40;
    padding: 48px 0 32px;
    background: var(--color-white);
}

.shop-type-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 148px;
    overflow-x: auto;
    scrollbar-width: none;
}

.shop-type-nav__inner::-webkit-scrollbar {
    display: none;
}

.shop-type-nav__item {
    display: inline-flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: var(--color-gray-400);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.54px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.shop-type-nav__item.is-active,
.shop-type-nav__item:hover {
    color: var(--color-black);
}

.shop-type-nav__item.is-active .shop-type-nav__icon {
    color: var(--color-primary);
}

.shop-type-nav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 35px;
    color: currentColor;
    --fill-0: currentColor;
}

.shop-type-nav__icon svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.shop-products__toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 64px 0 48px;
}

.shop-products__filter,
.shop-products__overview {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--color-black);
    font-size: 18px;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.54px;
    line-height: 1;
    text-transform: uppercase;
}

.shop-products__filter > span,
.shop-products__overview > span {
    color: var(--color-gray-500);
}

.shop-products__filter strong,
.shop-products__overview strong {
    color: var(--color-black);
    font-weight: var(--font-weight-light);
}

/*
  Grid layout per Figma:
  Row 1: 2 cards (wider)
  Rows 2-3: 3 cards
  Row 4: 2 cards
  Pattern repeats every 8 cards (2+3+3 = 8).
  We use a 6-column base grid and span rules.
*/
.shop-products__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 80px;
}

/* Every card defaults to 2 of 6 columns = 3 per row */
.shop-products__grid .shop-product-card {
    grid-column: span 2;
}

/* Rows 1 of each 8-cycle (positions 1 & 2): span 3 = 2 cards per row */
.shop-products__grid .shop-product-card:nth-child(8n+1),
.shop-products__grid .shop-product-card:nth-child(8n+2) {
    grid-column: span 3;
}

/* Loading state */
.shop-products__grid.is-loading {
    opacity: 0.4;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.shop-product-card {
    min-width: 0;
}

.shop-product-card__media {
    position: relative;
    height: 570px;
    background: var(--color-off-white);
    overflow: hidden;
}

.shop-product-card__image-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.shop-product-card__media::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.05);
    content: "";
    pointer-events: none;
}

/* ── Card gallery: two images, zone hover switching ── */

/* gallery zones: invisible left/right halves inside media */
.shop-product-card__gallery-zones {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    pointer-events: none;
}

.shop-product-card__zone {
    flex: 1;
    pointer-events: auto;
    cursor: pointer;
}

/* two stacked images inside the image-link */
.shop-product-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.35s ease;
}

.shop-product-card__img.is-active {
    opacity: 1;
}

.shop-product-card:hover .shop-product-card__img.is-active {
    transform: scale(1.035);
}

/* progress bar — OUTSIDE media, below the image, right-aligned */
.shop-product-card__progress {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    padding: 12px 0 0;
}

.shop-product-card__progress-bar {
    width: 88px;
    height: 2px;
    background: var(--color-gray-100);
    transition: background 0.2s ease;
}

.shop-product-card__progress-bar.is-active {
    background: var(--color-primary);
}

.shop-product-card__icons {
    position: absolute;
    z-index: 2;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.shop-product-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 33px;
    padding: 0;
    color: var(--color-gray-300);
    background: transparent;
    border: 0;
    cursor: pointer;
    pointer-events: auto;
    --fill-0: currentColor;
    --stroke-0: currentColor;
    transition: color 0.2s ease;
}

.shop-product-card__icon:hover {
    color: var(--color-primary);
}

.shop-product-card__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.shop-product-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0 0;
}

.shop-product-card__title {
    margin: 0 0 16px;
    overflow: hidden;
    color: var(--color-black);
    font-size: 20px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0.6px;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-product-card__cat {
    overflow: hidden;
    color: var(--color-gray-600);
    font-size: 16px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0;
    line-height: 1;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.shop-product-card__price {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    color: var(--color-black);
    font-size: 20px;
    line-height: 1;
    text-align: right;
    white-space: nowrap;
}

.shop-product-card__old {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0.42px;
    text-decoration: line-through;
}

.shop-product-card__new {
    color: var(--color-black);
    font-size: 20px;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.6px;
}

.shop-product-card__price .woocommerce-Price-amount,
.shop-product-card__price .woocommerce-Price-currencySymbol {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.shop-products__pagination {
    margin-top: 72px;
    text-align: center;
}

.shop-products__pagination .nav-links {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.shop-products__pagination a,
.shop-products__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid var(--color-gray-100);
    color: var(--color-black);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
}

.shop-products__pagination .current,
.shop-products__pagination a:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
}

.shop-products__empty {
    padding: 72px 0;
    color: var(--color-gray-700);
    font-size: 18px;
    text-align: center;
}

/* ============================================================
   Single product
   ============================================================ */
.single-product .woocommerce-notices-wrapper {
    width: 94%;
    margin: 32px auto 0;
}

.panos-product__breadcrumbs {
    margin-top: 52px;
    margin-bottom: 28px;
}

.panos-product__main {
    display: grid;
    grid-template-columns: minmax(0, calc(50% - 9px)) minmax(0, calc(50% + 9px));
    align-items: start;
}

.panos-product__gallery {
    min-width: 0;
    padding-left: 64px;
    padding-right: 17px;
}

.panos-product__main-image {
    height: 862px;
    margin: 0;
    background: var(--color-off-white);
    overflow: hidden;
}

.panos-product__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.panos-product__gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    height: 88px;
}

.panos-product__gallery-arrow {
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: var(--color-gray-200);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.panos-product__gallery-arrow--next {
    color: var(--color-primary);
}

.panos-product__gallery-count {
    color: var(--color-black);
    font-size: 16px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 1.6px;
    line-height: 1;
}

.panos-product__thumb-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.panos-product__thumb {
    position: relative;
    height: 427px;
    padding: 0;
    background: var(--color-off-white);
    border: 0;
    cursor: pointer;
    overflow: hidden;
}

.panos-product__thumb::after {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    content: "";
    pointer-events: none;
}

.panos-product__thumb.is-active::after {
    border-color: var(--color-primary);
}

.panos-product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.panos-product__summary {
    min-width: 0;
}

.panos-product__summary-inner {
    position: sticky;
    top: 124px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 48px;
    min-height: 862px;
    padding: 64px 34px 48px 64px;
    background: var(--color-white);
}

.panos-product__summary-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
    min-width: 0;
}

.panos-product__title {
    margin: 0;
    color: var(--color-black);
    font-size: 88px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0;
    line-height: 1;
}

.panos-product__copy {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.panos-product__subtitle,
.panos-product__dimension > p,
.panos-product__call {
    margin: 0;
    color: var(--color-black);
    font-size: 18px;
    font-weight: var(--font-weight-light);
    letter-spacing: 0.54px;
    line-height: 1;
    text-transform: uppercase;
}

.panos-product__description {
    max-width: 718px;
    color: var(--color-gray-700);
    font-size: 16px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0.48px;
    line-height: 1.4;
}

.panos-product__description p:not(:last-child) {
    margin-bottom: 8px;
}

.panos-product__price {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-transform: uppercase;
}

.panos-product__price del {
    color: var(--color-primary);
    font-size: 28px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0.84px;
    line-height: 1;
    opacity: 1;
}

.panos-product__price ins {
    color: var(--color-black);
    font-size: 48px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
}

.panos-product__dimension {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 315px;
}

.panos-product__dimension > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.panos-product__dimension-icon {
    display: inline-flex;
    width: 72px;
    height: 35px;
    color: var(--color-primary);
    --fill-0: currentColor;
}

.panos-product__dimension-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.panos-product__dimension strong {
    color: var(--color-black);
    font-size: 20px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0.6px;
    line-height: 1;
}

.panos-product__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panos-product__contact {
    gap: 8px;
    max-width: 350px;
}

.panos-product__contact span {
    margin-left: auto;
    padding-right: 18px;
}

.panos-product__cart {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.panos-product__qty {
    position: relative;
    display: flex;
    align-items: center;
    width: 97px;
    height: 48px;
    border: 1px solid var(--color-gray-100);
}

.panos-product__qty input {
    width: 100%;
    height: 100%;
    padding: 0 34px 0 24px;
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: var(--font-weight-regular);
    letter-spacing: 0.72px;
    line-height: 1;
    background: transparent;
    border: 0;
    appearance: textfield;
}

.panos-product__qty input::-webkit-outer-spin-button,
.panos-product__qty input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}

.panos-product__qty-buttons {
    position: absolute;
    top: 6px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.panos-product__qty-buttons button {
    width: 20px;
    height: 16px;
    padding: 0;
    color: var(--color-black);
    background: transparent;
    border: 0;
    font-family: var(--font-primary);
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
}

.panos-product__add,
.panos-product__cart--default .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 48px;
    padding: 0 24px;
    border: 1px solid var(--color-gray-200);
    color: var(--color-black);
    background: transparent;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 1.6px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.panos-product__add:hover,
.panos-product__cart--default .single_add_to_cart_button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.panos-product__call {
    display: flex;
    gap: 12px;
    align-items: center;
}

.panos-product__call a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.panos-product__side-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
}

.panos-product__side-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    color: var(--color-black);
    background: var(--color-white);
    border: 1px solid var(--color-gray-100);
    cursor: pointer;
    --fill-0: currentColor;
    --stroke-0: currentColor;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.panos-product__side-actions button:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.panos-product__side-actions svg {
    width: 22px;
    height: 22px;
}

.product-interest {
    padding-top: 120px;
    padding-bottom: 120px;
}

.product-interest__box {
    padding: 80px;
    background: var(--color-off-white);
}

.product-interest h2 {
    margin: 0 0 53px;
    color: var(--color-black);
    font-size: 48px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0;
    line-height: 1.3;
}

.product-interest__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-interest__row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.product-interest input,
.product-interest textarea {
    width: 100%;
    border: 0;
    border-radius: 0;
    color: var(--color-gray-800);
    background: var(--color-white);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0.48px;
    line-height: 1.4;
}

.product-interest input {
    height: 54px;
    padding: 0 32px;
}

.product-interest textarea {
    min-height: 218px;
    padding: 32px;
    resize: vertical;
}

.product-interest__note,
.product-interest__feedback {
    margin: 0;
    color: var(--color-black);
    font-size: 16px;
    font-weight: var(--font-weight-extralight);
    letter-spacing: 0.48px;
    line-height: 1.4;
}

.product-interest__feedback {
    min-height: 22px;
}

.product-interest__feedback.is-success {
    color: var(--color-primary);
}

.product-interest__feedback.is-error {
    color: var(--color-gray-800);
}

.product-interest__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 48px;
    margin-top: 24px;
    border: 1px solid var(--color-primary);
    color: var(--color-white);
    background: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    letter-spacing: 1.6px;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
}

.product-interest__submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.panos-product__lifestyle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1080px;
    padding: 0 64px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.panos-product__lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.panos-product__lifestyle h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--color-white);
    font-size: 200px;
    font-weight: var(--font-weight-thin);
    letter-spacing: 60px;
    line-height: 1;
    text-align: center;
}

@media (max-width: 1440px) {
    .shop-hero__title {
        font-size: 112px;
        letter-spacing: 28px;
    }

    .shop-intro__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 80px;
    }

    .shop-category-switcher__buttons {
        grid-template-columns: repeat(4, minmax(220px, 1fr));
    }

    .shop-category-switcher__button {
        width: 100%;
    }

    .shop-type-nav__inner {
        gap: 72px;
    }

    .shop-product-card__media {
        height: 470px;
    }

    .panos-product__summary-inner {
        gap: 28px;
        padding-left: 42px;
    }

    .panos-product__title {
        font-size: 72px;
    }

    .panos-product__summary-content {
        gap: 42px;
    }
}

@media (max-width: 991px) {
    body.tax-product_cat .shop-type-nav {
        top: 104px;
    }

    .shop-hero {
        height: 620px;
    }

    .shop-hero .shop-breadcrumbs {
        top: 136px;
    }

    .shop-hero__title {
        font-size: 72px;
        letter-spacing: 12px;
        word-break: break-word;
    }

    .shop-child-cats {
        margin-top: -48px;
        padding-bottom: 50px;
    }

    .shop-intro__grid,
    .panos-product__main,
    .product-interest__row {
        grid-template-columns: 1fr;
    }

    /* Child category cards stay 2×2 on mobile (Figma) */
    .shop-child-cats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(6px, 1.6vw, 8px);
    }

    /* On mobile: 2-col grid, all cards span 3 of 6 = 2 per row */
    .shop-products__grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    /* 2-col on tablet: all cards span 3 of 6 */
    .shop-products__grid .shop-product-card,
    .shop-products__grid .shop-product-card:nth-child(8n+1),
    .shop-products__grid .shop-product-card:nth-child(8n+2) {
        grid-column: span 3;
    }

    /* Figma mobile card: ~192×328, content at top, centered (title over ΠΕΡΙΣΣΟΤΕΡΑ) */
    .shop-child-card {
        min-height: 0;
        aspect-ratio: 192 / 328;
        padding: clamp(28px, 8vw, 40px) clamp(16px, 5vw, 24px);
        align-items: flex-start;
        justify-content: center;
    }

    .shop-child-card__content {
        align-items: center;
        gap: clamp(10px, 3vw, 14px);
        text-align: center;
    }

    .shop-child-card__title {
        font-size: clamp(18px, 5vw, 20px);
        letter-spacing: 0.6px;
    }

    .shop-child-card__more {
        font-size: clamp(10px, 3vw, 11px);
        letter-spacing: 1.1px;
    }

    .shop-intro,
    .shop-products,
    .product-interest {
        padding-bottom: 50px;
    }

    .shop-intro__grid {
        gap: 56px;
    }

    .product-interest h2 {
        font-size: 38px;
    }

    /* Intro text — Figma mobile (title 28px / body 14px) */
    .shop-intro__item {
        gap: clamp(28px, 8vw, 40px);
    }

    .shop-intro__header {
        gap: clamp(24px, 7vw, 32px);
    }

    .shop-intro__header h2 {
        font-size: clamp(22px, 7vw, 28px);
        line-height: 1.3;
    }

    .shop-intro__body {
        font-size: 14px;
        line-height: 1.6;
        letter-spacing: -0.28px;
    }

    .shop-category-switcher {
        padding-top: 50px;
    }

    .shop-category-switcher__inner {
        gap: 32px;
    }

    /* Category buttons: 2×2 grid on mobile (Figma) */
    .shop-category-switcher__buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(8px, 2.4vw, 12px);
        overflow: visible;
    }

    .shop-category-switcher__button {
        flex: initial;
        width: 100%;
        height: clamp(37px, 10vw, 48px);
        font-size: clamp(11px, 3.4vw, 16px);
        letter-spacing: 1px;
        padding: 0 6px;
    }

    .shop-type-nav {
        padding: 32px 0 24px;
    }

    .shop-type-nav__inner {
        justify-content: flex-start;
        gap: 48px;
    }

    /* Toolbar: price + overview side by side, each label-over-value (Figma) */
    .shop-products__toolbar {
        flex-direction: row;
        align-items: flex-start;
        gap: clamp(20px, 7vw, 30px);
        margin: 40px 0 32px;
    }

    .shop-products__filter,
    .shop-products__overview {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        font-size: 14px;
        letter-spacing: 0.42px;
    }

    .shop-product-card__media {
        height: 430px;
    }

    /* Mobile order (Figma): main image → summary → thumbnail gallery grid.
       Flatten the gallery so its children reorder alongside the summary. */
    .panos-product__main {
        display: flex;
        flex-direction: column;
    }

    .panos-product__gallery {
        display: contents;
    }

    .panos-product__main-image {
        order: 1;
        height: auto;
        aspect-ratio: 390 / 382;
        margin: 0 4%;
        border-radius: 8px;
    }

    .panos-product__summary {
        order: 2;
    }

    /* Figma mobile shows all thumbnails as a static grid — hide carousel nav */
    .panos-product__gallery-nav {
        display: none;
    }

    .panos-product__thumb-grid {
        order: 3;
        margin: 0 4%;
        gap: 4px;
    }

    .panos-product__summary-inner {
        position: static;
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 50px 4% 0;
    }

    .panos-product__side-actions {
        flex-direction: row;
        padding-top: 0;
    }

    .panos-product__title {
        font-size: 60px;
    }

    .product-interest {
        padding-top: 50px;
    }

    .product-interest__box {
        padding: 40px 4%;
    }

    .panos-product__lifestyle {
        min-height: 620px;
    }

    .panos-product__lifestyle h2 {
        font-size: 86px;
        letter-spacing: 18px;
    }
}

@media (max-width: 640px) {
    .shop-hero {
        height: 520px;
    }

    .shop-hero__title {
        font-size: 48px;
        letter-spacing: 7px;
    }

    .shop-category-switcher h2 {
        font-size: 26px;
    }

    .shop-child-card__image img {
        opacity: 0.82;
    }

    .product-interest h2 {
        font-size: 32px;
    }

    /* Single column on small screens */
    .shop-products__grid .shop-product-card,
    .shop-products__grid .shop-product-card:nth-child(8n+1),
    .shop-products__grid .shop-product-card:nth-child(8n+2) {
        grid-column: span 6;
    }

    .shop-product-card__media {
        height: 360px;
    }

    .shop-product-card__meta {
        flex-direction: column;
    }

    .shop-product-card__price {
        align-items: flex-start;
        text-align: left;
    }

    .panos-product__breadcrumbs {
        margin-top: 32px;
    }

    .panos-product__thumb {
        height: auto;
        aspect-ratio: 177 / 174;
    }

    .panos-product__summary-content {
        gap: 36px;
    }

    .panos-product__title {
        font-size: 46px;
    }

    .panos-product__price ins {
        font-size: 38px;
    }

    .panos-product__cart {
        flex-direction: column;
        align-items: flex-start;
    }

    .panos-product__add,
    .panos-product__cart--default .single_add_to_cart_button,
    .panos-product__contact,
    .product-interest__submit {
        width: min(350px, 100%);
    }

    .panos-product__call {
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.3;
    }

    .product-interest textarea {
        min-height: 180px;
    }

    .panos-product__lifestyle {
        min-height: 420px;
    }

    .panos-product__lifestyle h2 {
        font-size: 48px;
        letter-spacing: 8px;
    }
}
