:root {
    /* Primary Palette - Terracotta / Rust */
    --terracotta-dark: #c2412c;
    --terracotta: #c85c3e;
    --terracotta-light: #b13e3e;
    --terracotta-btn: #ac4e32;
    --terracotta-hover: #8b3c24;
    --terracotta-active: #a5462c;
    
    /* Cream / Off-White Backgrounds */
    --cream-bg: #fefaf5;
    --cream-card: #fff8f0;
    --cream-store: #fef7ed;
    --cream-about: #fff9f0;
    
    /* Warm Beige Backgrounds */
    --beige-nav: #fff1e6;
    --beige-home: #f9ede3;
    --beige-editorial: #faeedf;
    --beige-promo: #ffe2cf;
    --beige-footer: #fff0e4;
    
    /* Brown / Espresso Text Colors */
    --brown-dark: #1f1a17;
    --brown-text: #2c1d16;
    --brown-medium: #33221b;
    --brown-light: #4f2c1c;
    
    /* Muted Gold / Taupe Borders & Shadows */
    --taupe-border: #e0cbbc;
    --taupe-light: #edd9c8;
    --taupe-soft: #e7cfb5;
    --taupe-shadow: #dbb28b;
    
    /* Paper White */
    --white: #ffffff;
    
    /* Soft Peach / Secondary Surfaces */
    --peach-placeholder: #f0e7de;
    --peach-video: #e7d9cf;
    --peach-icon: #e9d8cb;
    
    /* Black */
    --black: #000000;
    
    /* Gradient Colors */
    --gradient-start: #b13e3e;
    --gradient-end: #e58e6b;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.08);
    --transition: all 0.25s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefaf5;
    color: #1f1a17;
    line-height: 1.4;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== NAVIGATION (shared) ========== */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: #fff1e6;
    border-bottom: 2px solid #e0cbbc;
    flex-wrap: wrap;
    font-weight: 700;
}

.nav-logo {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #b13e3e;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
	color: #ac4e32;
    font-weight: 700;
    font-size: 1.25rem;
    transition: 0.2s;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: #c15353;
    transform: scale(1.05);
}

.logo-img {
    height: 100px;  /* Adjust size as needed */
    width: auto;
    display: block;
}

/* HOME page specific */
#home {
    background: #f9ede3;
    padding: 2rem 2rem 0 2rem;
}

.home-box {
    max-width: 1300px;
    margin: 0 auto;
    background: #fff8f0;
    border-radius: 48px;
    padding: 2rem;
    box-shadow: 0 20px 30px rgba(0,0,0,0.05);
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.pill {
    background: #c15353;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.dots {
    font-size: 1.5rem;
    letter-spacing: 6px;
    color: #a56b3a;
}

.main-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.article-img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.article-img:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    text-align: center;
    background: linear-gradient(135deg, #b13e3e, #e58e6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.article-title:hover {
	filter: brightness(1.2);
	transition: 0.3s;
}

.promo-section {
    margin-top: 1rem;
    border-top: 1px solid #edd9c8;
    padding-top: 1rem;
}

.promo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: #b7523a;
}

.status-label {
    background: #e7cfb5;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
}

.hover-details {
	position: relative;
	cursor: help;
	color: #882E16;
	font-weight: bold;
	border-bottom; 1px dashed #882E16;
}

