/* --- Global Reset & Variable Tokens --- */
:root {
    --color-bg: #fbfbfa;          /* Crisp Studio Canvas White */
    --color-card-bg: #f5f4f0;     /* Soft warm organic cream tone */
    --color-text-main: #2b332b;   /* Deep earthy near-black */
    --color-text-muted: #606c5a;  /* Sage stem gray-green */
    --color-accent: #3d4a3e;      /* Deep Forest Green */
    --color-accent-light: #e0e5df;/* Delicate moss tint */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* This creates a perfect buffer so sections don't hide under the header */
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

/* --- Global Elements & Typography --- */
h1, h2, h3, .logo {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.01em;
}

p {
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0px; /* Minimalist raw edges */
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #ffffff;
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-text-main);
    border-color: var(--color-text-main);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent-light);
    margin-left: 0;
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    background-color: rgba(61, 74, 62, 0.03);
}

/* --- Layout Sections --- */

/* Announcement Bar */
.announcement-bar {
    background-color: var(--color-accent);
    color: var(--color-bg);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.announcement-bar p { color: #ffffff; font-weight: 400; }

/* Navigation */
.navbar {
    background-color: rgba(251, 251, 250, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, auto) auto minmax(0, auto);
    align-items: center;
    padding: 0 40px;
}

.nav-container > a {
    justify-self: start;
}

.nav-links {
    display: flex;
    gap: 40px;
    justify-self: center;
}

.menu-toggle {
    justify-self: end;
}

.logo { font-size: 1.6rem; font-weight: 600; }
.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition-smooth);
    color: var(--color-text-main);
}
.nav-links a:hover { color: var(--color-text-muted); }

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-accent-light);
    border-radius: 8px;
    background: transparent;
    color: var(--color-text-main);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.menu-toggle:hover {
    background-color: rgba(61, 74, 62, 0.07);
}

.icon-btn {
    background: transparent;
    border: 1px solid var(--color-accent-light);
    padding: 8px 16px;
    font-family: var(--font-sans);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.icon-btn:hover { background-color: var(--color-accent-light); }

/* Hero Section */
.hero-section {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 40px;
}

.order-cta-banner {
    margin-top: 24px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(61, 74, 62, 0.06), rgba(61, 74, 62, 0.12));
    border: 1px solid var(--color-accent-light);
    border-radius: 12px;
    max-width: 620px;
}

.order-cta-banner p {
    margin-bottom: 12px;
    font-size: 0.98rem;
    color: var(--color-text-main);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border: 1px solid #25D366;
    padding: 12px 20px;
}

.btn-whatsapp:hover {
    background-color: #1ea851;
    border-color: #1ea851;
}

.product-actions {
    margin-top: 16px;
}

.product-order-btn {
    display: inline-block;
    background-color: #25D366;
    color: #ffffff;
    border: 1px solid #25D366;
    padding: 12px 18px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-order-btn:hover {
    background-color: #1ea851;
    border-color: #1ea851;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    display: inline-block;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-image-wrapper {
    overflow: hidden;
}

.hero-img {
    width: 100%;
    object-fit: cover;
    height: 600px;
    transition: var(--transition-smooth);
}
.hero-img:hover { transform: scale(1.015); }

/* Products Section */
.products-section {
    max-width: 1300px;
    margin: 120px auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 { font-size: 2.5rem; margin-bottom: 12px; }

.products-order-note {
    margin-top: 12px;
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 500;
}

.filter-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    justify-items: center;
    margin-top: 30px;
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
}

.filter-btn {
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    padding: 10px 12px;
    font-family: var(--font-sans);
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    width: 100%;
    max-width: 220px;
    min-width: 0;
    text-align: center;
    white-space: normal;
    word-break: break-word;
}

.filter-btn.active, .filter-btn:hover {
    color: var(--color-text-main);
    border-bottom: 1px solid var(--color-text-main);
}

/* Scalable Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-showcase .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;
}

.product-showcase .product-card {
    max-width: 320px;
    margin: 0 auto;
}

.product-card {
    transition: var(--transition-smooth);
}

.product-img-container {
    background-color: var(--color-card-bg);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-img-container img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.quick-add-btn {
    display: none;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-info .product-cat {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.product-info h3 {
    font-size: 1.35rem;
    margin: 6px 0;
}

.product-info .product-price {
    font-weight: 500;
    color: var(--color-text-main);
}
 
.product-card .product-description {
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}
 
.why-section {
    background-color: var(--color-card-bg);
    padding: 100px 40px;
}
 
.why-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}
 
.why-card {
    text-align: left;
    padding: 20px 10px;
}
 
.why-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}
 
.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
 
/* About Section */
.about-section {
    max-width: 1300px;
    margin: 140px auto;
    padding: 0 40px 80px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 0 80px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2.6rem;
    margin-bottom: 24px;
    color: var(--color-text-main);
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.designer-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--color-accent);
    border-left: 4px solid var(--color-accent);
    padding-left: 20px;
    margin-top: 20px;
}

