/* Verde. — Premium Flower Shop Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

:root {
    --bg-color: #dde6da;
    --bg-light: #e8efe5;
    --accent-color: #78ad66;
    --accent-dark: #5a8f4a;
    --accent-light: #a3d193;
    --text-color: #0d0f0c;
    --text-muted: #4a5446;
    --text-light: #6a7466;
    --white: #ffffff;
    --border-color: #c5d4c0;
    --danger-color: #c95d5d;
    --gray-bg: #f0f4ee;
    --card-shadow: 0 2px 16px rgba(13, 15, 12, 0.06);
    --card-shadow-hover: 0 8px 32px rgba(13, 15, 12, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ─── Container ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── HEADER ─── */
header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(90, 143, 74, 0.3);
}

header .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 0;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--white);
    letter-spacing: -0.03em;
    transition: opacity var(--transition);
}

.logo:hover {
    opacity: 0.85;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-xs);
    transition: all var(--transition);
    position: relative;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.nav-links .cart-link {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links .cart-link:hover {
    background: rgba(255,255,255,0.25);
}

.cart-badge {
    background: var(--white);
    color: var(--accent-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.1rem 0.45rem;
    border-radius: 50px;
    min-width: 1.3rem;
    text-align: center;
    line-height: 1.4;
}

/* ─── HERO Section ─── */
.hero {
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--bg-color) 100%);
    padding: 5rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23dde6da' d='M0,40 C360,80 720,0 1080,40 C1260,60 1360,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.hero h1 em {
    font-style: italic;
    font-weight: 500;
    opacity: 0.9;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 540px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
}

.hero .btn-hero {
    display: inline-block;
    background: var(--white);
    color: var(--accent-dark);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero .btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* SVG leaf decoration */
.hero-leaf {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.hero-leaf-left {
    left: -40px;
    top: 20%;
    width: 220px;
    transform: rotate(-15deg);
}

.hero-leaf-right {
    right: -30px;
    bottom: 15%;
    width: 180px;
    transform: rotate(25deg) scaleX(-1);
}

/* ─── Section titles ─── */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    color: var(--text-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.section-header .view-all {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-decoration: none;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.section-header .view-all:hover {
    opacity: 0.7;
}

/* ─── Product cards ─── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
    transition: all var(--transition);
    border: none;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.product-card .card-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--gray-bg);
}

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

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

.product-card .card-image .card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-card .card-image .svg-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-bg) 0%, var(--bg-light) 100%);
}

.product-card .card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.product-card .card-body .composition {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem 1.5rem;
}

.product-card .price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.product-card .price .currency {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.7;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(120, 173, 102, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    border-radius: var(--radius-xs);
}

.btn-cart {
    background: var(--accent-color);
    color: var(--white);
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-cart:hover {
    background: var(--accent-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-color);
    border: 1.5px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--gray-bg);
    border-color: var(--accent-color);
    box-shadow: none;
}

.btn-full {
    width: 100%;
}

.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--white);
}

.btn-danger {
    background: var(--danger-color);
    color: var(--white);
}

.btn-danger:hover {
    background: #b14d4d;
}

/* ─── Search & Filters bar ─── */
.search-filters-section {
    margin-bottom: 2rem;
}

.search-bar {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.search-bar .search-input-wrap {
    flex: 1;
    position: relative;
}

.search-bar .search-input-wrap .search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    font-size: 1rem;
}

.search-bar input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-color);
    transition: border-color var(--transition);
}

.search-bar input[type="text"]:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(120, 173, 102, 0.15);
}

.search-bar button {
    white-space: nowrap;
}

.filters-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-chips {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex: 1;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--white);
    color: var(--text-muted);
    border: 1.5px solid var(--border-color);
    transition: all var(--transition);
    cursor: pointer;
}

.filter-chip:hover {
    border-color: var(--accent-color);
    color: var(--accent-dark);
}

.filter-chip.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.filter-sort select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xs);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--white);
    color: var(--text-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234a5446' viewBox='0 0 16 16'%3E%3Cpath d='M8 12L2 6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    transition: border-color var(--transition);
}

.filter-sort select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.price-range {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-range input[type="number"] {
    width: 90px;
    padding: 0.4rem 0.5rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xs);
    font-family: inherit;
    font-size: 0.85rem;
    text-align: center;
    background: var(--white);
    color: var(--text-color);
}

