/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@300;400;500;600&display=swap');
@import url('https://fonts.cdnfonts.com/css/canela');

:root {
    /* Warm, nature-inspired color palette */
    --cream: #F5F1E8;
    --warm-white: #FEFDFB;
    --mid-green: #4A5D4F;
    --dark-green: #2C3A31;
    --accent-warm: #D4B996;
    --text-dark: #2C2C2C;
    --text-light: #6B6B6B;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--warm-white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Canela', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 2rem 0 1.5rem 0;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background-color: #F6F4EE;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    position: relative;
}

.logo img {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-dark {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.logo-white {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo-white {
    opacity: 0;
}

.navbar.scrolled .logo-dark {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    position: relative;
    padding-bottom: 8px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.25s ease;
}

.nav-menu a:hover {
    opacity: 1;
}

.nav-menu a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-menu a {
    color: #4A4A4A;
    opacity: 0.7;
}

.navbar.scrolled .nav-menu a::after {
    background-color: #4A4A4A;
}

.navbar.scrolled .nav-menu a:hover {
    opacity: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: 0.3s;
}

.navbar.scrolled .menu-toggle span {
    background-color: var(--text-dark);
}

/* Hero Section */
.hero {
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('landing/proovime2.jpg') center center / cover no-repeat;
    position: relative;
}

.hero-content {
    text-align: left;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    z-index: 1;
}

.hero-title {
    font-family: 'Canela', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 2.5rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 650px;
    letter-spacing: -0.01em;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
    max-width: 600px;
    letter-spacing: 0.01em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem 1.1rem 3rem;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.4s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: white;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    color: var(--dark-green);
    border-color: white;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--mid-green);
    border: 1px solid var(--mid-green);
}

.btn-secondary:hover {
    background-color: var(--mid-green);
    color: white;
}

.btn-blog-cta {
    background-color: rgba(44, 58, 49, 1);
    color: #FFFFFF !important;
    border: none;
    outline: none;
    box-shadow: none;
    text-decoration: none !important;
    transition: background-color 0.6s ease;
}

.btn-blog-cta::before {
    display: none;
}

.btn-blog-cta:hover {
    color: #FFFFFF !important;
    background-color: rgba(44, 58, 49, 0.85);
    transform: none;
    text-decoration: none !important;
}

.btn-blog-cta:focus {
    outline: none;
    box-shadow: none;
}

.btn-blog-cta:hover .btn-arrow {
    transform: none;
}

/* Sections */
section {
    padding: 8rem 0;
}

/* Hand-Drawn Section */
.hand-drawn-section {
    background-color: #E8DCC8;
    padding: 0;
}

.hand-drawn-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 85vh;
}

.hand-drawn-image {
    padding: 4rem 2rem 4rem 4rem;
    display: flex;
    justify-content: flex-end;
}

.hand-drawn-image img {
    max-width: 550px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hand-drawn-text {
    padding: 4rem 6rem 4rem 3rem;
    display: flex;
    align-items: center;
}

.hand-drawn-text p {
    font-family: 'Canela', serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: var(--dark-green);
    letter-spacing: 0.01em;
    max-width: 600px;
}

/* Lost Garden Section */
.lost-garden-section {
    padding: 0;
    position: relative;
    min-height: 90vh;
}

.lost-garden-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    position: relative;
}

.lost-garden-bg {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.lost-garden-bg.left {
    grid-column: 1;
    grid-row: 1;
}

.lost-garden-bg.right {
    grid-column: 2;
    grid-row: 1;
}

.lost-garden-card {
    grid-column: 1 / -1;
    grid-row: 1;
    place-self: center;
    background-color: rgba(186, 166, 124, 0.95);
    padding: 6.5rem 3rem;
    max-width: 420px;
    text-align: center;
    z-index: 10;
}

.lost-garden-card h2 {
    font-family: 'Canela', serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.lost-garden-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.lost-garden-card .btn {
    background-color: transparent;
    color: var(--dark-green);
    border: 1px solid rgba(44, 58, 49, 0.4);
    padding: 0.9rem 2.5rem;
}

.lost-garden-card .btn::before {
    background-color: rgba(44, 58, 49, 0.1);
}

.lost-garden-card .btn:hover {
    color: var(--dark-green);
    border-color: var(--dark-green);
}

/* Values Section */
.values-section {
    background-color: #525D52;
    padding: 8rem 0;
}

.values-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.values-heading {
    font-family: 'Canela', serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 5rem;
    letter-spacing: 0.01em;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding-bottom: 3rem;
}

.value-item {
    border-bottom: 1px solid rgba(245, 241, 232, 0.3);
    padding-bottom: 2rem;
}

.value-item h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.value-item p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(245, 241, 232, 0.85);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.value-item p:last-child {
    margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--cream);
    padding: 0;
    position: relative;
}

.gallery-container {
    display: flex;
    gap: 2rem;
    padding-left: 0;
    position: relative;
}

.gallery-left {
    width: 800px;
    position: relative;
}

.gallery-left img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-card {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translateX(-50%);
    background-color: rgba(186, 166, 124, 0.95);
    padding: 2rem 2.5rem;
    max-width: 280px;
    text-align: center;
    z-index: 100;
}

.gallery-card h2 {
    font-family: 'Canela', serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 1.2rem;
    letter-spacing: 0.01em;
}

.gallery-card .btn {
    background-color: transparent;
    color: var(--dark-green);
    border: 1px solid rgba(44, 58, 49, 0.4);
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
}

.gallery-card .btn::before {
    background-color: rgba(44, 58, 49, 0.1);
}

.gallery-card .btn:hover {
    color: var(--dark-green);
    border-color: var(--dark-green);
}

.gallery-middle {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-evenly;
    position: absolute;
    left: 800px;
    top: 0;
    bottom: 0;
    margin-left: 2rem;
}

.gallery-middle img {
    width: 200px;
    height: auto;
    display: block;
}

.gallery-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: calc(800px + 2rem + 200px + 2rem);
}

.gallery-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* New Collection Section */
.new-collection {
    background-color: var(--cream);
    padding: 0;
}

.collection-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 85vh;
}

