
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --color-brand: #C47055;
  --color-brand-dark: #A65B43;
  --color-secondary: #748A7A;
  --color-secondary-dark: #5C7061;
  --color-bg: #F9F7F1;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F0EBE1;
  --color-text-main: #2C3531;
  --color-text-muted: #6B7270;
  --color-border: #E5E1D8;
  --font-heading: 'Marcellus', serif;
  --font-body: 'Outfit', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-pill: 100px;
  --shadow-subtle: 0 4px 24px rgba(44, 53, 49, 0.04);
  --shadow-hover: 0 12px 40px rgba(44, 53, 49, 0.08);
  --container-width: 1320px;
  --spacing-section: 100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: var(--font-body); 
    background-color: var(--color-bg); 
    color: var(--color-text-main); 
    line-height: 1.6; 
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; color: var(--color-text-main); }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; border-radius: var(--radius-sm); }
ul { list-style: none; }

/* Utilities */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-section { margin-top: var(--spacing-section); }
.mb-section { margin-bottom: var(--spacing-section); }
.py-section { padding-top: var(--spacing-section); padding-bottom: var(--spacing-section); }
.text-brand { color: var(--color-brand); }
.text-secondary { color: var(--color-secondary); }

/* Buttons */
.btn { 
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: var(--radius-pill); font-weight: 500;
    transition: all 0.3s ease; cursor: pointer; border: none; font-size: 1rem;
    font-family: var(--font-body);
}
.btn-primary { background-color: var(--color-brand); color: #fff; }
.btn-primary:hover { background-color: var(--color-brand-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(196, 112, 85, 0.3); }
.btn-secondary { background-color: var(--color-secondary); color: #fff; }
.btn-secondary:hover { background-color: var(--color-secondary-dark); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--color-border); background: transparent; color: var(--color-text-main); }
.btn-outline:hover { border-color: var(--color-brand); color: var(--color-brand); }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }

/* Navigation */
.top-bar { background-color: var(--color-text-main); color: #fff; font-size: 0.85rem; padding: 10px 0; text-align: center; letter-spacing: 0.5px; }
.header { background-color: rgba(249, 247, 241, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--color-border); transition: all 0.3s ease; }
.header.scrolled { box-shadow: var(--shadow-subtle); padding: 5px 0; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; max-width: var(--container-width); margin: 0 auto; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-brand); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--color-text-main); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background-color: var(--color-brand); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.cart-btn { position: relative; cursor: pointer; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.cart-count { background: var(--color-brand); color: #fff; font-size: 0.75rem; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--color-text-main); }

/* Hero Sections */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; align-items: center; gap: 60px; padding: 60px 0; }
.hero-split-text h1 { font-size: 4rem; margin-bottom: 24px; color: var(--color-text-main); }
.hero-split-text p { font-size: 1.25rem; color: var(--color-text-muted); margin-bottom: 40px; max-width: 500px; }
.hero-split-img { position: relative; height: 100%; min-height: 500px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover); }
.hero-split-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; top:0; left:0; }
.hero-badge { display: inline-block; padding: 6px 16px; background: var(--color-surface-alt); border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; color: var(--color-brand); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }

