/* ========================================
   リセット & 基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #34d058;
    --dark-green: #28a745;
    --light-green: #5ae87b;
    --accent-orange: #ff8c42;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --gold: #ffc107;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
    padding-bottom: 0;
}

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

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

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

/* ========================================
   ヘッダー
======================================== */
.header {
    position: relative;
    width: 100%;
    background: var(--white);
    padding: 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 130px;
    height: auto;
}

.logo-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   CTAボタン（明るい緑色）
======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(52, 208, 88, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 208, 88, 0.5);
}

.cta-button i {
    font-size: 18px;
}

.cta-button-large {
    padding: 18px 45px;
    font-size: 18px;
}

.cta-button-xl {
    padding: 20px 50px;
    font-size: 20px;
}

/* ========================================
   ファーストビュー
======================================== */
.hero {
    padding: 60px 0 30px;
    background: linear-gradient(to bottom, #fff 0%, var(--light-bg) 100%);
}

.hero-content {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #ffd54f);
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-image {
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

.hero-feature i {
    font-size: 32px;
    color: var(--accent-orange);
}

.hero-feature span {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    color: var(--text-dark);
}

.hero-feature strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-orange);
}

.hero-price {
    color: var(--text-light);
    font-size: 18px;
    margin-top: 20px;
    font-weight: 600;
}

/* ========================================
   CVエリア
======================================== */
.cv-section {
    padding: 50px 0;
    background: var(--white);
}

.cv-section-alt {
    background: var(--light-bg);
}

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

.cv-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cv-image img {
    width: 100%;
    height: auto;
}

.cv-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cv-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cv-price {
    margin-top: 15px;
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.cv-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cv-image-center {
    max-width: 400px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cv-image-center img {
    width: 100%;
    height: auto;
}

.cv-title-large {
    font-size: 40px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cv-desc-large {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cv-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* ========================================
   セクション共通スタイル
======================================== */
section {
    padding: 50px 0;
}

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

.section-badge {
    display: inline-block;
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   実績セクション
======================================== */
.achievements {
    background: var(--white);
}

.makuake-image {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.makuake-image img {
    width: 100%;
}

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

.achievement-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.achievement-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-icon i {
    font-size: 28px;
    color: var(--white);
}

.achievement-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 10px;
}

.achievement-number span {
    font-size: 24px;
}

.achievement-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.achievement-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   商品特徴
======================================== */
.features {
    background: var(--light-bg);
}

.feature-image-large {
    max-width: 900px;
    margin: 0 auto 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image-large img {
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.feature-card {
    padding: 35px 30px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

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

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(52, 208, 88, 0.1);
    line-height: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.feature-image-highlight {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-image-highlight img {
    width: 100%;
}

/* ========================================
   スパイス詳細
======================================== */
.spices-detail {
    background: var(--white);
}

.spices-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.spices-gallery img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* ========================================
   ストーリー
======================================== */
.story {
    background: var(--light-bg);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.story-block h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.story-block p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.story-block strong {
    color: var(--accent-orange);
    font-weight: 700;
}

.story-highlight {
    background: var(--white);
    border-left: 4px solid var(--primary-green);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.story-highlight i {
    color: var(--primary-green);
    opacity: 0.3;
}

.story-highlight .fa-quote-left {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
}

.story-highlight .fa-quote-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
}

.story-highlight p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
}

/* ========================================
   店舗について
======================================== */
.about-shop {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 50px;
}

.about-subtitle {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    background: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.info-item i {
    font-size: 22px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.info-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-image {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
}

/* ========================================
   レビュー・評価
======================================== */
.reviews {
    background: var(--light-bg);
}

.reviews-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.review-stat {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.review-source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
}

.review-source i {
    font-size: 22px;
    color: var(--primary-green);
}

.review-score {
    margin-bottom: 15px;
}

.score {
    font-family: 'Playfair Display', serif;
    font-size: 50px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.stars i {
    color: var(--gold);
    font-size: 18px;
}

.review-label {
    font-size: 13px;
    color: var(--text-light);
}

.review-comments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.review-stars i {
    color: var(--gold);
    font-size: 16px;
}

.review-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.review-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
}

/* ========================================
   食べ方・楽しみ方
======================================== */
.how-to-enjoy {
    background: var(--white);
}

.enjoy-image {
    max-width: 800px;
    margin: 0 auto 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.enjoy-image img {
    width: 100%;
}

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

.enjoy-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

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

.enjoy-step {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.enjoy-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto 20px;
    background: rgba(52, 208, 88, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enjoy-icon i {
    font-size: 32px;
    color: var(--primary-green);
}

.enjoy-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.enjoy-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ========================================
   CTA最終セクション
======================================== */
.final-cta {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 50px 0;
}

.final-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
}

.final-cta-desc {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 600;
}

.final-cta-feature i {
    color: var(--primary-green);
    font-size: 18px;
}

.final-cta-price {
    color: var(--text-dark);
    font-size: 16px;
    margin-top: 20px;
    font-weight: 700;
}

.final-cta-note {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 10px;
}

/* ========================================
   フッター
======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 0 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    margin-bottom: 35px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links h4,
.footer-shop h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-green);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-shop p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ========================================
   トップに戻るボタン
======================================== */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 208, 88, 0.4);
    z-index: 1002;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 208, 88, 0.5);
}

/* ========================================
   下部固定ナビゲーション（購入ボタン）
======================================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border-color);
    z-index: 1001;
}

.bottom-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-nav-info {
    display: flex;
    flex-direction: column;
}

.bottom-nav-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.bottom-nav-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-green);
}

.cta-button-bottom {
    padding: 12px 30px;
    font-size: 15px;
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .cv-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .spices-gallery {
        grid-template-columns: 1fr;
    }
    
    .cv-title-large {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }
    
    .logo-image {
        width: 100px;
    }
    
    .hero {
        padding: 40px 0 20px;
    }
    
    .hero-title {
        font-size: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-features {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 10px;
        justify-content: center;
        align-items: flex-start;
    }
    
    .hero-feature {
        flex: 0 1 110px !important;
        min-width: 90px;
        max-width: 110px;
    }
    
    .hero-feature i {
        font-size: 24px;
    }
    
    .hero-feature span {
        font-size: 9.5px;
        line-height: 1.2;
    }
    
    .hero-feature strong {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .cta-button-large {
        padding: 16px 35px;
        font-size: 16px;
    }
    
    .cta-button-xl {
        padding: 16px 40px;
        font-size: 18px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cv-section {
        padding: 40px 0;
    }
    
    .cv-title {
        font-size: 26px;
    }
    
    .cv-title-large {
        font-size: 28px;
    }
    
    .achievements-grid,
    .features-grid,
    .reviews-stats,
    .review-comments,
    .enjoy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .achievement-number {
        font-size: 36px;
    }
    
    .final-cta-title {
        font-size: 28px;
    }
    
    .final-cta-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
    
    .bottom-nav-content {
        padding: 12px 15px;
    }
    
    .bottom-nav-title {
        font-size: 13px;
    }
    
    .bottom-nav-price {
        font-size: 15px;
    }
    
    .cta-button-bottom {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-features {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px;
        justify-content: center;
        align-items: flex-start;
    }
    
    .hero-feature {
        flex: 0 1 100px !important;
        min-width: 80px;
        max-width: 100px;
    }
    
    .hero-feature i {
        font-size: 20px;
    }
    
    .hero-feature span {
        font-size: 9px;
        line-height: 1.2;
    }
    
    .hero-feature strong {
        font-size: 13px;
    }
    
    .achievement-number {
        font-size: 32px;
    }
    
    .feature-title,
    .enjoy-title {
        font-size: 18px;
    }
    
    .final-cta-title {
        font-size: 22px;
    }
    
    .cv-title {
        font-size: 22px;
    }
    
    .cv-title-large {
        font-size: 24px;
    }
    
    .spices-gallery {
        grid-template-columns: 1fr;
    }
    
    .bottom-nav-content {
        flex-direction: row;
        justify-content: space-between;
    }
}