.collection-content {
    padding: 0 3rem 0 3rem;
    margin: 0 auto;
    max-width: 700px;
}

.collection-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 4px;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.collection-tag:hover {
    opacity: 0.6;
}

.collection-title {
    font-family: 'Canela', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark-green);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.collection-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 550px;
    letter-spacing: 0.01em;
}

.collection-image {
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.collection-image:hover img {
    transform: scale(1.02);
}

.section-title {
    font-family: 'Canela', serif;
    font-size: 2.5rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--dark-green);
    letter-spacing: -0.01em;
}

/* Featured Work Grid */
.featured {
    background-color: var(--cream);
}

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

.grid-item {
    text-align: center;
}

.grid-item .placeholder-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--accent-warm), var(--mid-green));
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.grid-item:hover .placeholder-image {
    transform: scale(1.02);
}

.grid-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

.grid-item p {
    color: var(--text-light);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-green);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-image .placeholder-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, var(--mid-green), var(--accent-warm));
}

/* Services Section */
.services {
    background-color: var(--cream);
}

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

.service-card {
    padding: 2.5rem;
    background-color: var(--warm-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.service-card p {
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, #3E5347 0%, #364B3F 100%);
    padding: 7.5rem 0 10rem 0;
    min-height: calc(100vh - 80px);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
}

/* Add top padding for standalone contact page */
body:has(.contact:first-of-type) .contact {
    padding-top: 10rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contact-form-section {
    padding-left: 4rem;
}

.contact-form-section h2 {
    font-family: 'Canela', serif;
    font-size: 3.7rem;
    font-weight: 400;
    font-style: italic;
    color: #F8F6EF;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(245, 241, 232, 0.75);
    margin-bottom: 3.5rem;
    max-width: 540px;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #D8DAD3;
    margin-bottom: 0.4rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-transform: lowercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-bottom: 2px solid #D6D8D2;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--cream);
    transition: all 0.4s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: normal;
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: rgba(245, 241, 232, 0.05);
    border-bottom-color: #FEFDFB;
    padding-left: 2rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: transparent;
    color: var(--cream);
    border: 2px solid rgba(245, 241, 232, 0.8);
    padding: 1.35rem 2.5rem 1.35rem 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin-top: 1rem;
    border-radius: 0;
}

.btn-submit:hover {
    background-color: #FFFFFF;
    color: #2E4037;
    border-color: #FFFFFF;
}

.contact-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-logo-section img {
    max-width: 250px;
    width: 100%;
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 0 10px rgba(248, 246, 239, 0.15));
}

/* Thank You Page */
.thank-you-section {
    background-color: var(--cream);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
}

.thank-you-container {
    text-align: center;
    max-width: 600px;
}

.thank-you-container h1 {
    font-family: 'Canela', serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.thank-you-container p {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.thank-you-container .btn {
    background-color: var(--dark-green);
    color: var(--cream);
    border: 2px solid var(--dark-green);
}

.thank-you-container .btn:hover {
    background-color: var(--mid-green);
    border-color: var(--mid-green);
}

/* 404 Error Page */
.error-404-section {
    background-color: var(--cream);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
}

.error-404-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.error-404-number {
    font-family: 'Canela', serif;
    font-size: 8rem;
    color: var(--mid-green);
    margin: 0;
    line-height: 1;
    opacity: 0.3;
}

.error-404-title {
    font-family: 'Canela', serif;
    font-size: 3rem;
    color: var(--dark-green);
    margin: 1rem 0;
}

.error-404-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.error-404-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
}

.btn-secondary:hover {
    background-color: var(--dark-green);
    color: var(--cream);
}

.error-404-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-404-image img {
    width: 100%;
    max-width: 400px;
    opacity: 0.8;
}

/* Blog Categories Section */
.blog-categories-section {
    background-color: var(--cream);
    padding: 3rem 0;
}

.blog-categories-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 0 2rem;
}

.category-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.category-circle:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--mid-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background-color: var(--cream);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.category-circle:hover .category-icon {
    background-color: var(--mid-green);
    border-color: var(--dark-green);
}

.category-name {
    font-size: 0.95rem;
    color: var(--dark-green);
    font-weight: 500;
    text-align: center;
}

/* Blog Post Meta (Categories, Tags, Reading Time) */
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(74, 93, 79, 0.15);
    font-size: 0.9rem;
}

.blog-post-categories,
.blog-post-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.meta-icon {
    color: var(--mid-green);
    flex-shrink: 0;
}

.category-link {
    color: var(--mid-green);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.tag-link {
    color: #666;
}

.meta-separator {
    color: #999;
}

.blog-post-reading-time {
    color: var(--mid-green);
    font-weight: 500;
}

/* Article Navigation */
.article-navigation {
    background-color: var(--cream);
    padding: 4rem 0;
    border-top: 1px solid rgba(74, 93, 79, 0.1);
}

.article-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.article-nav-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--warm-white);
    border: 2px solid rgba(74, 93, 79, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.article-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 93, 79, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-nav-link:hover {
    border-color: var(--mid-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.article-nav-link:hover::before {
    opacity: 1;
}

.article-nav-link.prev {
    flex-direction: row;
}

.article-nav-link.next {
    flex-direction: row-reverse;
}

.article-nav-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.article-nav-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-nav-link:hover .article-nav-image img {
    transform: scale(1.05);
}

.article-nav-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.article-nav-link.prev .article-nav-content {
    text-align: left;
}

.article-nav-link.next .article-nav-content {
    text-align: right;
}

.article-nav-label {
    font-size: 0.8rem;
    color: var(--mid-green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.article-nav-title {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    color: var(--dark-green);
    line-height: 1.5;
    display: block;
    font-weight: 500;
}

/* Suggested Articles */
.suggested-articles {
    background-color: var(--warm-white);
    padding: 4rem 0;
}

.suggested-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.suggested-title {
    font-family: 'Canela', serif;
    font-size: 2rem;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 3rem;
}

.suggested-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.suggested-card {
    display: block;
    text-decoration: none;
    background-color: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suggested-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.suggested-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.suggested-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.suggested-card-title {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: var(--dark-green);
    padding: 1.5rem;
    line-height: 1.4;
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--dark-green);
    color: var(--cream);
    padding: 3rem 0;
}

.footer .container {
    max-width: 1400px;
    padding: 0 3rem;
}

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

.footer-info p {
    margin: 0;
    font-size: 1rem;
}

.footer-tagline {
    margin-top: 0.5rem !important;
    font-size: 0.95rem !important;
    color: rgba(245, 241, 232, 0.7);
    font-style: italic;
}

.footer-email {
    margin-top: 0.75rem !important;
    font-size: 0.95rem !important;
}

.footer-email a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email a:hover {
    color: var(--accent-warm);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    color: var(--cream);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-social a:hover {
    color: var(--accent-warm);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #F6F4EE;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        display: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu a {
        color: #4A4A4A;
        opacity: 0.85;
    }

    .nav-menu a:hover {
        opacity: 1;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        min-height: 80vh;
        padding: 6rem 0 3rem 0;
        align-items: flex-end;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .collection-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .collection-content {
        padding: 4rem 1.5rem 3rem 1.5rem;
    }

    .collection-title {
        font-size: 2.5rem;
    }

    .collection-image {
        height: 60vh;
    }

    .hand-drawn-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hand-drawn-image {
        padding: 3rem 1.5rem;
        justify-content: center;
    }

    .hand-drawn-image img {
        max-width: 300px;
    }

    .hand-drawn-text {
        padding: 1rem 1.5rem 3rem 1.5rem;
    }

    .hand-drawn-text p {
        font-size: 1.5rem;
        text-align: center;
    }

    .lost-garden-section {
        min-height: auto;
    }

    .lost-garden-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: auto;
    }

    .lost-garden-bg.left {
        grid-column: 1;
        grid-row: 1;
        min-height: 50vh;
    }

    .lost-garden-bg.right {
        grid-column: 1;
        grid-row: 2;
        min-height: 50vh;
    }

    .lost-garden-card {
        padding: 2.5rem 2rem;
        max-width: 90%;
        grid-column: 1;
        grid-row: 1 / 3;
        align-self: center;
    }

    .lost-garden-card h2 {
        font-size: 2rem;
    }

    .lost-garden-card p {
        font-size: 0.95rem;
    }

    .values-heading {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-container {
        flex-direction: column;
        gap: 0;
    }

    .gallery-left {
        width: 100%;
    }

    .gallery-card {
        position: static;
        transform: none;
        margin: 2rem auto;
        max-width: 90%;
    }

    .gallery-card h2 {
        font-size: 1.5rem;
    }

    .gallery-middle {
        position: static;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        padding: 2rem 1.5rem;
        margin-left: 0;
    }

    .gallery-middle img {
        width: 30%;
        max-width: 150px;
    }

    .gallery-right {
        position: static;
        left: auto;
        width: 100%;
        height: 400px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .contact-form-section {
        padding-left: 0;
    }

    .contact-form-section h2 {
        font-size: 2.5rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-logo-section {
        order: 1;
    }

    .contact-logo-section img {
        max-width: 200px;
    }

    .footer .container {
        padding: 0 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    section {
        padding: 4rem 0;
    }
}

/* Collections Page */
.collections-page {
    background-color: var(--cream);
    padding: 12rem 0 6rem 0;
    min-height: 100vh;
}

.collections-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
}

.back-link {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: #666;
    opacity: 0.65;
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 300;
    padding-top: 15px;
    margin-bottom: 3.5rem;
    transition: opacity 0.3s ease, text-decoration 0.25s ease;
}

.back-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.collections-title {
    font-family: 'Canela', serif;
    font-size: 4.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    opacity: 1;
    letter-spacing: -0.5px;
    line-height: 1.3;
    padding: 60px 0;
    margin-bottom: 0;
    text-align: center;
}

.collections-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #3a4a3f;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
}

.collections-subtitle::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(74, 93, 79, 0.3), transparent);
}

.collections-filter {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 5rem;
    padding-top: 2rem;
    flex-wrap: wrap;
    position: relative;
}

.collections-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: rgba(74, 93, 79, 0.25);
}

.filter-btn {
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-light);
    opacity: 0.85;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: opacity 0.25s ease;
    position: relative;
    text-decoration: none;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--dark-green);
    transition: width 0.25s ease;
}

.filter-btn:hover {
    opacity: 1;
}

.filter-btn:hover::after {
    width: 100%;
}

.filter-btn.active {
    color: var(--dark-green);
    opacity: 1;
}

.filter-btn.active::after {
    width: 100%;
    height: 2px;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 4rem;
    opacity: 1;
}

.collection-item {
    text-align: center;
    text-decoration: none;
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.collection-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #fafafa;
    margin-bottom: 2rem;
}

.collection-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.collection-image-wrapper:hover::after {
    opacity: 1;
}

.collection-img-main,
.collection-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.collection-img-hover {
    opacity: 0;
}

.collection-image-wrapper:hover .collection-img-main {
    transform: scale(1.05);
}

.collection-image-wrapper:hover .collection-img-hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Hover Overlay Buttons */
.hover-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    white-space: nowrap;
    z-index: 2;
}

.collection-image-wrapper:hover .hover-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.hover-btn:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-2px);
}

