/* Ronsrofa floral storefront */
:root {
    --primary-color: #b64c68;
    --primary-light: #f5d8df;
    --primary-dark: #743244;
    --secondary-color: #2f7d5b;
    --secondary-light: #dceee6;
    --accent-color: #d99a36;
    --accent-light: #fff1d7;
    --text-primary: #202124;
    --text-secondary: #5d6360;
    --text-muted: #89908b;
    --text-inverse: #ffffff;
    --bg-primary: #fffdfa;
    --bg-secondary: #f7f2ed;
    --bg-tertiary: #edf5ef;
    --border-color: #e6ddd6;
    --border-light: #f1e9e3;
    --shadow-sm: 0 8px 22px rgba(59, 42, 38, 0.08);
    --shadow-md: 0 16px 40px rgba(59, 42, 38, 0.12);
    --header-height: 72px;
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --max-width: 1220px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 48px, var(--max-width));
    margin: 0 auto;
}

.section {
    padding: 76px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.section-title {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    font-weight: 760;
}

.section-subtitle {
    max-width: 680px;
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 16px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.section-link svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    background: rgba(255, 253, 250, 0.92);
    border-bottom: 1px solid rgba(230, 221, 214, 0.82);
    backdrop-filter: blur(16px);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-height);
}

.header-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.header-logo img {
    width: 168px;
    height: auto;
}

.footer-logo img {
    width: 190px;
    height: auto;
}

.header-nav-left,
.header-nav-right {
    flex: 1;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.header-nav-right .header-nav {
    justify-content: flex-end;
}

.header-right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.header-nav a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 650;
    transition: color 0.2s ease;
}

.header-nav a:hover {
    color: var(--primary-color);
}

.header-phone {
    color: var(--primary-dark) !important;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: #fff;
    color: var(--primary-dark);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-action-btn:hover {
    transform: translateY(-1px);
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.header-action-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}

.cart-count::after {
    content: "0";
    position: absolute;
    top: -4px;
    right: -4px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 86px;
    background:
        linear-gradient(90deg, rgba(42, 28, 25, 0.72) 0%, rgba(42, 28, 25, 0.48) 42%, rgba(42, 28, 25, 0.08) 72%),
        url("/assets/hero-florist.jpg") center right / cover no-repeat;
    color: #fff;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.hero::before { inset: 0; background: rgba(116, 50, 68, 0.08); }
.hero::after { display: none; }

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

.hero-layout {
    max-width: 720px;
}

.hero-copy {
    max-width: 710px;
}

.hero-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(42px, 7vw, 84px);
    line-height: 0.98;
    font-weight: 840;
}

.hero-desc {
    max-width: 560px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-note {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

/* Buttons */
.btn,
.btn-primary,
.btn-white,
.btn-ghost,
.add-to-cart,
.product-btn,
.cart-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 13px 22px;
    border: 0;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 15px;
    font-weight: 760;
    line-height: 1.1;
    transition: transform 0.18s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn svg,
.btn-white svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.btn:active,
.btn-primary:active,
.btn-white:active,
.btn-ghost:active,
.add-to-cart:active {
    transform: translateY(1px);
}

.btn-primary,
.add-to-cart,
.product-btn,
.cart-button,
.order-btn {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover,
.add-to-cart:hover,
.product-btn:hover,
.cart-button:hover,
.order-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 12px 28px rgba(116, 50, 68, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-white {
    background: #fff;
    color: var(--primary-dark);
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(20, 15, 18, 0.18);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* Categories */
.categories {
    position: sticky;
    top: var(--header-height);
    z-index: 90;
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 253, 250, 0.94);
    backdrop-filter: blur(12px);
}

.categories-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.categories-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 13px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    background: #fff;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 760;
    white-space: nowrap;
    cursor: pointer;
}

.category-tab:hover,
.category-tab.active {
    border-color: var(--primary-color);
    color: var(--primary-dark);
    background: var(--primary-light);
}

.tab-count {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--secondary-light);
    color: var(--secondary-color);
    font-size: 11px;
}

/* Product cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(182, 76, 104, 0.42);
    box-shadow: var(--shadow-md);
}

.product-card-image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 4.2;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.045);
}

.product-card-info-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 54px 16px 16px;
    color: #fff;
    background: linear-gradient(to top, rgba(38, 24, 27, 0.86), rgba(38, 24, 27, 0.38), transparent);
}

.product-card-category {
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 7px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 760;
}

.product-card-title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 42px;
    color: #fff;
    font-size: 16px;
    font-weight: 780;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.product-card-stars {
    display: flex;
    gap: 1px;
    color: #f4c74f;
}

.product-card-stars svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    stroke: none;
}

.product-card-stars .empty {
    color: rgba(255, 255, 255, 0.32);
}

.product-card-stars .half-filled {
    margin-left: -14px;
    clip-path: inset(0 50% 0 0);
}

.product-card-rating span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
}

.product-card-price {
    margin-top: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 840;
}

.product-card-cart-btn {
    width: 100%;
    min-height: 48px;
    border-radius: 0;
    background: #fff;
    color: var(--primary-dark);
    box-shadow: none;
}

.product-card-cart-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.product-card-cart-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

/* Promo and features */
.promo-banner {
    padding: 0 0 78px;
}

.promo-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 36px;
    overflow: hidden;
    padding: 42px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(116, 50, 68, 0.94), rgba(47, 125, 91, 0.92)),
        var(--primary-dark);
    color: #fff;
}

.promo-inner::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    pointer-events: none;
}

