/*
Theme Name: Nailisa
Theme URI: https://nailisa.com
Author: Nailisa
Author URI: https://nailisa.com
Description: Professional business theme for the Nailisa press-on nail e-commerce store. English front-end with ES/FR/DE/IT language switching, Chinese admin support, fully responsive.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: nailisa
*/

:root {
    --ink: #1c2433;
    --ink-2: #2b3548;
    --ink-3: #3d4a63;
    --gold: #b98a2f;
    --gold-2: #d9b45b;
    --gold-soft: #f3e8d2;
    --cream: #faf7f1;
    --bg: #f5eee2;
    --paper: #ffffff;
    --line: #e8e1d4;
    --text: #454d5e;
    --muted: #8a90a0;
    --danger: #b3382c;
    --ok: #2e7d5b;
    --shadow: 0 10px 30px rgba(28, 36, 51, 0.08);
    --shadow-lg: 0 18px 45px rgba(28, 36, 51, 0.14);
    --radius: 12px;
    --radius-sm: 8px;
    --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--gold); }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 .55em;
    font-weight: 600;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.container { width: min(1200px, 92%); margin-inline: auto; }
.btn {
    display: inline-block;
    padding: .85rem 1.7rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .02em;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: all .18s ease;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--ink); color: #fff; }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--gold); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 2.8rem; }