.collection-item-title {
    font-family: 'Canela', serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.collection-item:hover .collection-item-title {
    color: var(--mid-green);
}

.collection-item-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.collection-item-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 400;
}

@media (max-width: 768px) {
    .collections-page {
        padding: 10rem 0 4rem 0;
    }

    .collections-container {
        padding: 0 1.5rem;
    }

    .back-link {
        font-size: 0.8rem;
        margin-bottom: 2.5rem;
    }

    .collections-title {
        font-size: 3rem;
        padding: 40px 0;
    }

    .collections-subtitle {
        font-size: 1rem;
        padding: 0 1.5rem 60px;
        max-width: 90%;
        line-height: 1.7;
    }

    .collections-subtitle::before {
        width: 50px;
        top: -1.25rem;
    }

    .collections-filter {
        gap: 1.5rem;
        padding-top: 1.5rem;
    }

    .filter-btn {
        font-size: 0.75rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }


    .collection-image-wrapper {
        max-width: 450px;
        margin: 0 auto 1.5rem;
    }

    .hover-btn {
        font-size: 0.75rem;
        padding: 0.7rem 1.5rem;
        bottom: 30px;
    }
}

/* Product Detail Page */
.product-detail-page {
    background-color: var(--cream);
    padding: 12rem 0 6rem 0;
    min-height: 100vh;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.product-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.product-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-breadcrumb a:hover {
    color: var(--dark-green);
}

.product-breadcrumb span {
    color: var(--text-dark);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
}

.product-detail-left {
    width: 400px;
}

.product-detail-image {
    width: 400px;
    height: 400px;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-right {
    padding-top: 0;
}

.product-detail-title {
    font-family: 'Canela', serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.product-detail-text {
    margin-bottom: 3rem;
}

.product-detail-text p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.product-detail-note {
    font-style: italic;
    color: var(--text-light);
}

.product-detail-specs {
    font-size: 0.9rem !important;
    color: var(--text-light) !important;
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 10rem 0 4rem 0;
    }

    .product-detail-container {
        padding: 0 1.5rem;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-detail-left {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .product-detail-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .product-detail-title {
        font-size: 2rem;
    }
}

/* Product Page */
.product-section {
    background-color: #F7F4ED;
    padding-top: 12rem;
    padding-bottom: 8rem;
}

.product-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4rem;
}

.product-breadcrumbs {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    color: var(--dark-green);
}

.product-layout {
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    position: relative;
}

/* Editorial divider line */
.product-layout::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(76, 93, 79, 0.12) 10%, rgba(76, 93, 79, 0.12) 90%, transparent);
    transform: translateX(-2.5rem);
}

/* Product Gallery Layout */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    position: sticky;
    top: 8rem;
    align-self: flex-start;
    max-height: calc(100vh - 9rem);
    align-items: center;
}