.hero-banner { position: relative; height: 60vh; min-height: 500px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; border-radius: 0 0 var(--radius-lg) var(--radius-lg); overflow: hidden; margin-bottom: var(--spacing-section); }
.hero-banner img { position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; z-index: -2; }
.hero-banner::after { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to bottom, rgba(44,53,49,0.3), rgba(44,53,49,0.7)); z-index: -1; }
.hero-banner-content { position: relative; z-index: 1; max-width: 800px; padding: 0 24px; }
.hero-banner-content h1 { font-size: 4.5rem; color: #fff; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hero-banner-content p { font-size: 1.3rem; margin-bottom: 30px; font-weight: 300; }

/* Grids & Cards */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.product-card { background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-subtle); transition: all 0.4s ease; border: 1px solid var(--color-border); display: flex; flex-direction: column; height: 100%; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--color-brand-light); }
.product-img-wrapper { position: relative; height: 280px; overflow: hidden; }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-img-wrapper img { transform: scale(1.05); }
.product-badge { position: absolute; top: 16px; left: 16px; background: var(--color-brand); color: #fff; padding: 4px 12px; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 600; z-index: 2; }
.product-info { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.product-category { font-size: 0.85rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.product-title { font-size: 1.25rem; font-family: var(--font-heading); margin-bottom: 12px; flex-grow: 1; }
.product-price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.product-price { font-size: 1.3rem; font-weight: 600; color: var(--color-secondary); }
.product-price del { font-size: 1rem; color: var(--color-text-muted); margin-right: 8px; font-weight: 400; }
.btn-add { width: 40px; height: 40px; border-radius: 50%; background: var(--color-surface-alt); display: flex; align-items: center; justify-content: center; color: var(--color-text-main); transition: all 0.3s; border: none; cursor: pointer; }
.btn-add:hover { background: var(--color-brand); color: #fff; transform: rotate(90deg); }

/* Bento Grid */
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 300px); gap: 24px; }
.bento-item { position: relative; border-radius: var(--radius-md); overflow: hidden; display: flex; align-items: flex-end; padding: 30px; text-decoration: none; box-shadow: var(--shadow-subtle); transition: transform 0.3s; }
.bento-item:hover { transform: translateY(-5px); }
.bento-item img { position: absolute; top:0; left:0; width:100%; height:100%; object-fit: cover; z-index: 0; transition: transform 0.6s; }
.bento-item:hover img { transform: scale(1.05); }
.bento-item::before { content: ''; position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%); z-index: 1; }
.bento-content { position: relative; z-index: 2; color: #fff; }
.bento-content h3 { color: #fff; font-size: 1.8rem; margin-bottom: 8px; }
.bento-item.large { grid-column: span 2; grid-row: span 2; }
.bento-item.medium { grid-column: span 2; }

/* Sections */
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-title { font-size: 2.8rem; margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--color-text-muted); }

/* Value Props */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.value-card { padding: 40px; background: var(--color-surface); border-radius: var(--radius-lg); box-shadow: var(--shadow-subtle); }
.value-icon { width: 80px; height: 80px; background: var(--color-surface-alt); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 2rem; color: var(--color-brand); }
.value-card h3 { font-size: 1.5rem; margin-bottom: 16px; }

/* About / Philosophy */
.philosophy-section { background-color: var(--color-surface-alt); padding: 100px 0; border-radius: var(--radius-lg); margin: 0 24px; }
.philosophy-content { max-width: 800px; margin: 0 auto; text-align: center; }
.philosophy-content h2 { font-size: 3rem; margin-bottom: 30px; }
.philosophy-content p { font-size: 1.2rem; margin-bottom: 20px; color: var(--color-text-muted); }
.signature { font-family: 'Marcellus', serif; font-size: 2rem; color: var(--color-brand); margin-top: 40px; font-style: italic; }

/* Info Split */
.info-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.info-split.reverse { direction: rtl; }
.info-split.reverse > * { direction: ltr; }
.info-content h2 { font-size: 2.5rem; margin-bottom: 24px; }
.info-content p { color: var(--color-text-muted); margin-bottom: 24px; font-size: 1.1rem; }
.info-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.info-list li::before { content: '✓'; color: var(--color-brand); font-weight: bold; }
.info-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-subtle); }

/* Cart */
.cart-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.cart-items { background: var(--color-surface); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-subtle); }
.cart-item-row { display: flex; align-items: center; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--color-border); }
.cart-item-row:last-child { border-bottom: none; }
.cart-item-img { width: 100px; height: 100px; border-radius: var(--radius-sm); object-fit: cover; }
.cart-item-info { flex-grow: 1; }
.cart-item-info h4 { font-size: 1.2rem; margin-bottom: 8px; font-family: var(--font-body); }
.cart-item-price { font-weight: 600; color: var(--color-secondary); }
.cart-item-remove { color: #ff4d4d; font-size: 0.9rem; cursor: pointer; border: none; background: none; margin-top: 8px; }
.cart-summary { background: var(--color-surface-alt); padding: 40px; border-radius: var(--radius-lg); align-self: start; }
.cart-summary h3 { font-size: 1.5rem; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 16px; color: var(--color-text-muted); }
.summary-total { display: flex; justify-content: space-between; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--color-border); font-size: 1.3rem; font-weight: 600; color: var(--color-text-main); }
.checkout-btn { width: 100%; margin-top: 32px; padding: 18px; font-size: 1.1rem; }

