/* ===================================
   마음N콩 - 메인 스타일시트
   Modern & Clean Design
=================================== */

/* CSS Variables */
:root {
    --primary-color: #7CB342;
    --primary-dark: #558B2F;
    --primary-light: #AED581;
    --secondary-color: #F5F5DC;
    --accent-color: #FFC107;
    --accent-dark: #FF8F00;
    --text-color: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-color: #FFFFFF;
    --bg-light: #F9F9F9;
    --bg-cream: #FFFEF5;
    --bg-dark: #2C2C2C;
    --border-color: #E5E5E5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    word-break: keep-all;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* ===================================
   Header - 상단 네비게이션
=================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.logo-img {
    height: 46px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-text span {
    color: var(--accent-color);
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Header CTA Button */
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* ===================================
   Hero Section - 주방 배경
=================================== */
.hero-kitchen {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-title {
    font-size: 3.5rem;
	color:#fff;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-product-img {
    width: 200px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-badges {
    display: flex;
    gap: 12px;
}

.badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.badge-green {
    background: var(--primary-color);
    color: white;
}

.badge-yellow {
    background: var(--accent-color);
    color: var(--text-color);
}

/* ===================================
   Section Common Styles
=================================== */
.section-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* ===================================
   Product Slider Section
=================================== */
.product-slider-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.product-slider-header {
    text-align: right;
    margin-bottom: 40px;
}

.product-slider-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-slider-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-slider-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-slider-image {
    position: relative;
}

.product-slider-image img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.product-slider-info {
    padding: 20px 0;
}

.product-slider-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-slider-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.highlight-green {
    color: var(--primary-color);
}

.product-slider-text {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-slider-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    font-size: 1rem;
    color: var(--text-muted);
}

.product-slider-nav .current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.product-slider-nav .separator {
    margin: 0 4px;
}

.nav-arrows {
    display: flex;
    gap: 8px;
    margin-left: 20px;
}

.nav-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: white;
}

.nav-arrow:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ===================================
   Buttons
=================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 0.9375rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--text-color);
    color: white;
}

.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--text-color);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* ===================================
   Trust Section - 만들고, 맛보고, 인정받다
=================================== */
.trust-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.trust-header {
    text-align: center;
    margin-bottom: 60px;
}

.trust-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.trust-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.trust-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.trust-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.trust-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.trust-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 24px;
    text-align: center;
    border-radius: var(--border-radius);
}

.trust-badge .badge-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
}

.trust-badge .badge-sub {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 4px;
}

.trust-card-content {
    padding: 24px;
}

.trust-card-content h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
}

.trust-card-content p {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Subscription Banner
=================================== */
.subscription-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.subscription-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.subscription-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subscription-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.subscription-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.banner-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.subscription-banner-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.subscription-banner-content p {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ===================================
   Community Section
=================================== */
.community-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.community-header {
    text-align: center;
    margin-bottom: 50px;
}

.community-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.community-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.community-tabs .tab {
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
}

.community-tabs .tab.active {
    color: var(--text-color);
    border-bottom-color: var(--text-color);
}

.community-tabs .tab:hover {
    color: var(--text-color);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.community-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.community-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.community-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.community-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.community-card-content {
    padding: 20px;
}

.community-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.community-card-content .date {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ===================================
   Footer
=================================== */
.footer {
    background: var(--bg-light);
    padding: 40px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.footer-links-row {
    display: flex;
    gap: 24px;
}

.footer-links-row a {
    font-size: 0.8125rem;
    color: var(--text-light);
}

.footer-links-row a:hover {
    color: var(--text-color);
}

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

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    width: 80px;
    height: auto;
}

.footer-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-info .copyright {
    margin-top: 12px;
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* ===================================
   Legacy Styles (이전 페이지 호환)
=================================== */

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-color);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products-section {
    padding: 120px 0;
    background: var(--bg-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-cream);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-badge.sold-out {
    background: var(--text-muted);
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.product-info .description {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-price .current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price .original {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: var(--bg-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 179, 66, 0.1);
    border-radius: 50%;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* About Section */
.about-section {
    padding: 120px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-images img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about-images img:first-child {
    grid-column: span 2;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

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

.about-list {
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.about-list li:last-child {
    border-bottom: none;
}

.about-list .icon {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: var(--bg-color);
}

.process-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.process-tab {
    padding: 12px 32px;
    background: var(--bg-light);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
}

.process-tab.active,
.process-tab:hover {
    background: var(--primary-color);
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    position: relative;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    text-align: center;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-step img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.process-step h4 {
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Recipe Section */
.recipe-section {
    padding: 120px 0;
    background: var(--bg-cream);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.recipe-card {
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.recipe-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.08);
}

.recipe-info {
    padding: 24px;
}

.recipe-info h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.recipe-meta {
    display: flex;
    gap: 16px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Story Section */
.story-section {
    padding: 120px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.story-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.story-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
}

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

.story-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.story-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Subscription Section (Legacy) */
.subscription-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.subscription-section .section-title .subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.subscription-section .section-title h2 {
    color: white;
}

.subscription-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.subscription-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.subscription-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 300px;
}

.subscription-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.subscription-card .price {
    margin-bottom: 24px;
}

.subscription-card .original-price {
    font-size: 1rem;
    text-decoration: line-through;
    opacity: 0.6;
}

.subscription-card .sale-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.subscription-card .btn {
    width: 100%;
    background: white;
    color: var(--primary-color);
}

.subscription-card .btn:hover {
    background: var(--secondary-color);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-card {
    padding: 40px;
    background: var(--bg-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-card .address {
    color: var(--text-light);
    margin-bottom: 16px;
}

.contact-card .phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.contact-card .link {
    display: inline-block;
    margin-top: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Legacy Footer */
.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.footer-menu h4 {
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-menu ul li {
    margin-bottom: 12px;
}

.footer-menu ul li a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-menu ul li a:hover {
    color: var(--text-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.footer-links a:hover {
    color: var(--text-color);
}

/* ===================================
   Responsive Design
=================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }

    .nav-menu {
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .product-slider-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-slider-image img {
        max-width: 100%;
    }

    .trust-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .community-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .header-inner {
        height: 60px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 0;
    }

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

    .nav-menu a {
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .hero-kitchen {
        min-height: 500px;
        margin-top: 60px;
    }

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

    .hero-product-img {
        width: 150px;
    }

    .product-slider-section,
    .trust-section,
    .community-section {
        padding: 60px 0;
    }

    .product-slider-title {
        font-size: 1.75rem;
    }

    .trust-title,
    .community-header h2 {
        font-size: 1.5rem;
    }

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

    .subscription-banner {
        padding: 80px 0;
    }

    .subscription-banner-content h2 {
        font-size: 1.75rem;
    }

    .footer-main {
        flex-direction: column;
        gap: 24px;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .products-section,
    .features-section,
    .about-section,
    .process-section,
    .recipe-section,
    .story-section,
    .subscription-section,
    .contact-section {
        padding: 80px 0;
    }

    .subscription-cards {
        flex-direction: column;
        align-items: center;
    }

    .subscription-card {
        width: 100%;
        max-width: 350px;
    }

    .story-card {
        flex-direction: column;
    }

    .story-image {
        width: 100%;
        height: 200px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}
