:root {
    --green: #1a6b3a;
    --green-light: #2d9653;
    --green-pale: #e8f5ec;
    --cream: #faf8f3;
    --warm: #f5f0e8;
    --orange: #e85d2e;
    --gold: #d4a017;
    --text: #1a1a1a;
    --muted: #6b6b6b;
    --border: #e8e2d8;
    --white: #ffffff;
    --radius: 16px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo a {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
}

.logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-actions a {
    text-decoration: none;
}

.btn-cart, .btn-login, .btn-register, .btn-account, .btn-logout {
    background: var(--green);
    color: white;
    border: none;
    cursor: pointer;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-cart:hover, .btn-login:hover, .btn-register:hover {
    background: var(--green-light);
}

.btn-login, .btn-register {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-account {
    background: var(--orange);
}

.cart-badge {
    background: var(--orange);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Hero Section */
.hero {
    margin-top: 68px;
    min-height: 88vh;
    background: linear-gradient(135deg, #0f3d20 0%, #1a6b3a 40%, #2d9653 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 7%;
    position: relative;
    overflow: hidden;
}

.hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-pill span {
    width: 8px;
    height: 8px;
    background: #7ee89a;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,100%{opacity:1;transform:scale(1)}
    50%{opacity:0.6;transform:scale(1.3)}
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero h1 em {
    font-style: italic;
    color: #b8f0cb;
}

.hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--orange);
    color: white;
    border: none;
    cursor: pointer;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232,93,46,0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-num {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
    margin-top: 0.2rem;
}

.hero-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-img-card {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: rgba(255,255,255,0.1);
    position: relative;
    animation: floatUp 6s ease-in-out infinite;
}

@keyframes floatUp {
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-10px)}
}

.hero-img-card:nth-child(2) { margin-top: 2rem; animation-delay: -3s; }
.hero-img-card:nth-child(3) { margin-top: -2rem; animation-delay: -1.5s; }

.hero-img-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    padding: 1rem;
    color: white;
}

/* Sections */
section {
    padding: 6rem 7%;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.section-sub {
    color: var(--muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Categories */
.categories {
    background: var(--white);
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.2rem;
}

.cat-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s;
    text-decoration: none;
    display: block;
}

.cat-card:hover {
    border-color: var(--green);
    background: var(--green-pale);
    transform: translateY(-4px);
}

.cat-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 0.8rem;
    overflow: hidden;
    background: var(--border);
}

.cat-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.cat-count {
    font-size: 0.75rem;
    color: var(--muted);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.25s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.product-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--warm);
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
}

.product-badge.new { background: var(--green); }

.product-body {
    padding: 1rem 1.2rem 1.2rem;
}

.product-cat {
    font-size: 0.72rem;
    color: var(--green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
}

.product-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.8rem;
}

.product-price {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
}

.product-price-old {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 0.85rem;
    margin-left: 0.3rem;
}

.product-stars {
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.btn-add {
    background: var(--green);
    color: white;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s;
}

.btn-add:hover {
    background: var(--green-light);
}

/* Featured Section */
.featured {
    background: var(--warm);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1.5rem;
}

.featured-main {
    grid-row: span 2;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 500px;
    background: var(--border);
}

.featured-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-main:hover img {
    transform: scale(1.05);
}

.featured-main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    padding: 2rem;
}

.featured-main-content .tag {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.featured-main-content h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.featured-main-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.featured-main-content .price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.featured-main-content .price-val {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
}

.featured-small {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    transition: all 0.25s;
}

.featured-small:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.featured-small img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.featured-small-body {
    padding: 1rem 1.2rem;
}

/* Best Sellers */
.best-sellers {
    background: var(--white);
}

.bs-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3.5rem;
}

.bs-header-row .section-header {
    text-align: left;
    margin-bottom: 0;
}

.view-all {
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 2px solid var(--green);
    padding-bottom: 2px;
}

/* Latest Section */
.latest {
    background: #0f3d20;
}

.latest .section-tag {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.latest .section-title {
    color: white;
}

.latest .section-sub {
    color: rgba(255,255,255,0.6);
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.latest-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.25s;
}

.latest-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.latest-card-img {
    height: 200px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
}

.latest-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.latest-card-body {
    padding: 1.2rem;
}

.latest-card-body .product-name {
    color: white;
}

.latest-card-body .product-cat {
    color: #7ee89a;
}

.latest-card-body .product-price {
    color: #b8f0cb;
}

.latest-card-body .btn-add {
    background: rgba(255,255,255,0.2);
}

.latest-card-body .btn-add:hover {
    background: var(--green-light);
}

/* Testimonials */
.testimonials {
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    transition: box-shadow 0.25s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.author-role {
    font-size: 0.78rem;
    color: var(--muted);
}

.author-verified {
    font-size: 0.72rem;
    color: var(--green);
    font-weight: 600;
    margin-top: 0.1rem;
}

/* Newsletter */
.newsletter {
    background: var(--warm);
    padding: 6rem 7%;
}

.newsletter-inner {
    background: linear-gradient(135deg, #0f3d20, #1a6b3a);
    border-radius: 28px;
    padding: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.newsletter-content .section-tag {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
}

.newsletter-content h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.newsletter-perks {
    margin-top: 1.5rem;
}

.perk {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
}

.perk::before {
    content: '✓';
    background: rgba(255,255,255,0.2);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.newsletter-form .form-group input {
    width: 100%;
    padding: 1rem 1.4rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-form .form-group input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1.1rem;
}

.form-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
    margin-top: 0.8rem;
}

/* Footer */
footer {
    background: #0a2714;
    padding: 3rem 7% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo a {
    font-size: 1.4rem;
    color: white;
    text-decoration: none;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin-top: 0.8rem;
    line-height: 1.6;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
}

.social-btn:hover {
    background: rgba(255,255,255,0.16);
    color: white;
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    background: #0a2714;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}

/* Toast */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    background: var(--green);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    transform: translateX(200%);
    transition: transform 0.3s ease;
}

.toast.show {
    transform: none;
}

/* Cart Page */
.cart-page, .checkout-page {
    padding: 120px 5% 60px;
    min-height: calc(100vh - 300px);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-items table {
    width: 100%;
    background: white;
    border-radius: var(--radius);
    border-collapse: collapse;
    overflow: hidden;
}

.cart-items th, .cart-items td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-control button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
}

.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
}

.cart-summary {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.cart-summary h3 {
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
    margin-top: 0.8rem;
}

.free-delivery-note {
    background: var(--green-pale);
    padding: 0.5rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin: 0.8rem 0;
}

.checkout-btn, .place-order {
    width: 100%;
    margin-top: 1rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--green);
    text-decoration: none;
}

/* Checkout Page */
.checkout-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.form-section {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.form-section h3 {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.payment-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.order-summary {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    height: fit-content;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a6b3a, #2d9653);
}

.auth-container {
    width: 100%;
    max-width: 420px;
    padding: 2rem;
}

.auth-box {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
}

.auth-box .logo {
    margin-bottom: 1rem;
}

.auth-box h2 {
    margin-bottom: 0.5rem;
}

.auth-box p {
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.auth-box .form-group {
    margin-bottom: 1rem;
}

.auth-box input {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
}

.auth-box .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

.auth-link {
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.auth-link a {
    color: var(--green);
    text-decoration: none;
}

.error-message {
    background: #fee;
    color: #c00;
    padding: 0.8rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Order Success */
.order-success {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.success-box {
    text-align: center;
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Shop Page */
.shop-page {
    padding: 100px 5% 60px;
}

.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-sidebar {
    margin-bottom: 2rem;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    justify-content: center;
}

.category-filter a {
    padding: 0.5rem 1.5rem;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text);
    border: 1px solid var(--border);
}

.category-filter a.active, .category-filter a:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 3rem 5% 4rem;
    }
    
    .hero-image-grid {
        display: none;
    }
    
    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .featured-main {
        grid-row: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .newsletter-inner {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
    
    nav .nav-links {
        display: none;
    }
    
    .cart-content, .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .cart-items {
        overflow-x: auto;
    }
}