/* =============================================
   RESET & BASE
   ============================================= */

*, *::before, *::after { box-sizing: border-box; }

body, html { margin: 0; padding: 0; width: 100%; }

::placeholder { color: #999; text-transform: lowercase; }

.header-hidden {
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}


/* =============================================
   POPUP / WAITLIST
   ============================================= */

.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.popup-overlay.active { display: flex; }

.popup-content {
    background: white;
    width: 95%;
    max-width: 850px;
    display: flex;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-btn {
    position: absolute;
    top: 10px; right: 15px;
    background: none;
    border: none;
    color: #333;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}

.popup-left { width: 50%; background: #f0f0f0; }
.popup-left img { width: 100%; height: 100%; object-fit: cover; display: block; }

.popup-right {
    width: 50%;
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-right h2 { font-family: 'Georgia', serif; letter-spacing: 2px; margin-bottom: 15px; font-size: 22px; }
.popup-right p { font-size: 14px; margin-bottom: 25px; color: #444; line-height: 1.5; }

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.floating-group { position: relative; width: 100%; }

.floating-group input {
    width: 100%;
    padding: 16px 12px;
    border: 1px solid #000;
    border-radius: 8px;
    background: transparent;
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
}

.floating-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 5px;
    color: #999;
    font-size: 16px;
    transition: 0.2s ease all;
    pointer-events: none;
}

.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label {
    top: 0;
    font-size: 12px;
    color: #000;
    transform: translateY(-50%) scale(0.9);
}

.full-submit {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.2s;
    font-size: 14px;
    letter-spacing: 1px;
}

.full-submit:hover { background: #333; }

.no-thanks-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    margin-top: 20px;
}

#no-thanks-check {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border: 1px solid #d3d3d3;
    background-color: #fff;
    cursor: pointer;
    margin: 0;
}

.no-thanks {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font-family: 'Georgia', serif;
    font-size: 14px;
    font-weight: 100;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1.5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .popup-content { flex-direction: column; width: 90%; }
    .popup-left, .popup-right { width: 100%; }
    .popup-left { height: 200px; }
    .popup-right { padding: 30px 20px; }
}


/* =============================================
   HERO
   ============================================= */

.hero {
    background-image: url('background4.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    overflow-x: hidden;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    font-family: 'Georgia', serif;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Dark overlay — stronger on mobile to match screenshot */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 5.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 2.75rem;
    font-weight: 450;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero {
        height: 28vh;                /* shorter — matches screenshot proportion */
        min-height: 240px;
        background-attachment: scroll;
    }
    .hero::before { background: rgba(0, 0, 0, 0.55); } /* darker overlay on mobile */
    .hero-content h1 {
        font-size: 3.4rem;
        font-style: italic;          /* cursive-style italic like the screenshot title */
        font-weight: 600;
        letter-spacing: 1px;
    }
    .hero-content p { font-size: 1.4rem; opacity: 0.85; }
}


/* =============================================
   SERVICES GRID
   ============================================= */

.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: #E4D9D0;
    padding: 40px 20px;
    gap: 15px;
    width: 100%;
    box-sizing: border-box;
}

.service-card {
    background-color: #ffffff;
    flex: 1;
    min-height: 450px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.service-card h2 {
    font-family: 'Georgia', serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.1;
    color: #000;
}

.service-button {
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Georgia', serif;
    font-size: 14px;
    max-width: fit-content;
    text-align: center;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}

.service-button:hover { transform: scale(0.95); }

.image-card { padding: 20px; }
.image-card img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1024px) {
    .services-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr 1fr;
        padding: 14px 8px;
        gap: 8px;
    }
    .service-card {
        min-height: 200px;
        padding: 16px 14px;
    }
    .service-card h2 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }
    .service-button {
        font-size: 10px;
        padding: 6px 12px;
    }
    .image-card { padding: 0; }
}

@media (max-width: 480px) {
    .services-container {
        grid-template-columns: 1fr 1fr;
        padding: 10px 6px;
        gap: 6px;
    }
    .service-card {
        min-height: 160px;
        padding: 12px 10px;
    }
    .service-card h2 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .service-button {
        font-size: 9px;
        padding: 5px 10px;
    }
}


/* =============================================
   ELECTROLYSIS INFO
   ============================================= */

.derm-brand-spotlight {
    padding: 40px 40px 4px;
    background-color: white;
    font-family: 'Georgia', serif;
}

.derm-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 60px;
}

.derm-visual {
    flex: 0 0 36%;
    max-width: 36%;
    order: 1;
    overflow: hidden;
    max-height: 420px;
    border-radius: 6px;
}

.derm-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.derm-content {
    flex: 1;
    max-width: calc(64% - 60px);
    order: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
}

.derm-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.derm-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.derm-content .highlight { color: #27ae60; font-weight: bold; }

.derm-button {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 15px 45px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.derm-button:hover { background-color: #444; }

@media (max-width: 900px) and (min-width: 601px) {
    .derm-visual {
        flex: 0 0 34%;
        max-width: 34%;
        max-height: 360px;
    }
}

@media (max-width: 600px) {
    .derm-container { flex-direction: column; gap: 30px; }
    .derm-visual {
        flex: 0 0 100%;
        max-width: 52%;
        margin: 0 auto;
        max-height: none;
        overflow: visible;
        border-radius: 6px;
    }
    .derm-visual img { width: 100%; height: auto; object-fit: unset; }
    .derm-content { flex: 0 0 100%; max-width: 100%; padding: 10px 20px 30px; }
    .derm-title { font-size: 1.6rem; }
    .derm-description { font-size: 0.95rem; }
    .derm-button { padding: 12px 30px; font-size: 0.85rem; }
}


/* =============================================
   TESTIMONIALS & REVIEWS
   ============================================= */

:root {
    --brand-tan: #c5a48a;
    --border-light: #e0e0e0;
    --text-main: #333333;
    --forest-green: #2d4a3e;
}

#results-and-reviews {
    background-color: #ffffff;
    width: 100%;
    padding: 8px 0 80px;
    font-family: 'Georgia', serif;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.testimonial-section {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 40px;
    box-sizing: border-box;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 30px;
}

.reviews-title {
    font-family: 'Georgia', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
}

.google-rating-box { text-align: right; }

.google-rating-box .stars {
    color: var(--brand-tan);
    letter-spacing: 2px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.rating-flex {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 4px;
}

.score { font-size: 2.5rem; font-weight: bold; }
.out-of { font-size: 1.2rem; opacity: 0.5; }

.rating-meta {
    font-size: 0.75rem;
    text-align: left;
    margin-left: 15px;
    line-height: 1.4;
}

/* Comparison gallery */
.comparison-gallery {
    display: flex;
    gap: 80px;
    padding: 40px 0 80px;
    width: 100%;
    overflow-x: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    box-sizing: border-box;
}

.comparison-container {
    position: relative;
    flex: 0 0 320px;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    --position: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.image-after,
.image-before { width: 100%; height: 100%; object-fit: cover; display: block; }

.image-before-wrapper {
    position: absolute;
    inset: 0;
    width: var(--position);
    overflow: hidden;
}

.slider {
    position: absolute;
    inset: 0;
    cursor: ew-resize;
    width: 100%; height: 100%;
    opacity: 0;
    z-index: 10;
}

.slider-line {
    position: absolute;
    top: 0; bottom: 0;
    left: var(--position);
    width: 4px;
    background: white;
    transform: translateX(-50%);
    pointer-events: none;
}

.slider-button {
    position: absolute;
    top: 50%; left: var(--position);
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.slider-button::before,
.slider-button::after {
    content: "";
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.slider-button::before { border-right: 8px solid #5d5d5d; margin-right: 4px; }
.slider-button::after { border-left: 8px solid #5d5d5d; margin-left: 4px; }

/* Testimonial grid */
.testimonial-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #999;
    text-align: left;
    width: 100%;
}

.testimonial-grid {
    display: flex;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    width: 100%;
}

.testimonial-card {
    flex: 1;
    padding: 50px 40px;
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: background-color 0.4s ease;
    cursor: pointer;
}

.testimonial-card:hover { background-color: #f2eee8; }
.testimonial-card:last-child { border-right: none; }

.testimonial-stars {
    color: var(--brand-tan);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.quote { font-size: 1.3rem; line-height: 1.6; font-weight: 300; color: #222; text-align: left; }

.author-info { margin-top: 20px; text-align: left; }
.author-info .author { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 8px; }
.name { font-size: 14px; font-weight: 600; }

/* Progress bar */
.scroll-progress-container {
    width: 200px;
    height: 4px;
    background: #eeeeee;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
}

.scroll-progress-bar {
    width: 0%;
    height: 100%;
    background: var(--forest-green);
    transition: width 0.1s ease-out;
}

/* Reviews responsive */
@media (min-width: 1024px) {
    .comparison-container { flex: 0 0 400px; }
    .scroll-progress-container { width: 300px; }
}

@media (max-width: 992px) {
    #results-and-reviews { padding: 60px 0; }
    .testimonial-section { width: 95%; }
    .reviews-header { flex-direction: column; align-items: flex-start; gap: 30px; }
    .testimonial-grid { flex-direction: column; }
    .testimonial-card { border-right: none; border-bottom: 1px solid var(--border-light); min-height: auto; padding: 40px 20px; }
}

@media (max-width: 768px) {
    #results-and-reviews { padding: 50px 0; }
    .testimonial-section { width: 92%; }
    .reviews-title { font-size: 2.2rem; }
    .comparison-gallery { gap: 30px; padding: 20px 0 50px; }
    .comparison-container { flex: 0 0 260px; }
    .testimonial-card { padding: 30px 20px; min-height: auto; }
    .quote { font-size: 1rem; }
}

@media (max-width: 600px) {
    .comparison-container { flex: 0 0 280px; }
    .comparison-gallery { gap: 40px; }
}


.bsb-container {
    background-color: #A89180;
    padding: 40px 24px 50px;
    text-align: center;
    color: #1a1a1a;
    font-family: 'Georgia', serif;
}

.bsb-wrapper {
    max-width: 560px;
    margin: 0 auto;
}

.bsb-title {
    font-size: 2.4rem;               /* smaller — fits on one line */
    font-style: italic;
    font-weight: 600;                /* lighter than 900 */
    margin: 0 0 28px 0;
    letter-spacing: -0.5px;
    line-height: 1.0;
    color: #1a1a1a;
    white-space: nowrap;             /* force single line */
}

.bsb-text {
    font-size: 1rem;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 18px;
    color: #1a1a1a;
}

.bsb-button-group {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bsb-btn {
    padding: 16px 20px;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid #1a1a1a;
    width: 100%;                     /* full width like screenshot */
    max-width: 440px;
    border-radius: 50px;              
    font-family: 'Georgia', serif;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.bsb-btn--solid {
    background-color: #f0ece6;       /* cream white like screenshot */
    color: #1a1a1a;
}

.bsb-btn--outline {
    background-color: transparent;
    color: #1a1a1a;
}

.bsb-btn:hover { opacity: 0.75; }

/* Mobile: shrink the I LIKE BARESKIN. title */
@media (max-width: 600px) {
    .bsb-title { font-size: clamp(1.8rem, 7vw, 2.4rem); font-weight: 600; }
}

@media (max-width: 390px) {
    .bsb-title { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
}

/* Desktop: restore original proportions */
@media (min-width: 769px) {
    .bsb-title { font-size: 3.4rem; font-weight: 700; white-space: normal; }
    .bsb-text { font-size: 1.1rem; }
    .bsb-container { padding: 35px 40px; }
    .bsb-wrapper { max-width: 800px; }
    .bsb-btn { width: 260px; border-radius: 50px; }
}




/* =============================================
   PRODUCT CATALOG — products-catalog.css
   Link this on products.html alongside style.css
   ============================================= */

/* Wrapper */
.catalog-scroller-wrapper {
    background-color: white;
    padding: 10px 40px 10px;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

/* Eyebrow */
.catalog-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #7a6a55;
    text-align: center;
    margin-bottom: 10px;
}

/* Heading */
.catalog-header-area {
    text-align: center;
    margin-bottom: 8px;
}

.catalog-main-title {
    font-family: 'Georgia', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 12px;
}

/* Decorative rule under heading */
.catalog-header-area::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #b89e7a;
    margin: 0 auto 16px;
}

/* In-person notice pill */
.catalog-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Georgia', serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7a6a55;
    text-align: center;
    padding: 10px 24px;
    border: 1px solid #c9b99a;
    background: #e8e0d4;
    max-width: 460px;
    margin: 0 auto 44px;
}

.catalog-notice svg {
    flex-shrink: 0;
    opacity: .75;
}

/* Product grid — flush tile layout */
.catalog-shelf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    background: #c9b99a;
    border: 1px solid #c9b99a;
    overflow: visible;
}

/* Individual product card */
.catalog-item-card {
    background: #faf7f2;
    display: flex;
    flex-direction: column;
    padding: 28px 22px 24px;
    transition: background 0.2s ease;
}

.catalog-item-card:hover {
    background: #ffffff;
}

/* Card top row: category label + badge */
.catalog-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.catalog-category-label {
    font-family: 'Georgia', serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9e8a72;
}

.catalog-status-tag {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 8px;
    border: 1px solid #c5d9b5;
    color: #5a7a4a;
    background: #e8f0e0;
}

.catalog-status-tag.numbing {
    color: #7a6a55;
    background: #ede5d8;
    border-color: #c9b99a;
}

/* Product image area */
.catalog-hero-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ebe2;
    margin-bottom: 20px;
}

.catalog-hero-image img {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
}

/* Stars */
.catalog-rating-row {
    font-size: 13px;
    color: #b89e7a;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* Name + price row */
.catalog-details-flex {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.catalog-item-name {
    font-family: 'Georgia', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0;
}

.catalog-price-display {
    font-family: 'Georgia', serif;
    font-size: 17px;
    letter-spacing: 1px;
    color: #1a1a1a;
    white-space: nowrap;
}

/* Short description */
.catalog-brief-desc {
    font-family: 'Georgia', serif;
    font-size: 12px;
    color: #6b5d4f;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    padding-top: 10px;
    border-top: 1px solid #e0d5c8;
    margin-top: 10px;
}

/* Scroller controls — hidden on products page since all 4 show */
.scroller-controls-box {
    display: none;
}

/* ── DIVIDER LINE ───────────────────────────── */
.catalog-divider {
    width: 100%;
    height: 1px;
    background: #c9b99a;
    margin: 36px 0;
}

/* ── DISCLOSURE ─────────────────────────────── */
.catalog-disclosure {
    text-align: center;
    margin-top: 0;
    padding: 0 30px 24px;
    font-family: 'Georgia', serif;
}

.catalog-disclosure-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #4a3d2e;
    margin-bottom: 10px;
}

.catalog-disclosure p {
    font-size: 13px;
    color: #7a6a55;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
    .catalog-scroller-wrapper {
        padding: 40px 24px 36px;
    }
    .catalog-shelf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .catalog-scroller-wrapper {
        padding: 36px 0 32px;   /* remove side padding so cards bleed to wrapper edge */
    }

    .catalog-header-area,
    .catalog-eyebrow,
    .catalog-notice,
    .catalog-disclosure {
        padding-left: 20px;
        padding-right: 20px;
    }

    .catalog-notice {
        max-width: calc(100% - 40px);
        margin-left: 20px;
        margin-right: 20px;
        box-sizing: border-box;
    }

    .catalog-main-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    /* Horizontal scroll container */
    .catalog-shelf-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        background: #c9b99a;
        border-left: none;
        border-right: none;
        padding: 0 20px 0 20px;
        scroll-padding-left: 20px;
        box-sizing: border-box;
    }

    .catalog-shelf-grid::-webkit-scrollbar { display: none; }

    /* Each card: fixed width with gap via margin */
    .catalog-item-card {
        flex: 0 0 78vw;         
        max-width: 300px;
        margin-right: 2px;
        padding: 22px 18px 20px;
    }

    .catalog-item-card:last-child {
        margin-right: 0;
    }

    .catalog-hero-image {
        height: 160px;
    }
}
