@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --bg-main: #ead3d1;
    --bg-soft: #f6ecea;
    --accent: #a56f6a;
    --accent-dark: #875955;
    --text-dark: #5e4543;
    --text-muted: #7a6663;
    --white: #ffffff;
    --border: #d9bdba;
    --shadow: 0 10px 25px rgba(94, 69, 67, 0.10);
    --radius: 18px;
    --container: 1150px;
    --whatsapp: #25d366;
    --whatsapp-dark: #1daa56;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--text-dark);
    background: var(--bg-soft);
    line-height: 1.75;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: var(--accent-dark);
}

p,
li,
span,
label,
input,
select,
textarea {
    font-family: "Manrope", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    line-height: 1.2;
}

.container {
    width: min(var(--container), 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    background: rgba(234, 211, 209, 0.96);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    flex-wrap: wrap;
    position: relative;
}

.brand {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--accent-dark);
    text-decoration: none;
    font-size: 2rem;
    white-space: nowrap;
    line-height: 1;
    flex-shrink: 0;
}

#mainNav,
nav {
    display: flex;
    gap: 1rem;
    flex: 1;
    align-items: center;
}

#mainNav a,
nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 600;
    font-size: 0.96rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: 0.2s ease;
}

#mainNav a:hover,
nav a:hover {
    color: var(--accent-dark);
}

/* Search header */
.search-box {
    position: relative;
    min-width: 280px;
    flex: 0 1 340px;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.search-form input,
.search-form select,
.search-form button,
.btn,
input,
select,
textarea {
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0.85rem 1rem;
    font: inherit;
}

input,
select,
textarea {
    width: 100%;
    background: #fff;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(165, 111, 106, 0.10);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

.search-form input {
    min-width: 0;
    flex: 1;
}

.search-form button,
.btn {
    background: var(--accent);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Manrope", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.search-form button:hover,
.btn:hover {
    opacity: 0.94;
    transform: translateY(-1px);
}

.btn.secondary {
    background: #fff;
    color: var(--accent);
    border: 1px solid var(--accent);
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    z-index: 1200;
    background: #fff;
    border: 1px solid rgba(217, 189, 186, 0.85);
    border-radius: 16px;
    box-shadow: 0 16px 35px rgba(94, 69, 67, 0.14);
    overflow: hidden;
}

.search-suggestion-list {
    display: grid;
}

.search-suggestion-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 0.85rem;
    align-items: center;
    padding: 0.8rem 0.9rem;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(217, 189, 186, 0.35);
    background: #fff;
    transition: background 0.2s ease;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: #fcf6f5;
}

.search-suggestion-item img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 12px;
    background: #f2e4e2;
}

.search-suggestion-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.search-suggestion-content strong {
    color: #4d3533;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 700;
}

.search-suggestion-content span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.search-suggestion-content small {
    color: var(--accent-dark);
    font-size: 0.88rem;
    font-weight: 700;
}

.search-suggestion-empty {
    padding: 1rem;
}

.search-suggestion-empty strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #4d3533;
    font-family: "Playfair Display", serif;
}

.search-suggestion-empty p {
    margin: 0.25rem 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.search-suggestion-empty a {
    font-weight: 600;
}

.search-suggestion-whatsapp {
    display: inline-flex;
    margin-top: 0.8rem;
    background: var(--whatsapp);
    color: #fff !important;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 12px;
}

.search-suggestion-whatsapp:hover {
    background: var(--whatsapp-dark);
}

/* Main layout */
main {
    min-height: 60vh;
}

.section {
    padding: 4rem 0;
}

.hero {
    padding: 5rem 0;
    background: linear-gradient(120deg, var(--bg-main), var(--bg-soft));
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.05;
    margin: 0 0 1rem;
    color: #3f2d2b;
}

.hero p {
    max-width: 700px;
    font-size: 1.08rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-hero h1,
.customization-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.01em;
    margin: 0.8rem 0 1rem;
    color: #4c3533;
}

.lead {
    max-width: 840px;
    font-size: 1.08rem;
    color: var(--text-dark);
}

.text-muted {
    color: var(--text-muted);
}

.grid {
    display: grid;
    gap: 1.25rem;
}

.categories,
.trust,
.info-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    justify-content: center;
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
    justify-content: center;
    align-items: start;
}

/* Cards */
.card {
    background: #fff;
    padding: 1.15rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(217, 189, 186, 0.35);
}

.card h1,
.card h2,
.card h3 {
    font-family: "Playfair Display", serif;
    margin-top: 0;
    color: #5b403e;
    letter-spacing: 0.01em;
}

.brand-visual-card {
    padding: 1.3rem;
}

/* Home category cards */
.home-category-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 0.9rem;
    text-decoration: none;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.home-category-card:hover {
    transform: translateY(-3px);
}

.home-category-image {
    margin-bottom: 0.75rem;
}

.home-category-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    background: #f2e4e2;
}

.home-category-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.home-category-card p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

