/* Color Scheme Variables */
:root {
    --primary-color: #1f5d46;
    --primary-light: #4f8f72;
    --primary-dark: #143d30;
    --secondary-color: #c76f82;
    --accent-color: #d8909d;
    --success-color: #2f7c58;
    --warning-color: #c58a22;
    --error-color: #f24747;
    --text-primary: #25332d;
    --text-secondary: #66756e;
    --bg-primary: #ffffff;
    --bg-secondary: #f6f2ec;
    --border-color: #e5ddd2;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: var(--bg-primary);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white !important;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.catalog-note {
    max-width: 760px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.catalog-note h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.catalog-note p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta .btn-outline {
    border-color: rgba(255, 255, 255, 0.72);
}

.content-page {
    padding: 3rem 0 4rem;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-lead {
    max-width: 820px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-section,
.info-section {
    max-width: 920px;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.contact-list,
.copy-list {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
}

.contact-list li,
.copy-list li {
    margin-bottom: 0.7rem;
}

.contact-list a,
.footer-minimal-right a {
    color: var(--primary-color);
    text-decoration: none;
}

.feedback-section,
.location-map {
    margin-top: 1.5rem;
}

/* Header Styles */

.floral-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-primary);
    box-shadow: 0 8px 28px rgba(37, 51, 45, 0.08);
}

.floral-servicebar {
    background: var(--primary-dark);
    color: #fff8f2;
}

.floral-servicebar-inner {
    max-width: 1400px;
    min-height: 36px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    font-size: 0.86rem;
    font-weight: 650;
    white-space: nowrap;
}

.floral-servicebar-inner::-webkit-scrollbar {
    display: none;
}

.floral-servicebar a {
    color: #fff8f2;
    text-decoration: none;
}

.servicebar-note {
    margin-right: auto;
    color: #ffd8df;
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 0;
}

.floral-mainbar {
    border-bottom: 1px solid var(--border-color);
    background:
        linear-gradient(90deg, rgba(199, 111, 130, 0.1), transparent 28%),
        var(--bg-primary);
}

.floral-mainbar-inner {
    max-width: 1400px;
    min-height: 86px;
    margin: 0 auto;
    padding: 0.85rem 2rem;
    display: grid;
    grid-template-columns: minmax(220px, 330px) minmax(360px, 1fr) auto;
    align-items: center;
    gap: 1.5rem;
}

.floral-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--text-primary);
    text-decoration: none;
    min-width: 0;
}

.floral-brand-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex: 0 0 auto;
}

.floral-brand-copy {
    display: grid;
    gap: 0.16rem;
    min-width: 0;
}

.floral-brand-copy strong {
    font-size: 1.28rem;
    line-height: 1.05;
    font-weight: 850;
}

.floral-brand-copy small {
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 650;
}

.floral-nav {
    justify-self: center;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.32rem;
    border: 1px solid rgba(199, 111, 130, 0.2);
    border-radius: 8px;
    background: rgba(246, 242, 236, 0.84);
    overflow-x: auto;
    scrollbar-width: none;
}

.floral-nav::-webkit-scrollbar {
    display: none;
}

.floral-nav a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 0.75rem;
    color: var(--text-primary);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 750;
    white-space: nowrap;
}

.floral-nav a:hover {
    color: var(--primary-dark);
    background: #ffffff;
}

.floral-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
}

.floral-consult,
.floral-cart {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.floral-consult {
    padding: 0 1rem;
    color: var(--primary-dark);
    border: 1px solid rgba(31, 93, 70, 0.22);
    background: #fffaf6;
}

.floral-cart {
    position: relative;
    padding: 0 1.05rem;
    border: 0;
    background: var(--secondary-color);
    color: #fff;
    cursor: pointer;
}

.floral-cart:hover,
.floral-consult:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.floral-cart .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--primary-dark);
    color: #fff;
    border: 2px solid var(--bg-primary);
    font-size: 0.75rem;
    line-height: 18px;
}

/* Hero Styles */

.hero-gradient-wave {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #7f3d4b 100%);
    padding: 4.5rem 0 5rem;
    color: white;
    border-radius: 0 0 1rem 1rem;
    overflow: hidden;
}

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

.hero-wave-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-wave-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero-wave-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-wave-desc {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-wave-search {
    display: flex;
    gap: 0;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-wave-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-wave-search input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px 0 0 50px;
    color: white;
    font-size: 1rem;
}

.hero-wave-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-search {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 0 50px 50px 0;
    font-weight: 700;
    cursor: pointer;
}

.hero-wave-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-wave-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    position: relative;
}

.hero-photo {
    width: min(100%, 560px);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    display: block;
}

.floating-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--accent-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    animation: float 3s ease-in-out infinite;
}

