/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand palette (botanical luxe) */
    --primary-color: #1f5a3c;      /* evergreen */
    --primary-light: #2d7a55;
    --secondary-color: #7a5c47;    /* warm wood */
    --accent-color: #d8b07a;       /* soft gold */
    --rose: #c75a78;

    /* Neutrals */
    --text-dark: #121714;
    --text-medium: #3a4640;
    --text-light: #63736b;
    --white: #ffffff;

    /* Surfaces */
    --bg-light: #fbfaf7;
    --bg-off-white: #f6f3ee;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: rgba(255, 255, 255, 0.92);
    --border-color: rgba(18, 23, 20, 0.10);

    /* Effects */
    --shadow: 0 10px 30px rgba(18, 23, 20, 0.08);
    --shadow-hover: 0 18px 50px rgba(18, 23, 20, 0.12);
    --shadow-card: 0 10px 22px rgba(18, 23, 20, 0.07);
    --ring: 0 0 0 4px rgba(31, 90, 60, 0.16);

    /* Radius */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background:
        radial-gradient(1200px 600px at 15% -10%, rgba(199, 90, 120, 0.18), transparent 60%),
        radial-gradient(900px 500px at 85% 0%, rgba(31, 90, 60, 0.18), transparent 55%),
        radial-gradient(800px 520px at 50% 110%, rgba(216, 176, 122, 0.14), transparent 55%),
        var(--bg-light);
}

/* Elegant headline typography (no external fonts required) */
h1, h2, h3, h4 {
    font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    letter-spacing: -0.4px;
}

a {
    color: inherit;
}

::selection {
    background: rgba(199, 90, 120, 0.22);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Subtle botanical pattern overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill='none' stroke='%23121714' stroke-opacity='0.12' stroke-width='1.2'%3E%3Cpath d='M20 210c55-30 85-70 100-150'/%3E%3Cpath d='M120 60c30 55 70 85 120 100'/%3E%3Cpath d='M88 132c18-26 40-40 66-42'/%3E%3Cpath d='M170 170c-30-10-55-30-78-62'/%3E%3C/g%3E%3Cg fill='%231f5a3c' fill-opacity='0.08'%3E%3Ccircle cx='120' cy='62' r='2.5'/%3E%3Ccircle cx='88' cy='132' r='2.5'/%3E%3Ccircle cx='170' cy='170' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 280px 280px;
    mix-blend-mode: multiply;
}

/* Better focus visibility */
:focus-visible {
    outline: none;
    box-shadow: var(--ring);
    border-radius: 10px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(18, 23, 20, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(18, 23, 20, 0.08);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.2;
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    padding: 0.4rem;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(18, 23, 20, 0.08);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(18, 23, 20, 0.05);
}

.nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
    letter-spacing: 0.3px;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
}

.nav a:hover {
    color: var(--primary-color);
    background: rgba(31, 90, 60, 0.08);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
    display: none;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 0.55rem;
    color: var(--text-medium);
    transition: color 0.2s ease;
    border-radius: 999px;
    border: 1px solid rgba(18, 23, 20, 0.08);
    background: rgba(255, 255, 255, 0.55);
}

.cart-icon:hover {
    color: var(--primary-color);
    box-shadow: 0 10px 22px rgba(18, 23, 20, 0.08);
}

.cart-icon svg {
    display: block;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--rose), var(--primary-color));
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    border: 2px solid var(--white);
}

/* Cart Panel */
.cart-panel {
    position: fixed;
    top: 72px;
    right: 20px;
    width: 340px;
    max-height: calc(100vh - 100px);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-hover);
    border: 1px solid var(--border-color);
    display: none;
    flex-direction: column;
    z-index: 1200;
    overflow: hidden;
}

.cart-panel.open {
    display: flex;
}

.cart-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-panel-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-close {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-light);
}