.tooltip {
	visibility: hidden;
	width: 160px;
	background-color: #f4f1ea;
	color: #333;
	text-align: center;
	border-radius: 5px;
	padding: 5px;
	position: absolute;
	z-index; 1;
	bottom: 125%;
	left: 50%;
	margin-left: -80px;
	opacity: 0;
	transition: opacity 0.3s;
	box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.hover-details:hover .tooltip {
	visibility: visible;
	opacity: 1;
}

/* Demo reel */
.white-bg {
    background: white;
    padding: 4rem 2rem;
	margin: auto;
}

.reel-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

/* Your existing styles */
.video-box {
    background: #f0e7de;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #6b4c3b;
    font-weight: 500;
    flex: 1 1 220px;
    max-width: 260px;
    background: white;
    padding: 1rem 1rem 1.5rem 1rem;
    border-radius: 20px;
    transition: transform 0.2s;
}

/* Add these new styles for videos */
.video-box {
    background: #f0e7de;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    overflow: hidden; /* Keeps rounded corners */
	padding: 80px 40px;
	max-width: 1000px;
}

.video-box video {
    width: 80%;
	max-width: 800px;
    height: auto;
    display: block;
	margin: 0 auto;
    border-radius: 12px;
	box-shadow: 12px 12px 0 rgba(0,0,0,0.2);
    /* Maintains video quality */
	image-rendering: -webkit-optimize-contrast;
	object-fit: contain;
}

/* Optional: Make video container HD-friendly */
.video-box {
    max-width: 1920px; /* Limits to HD width */
    margin: 0 auto;
}

.video-box video:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.25);
	cursor: pointer;
	transition: 0.3s ease;
}

.video-box video {
	transition: 0.3s ease;
}

/* For better quality on larger screens */
@media (min-width: 1200px) {
    .video-box video {
        max-width: 1080px; /* Full HD max width */
        margin: 0 auto;
    }
}

/* editorial section */
.editorial-bg {
    background: #faeedf;
    padding: 4rem 2rem;
}

.editorial-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.large-script {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 8rem;
    opacity: 0.1;
    position: absolute;
    top: -40px;
    left: 0;
    pointer-events: none;
}

.editorial-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
}

.editorial-copy {
    flex: 1;
    min-width: 260px;
}

.tagline {
    font-weight: 700;
    letter-spacing: 2px;
    color: #b95b3a;
    margin-bottom: 1rem;
}

.editorial-heading {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.editorial-subtext {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #33221b;
}

.btn-editorial {
    background: #ac4e32;
    padding: 0.8rem 2rem;
    color: white;
    border-radius: 40px;
    font-weight: 700;
    display: inline-block;
    transition: 0.2s;
}

.btn-editorial:hover {
    background: #8b3c24;
    transform: scale(1.02);
}

.editorial-image-box img {
    border-radius: 36px;
    width: 320px;
    height: auto;
    box-shadow: 18px 18px 0 #dbb28b;
}

/* POLAROIDS FIXED: scattered images -> neat flexbox grid */
.red-bg {
    background: #c2412c;
    padding: 4rem 2rem;
}

.polaroid-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.label {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 2.5rem;
    color: #ffefcf;
    font-weight: 700;
    margin-bottom: 1rem;
}

.grid-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
	font-style: italic;
    color: white;
    margin-bottom: 3rem;
    line-height: 1.2;
	background: linear-gradient(135deg, #b13e3e, #e58e6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.grid-heading:hover {
	filter: brightness(2.0);
	transition: 0.2s;
}

/* FIX: polaroid-grid with flexbox, even spacing, responsive */
.polaroid-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.polaroid-card {
    flex: 1 1 220px;
    max-width: 260px;
    background: white;
    padding: 1rem 1rem 1.5rem 1rem;
    border-radius: 20px;
    box-shadow: 12px 12px 0 rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.polaroid-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
}

.polaroid-card:hover {
    transform: translateY(-8px);
}

.btn-white {
    background: white;
    color: #c2412c;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    transition: 0.2s;
}

.btn-white:hover {
    background: #ffe5cf;
    transform: scale(0.98);
}

/* ========== ABOUT PAGE ========== */
.learn-more-page {
    background: #fff9f0;
}

.cherie-header {
    padding: 1.5rem 3rem;
    border-bottom: 2px solid #e2cfbc;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-tag {
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    background: #ecceb5;
    padding: 0.3rem 1rem;
    border-radius: 30px;
}

.main-logo {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 2rem;
    color: #b1422c;
}

.learn-more-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.text-side {
    flex: 1;
    min-width: 280px;
}

.sub-heading {
    font-weight: 700;
    color: #c85c3e;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
}

.main-display-title {
    font-size: 3.8rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: #2c1d16;
    margin-bottom: 2rem;
}

.btn-outline-red {
    border: 2px solid #c85c3e;
    color: #c85c3e;
    padding: 0.7rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    display: inline-block;
    transition: 0.2s;
}

.btn-outline-red:hover {
    background: #c85c3e;
    color: white;
}

.image-side {
    flex: 1;
    min-width: 260px;
}

.polaroid-wrapper {
    position: relative;
}

.main-polaroid-img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 20px 20px 0 #eccfaf;
}