.section-head p { color: var(--muted); }
.eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Top bar ---------- */
.topbar {
    background: var(--ink);
    color: #dfe3ec;
    font-size: .82rem;
    padding: .45rem 0;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #dfe3ec; }
.topbar a:hover { color: var(--gold-2); }
.topbar-right { display: flex; align-items: center; gap: 1.1rem; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
    background: none;
    border: 1px solid rgba(255,255,255,.25);
    color: #dfe3ec;
    border-radius: 999px;
    padding: .22rem .8rem;
    font-size: .78rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.lang-btn:hover { border-color: var(--gold-2); color: var(--gold-2); }
.lang-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    min-width: 150px;
    z-index: 60;
    overflow: hidden;
}
.lang-menu.open { display: block; }
.lang-menu a {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1rem;
    font-size: .9rem;
    color: var(--ink);
}
.lang-menu a:hover { background: var(--cream); color: var(--gold); }
.lang-menu a.current { background: var(--gold-soft); font-weight: 700; }
.lang-flag { width: 18px; height: 13px; object-fit: cover; border-radius: 2px; }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 8px 24px rgba(28,36,51,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .95rem 0; }
.site-brand { display: flex; align-items: center; gap: .6rem; }
.site-brand .logo-text {
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--ink);
    text-transform: uppercase;
}
.site-brand .logo-text span { color: var(--gold); }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .3rem; }
.main-nav a {
    display: block;
    padding: .5rem .85rem;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 500;
    color: var(--ink-2);
}
.main-nav a:hover, .main-nav .current-menu-item a { color: var(--gold); background: var(--gold-soft); }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.header-actions .icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--ink-2);
}
.header-actions .icon-link:hover { background: var(--gold-soft); color: var(--gold); }
.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--gold);
    color: #fff;
    font-size: .66rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--ink); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(115deg, #202a3d 0%, #2c3a55 55%, #41506f 100%);
    overflow: hidden;
}
.hero-slider {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .9s ease;
}
.hero-slide.active { opacity: .5; }
.slider-dots {
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .55rem;
    z-index: 5;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    transition: background .2s ease, width .2s ease;
}
.slider-dot.active { background: #fff; width: 24px; }
.hero-dots { bottom: 1.2rem; }
.why-slider-wrap { position: relative; }
.why-slide { display: none; }
.why-slide.active { display: block; }
.why-slider-wrap .slider-dots { position: static; transform: none; margin-top: 1rem; justify-content: center; }
.why-slider-wrap .slider-dot { background: rgba(28,36,51,.22); }
.why-slider-wrap .slider-dot.active { background: var(--gold); }
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20,26,38,.72) 0%, rgba(20,26,38,.25) 70%, rgba(20,26,38,.1) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 6rem 0; }
.hero h1 { color: #fff; margin-bottom: .8rem; }
.hero p { color: #e7eaf2; font-size: 1.12rem; max-width: 520px; }
.hero-cta { display: flex; gap: .9rem; margin-top: 1.6rem; flex-wrap: wrap; }

/* ---------- Trust bar ---------- */
.trust-bar { border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; padding: 1.6rem 0; }
.trust-item { display: flex; gap: .8rem; align-items: flex-start; }
.trust-item svg { flex: 0 0 26px; color: var(--gold); margin-top: .15rem; }
.trust-item strong { display: block; color: var(--ink); font-size: .98rem; }
.trust-item span { font-size: .84rem; color: var(--muted); }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.cat-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    padding: 1.1rem;
    color: #fff;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: #fff; }
.cat-card h3 { color: #fff; margin: 0; font-size: 1.2rem; }
.cat-card span { font-size: .8rem; opacity: .9; }

/* ---------- Products ---------- */
ul.products { margin: 0; padding: 0; list-style: none; }
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.product-grid::before,
.product-grid::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
    content: none;
}
.product-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card .thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream); }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.product-card:hover .thumb img { transform: scale(1.04); }
.product-card .badge {
    position: absolute;
    top: .8rem;
    left: .8rem;
    background: var(--gold);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .28rem .6rem;
    border-radius: 999px;
}
.product-card .body { padding: .9rem .9rem 1rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.product-card .cat { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 700; }
.product-card h3 { font-size: .98rem; margin: 0; }
.product-card h3 a { color: var(--ink); }
.product-card h3 a:hover { color: var(--gold); }
.product-card .price { font-weight: 700; color: var(--ink); }
.product-card .price del { color: var(--muted); font-weight: 400; margin-right: .45rem; }
.product-card .price ins { text-decoration: none; color: var(--danger); }
.product-card .card-actions { margin-top: auto; display: flex; gap: .45rem; padding-top: .6rem; }
.product-card .card-actions .btn,
.product-card .card-actions .button { flex: 1; padding: .6rem .5rem; font-size: .82rem; }
.wc-block-grid__product, .wc-block-grid__products { list-style: none; padding: 0; }

/* WooCommerce buttons */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background: var(--gold);
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    padding: .8rem 1.5rem;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background: var(--ink);
    color: #fff;
}
.woocommerce a.remove { color: var(--danger) !important; }
.woocommerce .quantity .qty { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .45rem; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--ink); font-weight: 700; }
.woocommerce div.product p.price del, .woocommerce div.product span.price del { color: var(--muted); }
.woocommerce div.product p.price ins, .woocommerce div.product span.price ins { text-decoration: none; color: var(--danger); }
.woocommerce .product_meta .sku_wrapper { display: none; }
.woocommerce div.product .product_title {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.2;
}
@media (min-width: 821px) {
    .woocommerce div.product div.images,
    .woocommerce-page div.product div.images { width: 45%; }
    .woocommerce div.product div.summary,
    .woocommerce-page div.product div.summary { width: 52%; }
}
.woocommerce ul.products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.2rem; }
.woocommerce ul.products li.product { width: 100% !important; float: none !important; margin: 0 !important; }
.woocommerce .star-rating { color: var(--gold); }
.woocommerce-message, .woocommerce-info, .woocommerce-error { border-top-color: var(--gold); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--gold); }
.woocommerce-error { border-top-color: var(--danger); }
.woocommerce-tabs { border-top: 1px solid var(--line); margin-top: 2rem; }
.woocommerce-tabs ul.tabs { margin-bottom: 1.4rem; }

/* ---------- Why / about teaser ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.why-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: .9rem; }
.why-list li { display: flex; gap: .7rem; align-items: flex-start; }
.why-list svg { flex: 0 0 22px; color: var(--gold); margin-top: .2rem; }

/* ---------- Reviews ---------- */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.review-card .stars { color: var(--gold); letter-spacing: .12em; }
.review-card blockquote { margin: 0; font-size: .95rem; }
.review-card .author { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.review-card .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .9rem;
}
.review-card .author strong { display: block; color: var(--ink); font-size: .92rem; }
.review-card .author span { font-size: .78rem; color: var(--muted); }
.review-card .product-link { font-size: .8rem; }
.review-card .tag-chips { display: flex; flex-wrap: wrap; gap: .35rem; }
.review-card .tag-chip {
    font-size: .7rem;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: .2rem .55rem;
    border-radius: 999px;
    color: var(--muted);
}