.cart-items {
    padding: 0.75rem 1.25rem;
    flex: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-item-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cart-item-qty {
    font-weight: 600;
    color: var(--primary-color);
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.cart-empty {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    padding: 0.75rem 0;
}

.cart-panel-footer {
    padding: 0.75rem 1.25rem 1.25rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
}

.cart-total-amount {
    color: var(--primary-color);
}

.cart-checkout {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    background:
        radial-gradient(900px 520px at 20% 35%, rgba(199, 90, 120, 0.40), transparent 60%),
        radial-gradient(700px 520px at 78% 25%, rgba(216, 176, 122, 0.35), transparent 55%),
        radial-gradient(980px 680px at 55% 85%, rgba(31, 90, 60, 0.55), transparent 58%),
        linear-gradient(135deg, #0f3f2b 0%, #1f5a3c 45%, #2d7a55 100%);
    height: 88vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(900px 420px at 50% 25%, rgba(255, 255, 255, 0.08), transparent 60%),
        rgba(0, 0, 0, 0.18);
    z-index: 1;
}

.hero-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(30px);
    opacity: 0.65;
    transform: translate3d(0, 0, 0);
    animation: floaty 10s ease-in-out infinite;
}

.blob-1 {
    width: 420px;
    height: 420px;
    left: -140px;
    top: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(216, 176, 122, 0.85), rgba(199, 90, 120, 0.10) 60%, transparent 72%);
    border-radius: 52% 48% 55% 45% / 48% 55% 45% 52%;
    animation-duration: 12s;
}

.blob-2 {
    width: 520px;
    height: 520px;
    right: -220px;
    top: 40px;
    background: radial-gradient(circle at 35% 35%, rgba(199, 90, 120, 0.78), rgba(31, 90, 60, 0.12) 60%, transparent 72%);
    border-radius: 55% 45% 48% 52% / 42% 60% 40% 58%;
    animation-duration: 14s;
    animation-delay: -2s;
}

.blob-3 {
    width: 560px;
    height: 560px;
    left: 25%;
    bottom: -300px;
    background: radial-gradient(circle at 45% 45%, rgba(31, 90, 60, 0.85), rgba(216, 176, 122, 0.12) 58%, transparent 72%);
    border-radius: 45% 55% 58% 42% / 55% 42% 58% 45%;
    animation-duration: 16s;
    animation-delay: -6s;
}

@keyframes floaty {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -18px, 0) scale(1.03); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 3rem 2rem;
}

.hero-kicker {
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto 1.1rem;
    max-width: fit-content;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-content h2 {
    font-size: 3.4rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: rgba(255, 255, 255, 0.88);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.25rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
    color: #0f3f2b;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.82));
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.25rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}

.btn-add-cart {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 20px rgba(31, 90, 60, 0.22);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary-light), #3b9c6e);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(31, 90, 60, 0.28);
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

/* Highlights strip */
.highlights {
    padding: 1.2rem 0 0.25rem;
    background: transparent;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: -2.6rem;
}

.highlight-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    background: var(--surface);
    border: 1px solid rgba(18, 23, 20, 0.10);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, rgba(31, 90, 60, 0.12), rgba(199, 90, 120, 0.10));
    border: 1px solid rgba(18, 23, 20, 0.08);
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.highlight-text strong {
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.highlight-text span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Categories Section */
.categories {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(246, 243, 238, 0.65), rgba(246, 243, 238, 0.9));
}

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

.category-card {
    background: var(--surface-strong);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-card);
    cursor: pointer;
    border: 1px solid rgba(18, 23, 20, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(160px 100px at 20% 0%, rgba(216, 176, 122, 0.28), transparent 60%),
        radial-gradient(140px 120px at 90% 10%, rgba(199, 90, 120, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px var(--shadow-hover);
    border-color: rgba(31, 90, 60, 0.30);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}

.category-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.category-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: transparent;
}

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

.product-card {
    background: var(--surface-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 23, 20, 0.10);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px var(--shadow-hover);
    border-color: rgba(31, 90, 60, 0.32);
}

.product-image {
    background:
        radial-gradient(240px 160px at 20% 30%, rgba(216, 176, 122, 0.20), transparent 55%),
        radial-gradient(260px 180px at 80% 20%, rgba(199, 90, 120, 0.12), transparent 60%),
        linear-gradient(135deg, rgba(31, 90, 60, 0.06) 0%, rgba(31, 90, 60, 0.02) 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    padding: 2rem;
    border-bottom: 1px solid rgba(18, 23, 20, 0.08);
}

.product-info {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.product-desc {
    color: var(--text-medium);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(18, 23, 20, 0.08);
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, rgba(246, 243, 238, 0.65), rgba(246, 243, 238, 0.92));
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.0625rem;
    color: var(--text-medium);
    margin-bottom: 1.75rem;
    text-align: center;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--surface-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(18, 23, 20, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px var(--shadow-hover);
    border-color: rgba(31, 90, 60, 0.32);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.feature h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    color: var(--primary-color);
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.contact-form {
    background: var(--surface-strong);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(18, 23, 20, 0.10);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(18, 23, 20, 0.12);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(31, 90, 60, 0.55);
    box-shadow: var(--ring);
    background: rgba(255, 255, 255, 0.92);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background:
        radial-gradient(900px 420px at 10% 20%, rgba(199, 90, 120, 0.18), transparent 60%),
        radial-gradient(900px 480px at 90% 0%, rgba(216, 176, 122, 0.16), transparent 55%),
        #0f1914;
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.9375rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9375rem;
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.social-links a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.btn-newsletter {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-newsletter:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1.25rem;
    }

    .nav ul {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        border-radius: var(--radius-lg);
    }

    .hero {
        height: 75vh;
        min-height: 500px;
    }

    .hero-content h2 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .highlight-grid {
        grid-template-columns: 1fr;
        margin-top: -2.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 2rem 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.875rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .blob { animation: none; }
    .hero-content h2,
    .hero-subtitle,
    .hero-buttons { animation: none; }
    .category-card,
    .product-card,
    .feature,
    .btn-primary,
    .btn-secondary,
    .btn-add-cart,
    .btn-newsletter { transition: none; }
}