.floating-polaroid-small {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 130px;
    background: white;
    padding: 0.5rem;
    border-radius: 20px;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.1);
}

/* ========== ARTWORKS PAGE (enhanced) ========== */
.store-layout {
    background: #fef7ed;
}

.store-header {
    background: #ffffffd9;
    margin: 1rem 2rem;
    border-radius: 60px;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.store-nav-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-logo {
    font-family: 'Cherry Bomb One', cursive;
    font-size: 1.8rem;
    color: #b94b2c;
}

.search-wrapper {
    display: flex;
    flex: 2;
    min-width: 200px;
    gap: 0.5rem;
}

.search-bar {
    flex: 1;
    padding: 0.8rem 1.2rem;
    border-radius: 60px;
    border: 1px solid #e2cbbc;
    font-family: 'Inter', sans-serif;
    background: white;
    outline: none;
    font-size: 0.9rem;
}

.search-icon-btn {
    background: #c85c3e;
    border: none;
    border-radius: 60px;
    padding: 0 1.2rem;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    transition: 0.2s;
}

.search-icon-btn:hover {
    background: #a5462c;
}

.user-controls {
    font-weight: 600;
    background: #f0e2d4;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
}

.store-nav-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
    font-weight: 600;
    color: #4f2c1c;
}

/* Filter chip hover effects */
/* Simple uniform hover effect */
.filter-chip {
    cursor: pointer;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 30px;
    background: transparent;
    border: 2px solid #6b4c3b;
    color: #6b4c3b;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.filter-chip:hover {
    background: #6b4c3b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 76, 59, 0.4);
}

.filter-chip:active {
    transform: translateY(0px);
}

/* Active state */
.filter-chip.active-filter {
    background: #6b4c3b;
    color: white;
}

