﻿:root {
    --header-height: 74px;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #ffffff;
    --text: #2f2522;
    --muted: #6f605d;
    --primary: #3a2a24;
    --line: rgba(102, 76, 69, 0.2);
    --radius-lg: 48px;
    --radius-md: 36px;
    --radius-diagonal-lg: var(--radius-lg) 0 var(--radius-lg) 0;
    --radius-diagonal-md: var(--radius-md) 0 var(--radius-md) 0;
    --container: min(1120px, 92vw);
    --footer-map-media-height: 240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

[id] {
    scroll-margin-top: 20px;
}

#top-anchor {
    scroll-margin-top: 0;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Verdana, Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    padding: 0;
}

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

h1,
h2,
h3 {
    font-family: "Segoe UI", Tahoma, Verdana, Arial, sans-serif;
    line-height: 1.1;
    margin: 0 0 0.6rem;
    letter-spacing: 0.01em;
}

p {
    margin: 0 0 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding: clamp(1rem, 2.2vw, 1.8rem) 0;
}

.section-title {
    font-size: 25px;
    margin-bottom: 1.5rem;
}

.site-shell {
    width: min(1200px, 100vw);
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 0.9rem;
}

.menu-toggle {
    width: 44px;
    height: 42px;
    border: 1px solid #222;
    background: #fff;
    color: #222;
    border-radius: 5px;
    padding: 0;
    font-weight: 600;
    cursor: pointer;
    display: inline-grid;
    place-items: center;
}