.promo-text {
    position: relative;
    z-index: 1;
}

.promo-text h2 {
    max-width: 680px;
    margin-bottom: 10px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.18;
}

.promo-text p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}

.features {
    padding: 76px 0;
    background: var(--bg-tertiary);
    border-top: 1px solid #dcebe1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-card {
    min-height: 210px;
    padding: 26px 22px;
    border: 1px solid #d7e7dc;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.86);
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: var(--secondary-light);
    color: var(--secondary-color);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.feature-card h4 {
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 16px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Product detail */
.breadcrumbs {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    background: #fff;
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    list-style: none;
    color: var(--text-secondary);
    font-size: 13px;
    white-space: nowrap;
}

.breadcrumbs-list a:hover {
    color: var(--primary-color);
}

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

.breadcrumbs-list .current {
    color: var(--text-primary);
    font-weight: 720;
}

.product-detail {
    padding: 50px 0 78px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 48px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: calc(var(--header-height) + 72px);
}

.product-gallery-main {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3.4;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.product-gallery-thumb {
    overflow: hidden;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    aspect-ratio: 1;
    cursor: pointer;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    border-color: var(--primary-color);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 8px 0;
}

.product-info-category {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 820;
}

.product-info h1 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 18px 0 22px;
}

.product-rating-stars {
    display: flex;
    gap: 2px;
    color: #f1bd3f;
}

.product-rating-stars svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
    stroke: none;
}

.product-rating-stars .empty {
    color: var(--border-color);
}

.product-rating-text {
    color: var(--text-secondary);
    font-size: 13px;
}

.product-price-block {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border-color);
}

.product-price-current {
    color: var(--primary-dark);
    font-size: 38px;
    font-weight: 840;
}

.product-description {
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 16px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 22px;
}

.product-actions .btn {
    width: 100%;
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 58px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 680;
}

.product-meta-item svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: var(--secondary-color);
    stroke-width: 1.8;
}

.product-care {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-left: 3px solid var(--accent-color);
    border-radius: var(--radius-md);
    background: var(--accent-light);
    color: #6c4b1d;
    font-size: 13px;
}

.related-section {
    padding: 76px 0;
    border-top: 1px solid var(--border-color);
    background: #fff;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    background: #2a2325;
    color: rgba(255, 255, 255, 0.76);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
    color: #fff;
    font-size: 22px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-weight: 650;
}

.footer-links a:hover,
.footer-contacts a:hover {
    color: #fff;
}

.footer-contacts {
    display: grid;
    justify-items: end;
    gap: 4px;
    font-size: 14px;
}

.footer-contacts a {
    color: #fff;
    font-weight: 760;
}

.footer-note {
    max-width: 540px;
    margin: 18px auto 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
}

.footer-bottom {
    padding: 20px 0 26px;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

/* Content pages */
.main-content {
    background: linear-gradient(180deg, #fffdfa, #f7f2ed);
}

.page-shell {
    padding: 54px 0 74px;
}

.page-shell > h1,
.content-in h1,
#privacy-policy h1 {
    max-width: 860px;
    margin-bottom: 30px;
    color: var(--primary-dark);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
}

.page-kicker {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 820;
    text-transform: uppercase;
}

.shipping-details,
.contact-section,
.warranty-return,
.content-in,
#privacy-policy {
    display: grid;
    gap: 28px;
}

.shipping-details h2,
.warranty-return h2,
.contact-section h2,
.contact-section h3,
.content-in h2,
#privacy-policy h2 {
    color: var(--primary-dark);
    font-size: 24px;
    line-height: 1.2;
}