.store-container {
    max-width: 1300px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.reel-section {
    margin: 3rem 0;
}

.video-box {
    background: #e7d9cf;
    min-height: 220px;
}

.promo-banner {
    display: flex;
    flex-wrap: wrap;
    background: #ffe2cf;
    border-radius: 48px;
    margin: 3rem 0;
    overflow: hidden;
}

.promo-text-side {
    flex: 1;
    padding: 3rem;
}

.promo-title {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.2;
}

.promo-badge {
    background: #c85c3e;
    color: white;
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 60px;
    margin-top: 1rem;
}

.promo-img-side {
    flex: 1;
    background: #d6b18b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.promo-img-side img {
    max-height: 280px;
    object-fit: cover;
    border-radius: 32px;
}

.category-menu {
    margin: 3rem 0;
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.menu-item {
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
}

.icon-circle {
    background: #e9d8cb;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.menu-item p {
    font-weight: 600;
}

.bestsellers {
    margin: 3rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Make VIEW ALL more interactive */
.view-all {
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
}

.view-all:hover {
    background: #6b4c3b;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 76, 59, 0.4);
}

/* Optional: Add active/click effect */
.view-all:active {
    transform: scale(0.95);
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
}

.product-card {
    flex: 1 1 240px;
    background: white;
    border-radius: 28px;
    padding: 1rem;
    transition: 0.2s;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 20px;
}

.product-card h3 {
    margin: 0.8rem 0 0.3rem;
}

.product-card:hover{
	transform: translateY(-8px);
}

.price {
    font-weight: 800;
    color: #b1422c;
}

.footer-action {
    text-align: center;
    padding: 3rem 0;
}

.back-home-footer {
    background: #fff0e4;
    padding: 0.8rem 2rem;
    border-radius: 60px;
    font-weight: 800;
    display: inline-block;
}

/* ========== MEDIA QUERIES (mobile first enhancements) ========== */
@media (max-width: 900px) {
    .main-nav {
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-img {
        width: 150px;
        height: 180px;
    }
    .editorial-heading {
        font-size: 2.5rem;
    }
    .large-script {
        font-size: 4rem;
    }
    .grid-heading {
        font-size: 1.8rem;
    }
    .polaroid-card {
        flex: 1 1 180px;
    }
    .main-display-title {
        font-size: 2.5rem;
    }
    .store-nav-top {
        flex-direction: column;
        align-items: stretch;
    }
    .search-wrapper {
        width: 100%;
    }
    .store-nav-menu {
        justify-content: center;
    }
    .promo-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .main-banner {
        flex-direction: column;
    }
    .editorial-content {
        flex-direction: column;
    }
    .polaroid-grid {
        gap: 1rem;
    }
    .content-grid {
        flex-direction: column;
    }
    .floating-polaroid-small {
        width: 80px;
        right: -10px;
        bottom: -10px;
    }
    .product-grid {
        justify-content: center;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream-bg);
    color: var(--brown-dark);
    line-height: 1.5;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 3rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: 32px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

/* ========== NAVIGATION ========== */
.about-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--taupe-light);
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-logo {
    font-family: 'Cherry Bomb', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--terracotta), var(--terracotta-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: var(--brown-medium);
    transition: var(--transition);
    font-size: 1rem;
    letter-spacing: -0.2px;
}

.nav-link:hover {
    color: var(--terracotta);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--terracotta);
    font-weight: 600;
    border-bottom: 2px solid var(--terracotta);
    padding-bottom: 4px;
}

/* ========== WELCOME SECTION ========== */
.welcome-section {
    text-align: center;
    margin: 1rem 0 2rem;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--peach-icon);
    padding: 0.5rem 1.2rem;
    border-radius: 60px;
    margin-bottom: 1.2rem;
}

.emoji-wave {
    font-size: 1.5rem;
    font-weight: 500;
	color: #b94b2c;

}

.welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #b94b2c;
}

.subheader {
    font-size: 1rem;
    color: var(--brown-light);
    margin-top: 0.25rem;
    font-weight: 500;
}

.number-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: var(--taupe-border);
    border-radius: 2px;
}

.divider-number {
    font-weight: 600;
    color: var(--terracotta);
    font-size: 1rem;
    letter-spacing: 1px;
}

.divider-icon {
    color: var(--taupe-shadow);
    font-size: 0.9rem;
}

/* ========== HOME + ABOUT BLOCK ========== */
/* Center the entire socials section */
.home-about-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;    
	margin-bottom: 2.5rem;
    background: var(--cream-card);
    border-radius: 28px;
    padding: 1.8rem 2rem;
    border: 1px solid var(--taupe-light);
    text-align: center;
}

/* Center the invite text */
.invite-text {
    text-align: center;
    margin: 15px auto;
}

/* Center the status row */
.status-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Center the section header mini */
.section-header-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Make social links stand out */
.dm-link {
    display: inline-block;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.dm-link:hover {
    transform: scale(1.05);
}

.status-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.status-badge {
    font-size: 0.85rem;
    background: var(--beige-footer);
    padding: 0.25rem 1rem;
    border-radius: 40px;
}

.status-badge strong {
    color: var(--terracotta);
    font-weight: 700;
}

.last-updated {
    font-size: 0.85rem;
    color: var(--brown-light);
}

/* Likes list styling */
.likes-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.likes-list li {
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    border-bottom: 1px dashed rgba(107, 76, 59, 0.1);
}

.likes-list li:last-child {
    border-bottom: none;
}

/* Decorative icons */
.decorative-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    font-size: 24px;
    padding: 15px 0;
}