/* Footer */
.footer { background-color: var(--color-text-main); color: rgba(255,255,255,0.8); padding: 80px 0 40px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; margin-top: 100px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand h3 { color: #fff; font-size: 2rem; margin-bottom: 20px; color: var(--color-brand-light); }
.footer-brand p { margin-bottom: 24px; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: 1.2rem; margin-bottom: 24px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a:hover { color: var(--color-brand-light); padding-left: 5px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.social-links { display: flex; gap: 16px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: #fff; }
.social-links a:hover { background: var(--color-brand); }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split { grid-template-columns: 1fr; text-align: center; min-height: auto; gap: 40px; }
    .hero-split-text p { margin: 0 auto 40px; }
    .hero-split-img { min-height: 400px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-item.large { grid-column: span 2; grid-row: span 1; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --spacing-section: 60px; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background: var(--color-surface); flex-direction: column; padding: 80px 40px; box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: right 0.3s ease; z-index: 1001; gap: 24px; }
    .nav-links.active { right: 0; }
    .mobile-menu-btn { display: block; z-index: 1002; position: relative; }
    .hero-split-text h1 { font-size: 2.5rem; }
    .hero-banner-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-item { height: 250px; }
    .bento-item.large, .bento-item.medium { grid-column: span 1; }
    .values-grid { grid-template-columns: 1fr; }
    .info-split { grid-template-columns: 1fr; }
    .philosophy-section { padding: 60px 24px; margin: 0; border-radius: 0; }
    .philosophy-content h2 { font-size: 2rem; }
    .cart-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; transform: translateY(30px); }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* Popup Notification */
.notification { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px); background: var(--color-text-main); color: #fff; padding: 16px 32px; border-radius: var(--radius-pill); font-weight: 500; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 9999; display: flex; align-items: center; gap: 12px; }
.notification.show { transform: translateX(-50%) translateY(0); }
.notification-icon { width: 24px; height: 24px; background: var(--color-secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }

/* Article */
.article-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.article-meta { color: var(--color-brand); font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.article-header h1 { font-size: 3.5rem; margin-bottom: 24px; }
.article-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 60px; max-height: 600px; }
.article-image img { width: 100%; height: 100%; object-fit: cover; }
.article-content { max-width: 700px; margin: 0 auto; font-size: 1.15rem; color: var(--color-text-main); }
.article-content h2 { font-size: 2rem; margin: 40px 0 20px; }
.article-content p { margin-bottom: 24px; }
.article-content blockquote { font-family: var(--font-heading); font-size: 1.5rem; border-left: 4px solid var(--color-brand); padding-left: 24px; margin: 40px 0; color: var(--color-brand); font-style: italic; }

/* Additional Mobile Tweaks */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-split-text h1 { font-size: 2rem; }
    .hero-banner-content h1 { font-size: 2rem; }
    .hero-split-text p, .hero-banner-content p { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .btn { width: 100%; margin-bottom: 10px; }
    .info-content h2 { font-size: 1.8rem; }
    .info-list li { font-size: 0.95rem; }
    .footer-grid { gap: 30px; }
    .product-img-wrapper { height: 220px; }
    .bento-item { height: 200px; padding: 20px; }
    .bento-content h3 { font-size: 1.4rem; }
    .hero-split { padding: 40px 0; }
    .mt-section { margin-top: 40px; }
    .mb-section { margin-bottom: 40px; }
    h1, h2, h3 { overflow-wrap: break-word; word-wrap: break-word; }
}

img { max-width: 100%; height: auto; }
.product-img-wrapper img, .bento-item img, .hero-banner img, .hero-split-img img, .article-image img { height: 100%; }

html, body { max-width: 100vw; overflow-x: hidden; }