.product-thumbnails {
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
    justify-content: center;
    padding-top: 1rem;
    align-items: center;
}

.thumbnail-item {
    width: 100px;
    height: 100px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.25s ease;
    opacity: 0.6;
    background-color: #FDFCFA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thumbnail-item:hover {
    opacity: 1;
    border-color: #e8e4da;
}

.thumbnail-item.active {
    opacity: 1;
    border: 2px solid #2f4231;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-main-image {
    width: 100%;
    max-width: 700px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 3px;
    background: linear-gradient(135deg, #FDFCFA 0%, #F9F7F3 100%);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 24px 48px rgba(76, 93, 79, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-main-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(76, 93, 79, 0.06);
    pointer-events: none;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 250ms ease-in-out;
}

.product-right {
    flex: 0 0 auto;
    width: 100%;
    max-width: 480px;
    max-height: none;
}

.product-right h1 {
    font-family: 'Canela', serif;
    font-size: 2.25rem;
    font-weight: 300;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.product-price-range {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid #e0e0e0;
}

.price-from {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
}

.price-description {
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-text {
    margin-bottom: 2.5rem;
    max-width: 60ch;
}

.product-text p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #4A4A4A;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.product-text p:first-child {
    font-style: italic;
    font-size: 1rem;
    color: var(--dark-green);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.product-text p:last-child {
    margin-bottom: 0;
}

.product-text em {
    color: var(--text-light);
}

.product-right .btn-primary {
    background-color: var(--dark-green);
    color: var(--cream);
    border: 1px solid var(--dark-green);
}

.product-right .btn-primary::before {
    background-color: var(--mid-green);
}

.product-right .btn-primary:hover {
    color: var(--cream);
    border-color: var(--mid-green);
}

/* Product Form Styles */
.product-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Price Display at Top */
.product-price-display {
    margin-bottom: 1.5rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(76, 93, 79, 0.12);
}

.product-price-display .price-amount {
    font-size: 2rem;
    font-weight: 500;
    color: var(--dark-green);
    letter-spacing: -0.02em;
    display: block;
    margin-bottom: 0.625rem;
}

.price-micro-copy {
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #7A7A7A;
    font-style: italic;
    letter-spacing: 0.01em;
    max-width: 38ch;
}

.product-option {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.product-option-label {
    font-family: 'Canela', serif;
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.25rem;
}

.product-radio-group {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.product-radio-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.product-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.product-radio-option .radio-label {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(76, 93, 79, 0.15);
    border-radius: 2px;
    background-color: #FDFCFA;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    min-height: 70px;
    justify-content: center;
}

.product-radio-option input[type="radio"]:checked + .radio-label {
    border-color: rgba(76, 93, 79, 0.35);
    background-color: rgba(76, 93, 79, 0.04);
    box-shadow:
        0 0 0 1px rgba(76, 93, 79, 0.1),
        inset 0 1px 2px rgba(76, 93, 79, 0.05);
}

.product-radio-option:hover .radio-label {
    border-color: rgba(76, 93, 79, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.radio-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-green);
}

.radio-price {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Product Dropdown Select */
.product-select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--dark-green);
    background-color: #FDFCFA;
    border: 1px solid rgba(76, 93, 79, 0.15);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5D4F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.product-select:hover {
    border-color: rgba(76, 93, 79, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.product-select:focus {
    outline: none;
    border-color: rgba(76, 93, 79, 0.35);
    box-shadow:
        0 0 0 1px rgba(76, 93, 79, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Style dropdown options */
.product-select option {
    background-color: #FDFCFA;
    color: var(--dark-green);
    padding: 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
}

.product-select option:hover,
.product-select option:focus,
.product-select option:checked {
    background-color: rgba(76, 93, 79, 0.08);
    color: var(--dark-green);
}

/* Conditional Options */
.conditional-options {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Selected Fabric Display */
.selected-fabric-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background-color: #FDFCFA;
    border: 1px solid rgba(76, 93, 79, 0.15);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.selected-fabric-display:hover {
    border-color: rgba(76, 93, 79, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.selected-fabric-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.selected-fabric-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark-green);
}

.selected-fabric-meta {
    font-size: 0.8125rem;
    color: #7A7A7A;
}

.selected-fabric-description {
    font-size: 0.8125rem;
    font-style: italic;
    color: #6B6B6B;
    margin-top: 0.125rem;
}

.change-fabric-btn {
    font-size: 0.8125rem;
    color: var(--dark-green);
    background: none;
    border: 1px solid rgba(76, 93, 79, 0.25);
    padding: 0.5rem 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.change-fabric-btn:hover {
    background-color: rgba(76, 93, 79, 0.05);
    border-color: var(--dark-green);
}

/* Fabric Selector Modal */
.fabric-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.fabric-modal.active {
    opacity: 1;
    visibility: visible;
}

.fabric-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.fabric-modal-content {
    position: relative;
    margin-left: auto;
    width: 100%;
    max-width: 680px;
    height: 100vh;
    background-color: #F7F4ED;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fabric-modal.active .fabric-modal-content {
    transform: translateX(0);
}

.fabric-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 2.5rem 2rem;
    border-bottom: 1px solid rgba(76, 93, 79, 0.12);
}

.fabric-modal-header h2 {
    font-family: 'Canela', serif;
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--dark-green);
    margin: 0;
    line-height: 1.2;
}

.fabric-count {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #7A7A7A;
    margin: 0.5rem 0 0 0;
}

.fabric-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-green);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: all 0.25s ease;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.fabric-modal-close:hover {
    background-color: rgba(76, 93, 79, 0.08);
}

.fabric-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2.5rem 2.5rem;
}

.fabric-option {
    border: 1px solid rgba(76, 93, 79, 0.15);
    border-radius: 2px;
    background-color: #FDFCFA;
    margin-bottom: 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: fadeInUp 0.5s ease-out forwards;
}

.fabric-option:nth-child(1) { animation-delay: 0.1s; }
.fabric-option:nth-child(2) { animation-delay: 0.2s; }
.fabric-option:nth-child(3) { animation-delay: 0.3s; }
.fabric-option:nth-child(4) { animation-delay: 0.4s; }
.fabric-option:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fabric-option:hover {
    border-color: rgba(76, 93, 79, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.fabric-option-content {
    padding: 1.5rem 1.75rem;
}

.fabric-name {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark-green);
    margin: 0 0 0.5rem 0;
}

.fabric-specs {
    font-size: 0.875rem;
    color: #6B6B6B;
    margin: 0 0 0.75rem 0;
}

.fabric-description {
    font-size: 0.9375rem;
    font-style: italic;
    color: #4A4A4A;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.fabric-use-cases {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.use-case-tag {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    background-color: rgba(76, 93, 79, 0.06);
    color: var(--dark-green);
    border-radius: 12px;
    border: 1px solid rgba(76, 93, 79, 0.1);
    text-transform: lowercase;
    letter-spacing: 0.02em;
}

/* Digital File Info */
.digital-info {
    font-size: 0.875rem;
    line-height: 1.7;
    color: #6B6B6B;
    margin: 0;
    padding: 1.25rem 1.5rem;
    background-color: rgba(76, 93, 79, 0.025);
    border-radius: 2px;
    border: 1px solid rgba(76, 93, 79, 0.08);
    border-left: 2px solid rgba(76, 93, 79, 0.25);
    font-style: italic;
    letter-spacing: 0.01em;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--dark-green);
    background-color: transparent;
    color: var(--dark-green);
    font-size: 1.5rem;
    font-weight: 300;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: var(--dark-green);
    color: var(--cream);
}

.quantity-selector input[type="number"] {
    width: 80px;
    height: 40px;
    text-align: center;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background-color: var(--cream);
    color: var(--dark-green);
    font-weight: 500;
}

.quantity-selector input[type="number"]:focus {
    outline: none;
    border-color: var(--dark-green);
}

/* Remove spinner arrows */
.quantity-selector input[type="number"]::-webkit-inner-spin-button,
.quantity-selector input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Price Section */
.product-price-section {
    padding: 0.875rem 0;
    border-top: 2px solid #e0e0e0;
    margin-top: 0.5rem;
}

.product-total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.price-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-green);
}

.price-unit-label {
    display: block;
    font-size: 0.75rem;
    color: #7A7A7A;
    margin-top: 0.25rem;
    text-align: right;
}

/* Purchase Button */
.btn-purchase {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid var(--dark-green);
    background-color: var(--dark-green);
    color: #FDFCFA;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(76, 93, 79, 0.15);
}

.btn-purchase:hover {
    background-color: var(--mid-green);
    border-color: var(--mid-green);
    box-shadow: 0 4px 16px rgba(76, 93, 79, 0.2);
    transform: translateY(-1px);
}

.product-info-note {
    font-size: 0.75rem;
    color: #8B8B8B;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .product-radio-option .radio-label {
        padding: 0.875rem 1rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .radio-title {
        font-size: 0.8125rem;
    }

    .radio-price {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding-top: 10rem;
    }

    .product-wrapper {
        padding: 0 1.5rem;
    }

    .product-gallery {
        flex-direction: column;
        gap: 1rem;
        position: static;
        max-height: none;
        align-items: center;
        width: 100%;
    }

    .product-thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        height: 80px;
        padding: 0.5rem 0;
    }

    .product-thumbnails::-webkit-scrollbar {
        display: none;
    }

    .thumbnail-item {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .product-main-image {
        max-width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .product-right {
        position: static;
        top: auto;
    }

    .product-right h1 {
        font-size: 2rem;
    }

    /* Fabric Modal Mobile */
    .fabric-modal-content {
        max-width: 100%;
    }

    .fabric-modal-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .fabric-modal-header h2 {
        font-size: 1.75rem;
    }

    .fabric-modal-body {
        padding: 1rem 1.5rem 2rem;
    }

    .fabric-option-content {
        padding: 1.25rem 1.5rem;
    }

    .change-fabric-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .selected-fabric-display {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .change-fabric-btn {
        width: 100%;
    }

    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .slider-dot.active {
        background-color: var(--dark-green);
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        background-color: var(--cream);
        border: 1px solid var(--mid-green);
        border-radius: 50%;
        font-size: 1.5rem;
        line-height: 1;
        color: var(--dark-green);
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        font-family: Arial, sans-serif;
    }

    .slider-arrow:active {
        background-color: var(--mid-green);
        color: var(--cream);
    }

    .slider-arrow-left {
        left: 0.75rem;
    }

    .slider-arrow-right {
        right: 0.75rem;
    }
}

@media (min-width: 769px) {
    .slider-arrow {
        display: none;
    }

    .slider-dots {
        display: none;
    }
}

/* About Page */
.about-page {
    background-color: var(--cream);
    padding: 12rem 0 8rem 0;
    min-height: 100vh;
    position: relative;
}

.about-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.about-content {
    display: flex;
    gap: 0;
    align-items: stretch;
    position: relative;
}

.about-image {
    flex: 1;
    max-width: 600px;
    padding-left: 3rem;
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(1.08) saturate(0.85);
}

.about-text {
    flex: 1;
    max-width: 620px;
    position: relative;
    z-index: 2;
    margin-left: -30px;
    background-color: var(--cream);
    padding: 3.75rem 3rem 2.5rem 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-text h1 {
    font-family: 'Canela', serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 2.35rem;
    letter-spacing: 0.01em;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p.pull-quote {
    font-family: 'Canela', serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.75);
    margin: 2.5rem 0;
    padding-left: 12px;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.about-text strong {
    font-weight: 500;
}

@media (max-width: 1200px) {
    .about-image {
        max-width: 500px;
        padding-left: 2rem;
    }

    .about-text {
        max-width: 550px;
        margin-left: -20px;
        padding: 3rem 2.5rem 2rem 2.5rem;
    }
}

@media (max-width: 1024px) {
    .about-content {
        align-items: flex-start;
    }

    .about-image {
        max-width: 450px;
        padding-left: 0;
    }

    .about-text {
        max-width: 500px;
        margin-left: -15px;
        padding: 2.5rem 2rem 2rem 2rem;
    }

    .about-text h1 {
        font-size: 2.7rem;
    }
}

@media (max-width: 768px) {
    .about-page {
        padding-top: 10rem;
    }

    .about-container {
        padding: 0 1.5rem;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        max-width: 100%;
        padding-left: 0;
    }

    .about-text {
        max-width: 100%;
        margin-left: 0;
        padding: 2rem 1.5rem;
        box-shadow: none;
        border: none;
    }

    .about-text h1 {
        font-size: 2.5rem;
    }

    .about-text p.pull-quote {
        font-size: 1.1rem;
        padding-left: 10px;
    }
}

/* Team Section */
.team-section {
    background-color: var(--cream);
    padding: 6rem 0;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.team-title {
    font-family: 'Canela', serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.01em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
}

.team-member {
    text-align: center;
}

.team-member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 4rem 0;
    }

    .team-container {
        padding: 0 1.5rem;
    }

    .team-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .team-member-image {
        width: 180px;
        height: 180px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--mid-green);
    padding: 6rem 0;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.testimonials-title {
    font-family: 'Canela', serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.01em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.testimonial-stars {
    color: var(--warm-beige);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2rem;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 0.3rem;
}

.testimonial-company {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-container {
        padding: 0 1.5rem;
    }

    .testimonials-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

/* Design Services Page */
.design-services-page {
    background-color: var(--cream);
    padding: 14rem 0 6rem 0;
    min-height: 100vh;
}

.design-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.design-services-layout {
    display: grid;
    grid-template-columns: 1fr 630px;
    gap: 4.5rem;
    align-items: start;
}

.design-services-text h1 {
    font-family: 'Canela', serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
}

.design-services-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.design-services-text p:first-of-type {
    margin-bottom: 2.4rem;
}

.design-services-text .btn {
    margin-top: 1.25rem;
    padding-left: 3.3rem;
    padding-right: 3rem;
}

.design-services-text .btn-primary {
    background-color: var(--dark-green);
    color: #FFFFFF;
    border: none;
    outline: none;
    box-shadow: none;
    transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
}

.design-services-text .btn-primary::before {
    display: none;
}

.design-services-text .btn-primary:hover {
    color: rgba(255, 255, 255, 0.75);
    background-color: rgba(44, 58, 49, 0.85);
    transform: none;
}

.design-services-text .btn-primary:focus {
    outline: none;
    box-shadow: none;
}

.design-services-text .btn-primary:hover .btn-arrow {
    transform: none;
}

.design-services-circle {
    width: 630px;
    height: 630px;
    position: sticky;
    top: 14rem;
}

.design-services-circle img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1200px) {
    .design-services-layout {
        grid-template-columns: 1fr 500px;
        gap: 3.5rem;
    }

    .design-services-circle {
        width: 500px;
        height: 500px;
    }

    .design-services-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .design-services-page {
        padding-top: 11rem;
    }

    .design-services-container {
        padding: 0 1.5rem;
    }

    .design-services-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .design-services-circle {
        width: 320px;
        height: 320px;
        position: relative;
        top: 0;
        margin: 0 auto;
        order: -1;
    }

    .design-services-text p:first-of-type {
        margin-bottom: 2rem;
    }

    .design-services-text .btn {
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .design-services-text h1 {
        font-size: 2rem;
    }
}

/* Services Showcase Section */
.services-showcase-section {
    background: linear-gradient(to bottom, #F8F6EF 0%, #F7F4EA 100%);
    padding: 3.5rem 0 6rem 0;
}

.services-showcase-header {
    text-align: center;
    margin-bottom: 5rem;
    padding-top: 80px;
}

.services-showcase-header h2 {
    font-family: 'Canela', serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: #26322A;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.services-showcase-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 0;
}

.services-showcase-header::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: rgba(74, 93, 79, 0.25);
    margin: 30px auto 0;
}

.services-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.services-showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.services-showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-showcase-item:first-child {
    padding-top: 0;
}

.services-showcase-item:last-child {
    padding-top: 40px;
}

.services-showcase-item:first-child .services-slideshow {
    max-width: 480px;
    height: 480px;
}

.services-showcase-item:last-child .services-slideshow {
    max-width: 430px;
    height: 430px;
}

.services-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 0;
    background-color: var(--warm-white);
    margin-bottom: 3rem;
    transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
}

.services-slideshow:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.services-showcase-title {
    font-family: 'Canela', serif;
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: #2A3A2F;
    margin-bottom: 1rem;
}

.services-showcase-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 420px;
}

.services-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.services-slide.active {
    opacity: 1;
    position: relative;
}

.services-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .services-showcase-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .services-showcase-section {
        padding: 3rem 0 4rem 0;
    }

    .services-showcase-header {
        padding-top: 60px;
        margin-bottom: 4rem;
    }

    .services-showcase-header h2 {
        font-size: 2.2rem;
        letter-spacing: 0.01em;
    }

    .services-showcase-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .services-showcase-header::after {
        width: 40px;
        margin-top: 25px;
    }

    .services-showcase-container {
        padding: 0 1.5rem;
    }

    .services-showcase-title {
        font-size: 1.4rem;
    }

    .services-showcase-item:first-child,
    .services-showcase-item:last-child {
        padding-top: 0;
    }

    .services-showcase-item:first-child .services-slideshow,
    .services-showcase-item:last-child .services-slideshow {
        max-width: 100%;
        height: auto;
    }

    .services-slideshow {
        max-width: 100%;
        margin-bottom: 2.5rem;
    }

    .services-showcase-description {
        max-width: 100%;
    }

    .services-showcase-row {
        gap: 3.5rem;
    }
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, #F8F6EF 0%, #F7F4EA 100%);
    padding: 8rem 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 6rem;
}

.faq-main-title {
    font-family: 'Canela', serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.faq-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem 3rem;
    transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.faq-item:hover {
    background-color: rgba(47, 59, 49, 0.04);
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--mid-green);
}

.faq-question span:first-child {
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2F3B31;
    opacity: 0.7;
    transition: transform 0.4s ease, opacity 0.4s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 12px;
    height: 20px;
    display: block;
}

.faq-question:hover .faq-icon {
    opacity: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                margin-top 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 1500px;
    margin-top: 2rem;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: var(--mid-green);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.faq-answer a:hover {
    border-bottom-color: var(--mid-green);
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 1.2rem 0;
}

.faq-answer ul li {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.faq-answer ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--mid-green);
    font-weight: 400;
}

.faq-answer strong {
    font-weight: 600;
    color: var(--dark-green);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }

    .faq-container {
        padding: 0 1.5rem;
    }

    .faq-main-title {
        font-size: 2.5rem;
        margin-bottom: 3.5rem;
    }

    .faq-item {
        padding: 1.5rem 1.5rem;
    }

    .faq-intro {
        margin-bottom: 3rem;
    }

    .faq-question {
        font-size: 1.2rem;
        gap: 1.5rem;
    }

    .faq-icon svg {
        width: 10px;
        height: 16px;
    }

    .faq-item.active .faq-answer {
        margin-top: 1.5rem;
    }

    .faq-answer p,
    .faq-answer ul li {
        font-size: 0.95rem;
    }
}

/* Query Section */
.query-section {
    background-color: var(--mid-green);
    padding: 6rem 0;
}

.query-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.query-title {
    font-family: 'Canela', serif;
    font-size: 2.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--cream);
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.query-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.query-section .btn-primary {
    background-color: var(--cream);
    color: var(--dark-green);
}

.query-section .btn-primary:hover {
    background-color: var(--warm-beige);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .query-section {
        padding: 4rem 0;
    }

    .query-container {
        padding: 0 1.5rem;
    }

    .query-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .query-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Blog Slider Section */
.blog-slider-section {
    background: linear-gradient(180deg, #faf8f5 0%, #f5f1e8 100%);
    padding: 10rem 0 6rem 0;
}

.blog-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.blog-slider {
    position: relative;
    overflow: hidden;
}

.blog-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    display: grid;
}

.blog-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.blog-slide-image-link {
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.blog-slide-image-link:hover {
    opacity: 0.9;
}

.blog-slide-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.3s ease;
}

.blog-slide-title-link:hover {
    opacity: 0.8;
}

.blog-slide-image {
    background-color: #e8e4db;
    overflow: hidden;
    aspect-ratio: 1;
}

.blog-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-slide-content {
    padding: 2rem 0;
}

.blog-slide-tags {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.blog-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--mid-green);
    background-color: rgba(74, 93, 79, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.blog-slide-title {
    font-family: 'Canela', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--dark-green);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.blog-slide-author {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--mid-green);
    margin-bottom: 2rem;
}

.blog-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--mid-green);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-slide-link:hover {
    gap: 1rem;
}

.blog-slide-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.blog-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 3rem;
}

.blog-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(74, 93, 79, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.blog-dot:hover {
    background-color: rgba(74, 93, 79, 0.5);
}

.blog-dot.active {
    background-color: var(--mid-green);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .blog-slider-section {
        padding: 4rem 0;
    }

    .blog-slider-container {
        padding: 0 1.5rem;
    }

    .blog-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-slide-title {
        font-size: 1.8rem;
    }

    .blog-slider-dots {
        margin-top: 2rem;
    }
}

/* Blog Page */
.blog-page {
    background-color: var(--cream);
    padding: 6rem 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

.blog-page-title {
    font-family: 'Canela', serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.01em;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background-color: transparent;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-placeholder-bg {
    width: 100%;
    height: 100%;
    background-color: #e8e4db;
}

.blog-card-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-family: 'Canela', serif;
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-card-excerpt {
    display: none;
}

.blog-card-link-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d4986e;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: auto;
}

.blog-card-placeholder {
    opacity: 0.5;
    pointer-events: none;
}

.blog-view-more {
    text-align: center;
    margin-top: 4rem;
}

.blog-view-more-btn {
    background-color: var(--dark-green);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-view-more-btn:hover {
    background-color: var(--mid-green);
    transform: translateY(-2px);
}

.blog-view-more-btn.hidden {
    display: none;
}

/* Blog Post */
.blog-post {
    background-color: var(--cream);
    padding: 8rem 0 4rem 0;
    min-height: calc(100vh - 80px);
}

.blog-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.blog-back-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--mid-green);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 3rem;
    transition: color 0.3s ease;
}

.blog-back-link:hover {
    color: var(--dark-green);
}

.blog-post-header {
    margin-bottom: 4rem;
}

.blog-post-header h1 {
    font-family: 'Canela', serif;
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0;
}

.blog-post-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
}

.blog-post-content > p {
    margin-bottom: 1.8rem;
}

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

.blog-post-content h2 {
    font-family: 'Canela', serif;
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    margin: 3rem 0 1.5rem 0;
    line-height: 1.3;
}

.blog-post-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-green);
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
}

.blog-post-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.blog-post-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.blog-post-content ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--mid-green);
}

.blog-post-content em {
    font-style: italic;
    color: var(--dark-green);
}

.blog-post-content strong {
    font-weight: 600;
    color: var(--dark-green);
}

.blog-post-content a {
    color: var(--mid-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.blog-post-content a:hover {
    color: var(--dark-green);
}

.blog-cta-link {
    display: inline-block;
    background-color: var(--dark-green);
    color: var(--cream) !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 1rem 0;
}

.blog-cta-link:hover {
    background-color: var(--mid-green);
    transform: translateY(-2px);
}

.blog-post-cta {
    max-width: 680px;
    margin: 6rem auto 4rem auto;
    text-align: center;
    padding: 3rem 2rem;
    background-color: #f2efe9;
    border-radius: 8px;
}

.blog-post-cta h2 {
    font-family: 'Canela', serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark-green);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.blog-post-cta p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Blog Post Sections with Images */
.blog-section-with-image {
    padding: 5rem 2rem;
    margin: 5rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    width: calc(100vw - 4rem);
    max-width: min(1200px, calc(100vw - 4rem));
    margin-left: 50%;
    transform: translateX(-50%);
}

.blog-post-content > .blog-section-with-image:nth-child(even) {
    background-color: #f2efe9;
    max-width: none;
    padding: 5rem 0;
}

.blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-text,
.blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-image {
    max-width: 570px;
}

.blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-text:first-child {
    margin-left: auto;
    padding-right: 2rem;
}

.blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-image:last-child {
    margin-right: auto;
    padding-left: 2rem;
}

.blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-image:first-child {
    margin-left: auto;
    padding-right: 2rem;
}

.blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-text:last-child {
    margin-right: auto;
    padding-left: 2rem;
}

.blog-section-with-image.image-left .blog-section-text {
    order: 2;
}

.blog-section-with-image.image-left .blog-section-image {
    order: 1;
}

.blog-section-image {
    width: 100%;
}

.blog-section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-section-text h2 {
    margin-top: 0;
}

@media (max-width: 968px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding: 5rem 0;
    }

    .blog-container,
    .blog-post-container {
        padding: 0 1.5rem;
    }

    .blog-page-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-post-header h1 {
        font-size: 2rem;
    }

    .blog-post-content {
        font-size: 1rem;
    }

    .blog-post-content h2 {
        font-size: 1.8rem;
    }

    .blog-post-content h3 {
        font-size: 1.05rem;
    }

    .blog-section-with-image.image-right,
    .blog-section-with-image.image-left {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        transform: none;
        padding: 3rem 1.5rem;
    }

    .blog-post-content > .blog-section-with-image:nth-child(even) {
        padding: 3rem 1.5rem;
    }

    .blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-text,
    .blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-image {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-text:first-child,
    .blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-image:last-child,
    .blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-image:first-child,
    .blog-post-content > .blog-section-with-image:nth-child(even) .blog-section-text:last-child {
        margin: 0;
        padding: 0;
    }

    .blog-section-with-image .blog-section-image {
        order: 1;
    }

    .blog-section-with-image .blog-section-text {
        order: 2;
    }

    .article-nav-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .article-nav-link {
        padding: 1rem;
        gap: 1rem;
    }

    .article-nav-link.prev,
    .article-nav-link.next {
        flex-direction: row;
    }

    .article-nav-image {
        width: 80px;
        height: 80px;
    }

    .article-nav-content {
        text-align: left !important;
    }

    .article-nav-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .article-nav-title {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .suggested-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .suggested-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .suggested-image {
        height: 200px;
    }

    .suggested-container {
        padding: 0 1.5rem;
    }

    .blog-categories-container {
        gap: 1.5rem;
        padding: 0 1.5rem;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .category-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .category-name {
        font-size: 0.85rem;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* Scroll Animations */
.fade-in-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Image Hover Effects */
.collection-image img,
.hand-drawn-image img,
.gallery-left img,
.gallery-middle img,
.gallery-right img {
    transition: transform 0.6s ease, filter 0.6s ease;
}

.collection-image:hover img,
.hand-drawn-image:hover img {
    transform: scale(1.03);
}

.gallery-left:hover img {
    transform: scale(1.02);
    filter: brightness(1.05);
}

.gallery-middle img:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-right:hover img {
    transform: scale(1.05);
}

/* Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* Placeholder images - for demonstration */
.placeholder-image {
    position: relative;
    overflow: hidden;
}

.placeholder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