/* Quote block styling */
.quote-placeholder {
    background: #f0e7de;
    border-radius: 32px;
    padding: 40px 30px;
    text-align: center;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quote-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.quote-caption {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #6b4c3b;
    font-style: italic;
}

/* Description text improvements */
.description-text {
    margin-bottom: 15px;
    line-height: 1.6;
}

.description-text:hover {
	filter: brightness(2.2);
	transition: 0.3s;
}

/* ========== TWO COLUMN LAYOUT ========== */
.content-two-columns {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 2rem;
    flex-wrap: wrap;
}

.card-description {
    background: var(--white);
    border-radius: 28px;
    padding: 1.8rem;
    border: 1px solid var(--taupe-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 260px;
}

.card-description:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.card-header {
    margin-bottom: 1.2rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--terracotta);
    letter-spacing: -0.3px;
}

.credit-line {
    font-size: 1rem;
    color: var(--brown-light);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--taupe-light);
}

.credit-line strong {
	font-family: 
    color: var(--terracotta);
    font-weight: 600;
}

.description-text {
	text-align: center;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--brown-text);
    margin-bottom: 1.2rem;
}

.like-text{
	text-align: center;
	color: var(--brown-text);

}

/* Center the button group */
.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
    justify-content: center; /* This centers the buttons */
}

.btn-primary, .btn-secondary {
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 65, 44, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--terracotta);
    border: 1.5px solid var(--terracotta);
}

.btn-secondary:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========== RIGHT COLUMN STACK ========== */
.right-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 260px;
}

.image-block {
    background: var(--beige-editorial);
    border-radius: 28px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--taupe-light);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(145deg, var(--peach-placeholder), var(--taupe-soft));
    min-height: 220px;
}

.image-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.1));
}

.image-caption {
    font-family: 'Playfair Display', serif;
	font-size: 2rem;
    color: white;
	text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.3px;
    padding: 0.3rem 1rem;
    border-radius: 60px;
}

.secondary-card {
    background: var(--cream-card);
    margin-top: 0;
}

/* ========== FOOTER ========== */
/* Footer container */
.right-footer {
    margin-top: 3rem;
    padding: 2rem 2rem 1.5rem;
    border-top: 1px solid rgba(107, 76, 59, 0.2);
}

/* Flex container for footer content */
.footer-content {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns to left */
    gap: 2rem;
    flex-wrap: wrap;
}

/* Logo section - positioned left/center */
.footer-logo-section {
    flex-shrink: 0;
}

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

/* Text section */
.footer-text-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.back-home-btn {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-block;
}

.back-home-btn:hover {
    transform: translateX(-3px);
    color: var(--terracotta-dark);
}

.footer-meta {
    font-size: 0.8rem;
    color: #white;
    opacity: 0.7;
    margin: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-text-section {
        align-items: center;
    }
    
    .back-home-btn:hover {
        transform: translateX(0);
    }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 850px) {
    .bakery-container {
        margin: 1rem;
        padding: 1.5rem;
}

.content-two-columns {
	flex-direction: column;
}

.right-stack {
	width: 100%;
}
    
.number-divider {
	gap: 0.5rem;
}

.divider-line {
	width: 40px;
}

.status-row {
	gap: 1rem;
	flex-direction: column;
	align-items: center;
}

.button-group {
	justify-content: center;
}
    
.card-description {
	text-align: center;
	}
}

@media (max-width: 600px) {
    .bakery-nav {
        flex-direction: column;
        text-align: center;
}

.nav-links {
	gap: 1.5rem;
	flex-wrap: wrap;
	justify-content: center;
    }

.welcome-title {
	font-size: 1.8rem;
}

.card-title {
	font-size: 1.3rem;
}

.home-about-block {
	padding: 1.2rem;
}

.bakery-footer {
	flex-direction: column;
	text-align: center;
}

.image-placeholder {
	padding: 1.8rem;
}
    
.image-icon {
	font-size: 3rem;
}

    .image-caption {
	font-size: 1.1rem;
    }
}

/* additional decorative touches */
@media (min-width: 1024px) {
    .content-two-columns {
        gap: 2.5rem;
}

.card-description {
	padding: 2rem;
	}
}

/* hover details for cards */
.card-description .credit-line {
    transition: var(--transition);
}

.card-description:hover .credit-line strong {
    color: var(--terracotta-active);
}

/* link to home page from about is clearly visible */
.back-home-btn:active {
    transform: scale(0.97);
}