.page-header {
    max-width: 860px;
    margin: 0 auto 60px;
    padding: 70px 24px 40px;
    text-align: center;
}

.page-header .subtitle {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.page-header h1 {
    font-size: 2.8rem;
    line-height: 1.08;
    color: var(--color-text-main);
    margin-bottom: 18px;
}

.page-header .page-intro {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: start;
    margin-bottom: 48px;
}

.story-text p {
    margin-bottom: 18px;
    font-size: 1.03rem;
    color: var(--color-text-muted);
}

.highlight-quote {
    border-left: 3px solid var(--color-accent);
    padding: 20px 22px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--color-accent);
    background: var(--color-card-bg);
}

.story-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 20px 0 56px;
}

.stats-strip article {
    background: var(--color-card-bg);
    padding: 24px 18px;
    text-align: center;
    border-radius: 12px;
}

.stats-strip strong {
    display: block;
    font-size: 1.4rem;
    color: var(--color-text-main);
    margin-bottom: 6px;
}

.stats-strip span {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.statement-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.statement-block {
    background: #ffffff;
    border: 1px solid #ecebe5;
    padding: 28px;
    border-radius: 12px;
}

.statement-block h2 {
    font-size: 1.45rem;
    color: var(--color-text-main);
    margin-bottom: 12px;
}

.offerings-section {
    margin-bottom: 56px;
}

.section-heading {
    text-align: center;
    margin-bottom: 28px;
}

.section-heading .eyebrow {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 2rem;
    color: var(--color-text-main);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.offerings-column {
    background: #faf8f2;
    border: 1px solid #ecebe5;
    padding: 28px;
    border-radius: 12px;
}

.offerings-column h3 {
    font-size: 1.2rem;
    color: var(--color-text-main);
    margin-bottom: 16px;
}

.offerings-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offerings-list li {
    padding: 8px 0;
    color: #4f5b4f;
    border-bottom: 1px solid #efece2;
}

.offerings-list li:last-child {
    border-bottom: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #ecebe5;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}

.value-card h3 {
    font-size: 1.15rem;
    color: var(--color-text-main);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .story-section,
    .statement-section,
    .offerings-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding-top: 50px;
    }

    .story-image img {
        height: 280px;
    }
}

/* Footer layout */
.main-footer {
    background-color: var(--color-text-main);
    color: #f5f4f0;
    padding: 80px 40px 30px 40px;
}

.main-footer p { color: #b5beb3; }

.footer-grid {
    max-width: 1300px;
    margin: 0 auto 60px auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand h3 { font-size: 1.8rem; margin-bottom: 16px; color: #ffffff;}
.footer-links h4, .footer-subscribe h4 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: #b5beb3;
    transition: var(--transition-smooth);
    font-weight: 300;
    display: inline-block;
}
.footer-links ul li a:hover { color: #ffffff; }

.footer-subscribe p { margin-bottom: 20px; }

.subscribe-form {
    display: flex;
    border-bottom: 1px solid #606c5a;
}

.subscribe-form input {
    background: transparent;
    border: none;
    padding: 12px 0;
    color: #ffffff;
    width: 100%;
    font-family: var(--font-sans);
}
.subscribe-form input:focus { outline: none; }

.subscribe-form button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 10px;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
}

/* --- Cart Drawer Styling --- */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background-color: var(--color-bg);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    z-index: 1000;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 40px;
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-accent-light);
    padding-bottom: 20px;
}

.close-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-main);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding-bottom: 15px;
}

.empty-msg { text-align: center; margin-top: 40px; }

.cart-footer {
    border-top: 1px solid var(--color-accent-light);
    padding-top: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.checkout-btn { width: 100%; text-align: center; }

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
    z-index: 999;
    display: none;
}
.cart-overlay.open { display: block; }

/* --- Responsive Layout Optimization --- */
@media (max-width: 1024px) {
    .hero-container, .about-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-content h1 { font-size: 2.8rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: grid;
    place-items: center;
    text-decoration: none;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 9999;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

@media (max-width: 768px) {
    .menu-toggle { display: inline-flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        background-color: rgba(251, 251, 250, 0.98);
        border-top: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 18px 40px rgba(0,0,0,0.08);
        z-index: 20;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        display: block;
        font-size: 1.05rem;
        padding: 16px 24px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .nav-links a:last-child { border-bottom: none; }
    .icon-btn {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .footer-grid { grid-template-columns: 1fr; }
    .cart-drawer { width: 100%; }
    .products-grid { grid-template-columns: 1fr; }
    .filter-container {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 10px;
    }
    .filter-btn {
        max-width: none;
        padding: 10px 12px;
    }
}