.shipping-zones,
.payment-grid,
.guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.zone,
.payment-card,
.guarantee-item,
.feedback-section,
.contact-info-block,
.location-map,
.delivery-policy,
.return-steps,
.exchange-info,
.contact-support {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.zone,
.payment-card,
.guarantee-item,
.feedback-section,
.contact-info-block,
.location-map,
.delivery-policy,
.return-steps,
.exchange-info,
.contact-support {
    padding: 24px;
}

.zone h3,
.payment-card h4,
.guarantee-item h3,
.contact-support h3,
.delivery-policy h3 {
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 18px;
}

.zone-info,
.payment-card p,
.guarantee-item p,
.delivery-policy,
.exchange-info,
.contact-support,
.return-steps {
    color: var(--text-secondary);
}

.delivery-policy ul,
.exchange-info ul,
.contact-support ul,
#privacy-policy ul {
    display: grid;
    gap: 8px;
    padding-left: 20px;
}

.return-steps ol {
    display: grid;
    gap: 14px;
    padding-left: 22px;
}

.return-steps li,
.exchange-info li,
.delivery-policy li {
    padding-left: 4px;
}

.contact-section {
    grid-template-columns: 0.85fr 1fr;
}

.location-map {
    grid-column: 1 / -1;
}

.contact-list {
    display: grid;
    gap: 12px;
    list-style: none;
    color: var(--text-secondary);
}

.contact-form {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-form input,
.contact-form textarea,
.cart-form input {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 13px 14px;
    color: var(--text-primary);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.cart-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(182, 76, 104, 0.12);
}

#privacy-policy,
.content-in {
    max-width: 920px;
    color: var(--text-secondary);
}

#privacy-policy p,
.content-in p {
    margin-bottom: 12px;
}

#privacy-policy a,
.content-in a {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Cart modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    background: rgba(32, 33, 36, 0.58);
    backdrop-filter: blur(6px);
}

.cart-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(94vw, 760px);
    max-height: 86vh;
    overflow: auto;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 28px 90px rgba(16, 10, 11, 0.28);
    transform: translate(-50%, -50%);
}

.cart-header,
.cart-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
    color: var(--primary-dark);
    font-size: 22px;
}

.close-cart {
    color: var(--text-secondary);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.cart-body {
    padding: 20px 22px;
}

.show-cart {
    width: 100%;
    border-collapse: collapse;
}

.show-cart th,
.show-cart td {
    padding: 10px 8px;
    border-bottom: 1px solid var(--border-light);
    text-align: left;
    vertical-align: middle;
    font-size: 13px;
}

.show-cart th {
    color: var(--text-secondary);
    font-weight: 800;
}

.show-cart td img {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.quantity-btn {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: var(--bg-secondary);
    cursor: pointer;
}

.item-count {
    width: 44px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 4px;
    text-align: center;
}

.delete-item {
    border: 0;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 16px;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 840;
}

.cart-form {
    padding: 0 22px 18px;
}

.cart-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 700;
}

.cart-footer {
    border-top: 1px solid var(--border-color);
    border-bottom: 0;
}

.cart-footer button {
    flex: 1;
    min-height: 42px;
    border: 0;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 760;
}

.clear-cart,
.close-btn {
    background: var(--bg-secondary);
    color: var(--text-secondary);
}

.clear-cart:hover,
.close-btn:hover {
    background: var(--border-color);
}

.cart-notification {
    background: var(--primary-color) !important;
    border-radius: var(--radius-md) !important;
}

/* Responsive */
@media (max-width: 1180px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-layout {
        max-width: 660px;
    }
}

@media (max-width: 920px) {
    .header-nav,
    .header-phone {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-logo {
        position: static;
        transform: none;
    }

    .hero-layout,
    .product-detail-grid,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }

    .features-grid,
    .shipping-zones,
    .payment-grid,
    .guarantees {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-contacts {
        justify-items: start;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(100% - 32px, var(--max-width));
    }

    .hero {
        padding: 54px 0 58px;
        background:
            linear-gradient(90deg, rgba(42, 28, 25, 0.82) 0%, rgba(42, 28, 25, 0.62) 100%),
            url("/assets/hero-florist.jpg") 64% center / cover no-repeat;
    }

    .hero h1 {
        font-size: clamp(36px, 12vw, 54px);
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-actions,
    .product-actions,
    .section-header,
    .promo-inner {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .hero-actions .btn-white,
    .hero-actions .btn-ghost,
    .promo-inner .btn-white {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-card-title {
        font-size: 14px;
    }

    .product-card-info-overlay {
        padding: 44px 12px 12px;
    }

    .features-grid,
    .shipping-zones,
    .payment-grid,
    .guarantees,
    .product-meta {
        grid-template-columns: 1fr;
    }

    .promo-inner {
        padding: 30px 22px;
    }

    .show-cart {
        min-width: 620px;
    }

    .cart-body {
        overflow-x: auto;
    }
}

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

    .header-logo img {
        width: 138px;
    }

    .footer-logo img {
        width: 160px;
    }

    .cart-footer {
        flex-direction: column;
    }

    .cart-footer button {
        width: 100%;
    }
}
