.catalog {
    padding-block:26px 84px;
}

.catalog[aria-busy=true] {
    opacity:.55;
    cursor:progress;
}

.catalog[tabindex="-1"]:focus {
    outline:none;
}

.woocommerce-breadcrumb {
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    font-size:13px;
    color:#879097;
    margin-bottom:22px;
}

.catalog__heading {
    display:flex;
    flex-direction:column;
    gap:16px;
    margin-bottom:22px;
}

.catalog__heading h1,.product-hero h1 {
    font-size:56px;
    letter-spacing:-.025em;
}

.catalog__description {
    font-size:17px;
    line-height:1.6;
    max-width:960px;
    color:#565e67;
}

.category-tabs {
    display:flex;
    gap:10px;
    margin-bottom:22px;
    flex-wrap:wrap;
}

.category-tabs__link {
    padding:11px 20px;
    font-size:14px;
    line-height:18px;
    font-weight:600;
    border:1px solid var(--line);
    border-radius:2px;
    color:#565e67;
}

.category-tabs__link[aria-current] {
    color:#fff;
    background:var(--accent);
    border-color:var(--accent);
}

.product-grid {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:26px;
}

.product-card {
    display:flex;
    flex-direction:column;
    border-radius:3px;
    overflow:hidden;
    background:#fff;
}

.product-card__image {
    width:100%;
    aspect-ratio:627/400;
    object-fit:cover;
}

.product-card__body {
    padding:28px 30px 30px;
    display:flex;
    flex-direction:column;
    gap:12px;
    flex:1;
}

.product-card__category {
    font-size:10.5px;
    line-height:13px;
    color:var(--accent);
    font-weight:600;
    letter-spacing:.08em;
}

.product-card h2 {
    font-size:24px;
    font-weight:700;
}

.product-card__text {
    font-size:15px;
    line-height:1.5;
    color:#565e67;
}

.product-card__specs {
    padding-top:10px;
    margin-top:auto;
}

.product-card__specs>div {
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding-block:11px;
    border-bottom:1px solid var(--line);
}

.product-card__specs dt {
    font-size:13px;
    color:#879097;
}

.product-card__specs dd {
    font-size:13.5px;
    font-weight:700;
    text-align:right;
}

.product-card__more {
    color:var(--accent);
    font-size:14px;
    font-weight:600;
    padding-top:12px;
    margin-top:auto;
}

.product-card__more span {
    margin-left:8px;
}

.catalog--accessories .catalog__layout {
    display:grid;
    grid-template-columns:260px minmax(0,1fr);
    gap:32px;
}

.catalog-filter {
    align-self:start;
}

.catalog-filter h2 {
    font-size:10.5px;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:.18em;
    color:var(--soft);
    margin-bottom:14px;
}

.catalog-filter nav {
    display:flex;
    flex-direction:column;
    gap:2px;
}

.catalog-filter a {
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:12px 14px;
    border-left:2px solid transparent;
    color:#565e67;
    font-size:14px;
}

.catalog-filter a[aria-current] {
    background:rgba(229,38,31,.06);
    border-left-color:var(--accent);
    color:var(--ink, #14161a);
    font-weight:600;
}

.catalog-filter span {
    font-size:12px;
    color:var(--soft);
}

.catalog-filter a[aria-current] span {
    color:var(--accent);
}

.catalog__results>h2 {
    font-size:22px;
    margin-bottom:12px;
}

.product-grid--compact {
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.product-grid--compact .product-card__image {
    aspect-ratio:304/220;
}

.product-grid--compact .product-card__body {
    padding:22px;
    gap:10px;
}

.product-grid--compact h2 {
    font-size:18px;
}

.product-grid--compact .product-card__text {
    font-size:14px;
}

.woocommerce-pagination ul {
    display:flex;
    list-style:none;
    padding:0;
    gap:20px;
    justify-content:center;
    margin-top:30px;
}

.catalog>.section-heading {
    margin-top:22px;
}

.product-hero {
    position:relative;
    isolation:isolate;
}

.product-hero--background {
    aspect-ratio:1920/799;
    background:#f1f2f0;
}

.product-hero img.product-hero__background {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:contain;
    z-index:-1;
    filter:grayscale(1);
}

.product-hero__inner {
    padding-block:40px 70px;
}

.product-hero .woocommerce-breadcrumb {
    margin-bottom:28px;
}

.product-hero__grid {
    display:grid;
    grid-template-columns:657fr 567fr;
    gap:56px;
    align-items:center;
    min-height:425px;
}

.product-hero__info {
    display:flex;
    flex-direction:column;
    gap:12px;
}

.product-hero__info h2 {
    font-size:20px;
    font-weight:700;
}

.product-hero__info .eyebrow {
    letter-spacing:.04em;
}

.product-hero__info .eyebrow::before {
    display:none;
}

.product-hero__description {
    font-size:16px;
    line-height:1.55;
    color:#565e67;
}

.product-hero__buttons {
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.woocommerce .product-hero__buttons a.button {
    padding:15px 28px;
    border-radius:2px;
}

.product-hero__image {
    width:100%;
    max-height:425px;
    object-fit:contain;
}

.product-hero__thumbnail {
    display:inline-block;
    width:90px;
    margin:12px;
}

.product-detail__content {
    padding-block:40px 70px;
    display:flex;
    flex-direction:column;
    gap:60px;
}

.product-detail__content h2 {
    font-size:38px;
    letter-spacing:-.02em;
    margin-bottom:28px;
}

.product-specs__scroll {
    overflow:auto;
}

.product-specs table {
    border-collapse:collapse;
    width:100%;
    background:#fff;
}

.product-specs th,.product-specs td {
    padding:15px 16px;
    text-align:left;
    border-bottom:1px solid var(--line);
    font-size:14px;
}

.product-specs tbody th {
    font-size:13.5px;
    font-weight:400;
    width:250px;
    color:#565e67;
}

.product-specs thead {
    background:#f5f6f4;
}

.product-detail__note {
    font-size:13px;
    color:#879097;
    margin-top:28px;
}

.product-properties__grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.property-card {
    padding:26px 26px 28px;
    background:#fff;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.property-card h3 {
    display:flex;
    align-items:center;
    gap:14px;
    font-size:17px;
}

.property-card h3 span {
    display:grid;
    place-items:center;
    flex:0 0 30px;
    height:30px;
    background:var(--accent);
    color:#fff;
    font-size:14px;
}

.property-card__image {
    width:100%;
    aspect-ratio:3/2;
    object-fit:cover;
}

.property-card p {
    font-size:14px;
    line-height:1.5;
    color:#565e67;
}