.badge-2 {
    top: auto;
    bottom: 2rem;
    left: 2rem;
    right: auto;
    background: var(--success-color);
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
    .hero-wave-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-wave-search {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-wave-tags {
        justify-content: center;
    }
}

/* Footer Styles */

.footer-minimal {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 5rem;
}

.footer-minimal-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-minimal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-minimal-left {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-minimal-center {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-minimal-center a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-minimal-center a:hover {
    color: var(--primary-color);
}

.footer-minimal-center span {
    color: var(--border-color);
}

.footer-minimal-right {
    color: var(--text-secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-minimal-row {
        flex-direction: column;
        text-align: center;
    }
}

/* Card Styles */

.card-hover-lift {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

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

.card-hover-lift:hover .card-image-wrapper img {
    transform: scale(1.06);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(31, 93, 70, 0.92);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.card-title-link {
    text-decoration: none;
}

.card-title-link:hover .card-title {
    color: var(--primary-color);
}

.card-rating {
    color: var(--warning-color);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.card-rating span {
    color: var(--text-secondary);
}

.card-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.card-price {
    font-size: 1.45rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-add-cart {
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.card-hover-lift .product-card-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.card-hover-lift .product-card-stars { display: flex; gap: 1px; color: var(--accent-color, #fbbf24); }
.card-hover-lift .product-card-stars svg { width: 13px; height: 13px; fill: currentColor; stroke: none; }
.card-hover-lift .product-card-stars .empty { color: var(--border-color, #d1d5db); }
.card-hover-lift .product-card-stars .half-filled { margin-left: -14px; clip-path: inset(0 50% 0 0); }
.card-hover-lift .product-card-rating span { font-size: 12px; color: var(--text-secondary); }

/* Button Styles */

/* Base button styles */
.btn {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
}

.btn-primary, .btn-shadow {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
                0 1px 3px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:hover, .btn-shadow:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15),
                0 4px 8px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary:active, .btn-shadow:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.12),
                0 2px 4px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(124, 58, 237, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(124, 58, 237, 0.4);
}

.btn-outline {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.add-to-cart, .product-btn, .cart-button {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1),
                0 1px 3px rgba(0, 0, 0, 0.08);
}

.add-to-cart:hover, .product-btn:hover, .cart-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15),
                0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Item Page Styles */

/* Modern Layout Styles */
.item-modern {
    min-height: 100vh;
}

.modern-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
}

.modern-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 20px;
}

.image-showcase {
    position: relative;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.showcase-img {
    width: 100%;
    height: auto;
    display: block;
}

.product-details {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modern-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.modern-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.modern-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.modern-rating .stars {
    color: #fbbf24;
    font-size: 20px;
}

.modern-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.price-main {
    font-size: 36px;
    font-weight: 700;
}

.modern-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 30px;
}

.modern-cta {
    margin-bottom: 30px;
}

.cta-primary {
    width: 100%;
    padding: 18px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modern-details {
    padding: 60px 0;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.detail-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.detail-card p {
    color: #666;
    line-height: 1.8;
}

.related-products {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.related-products h2 {
    margin-bottom: 30px;
}

@media (max-width: 968px) {
    .modern-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}

@media (max-width: 980px) {
    .floral-servicebar-inner {
        justify-content: flex-start;
        gap: 1rem;
    }

    .floral-mainbar-inner {
        grid-template-columns: 1fr auto;
        gap: 0.9rem 1rem;
    }

    .floral-nav {
        grid-column: 1 / -1;
        justify-self: stretch;
        justify-content: center;
    }

    .hero-gradient-wave {
        padding-top: 3.5rem;
    }

    .hero-wave-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 640px) {
    .floral-servicebar-inner {
        min-height: 34px;
        padding: 0 1rem;
        font-size: 0.8rem;
    }

    .floral-servicebar-inner span:not(.servicebar-note) {
        display: none;
    }

    .floral-mainbar-inner {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        min-height: 0;
        gap: 0.8rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .floral-brand-img {
        width: 46px;
        height: 46px;
    }

    .floral-brand-copy strong {
        font-size: 1.05rem;
    }

    .floral-brand-copy small {
        font-size: 0.76rem;
    }

    .floral-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
        gap: 0.4rem;
        width: 100%;
        overflow: visible;
    }

    .floral-nav a {
        justify-content: center;
        min-height: 32px;
        padding: 0 0.5rem;
        font-size: 0.88rem;
    }

    .floral-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.55rem;
    }

    .floral-consult,
    .floral-cart {
        width: 100%;
        min-height: 42px;
        padding: 0 0.75rem;
        font-size: 0.9rem;
    }

    .hero-wave-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-wave-title {
        font-size: 2.1rem;
    }

    .hero-wave-desc {
        font-size: 1.05rem;
    }

    .hero-wave-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-wave-actions .btn,
    .cta-actions .btn {
        width: 100%;
    }

    .hero-photo {
        width: 100%;
    }

    .content-page h1 {
        font-size: 2rem;
    }

    .contact-section,
    .info-section,
    .catalog-note,
    .detail-card {
        padding: 1.25rem;
    }

    .footer-minimal-center {
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.55rem 0.85rem;
    }

    .footer-minimal-center span {
        display: none;
    }

    .footer-minimal-left,
    .footer-minimal-right {
        max-width: 100%;
    }

    .card-price-row {
        align-items: stretch;
    }

    .btn-add-cart {
        width: 100%;
    }
}
