/* Petit Atelier Hana - Stylesheet */
/* Elegant, romantic, botanical aesthetic */

/* CSS Variables - Color Palette */
:root {
    /* Primary Colors - Brown & White Theme */
    --color-cream: #FAFAFA;
    --color-cream-dark: #F0E6E0;
    --color-brown: #5D4037;
    --color-brown-light: #7D5E53;
    --color-brown-dark: #3E2723;
    --color-tan: #D7CCC8;
    --color-tan-light: #EFEBE9;
    --color-gold: #BCAAA4;
    --color-gold-light: #D7CCC8;
    
    /* Accent Colors */
    --color-blush: #EFEBE9;
    --color-blush-dark: #D7CCC8;
    --color-rose: #BCAAA4;
    --color-sage: #A5D6A7;
    
    /* Text Colors */
    --color-text: #3E2723;
    --color-text-light: #5D4037;
    --color-text-muted: #7D5E53;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-brown-dark);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
    margin-bottom: var(--space-sm);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95); /* Original white with transparency */
    backdrop-filter: blur(10px); /* Restore blur effect */
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    height: 113px;
}

.logo-image {
    height: 113px; /* Reduced by 0.75 factor */
    width: auto;
    display: block;
    /* Removed circular styling for original shape */
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo {
        height: 90px;
    }
    .logo-image {
        height: 90px;
    }
    .footer-brand .logo-image {
        height: 90px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
    .footer-brand .logo-image {
        height: 40px;
    }
}

/* Text logo fallback - visually hidden but accessible */
.logo-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* For footer (same size as menu logo) */
.footer-brand .logo-image {
    height: 113px; /* Match menu logo size */
}

/* Original text logo styles kept for backward compatibility */
.logo-text-main {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-brown);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.logo-text-sub {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-brown);
    letter-spacing: 0.05em;
    margin-top: -0.5rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text); /* Original dark color */
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-brown);
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-text);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-brown);
}

/* Main Content */
main {
    margin-top: 100px;
    min-height: calc(100vh - 100px - 300px);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xxl) var(--space-md);
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 600px;
}

.hero-tag {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-brown-light);
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.hero-title {
    margin-bottom: var(--space-md);
    color: var(--color-brown);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, var(--color-blush) 0%, var(--color-cream-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    text-align: center;
    min-height: 200px;
    aspect-ratio: 1;
}

.placeholder-image.hero-placeholder {
    width: 100%;
    max-width: 500px;
    min-height: 500px;
}

.placeholder-image span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-brown);
}

.placeholder-image small {
    font-size: 0.85rem;
    margin-top: var(--space-xs);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-brown);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-brown-light);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-brown);
    border: 1px solid var(--color-brown);
    /* Compensate for border so total size matches primary buttons */
    padding: calc(1rem - 1px) calc(2.5rem - 1px);
}

.btn-secondary:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.btn-text {
    background: none;
    color: var(--color-brown);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-gold);
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

/* Product card button container */
.product-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: auto; /* Push to bottom of flex container */
    padding-top: var(--space-sm);
}

.btn-full {
    width: 100%;
}

/* Featured Section */
.featured {
    padding: var(--space-xxl) 0;
    background: var(--color-white);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-brown);
}

.section-title.center {
    text-align: center;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
}

/* Product Cards */
.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%; /* Make all cards same height in grid */
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
}

.product-image .placeholder-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
    min-height: auto;
}

.product-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-real-image:hover {
    transform: scale(1.05);
}

.product-badge {
    background: rgba(125, 94, 83, 0.65);
    color: var(--color-white);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    backdrop-filter: blur(2px);
}

.product-badges {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.quick-add {
    position: absolute;
    bottom: var(--space-sm);
    right: var(--space-sm);
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.quick-add:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.product-info {
    padding: var(--space-md);
    flex: 1; /* Take remaining space */
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-brown);
    margin-bottom: var(--space-xs);
}

.product-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
    line-height: 1.5;
    flex: 1; /* Take available space, pushing buttons to bottom */
    min-height: 3em; /* Minimum height for consistency */
}

.product-price {
    margin-bottom: var(--space-sm);
}

.current-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-brown);
    font-weight: 500;
}

.original-price {
    font-size: 1rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-left: var(--space-xs);
}

