:root {
    --bg-color: #FBF9F6; /* Soft Cream */
    --text-color: #3D3D3D; /* Charcoal */
    --accent-beige: #EAE7E2; /* Beige */
    --accent-rose: #D3C5BE; /* Dusty Rose */
    --accent-sage: #A9B4A5; /* Sage Green */
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.6;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    position: sticky;
    top: 0;
    background-color: #ebdede;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    font-family: var(--font-main);
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-icon {
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: var(--text-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 4rem 8rem;
    min-height: 80vh;
    background-color: var(--bg-color);
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-content em {
    font-style: italic;
    color: var(--accent-sage);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
    max-width: 400px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--text-color);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: var(--accent-sage);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.hero-image {
    width: 40%;
    height: 600px;
    position: relative;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background-color: var(--accent-beige);
    border-radius: 200px 200px 0 0; /* Arch shape */
    background-image: url('https://images.unsplash.com/photo-1606166325683-e6deb697d301?q=80&w=2085&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Featured Products */
.featured-products {
    padding: 8rem 4rem;
    background-color: white;
}

.section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.product-img-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--accent-beige);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.product-info .description {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.product-info .price {
    color: #777;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.btn-details {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-sage);
    text-decoration: underline;
}

/* Features Section */
.features {
    padding: 8rem 4rem;
    background-color: var(--bg-color);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 4rem;
    background-color: white;
}

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

.testimonial-card {
    background-color: var(--bg-color);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.testimonial-card p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-card span {
    font-weight: 500;
    color: var(--accent-sage);
}

/* Email Signup Section */
.email-signup {
    background-color: var(--accent-rose);
    padding: 6rem 4rem;
    text-align: center;
}

.signup-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}

.signup-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.signup-form input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--text-color);
    border-radius: 50px 0 0 50px;
    background-color: var(--bg-color);
    font-family: var(--font-main);
    font-size: 1rem;
}

.signup-form input:focus {
    outline: none;
    border-color: var(--accent-sage);
}

.signup-form button {
    border-radius: 0 50px 50px 0;
    white-space: nowrap;
    padding: 1rem 2rem;
}

/* Footer */
footer {
    padding: 5rem 4rem;
    background-color: var(--bg-color);
    border-top: 1px solid #EAEAEA;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h4 {
    font-family: var(--font-main);
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #777;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-color);
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin-top: 4rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image {
        width: 80%;
        height: 450px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        left: 0;
    }

    .hero {
        padding: 4rem 2rem;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-image {
        width: 100%;
        height: 400px;
    }
    .featured-products, .features, .testimonials, .email-signup, footer {
        padding: 4rem 2rem;
    }
    .signup-form {
        flex-direction: column;
        gap: 1rem;
    }
    .signup-form input, .signup-form button {
        border-radius: 50px;
    }
    .product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .product-detail {
        padding: 2rem;
    }
}

/* Product Detail Page */
.product-detail {
    padding: 4rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #777;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.main-image-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--accent-beige);
    border-radius: 8px;
}

.product-main-info h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.product-main-info .price {
    font-size: 1.5rem;
    color: var(--accent-sage);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-main-info .short-desc {
    margin-bottom: 2rem;
    color: #555;
}

.product-main-info .actions {
    margin-bottom: 3rem;
}

.product-specs h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.product-specs ul {
    list-style-position: inside;
    margin-left: 1rem;
    color: #555;
}
}
    padding: 8rem 4rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

.philosophy .content {
    max-width: 600px;
}

.philosophy h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.philosophy p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 300;
}

/* Footer */
footer {
    padding: 4rem 4rem;
    border-top: 1px solid #E0E0E0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col h4 {
    font-family: var(--font-serif);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .hero {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-image {
        width: 100%;
        height: 400px;
    }
    .products, .philosophy, footer {
        padding: 4rem 2rem;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Contact Page */
.contact-section {
    padding: 4rem 4rem 8rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section .section-header p {
    color: #777;
    margin-top: 1rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-sage);
}

.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background-color: var(--accent-beige);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-weight: 500;
}

.contact-details h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-details p {
    color: #555;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-section {
        padding: 4rem 2rem;
    }
}

/* Journal Page */
.journal-section {
    padding: 4rem 4rem 8rem;
    background-color: white;
}

.journal-section .section-header p {
    color: #777;
    margin-top: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.journal-card {
    display: block;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.journal-img-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--accent-beige);
}

.journal-info {
    padding: 1.5rem;
}

.journal-info .category {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--accent-sage);
    margin-bottom: 0.5rem;
}

.journal-info h3 {
    font-size: 1.2rem;
    font-weight: 500;
    font-family: var(--font-serif);
    margin-bottom: 0.75rem;
}

.journal-info .excerpt {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
}

/* Journal Article Page */
.article-section {
    padding: 4rem 2rem 8rem;
    background-color: white;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-header .back-link {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--accent-sage);
    text-decoration: underline;
}

.article-header .back-link:hover {
    opacity: 0.7;
}

.article-header .category {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--accent-sage);
    margin-bottom: 1rem;
}

.article-header h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-header .meta {
    font-size: 0.9rem;
    color: #777;
}

.article-hero-image-placeholder {
    width: 100%;
    height: 450px;
    background-color: var(--accent-beige);
    border-radius: 8px;
    margin-bottom: 4rem;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-color);
}

.article-content h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content blockquote {
    border-left: 3px solid var(--accent-sage);
    padding-left: 2rem;
    margin: 2.5rem 0;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: #555;
}

.article-footer {
    margin-top: 4rem;
    border-top: 1px solid #eee;
    padding-top: 2rem;
    display: flex;
    justify-content: center;
}

.share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-section span {
    font-weight: 500;
}

.related-articles-section {
    padding: 6rem 4rem;
    background-color: var(--bg-color);
    border-top: 1px solid #EAEAEA;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-color);
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin: 0;
}

.cookie-banner a {
    color: var(--accent-sage);
    text-decoration: underline;
}

.cookie-banner button {
    background-color: var(--accent-sage);
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
    margin-left: 1rem;
}

.cookie-banner button:hover {
    background-color: #8e9a8a;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cookie-banner button {
        margin-left: 0;
    }
    .related-articles-section {
        padding: 4rem 2rem;
    }
}

/* Product Images */
.img-daily-planner {
    background-image: url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?q=80&w=2068&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-budget-tracker {
    background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-notion-dashboard {
    background-image: url('https://images.unsplash.com/photo-1484480974693-6ca0a78fb36b?q=80&w=2072&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-goal-planner {
    background-image: url('https://images.unsplash.com/photo-1517842645767-c639042777db?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Journal Article Images */
.img-procrastination {
    background-image: url('https://images.unsplash.com/photo-1485217988980-11786ced9454?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-digital-planning-article {
    background-image: url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?q=80&w=2068&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-mindful-morning {
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2073&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-digital-declutter {
    background-image: url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-time-blocking {
    background-image: url('https://images.unsplash.com/photo-1506784926709-22f1ec395907?q=80&w=2068&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-goals-article {
    background-image: url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-slow-living {
    background-image: url('https://images.unsplash.com/photo-1470252649378-9c29740c9fa8?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-home-office {
    background-image: url('https://images.unsplash.com/photo-1493663284031-b7e3aefcae8e?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.img-digital-detox {
    background-image: url('https://images.unsplash.com/photo-1511871893393-82e9c16b81e3?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}