/* ---------- Newsletter ---------- */
.newsletter-band { background: linear-gradient(115deg, var(--ink) 0%, var(--ink-2) 60%, #4a3b1e 120%); color: #fff; }
.newsletter-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center; }
.newsletter-band h2 { color: #fff; }
.newsletter-band p { color: #cdd4e2; }
.newsletter-form { display: flex; gap: .6rem; }
.newsletter-form input[type="email"] {
    flex: 1;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 999px;
    padding: .8rem 1.2rem;
    font-size: .95rem;
}
.newsletter-form input::placeholder { color: #aab3c4; }
.newsletter-note { font-size: .8rem; color: #aab3c4; margin-top: .6rem; }

/* ---------- Page content ---------- */
.page-hero { background: var(--cream); border-bottom: 1px solid var(--line); padding: 3.4rem 0; text-align: center; }
.page-hero p { max-width: 620px; margin: 0 auto; color: var(--muted); }
.content-area { padding: 3.5rem 0; }
.content-column { max-width: 820px; margin: 0 auto; }
.content-column ul, .content-column ol { padding-left: 1.2rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: start; }
.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.3rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    background: var(--paper);
}
.contact-card svg { flex: 0 0 24px; color: var(--gold); margin-top: .2rem; }
.contact-card strong { display: block; color: var(--ink); }
.contact-form label { display: block; font-weight: 600; color: var(--ink); font-size: .9rem; margin: 1rem 0 .35rem; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: .8rem 1rem;
    font-family: var(--font-body);
    font-size: .95rem;
    background: #fff;
}
.contact-form textarea { min-height: 150px; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--gold-2); border-color: var(--gold); }
.form-note { font-size: .82rem; color: var(--muted); }
.form-success { background: #e9f6ef; border: 1px solid #bfe3d0; color: var(--ok); padding: .9rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1rem; }

/* ---------- Reviews page ---------- */
.review-filters {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 2rem;
}
.review-filters select {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .5rem 1rem;
    background: #fff;
    font-size: .9rem;
    color: var(--ink);
}
.review-filters .tag-filter { display: flex; flex-wrap: wrap; gap: .4rem; }
.review-filters .tag-filter a {
    font-size: .78rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
}
.review-filters .tag-filter a.active { background: var(--gold); border-color: var(--gold); color: #fff; }
.reviews-empty { text-align: center; color: var(--muted); padding: 3rem 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c6cddb; font-size: .9rem; }
.footer-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.2rem; padding: 4rem 0 3rem; }
.site-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.site-footer a { color: #c6cddb; }
.site-footer a:hover { color: var(--gold-2); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-brand .logo-text { color: #fff; font-size: 1.4rem; }
.footer-brand .logo-text span { color: var(--gold-2); }
.footer-brand p { color: #98a1b4; font-size: .86rem; }
.social-links { display: flex; gap: .6rem; margin-top: 1rem; }
.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dfe3ec;
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.payment-icons { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1rem; }
.payment-icons span {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 6px;
    padding: .3rem .55rem;
    color: #dfe3ec;
}
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.2rem 0; font-size: .8rem; color: #8e97aa; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ---------- Mobile ---------- */
@media (max-width: 1024px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-grid, .product-grid, .woocommerce ul.products { grid-template-columns: repeat(3, 1fr); }
    .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
    .nav-toggle { display: inline-flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: #fff;
        box-shadow: -10px 0 40px rgba(28,36,51,.16);
        transform: translateX(100%);
        transition: transform .25s ease;
        z-index: 70;
        padding: 5.2rem 1.4rem 1.4rem;
        overflow-y: auto;
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul { flex-direction: column; gap: .2rem; }
    .main-nav a { font-size: 1.05rem; padding: .8rem .9rem; }
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(28,36,51,.45);
        z-index: 65;
        display: none;
    }
    .nav-overlay.open { display: block; }
    .cat-grid, .product-grid, .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
    .cat-card { min-height: 170px; }
    .split, .newsletter-inner, .contact-grid { grid-template-columns: 1fr; }
    .hero { min-height: 480px; }
    .hero-content { padding: 4.5rem 0; }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .cat-grid, .product-grid, .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
    .review-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }
    .section { padding: 3.5rem 0; }
    .newsletter-form { flex-direction: column; }
    .cat-card { min-height: 130px; padding: .7rem; }
    .cat-card h3 { font-size: .95rem; }
    .product-card .body { padding: .65rem .65rem .8rem; gap: .25rem; }
    .product-card h3 { font-size: .85rem; line-height: 1.3; }
    .product-card .cat { font-size: .6rem; }
    .product-card .price { font-size: .88rem; }
    .product-card .card-actions .button { padding: .55rem .4rem; font-size: .78rem; }
}