/* About Section */
.about-preview {
    padding: var(--space-xxl) 0;
    background: var(--color-cream-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-content {
    max-width: 500px;
}

.about-content h2 {
    color: var(--color-brown);
    margin-bottom: var(--space-md);
}

.about-content p {
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

/* Values Section */
.values {
    padding: var(--space-xxl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.value-item {
    text-align: center;
    padding: var(--space-md);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.value-item h3 {
    font-family: var(--font-heading);
    color: var(--color-brown);
    font-size: 1.2rem;
    margin-bottom: var(--space-xs);
}

.value-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Page Header - Elegant Photo Background */
.page-header {
    padding: var(--space-xxl) 0;
    text-align: center;
    background: 
        linear-gradient(135deg, 
            rgba(93, 64, 55, 0.3) 0%,
            rgba(62, 39, 35, 0.4) 50%,
            rgba(93, 64, 55, 0.3) 100%),
        url('../images/banner/IMG_2630.JPEG') center 90%/60% no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--space-sm);
    font-size: 3.5rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Mobile adjustments for banner */
@media (max-width: 768px) {
    .page-header {
        padding: var(--space-xl) 0;
        background-size: cover;
        background-position: center center;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}

/* Products Section */
.products-section {
    padding: var(--space-xl) 0 var(--space-xxl);
    background: var(--color-white);
}

/* Cart Page */
.cart-section {
    padding: var(--space-xl) 0 var(--space-xxl);
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.cart-items h2 {
    margin-bottom: var(--space-lg);
    color: var(--color-brown);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto 40px;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-cream-dark);
}

.cart-item-image {
    width: 100px;
}

.cart-item-image .placeholder-image {
    min-height: 100px;
}

.cart-item-details h3 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.cart-item-price {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-cream-dark);
    background: var(--color-white);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.remove-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #e74c3c;
}

.cart-summary {
    background: var(--color-cream);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    height: fit-content;
}

.cart-summary h2 {
    margin-bottom: var(--space-md);
    color: var(--color-brown);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    color: var(--color-text-light);
}

.summary-row.total {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-brown);
    border-top: 1px solid var(--color-blush);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
}

.cart-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-brown-light);
    margin: var(--space-sm) 0;
}

.cart-empty {
    text-align: center;
    padding: var(--space-xxl) var(--space-md);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.cart-empty h2 {
    color: var(--color-brown);
    margin-bottom: var(--space-sm);
}

.cart-empty p {
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

/* Contact Page */
.contact-section {
    padding: var(--space-xl) 0 var(--space-xxl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
}

.contact-info h2 {
    color: var(--color-brown);
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-icon {
    font-size: 1.5rem;
}

.contact-details h3 {
    font-size: 1rem;
    color: var(--color-brown);
    margin-bottom: var(--space-xs);
}

.contact-details p {
    margin-bottom: var(--space-xs);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.social-links {
    margin-top: var(--space-xl);
}

.social-links h3 {
    margin-bottom: var(--space-sm);
}

.social-icons {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    font-size: 0.9rem;
    color: var(--color-brown);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
    color: var(--color-brown);
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-size: 0.9rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.form-success {
    text-align: center;
    padding: var(--space-xl);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--color-brown-light);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--space-md);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-xl) 0 var(--space-xxl);
    background: var(--color-cream-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.faq-item {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--color-brown);
    margin-bottom: var(--space-sm);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: var(--space-xxl) 0;
    background: var(--color-brown);
    color: var(--color-white);
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--color-gold);
    color: var(--color-brown);
}

.cta-section .btn-primary:hover {
    background: var(--color-gold-light);
}

/* Story Section */
.story-section {
    padding: var(--space-xxl) 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.story-image .placeholder-image {
    width: 100%;
    min-height: 500px;
}

.story-content h2 {
    color: var(--color-brown);
    margin-bottom: var(--space-md);
}

.story-content .lead {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-brown-light);
    margin-bottom: var(--space-md);
}

/* Process Section */
.process-section {
    padding: var(--space-xxl) 0;
    background: var(--color-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.process-item {
    text-align: center;
    padding: var(--space-md);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-blush-dark);
    margin-bottom: var(--space-sm);
    line-height: 1;
}

.process-item h3 {
    color: var(--color-brown);
    margin-bottom: var(--space-xs);
}

.process-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Values Section (About) */
.values-section {
    padding: var(--space-xxl) 0;
    background: var(--color-cream-dark);
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.value-block h3 {
    color: var(--color-brown);
    margin-bottom: var(--space-xs);
    font-size: 1.3rem;
}

.value-block p {
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* Text utilities */
.text-center {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--color-white);
    color: var(--color-text);
    padding: var(--space-xxl) 0 var(--space-lg);
    border-top: 1px solid var(--color-tan-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-sm);
}

.footer-brand .logo-main {
    color: var(--color-brown);
}

.footer-brand .logo-sub {
    color: var(--color-brown);
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.footer-links h4 {
    color: var(--color-brown);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: var(--color-text-light);
    opacity: 0.9;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-brown);
}

.footer-bottom {
    border-top: 1px solid var(--color-tan-light);
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--color-text-muted);
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-brown-light);
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .about-grid,
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: var(--space-md);
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    /* Mobile nav link colors - dark on cream background */
    .nav-links a {
        color: var(--color-text); /* Dark brown on cream */
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--color-tan);
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-links a.active {
        color: var(--color-brown);
        font-weight: 500;
    }
    
    .nav-links a::after {
        display: none; /* Hide underline on mobile */
    }
    
    .cart-link {
        color: var(--color-text); /* Dark brown on cream */
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr auto;
        grid-template-rows: auto auto;
    }
    
    .cart-item-quantity {
        grid-column: 2;
    }
    
    .remove-btn {
        grid-column: 3;
        grid-row: 1 / 3;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Wishlist & Etsy-like Features */

/* Wishlist heart */
.wishlist-heart {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.product-card:hover .wishlist-heart {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-heart.active {
    opacity: 1;
    transform: translateY(0);
    background: var(--color-rose);
    color: var(--color-white);
}

.wishlist-heart:hover {
    background: var(--color-rose);
    color: var(--color-white);
    transform: scale(1.1);
}

/* Etsy-like badges */
.product-badge.featured {
    background: rgba(165, 214, 167, 0.65);
}

.product-badge.bestseller {
    background: rgba(93, 64, 55, 0.65);
}

/* Cart notice (Etsy feature) */
.cart-notice {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0.5rem 0;
    padding: 0.25rem 0.5rem;
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* Reviews section */
.reviews-section {
    padding: var(--space-xl) 0;
    background: var(--color-white);
}

.review-card {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-tan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-sm);
    font-weight: 600;
    color: var(--color-brown);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 500;
    color: var(--color-text);
}

.review-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    margin: 0.25rem 0;
}

.review-verified {
    display: inline-block;
    font-size: 0.7rem;
    background: var(--color-sage);
    color: var(--color-white);
    padding: 0.1rem 0.4rem;
    border-radius: var(--radius-sm);
    margin-left: 0.5rem;
}

.review-content {
    color: var(--color-text);
    line-height: 1.6;
}

.review-images {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    flex-wrap: wrap;
}

.review-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    background: var(--color-tan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Star rating input */
.star-rating {
    display: flex;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 1.5rem;
    color: var(--color-tan);
    cursor: pointer;
    transition: color 0.3s ease;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #ffc107;
}

/* Product rating display */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.rating-stars {
    color: #ffc107;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Notification styles */
.notification.wishlist-notification {
    background: var(--color-brown);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-notification {
    background: var(--color-white);
    color: var(--color-brown);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    margin-left: 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-notification:hover {
    background: var(--color-cream);
}

/* Navigation with wishlist icon */
.nav .cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-brown);
    color: var(--color-white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

/* Cart Page Styles */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--color-tan);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    background: white;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h3 {
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    color: var(--color-brown);
    font-family: var(--font-body);
    font-weight: 500;
}

.cart-item-price {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--color-tan);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--color-tan-light);
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
}

.cart-item-total {
    font-weight: 600;
    color: var(--color-brown);
    min-width: 80px;
    text-align: right;
}

.remove-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.remove-btn:hover {
    background: var(--color-tan-light);
    color: var(--color-brown);
}

.cart-summary {
    background: var(--color-tan-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-tan);
}

.cart-summary h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--color-brown);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-tan);
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid var(--color-brown);
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.cart-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 1rem 0;
}

.btn-text {
    background: transparent;
    color: var(--color-brown);
    text-decoration: underline;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-text:hover {
    color: var(--color-brown-dark);
}

#cartEmpty {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
}

#cartEmpty p {
    font-size: 1.1rem;
}

/* Wishlist Page Styles */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.wishlist-item {
    position: relative;
    border: 1px solid var(--color-tan);
    border-radius: var(--radius-lg);
    padding: 1rem;
    background: white;
    transition: all 0.2s ease;
}

.wishlist-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-brown-light);
}

.wishlist-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    background: var(--color-tan-light);
    color: var(--color-text-muted);
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.wishlist-remove:hover {
    background: var(--color-tan);
    color: var(--color-brown);
}

.wishlist-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    background: var(--color-tan-light);
}

.wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1.5rem;
}

.placeholder-image small {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.wishlist-details {
    padding: 0.5rem 0;
}

.wishlist-details h3 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
    color: var(--color-brown);
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.3;
}

.wishlist-price {
    margin-bottom: 1rem;
}

.current-price {
    font-weight: 600;
    color: var(--color-brown);
    font-size: 1.1rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.wishlist-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.wishlist-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.wishlist-btn.primary {
    background: var(--color-brown);
    color: white;
}

.wishlist-btn.primary:hover {
    background: var(--color-brown-dark);
}

.wishlist-btn.secondary {
    background: var(--color-tan-light);
    color: var(--color-brown);
}

.wishlist-btn.secondary:hover {
    background: var(--color-tan);
}

#wishlistEmpty {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-muted);
}

#wishlistEmpty p {
    font-size: 1.1rem;
}

#addAllToCart {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--color-brown);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

#addAllToCart:hover {
    background: var(--color-brown-dark);
}