/* Product cards */
.product-card {
    background: #fff;
    padding: 0.8rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(217, 189, 186, 0.35);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.product-card-link {
    display: block;
    text-decoration: none;
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    background: #f2e4e2;
}

.product-card h3 {
    margin: 0.65rem 0 0.3rem;
    font-family: "Playfair Display", serif;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.25;
    color: #4a3331;
}

.product-card p {
    margin: 0.2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.8rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1 1 120px;
    min-height: 42px;
    padding: 0.7rem 0.9rem;
    font-size: 0.88rem;
    border-radius: 10px;
}

.product-price-wrap {
    margin: 0.35rem 0 0.6rem;
}

.old-price {
    text-decoration: line-through;
    color: #998481;
    font-size: 0.88rem;
}

.promo-price {
    color: var(--accent-dark);
    font-weight: 800;
    font-size: 1.05rem;
}

.badge {
    display: inline-block;
    background: var(--bg-main);
    color: var(--accent-dark);
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.product-stock {
    margin-bottom: 0.2rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Generic forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* Shop */
.shop-head {
    margin-bottom: 1.4rem;
}

.shop-head h1 {
    margin-bottom: 0.45rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.3rem);
    font-weight: 700;
    color: #4a3331;
}

.category-filter-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 1fr);
    gap: 0.8rem;
    overflow-x: auto;
    padding: 0.25rem 0 1rem;
    margin-bottom: 1.25rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}

.category-filter-strip::-webkit-scrollbar {
    height: 8px;
}

.category-filter-strip::-webkit-scrollbar-thumb {
    background: rgba(165, 111, 106, 0.65);
    border-radius: 999px;
}

.category-filter-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 84px;
    padding: 0.75rem 0.85rem;
    background: #fff;
    border: 1px solid rgba(217, 189, 186, 0.7);
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-filter-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.category-filter-card.active {
    border-color: var(--accent-dark);
    box-shadow: 0 12px 28px rgba(135, 89, 85, 0.18);
    background: #fffaf9;
}

.category-filter-thumb {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 12px;
    overflow: hidden;
    background: #f2e4e2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-filter-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-filter-name {
    font-family: "Playfair Display", serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #352626;
    line-height: 1.25;
}

.search-result-note {
    background: #fff;
    border: 1px solid rgba(217, 189, 186, 0.55);
    color: var(--text-dark);
    padding: 0.9rem 1rem;
    border-radius: 14px;
    margin-top: 1rem;
    box-shadow: var(--shadow);
}

.no-results-card h2 {
    margin-bottom: 0.6rem;
    font-family: "Playfair Display", serif;
}

.search-help-box {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 14px;
    background: #fcf7f6;
    border: 1px solid rgba(217, 189, 186, 0.55);
}

.search-help-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.search-help-item strong {
    color: #4c3533;
    font-family: "Playfair Display", serif;
}

.search-help-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.shop-suggestions-block h2 {
    margin-bottom: 0.25rem;
    font-family: "Playfair Display", serif;
}

/* Product details */
.product-detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 0.8rem;
}

.product-gallery img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 14px;
    background: #f2e4e2;
}

.product-detail-meta {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}

.product-detail-title {
    margin: 0.2rem 0 0.8rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #4a3331;
}

.product-stock {
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.product-description {
    margin: 1rem 0 1.2rem;
}

.related-products-title {
    margin-bottom: 1rem;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
}

/* Contact merged page */
.contact-split {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 1.5rem;
    align-items: stretch;
}

.contact-info-card,
.contact-form-card {
    height: 100%;
}

.contact-info-card h2,
.contact-form-card h2 {
    margin-bottom: 0.8rem;
    font-family: "Playfair Display", serif;
}

.contact-info-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.contact-info-item {
    padding: 1rem;
    border-radius: 14px;
    background: #fcf7f6;
    border: 1px solid rgba(217, 189, 186, 0.55);
}

.contact-info-item h3 {
    margin: 0 0 0.35rem;
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
}

.contact-info-item p {
    margin: 0;
    color: var(--text-muted);
}

.contact-form-modern {
    margin-top: 0.35rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form-grid label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: #5d4442;
    letter-spacing: 0.02em;
}

.contact-form-grid .full-width {
    grid-column: 1 / -1;
}

.contact-form-grid textarea {
    min-height: 170px;
}

.contact-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-actions .btn {
    min-width: 220px;
    padding: 0.95rem 1.4rem;
    border-radius: 14px;
}

/* Customization page */
.customization-hero {
    max-width: 900px;
}

.customization-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.customization-info-card {
    height: 100%;
}

.custom-list {
    margin: 0.75rem 0 0;
    padding-left: 1.1rem;
    color: var(--text-dark);
}

.custom-list li {
    margin-bottom: 0.55rem;
}

.customization-form-card {
    padding: 1.7rem;
}

.customization-form-head {
    margin-bottom: 1.25rem;
}

.customization-form-head h2 {
    margin-bottom: 0.4rem;
    font-family: "Playfair Display", serif;
}

.customization-form-head p {
    margin: 0;
    color: var(--text-muted);
}

.customization-form-modern {
    margin-top: 0.35rem;
}

.custom-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.custom-form-grid label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: #5d4442;
    letter-spacing: 0.02em;
}