.price-range input[type="number"]:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* ─── Product detail page ─── */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 4rem;
}

.product-detail .detail-image {
    position: relative;
    overflow: hidden;
}

.product-detail .detail-image img,
.product-detail .detail-image .svg-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.product-info {
    padding: 2.5rem 2.5rem 2.5rem 0;
    display: flex;
    flex-direction: column;
}

.product-info .breadcrumb {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-info .breadcrumb a {
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 600;
}

.product-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-info .category-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--accent-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
}

.product-info .price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.product-info .description {
    margin-bottom: 2rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.product-info .details-box {
    background: var(--gray-bg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-color);
}

.product-info .details-box h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.product-info .details-box p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-info .action-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

/* ─── Cart ─── */
.cart-page {
    margin-top: 3rem;
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 2rem;
}

.cart-table th, .cart-table td {
    padding: 1.25rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--bg-light);
}

.cart-table th {
    background: var(--gray-bg);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-table .cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-xs);
    overflow: hidden;
    background: var(--gray-bg);
}

.cart-table .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xs);
    overflow: hidden;
}

.quantity-control button {
    background: var(--gray-bg);
    border: none;
    width: 2.2rem;
    height: 2.2rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background var(--transition);
    color: var(--text-color);
}

.quantity-control button:hover {
    background: var(--accent-light);
}

.quantity-control input {
    width: 2.5rem;
    text-align: center;
    border: none;
    border-left: 1.5px solid var(--border-color);
    border-right: 1.5px solid var(--border-color);
    font-size: 0.95rem;
    font-weight: 700;
    height: 2.2rem;
    font-family: inherit;
    background: var(--white);
}

.cart-total {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    text-align: right;
    margin-bottom: 2rem;
}

.cart-total h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* ─── Checkout ─── */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.checkout-panel {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.checkout-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--bg-light);
}

/* ─── Forms ─── */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xs);
    background: var(--white);
    color: var(--text-color);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(120, 173, 102, 0.15);
}

/* ─── Alerts ─── */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
}

.alert-success {
    background: rgba(120, 173, 102, 0.15);
    color: var(--accent-dark);
    border: 1.5px solid var(--accent-light);
}

.alert-danger {
    background: rgba(201, 93, 93, 0.1);
    color: var(--danger-color);
    border: 1.5px solid rgba(201, 93, 93, 0.3);
}

/* ─── About / Philosophy section ─── */
.about-section {
    background: var(--white);
    padding: 4.5rem 2rem;
    border-radius: var(--radius);
    margin-bottom: 4rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.about-section::before,
.about-section::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--accent-color);
    opacity: 0.04;
}

.about-section::before {
    top: -40px;
    left: -40px;
}

.about-section::after {
    bottom: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
}

.about-section h2 {
    margin-bottom: 1.5rem;
}

.about-section p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ─── Features strip ─── */
.features-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3.5rem 0 4rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition);
}

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

.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(120, 173, 102, 0.12);
    border-radius: 12px;
    font-size: 1.5rem;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.feature-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--white);
    border-top: 1.5px solid var(--border-color);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    color: var(--text-color);
    font-size: 1.6rem;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h5 {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid var(--bg-light);
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ─── Success page ─── */
.success-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    max-width: 600px;
    margin: 3rem auto;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(120, 173, 102, 0.3);
}

.delivery-estimate {
    background: var(--gray-bg);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-color);
    text-align: left;
    margin-bottom: 2rem;
}

.receipt-section {
    text-align: left;
    font-size: 0.9rem;
}

.receipt-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* ─── Empty state ─── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.empty-state .empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.empty-state p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-info {
        padding: 1.5rem;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .nav-links {
        gap: 0.25rem;
    }

    .nav-links a {
        padding: 0.4rem 0.6rem;
        font-size: 0.82rem;
    }

    .search-bar {
        flex-direction: column;
    }

    .filters-row {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-table th:nth-child(1),
    .cart-table td:nth-child(1) {
        display: none;
    }
}

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

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Animations ─── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* ─── SVG Flower Placeholder (inline) ─── */
.svg-flower-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-bg), var(--bg-light));
}