.menu-toggle-lines {
    width: 20px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle-lines span {
    width: 100%;
    height: 2px;
    background: #222;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease;
}

.menu-toggle.is-open .menu-toggle-lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-lines span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open .menu-toggle-lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.nav {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    background: #fff;
    border: 1px solid #222;
    border-radius: 0;
    padding: 0.6rem;
    min-width: 260px;
    z-index: 20;
}

.nav.open {
    display: flex;
}

.nav a {
    padding: 0.7rem 1rem;
    border: 1px solid transparent;
    text-align: center;
    font-weight: 600;
}

.nav a:hover {
    border-color: #ddd;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
}

.header-address,
.header-phone {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    font-weight: 600;
    white-space: nowrap;
}

.header-address {
    padding-right: 0.7rem;
    border-right: 1px solid #222;
}

.header-phone {
    padding-left: 0.2rem;
}

.header-cart {
    width: 42px;
    height: 42px;
    border: 1px solid #222;
    border-radius: 5px;
    display: inline-grid;
    place-items: center;
    font-size: 1.3rem;
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #7a2f42;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-link {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 500;
    text-align: center;
}

.logo-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-showcase img {
    max-height: 35vh;
    object-fit: contain;
}

.logo-showcase .btn {
    position: relative;
    bottom: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px 0 25px 0;
    border: 1px solid #222;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    min-height: 44px;
    padding: 0.6rem 1.55rem;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
}

.btn:hover {
    background: #5c2233;
    color: #fff;
}

.btn-primary {
    background: #ffffff;
    color: #111;
    border-color: #222;
}

.btn-primary:hover {
    background: #7a2f42;
    color: #fff;
}

.feature-list,
.delivery-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.feature-list li {
    padding: 25px;
    background: linear-gradient(90deg, #f9eeef 0%, #ebd8de 100%);
    border-radius: var(--radius-diagonal-md);
    box-shadow: 6px 8px 12px rgba(122, 47, 66, 0.14);
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
    min-height: 76px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

#why .feature-list li {
    background: linear-gradient(90deg, #f3dfe4 0%, #efd3da 100%);
    color: #2f2522;
}

#why .feature-list li .bi {
    color: #3a2a24;
}

.feature-list li:hover {
    transform: translateY(-4px);
    box-shadow: 6px 10px 16px rgba(122, 47, 66, 0.28);
}

.feature-list li .bi {
    flex: 0 0 22px;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--primary);
}

.feature-list li span {
    display: block;
}

.photo-bouquet-box {
    border-radius: var(--radius-diagonal-lg);
    height: 200px;
    display: grid;
    grid-template-columns: 2fr 0.9fr;
    overflow: hidden;
    background: linear-gradient(90deg, #7a2f42 0%, #8a3a4f 100%);
    color: #f9edf0;
}

.photo-bouquet-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.photo-bouquet-box p {
    margin: 0;
}

.photo-bouquet-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-bouquet-media img {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.card {
    background: linear-gradient(90deg, #f8efed 0%, #eadbdd 100%);
    border-radius: var(--radius-diagonal-md);
    overflow: hidden;
    box-shadow: 6px 8px 12px rgba(122, 47, 66, 0.14);
}

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

.catalog-card {
    background: linear-gradient(90deg, #f8efed 0%, #eadbdd 100%);
    border-radius: var(--radius-diagonal-md);
    box-shadow: 6px 8px 12px rgba(122, 47, 66, 0.14);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.catalog-media {
    height: 300px;
    background: #f0d7de;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7a2f42;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.catalog-media .bi {
    font-size: 2rem;
    opacity: 0.9;
}

.catalog-media.is-placeholder {
    flex-direction: column;
    gap: 0.35rem;
    background: linear-gradient(180deg, #f1dce2 0%, #ead0d8 100%);
    color: #7a2f42;
}

.catalog-media.is-placeholder .bi {
    font-size: 2.2rem;
    opacity: 0.85;
}

.catalog-media.is-placeholder span {
    font-weight: 600;
    font-size: 0.9rem;
}

.catalog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.catalog-body {
    padding: 0.9rem 1rem 1rem;
    display: grid;
    gap: 0.45rem;
    background: #f4eeef;
    border-top: 1px solid rgba(122, 47, 66, 0.12);
}

.catalog-title {
    margin: 0;
    font-size: 1.05rem;
    color: #2f2522;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-title a {
    color: inherit;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #7a2f42;
}

.catalog-add-btn {
    margin-top: 0.3rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.catalog-media-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    border-radius: 999px;
    background: rgba(47, 37, 34, 0.8);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.1;
    z-index: 2;
    backdrop-filter: blur(2px);
}

.catalog-media-overlay-controls {
    display: inline-flex;
    background: transparent;
    align-items: center;
    border-radius: 999px;
    overflow: hidden;
}

.catalog-media-overlay-controls button {
    border: 0;
    background: transparent;
    color: #fff;
    padding: .42rem .62rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.catalog-media-overlay-controls span {
    min-width: 28px;
    text-align: center;
    font-weight: 700;
    font-size: .9rem;
    display: inline-block;
}

.popular-card-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    height: 100%;
}

.popular-load-error {
    margin: 1rem 0 0;
    color: #6f605d;
    font-weight: 600;
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
    display: grid;
    gap: 0.65rem;
}

.steps li {
    counter-increment: step;
    padding: 0.5rem 0 0.5rem 2.2rem;
    position: relative;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #f8f1ee;
    font-size: 0.86rem;
    background: var(--primary);
}

.order-box,
.delivery-box,
.cta-inner,
.footer-grid {
    background: linear-gradient(90deg, #f8efed 0%, #e9d6dc 100%);
    border-radius: var(--radius-diagonal-lg);
    box-shadow: 6px 8px 12px rgba(122, 47, 66, 0.14);
}

.order-box,
.delivery-box {
    display: grid;
    grid-template-columns: 1.8fr 0.8fr;
    padding: 0;
    align-items: stretch;
    overflow: hidden;
    min-height: 300px;
}

.order-content,
.delivery-content {
    padding: 50px;
    background: linear-gradient(90deg, #f5e3e8 0%, #dfbac8 100%);
}

.order-media img,
.delivery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.delivery-list {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 0.95rem;
}

.reviews-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.1rem;
}

.review-item {
    margin: 0;
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: var(--radius-diagonal-md);
    background: linear-gradient(90deg, #7a2f42 0%, #8a3a4f 100%);
    color: #f9edf0;
    box-shadow: 6px 8px 12px rgba(122, 47, 66, 0.14);
}

.review-text {
    margin: 0 0 0.4rem;
    font-style: italic;
    color: rgba(249, 237, 240, 0.86);
}

.review-author {
    margin: 0;
    font-weight: 700;
    color: #ffffff;
}

.review-meta {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(249, 237, 240, 0.86);
}

.cta {
    padding-top: 2.8rem;
}

.cta-inner {
    text-align: center;
    padding: clamp(1.7rem, 4vw, 2.8rem);
    background: linear-gradient(90deg, #f3dfe4 0%, #efd3da 100%);
    color: #342522;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.footer {
    padding-top: 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: clamp(1.2rem, 3vw, 2rem);
    align-items: start;
    background: linear-gradient(90deg, #7a2f42 0%, #8a3a4f 100%);
    color: #f9edf0;
}

.footer-title,
.contact-row,
.footer-address,
.footer-map-row {
    grid-column: 1 / -1;
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.contact-item .bi,
.contact-item a,
.footer-address {
    color: #f9edf0;
}

.footer-map-row {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 1rem;
    margin-top: 0.4rem;
}

.footer-map,
.footer-place-photo {
    border-radius: var(--radius-diagonal-md);
    overflow: hidden;
    background: #efd8df;
    min-height: var(--footer-map-media-height);
}

.footer-map iframe,
.footer-place-photo img {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    display: block;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 930px) {
    .feature-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-box,
    .delivery-box,
    .footer-grid,
    .footer-map-row {
        grid-template-columns: 1fr;
    }

    .photo-bouquet-box {
        height: auto;
        grid-template-columns: 1fr;
    }

    .photo-bouquet-content {
        padding: 38px 34px 22px;
    }

    .photo-bouquet-media {
        min-height: 170px;
        padding: 8px 0 18px;
    }
}

@media (max-width: 768px) {
    .footer-title {
        margin-top: 10px;
    }
    .logo-showcase .btn {
        bottom: 0;
    }

    .header-top-row {
        gap: 0.55rem;
    }

    .header-center {
        position: static;
        transform: none;
        margin-inline: auto;
    }

    .header-address,
    .header-phone {
        font-size: 0.9rem;
    }

    .social-row {
        margin-top: 1.2rem;
        gap: 0.35rem;
    }

    .social-link {
        font-size: 0.85rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .logo-showcase {
        min-height: 35vh;
    }

    .section-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1240px) {
    .site-shell {
        width: 100%;
    }

    .container {
        width: min(100%, 94vw);
    }
}

/* ===== catalog.php ===== */
.catalog-hero{background:linear-gradient(90deg,#f3dfe4 0%,#efd3da 100%);border-radius:var(--radius-diagonal-lg);box-shadow:6px 8px 12px rgba(122,47,66,.14);padding:clamp(1.1rem,2.4vw,1.7rem);margin-bottom:1.2rem}
.catalog-hero p{margin:.2rem 0 0;color:#4a3834}
.catalog-toolbar{display:grid;grid-template-columns:1fr auto;gap:.8rem;align-items:center;margin-bottom:1rem}
.catalog-search{display:flex;gap:.6rem;align-items:center;background:#fff;border:1px solid var(--line);border-radius:var(--radius-diagonal-md);padding:.45rem;box-shadow:6px 8px 12px rgba(122,47,66,.08)}
.catalog-search input{flex:1;border:0;outline:none;padding:.5rem .7rem;font-size:1rem;border-radius:10px;color:var(--text);background:transparent}
.catalog-meta{display:inline-flex;align-items:center;gap:.4rem;font-weight:600;color:#5b4640;background:#fff;border:1px solid var(--line);border-radius:20px;padding:.45rem .9rem;white-space:nowrap}
.catalog-categories{display:flex;flex-wrap:wrap;gap:.45rem;margin:0 0 1rem}
.catalog-categories a,.catalog-categories span{display:inline-flex;align-items:center;justify-content:center;padding:.45rem .85rem;border-radius:16px;border:1px solid var(--line);background:#fff;color:#4a3834;font-weight:600}
.catalog-categories .active{background:#7a2f42;border-color:#7a2f42;color:#fff}
.catalog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin-bottom: 40px}
.catalog-note{color:#6f605d;font-size:.9rem}
.catalog-pager{margin-top:1.25rem;display:flex;flex-wrap:wrap;gap:.45rem}
.catalog-pager a,.catalog-pager span{min-width:38px;text-align:center;padding:.45rem .75rem;border-radius:16px;border:1px solid var(--line);background:#fff;font-weight:600;color:#4a3834}
.catalog-pager .active{background:#7a2f42;border-color:#7a2f42;color:#fff}
.catalog-error{margin:0 0 1rem;padding:.9rem 1rem;border-radius:14px;border:1px solid #f0b9b9;background:#fff3f3;color:#842d2d;font-weight:600}
.catalog-error-full{margin-top:.6rem;padding:.75rem;border-radius:10px;background:#fff;border:1px solid #efcfcf;color:#5f2525;font:500 .9rem/1.4 Consolas,Monaco,monospace;white-space:pre-wrap;word-break:break-word;overflow-wrap:anywhere}
@media (max-width:930px){.catalog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.catalog-toolbar{grid-template-columns:1fr}}
@media (max-width:520px){.catalog-grid{grid-template-columns:1fr}}

/* ===== cart.php ===== */
.cart-wrap{padding:1rem 0 2rem}
.cart-list{display:grid;gap:20px}
.cart-item{display:grid;grid-template-columns:120px 1fr auto;gap:20px;background:#f4eeef;border-radius:18px;padding:20px;box-shadow:6px 8px 12px rgba(122,47,66,.14);align-items:center}
.cart-item-media{width:120px;height:120px;border-radius:12px;overflow:hidden;background:#f0d7de}
.cart-item-media img{width:100%;height:100%;object-fit:cover}
.cart-item-title{font-size:1.1rem;font-weight:700;margin:0 0 .35rem}
.cart-item-price{font-size:1rem;color:#7a2f42;font-weight:700}
.qty-controls{display:inline-flex;background:#fff;align-items:center;border:1px solid var(--line);border-radius:12px;overflow:hidden;margin-right: 15px}
.qty-controls button{border:0;background:#fff;padding:.45rem .7rem;cursor:pointer;font-weight:bold;font-size: 15px;}
.qty-controls span{min-width:38px;text-align:center;font-weight:700}
.cart-item-controls{display:flex;align-items:center;flex-wrap:wrap;gap:.55rem;margin-top:.55rem}
.cart-remove-btn{border:0;background:none;color:#7a2f42;cursor:pointer;padding:0;line-height:1.2}
.cart-item-total{font-size:1.15rem;font-weight:700;min-width:120px;text-align:center}
.cart-summary{margin-top:25px;background:#f4eeef;border-radius:18px;padding:20px;box-shadow:6px 8px 12px rgba(122,47,66,.14);display:none;justify-content:space-between;align-items:center;gap:1rem;flex-wrap:wrap}
.cart-grand-total{font-size:1.5rem;font-weight:800;color:#7a2f42}
.cart-summary-actions{display:flex;gap:.6rem;flex-wrap:wrap}
.checkout-box{margin-top:25px;background:#f4eeef;border-radius:18px;padding:20px;box-shadow:6px 8px 12px rgba(122,47,66,.14);display:none}
.checkout-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.7rem}
.checkout-field{display:grid;gap:.3rem}
.checkout-field input,.checkout-field textarea{border:1px solid var(--line);border-radius:12px;padding:.6rem .75rem;font:inherit}
.checkout-field textarea{min-height:86px;resize:vertical}
.checkout-actions{margin-top:.8rem;display:flex;gap:.6rem;flex-wrap:wrap;align-items:center;justify-content: center;}
.checkout-status{font-weight:600;color:#6f605d}
.checkout-status.error{color:#8a2f2f}
.checkout-status.success{color:#2f6a38}
.cart-empty{display:none;background:#f4eeef;padding:1rem;border-radius:14px;color:#6f605d}
@media (max-width:760px){
  .cart-item{grid-template-columns:96px 1fr;gap:14px;padding:16px}
  .cart-item-media{width:96px;height:96px}
  .cart-item-title{font-size:1rem}
  .cart-item-controls{gap:.45rem}
  .qty-controls{margin-right:0}
  .cart-item-total{grid-column:1/-1;text-align:left;min-width:0;padding-top:.2rem}
  .cart-summary-actions{width:100%;display:grid;grid-template-columns:1fr;gap:.55rem}
  .cart-summary-actions .btn{width:100%;text-align:center}
  .checkout-grid{grid-template-columns:1fr}
  .checkout-field[style]{grid-column:auto!important}
  .checkout-actions .btn{width:100%}
}

/* ===== product.php ===== */
.page-wrap{padding:1rem 0 2rem}
.breadcrumbs{margin-bottom:1rem;color:#6f605d;font-weight:600}
.product-card{background:#fff;border-radius:var(--radius-diagonal-md);box-shadow:6px 8px 12px rgba(122,47,66,.14);overflow:hidden;display:grid;grid-template-columns:1fr 1fr}
.product-media{min-height:420px;background:#f0d7de;display:flex;flex-direction:column}
#product-main-image{width:100%;height:auto;object-fit:cover;display:block}
.product-thumbs{display:flex;gap:.6rem;margin-top: 15px;padding:.7rem;justify-content:flex-start;overflow-x:auto}
.product-thumb{width:150px;height:150px;padding:0;border:2px solid transparent;border-radius:10px;background:#f4eeef;cursor:pointer;overflow:hidden;transition:border-color .2s ease}
.product-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.product-thumb:hover{border-color:#7a2f42}
.product-thumb.is-active{border-color:#7a2f42}
.product-body{padding:1.2rem;display:flex;flex-direction:column;background:#f4eeef;gap:.8rem}
.product-title{margin-top:15px;font-size:2rem}
.product-price{font-size:1.7rem;font-weight:700;color:#7a2f42}
.product-desc{color:#4a3834;white-space:pre-wrap}
.product-actions{display:flex;gap:.6rem;flex-wrap:wrap;margin-top:10px}
.error-box{background:#fff3f3;border:1px solid #f0b9b9;border-radius:14px;padding:.9rem 1rem;color:#842d2d}
@media (max-width:900px){.product-card{grid-template-columns:1fr}.product-media{min-height:320px}#product-main-image{height:320px}}