.custom-form-grid .full-width {
    grid-column: 1 / -1;
}

.custom-form-grid textarea {
    min-height: 170px;
}

.customization-actions {
    margin-top: 1.2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.customization-actions .btn {
    min-width: 220px;
    padding: 0.95rem 1.4rem;
    border-radius: 14px;
}

.form-actions {
    justify-content: flex-start;
}

.whatsapp-btn {
    background: var(--whatsapp);
    color: #fff;
}

.whatsapp-btn:hover {
    background: var(--whatsapp-dark);
    opacity: 1;
}

/* Flash messages */
.flash {
    padding: 0.9rem 1rem;
    margin: 1rem auto;
    border-radius: 10px;
    width: min(var(--container), 92%);
    font-weight: 600;
}

.flash-success {
    background: #d8f3dc;
    color: #205c2c;
    border: 1px solid #b7e4c7;
}

.flash-error {
    background: #ffd6d6;
    color: #7a1d1d;
    border: 1px solid #f3b3b3;
}

/* Pagination */
.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: var(--accent-dark);
    background: #fff;
    font-weight: 600;
}

.pagination span {
    background: var(--bg-main);
    font-weight: 700;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: grid;
    place-items: center;
    padding: 1rem;
}

.modal-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 14px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow);
}

.hidden {
    display: none !important;
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: #fff;
    padding: 2.5rem 0;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.site-footer h3,
.site-footer h4 {
    font-family: "Playfair Display", serif;
    color: #fff;
    letter-spacing: 0.01em;
}

.site-footer a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 0.35rem 0;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    display: inline;
    text-decoration: none;
    font-weight: 700;
}

/* Utility */
.text-center {
    text-align: center;
}

.mobile-toggle {
    display: none;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.section-head {
    margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 1100px) {
    .contact-split,
    .customization-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .nav-wrap {
        align-items: center;
        gap: 0.85rem;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: none;
        background: transparent;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--accent-dark);
        margin-left: auto;
        padding: 0.2rem 0.4rem;
        line-height: 1;
        z-index: 1301;
    }

    #mainNav,
    nav {
        display: none;
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        right: 0;
        background: #f2ddda;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: 0 18px 30px rgba(94, 69, 67, 0.14);
        z-index: 1300;
        gap: 0.15rem;
    }

    #mainNav.show,
    nav.show {
        display: flex;
    }

    #mainNav a,
    nav a {
        width: 100%;
        padding: 0.85rem 0.2rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(135, 89, 85, 0.12);
    }

    #mainNav a:last-child,
    nav a:last-child {
        border-bottom: none;
    }

    .search-box {
        width: 100%;
        min-width: 0;
        flex: 1 1 100%;
        order: 3;
    }

    .search-form {
        width: 100%;
        flex: 1 1 100%;
    }

    .search-form input {
        min-width: 0;
        flex: 1;
    }

    .hero {
        padding: 3.5rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    .contact-form-grid,
    .custom-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-grid .full-width,
    .custom-form-grid .full-width {
        grid-column: auto;
    }

    .contact-actions .btn,
    .customization-actions .btn,
    .search-help-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .search-suggestion-item {
        grid-template-columns: 52px 1fr;
    }

    .search-suggestion-item img {
        width: 52px;
        height: 52px;
    }

    .category-filter-strip {
        grid-auto-columns: minmax(180px, 1fr);
    }

    .category-filter-name {
        font-size: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .product-card,
    .home-category-card {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .nav-wrap {
        align-items: center;
    }

    .brand {
        font-size: 1.85rem;
        max-width: calc(100% - 60px);
    }

    .card,
    .brand-visual-card,
    .contact-info-card,
    .contact-form-card,
    .customization-info-card,
    .customization-form-card {
        padding: 1rem;
    }

    .about-hero h1,
    .customization-hero h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-form button {
        width: 100%;
    }

    .home-category-image img {
        height: 120px;
    }

    .product-grid,
    .categories,
    .trust,
    .info-cards {
        grid-template-columns: 1fr;
    }

    .product-card img {
        height: auto;
        aspect-ratio: 4 / 4.7;
    }

    .product-card h3 {
        font-size: 1rem;
    }

    .product-actions .btn,
    .contact-actions .btn,
    .customization-actions .btn,
    .search-help-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .category-filter-strip {
        grid-auto-columns: minmax(165px, 1fr);
    }

    .category-filter-card {
        min-height: 78px;
        padding: 0.7rem;
        gap: 0.65rem;
    }

    .category-filter-thumb {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .category-filter-name {
        font-size: 0.94rem;
    }
}