/* リセット & 基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #bf1b29;
    --secondary-color: #d4424e;
    --accent-color: #8b1520;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    overflow-x: hidden;
    background-image: url('https://www.kfb.co.jp/special/assets/onigiri_fes/onigiri_innner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: round;
    background-attachment: fixed;
}



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

/* ナビゲーション */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    height: 40px;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* ヒーローセクション */
.hero {
    margin-top: 70px;
    min-height: 80vh;
    background:
        radial-gradient(circle at 20% 50%, rgba(191, 27, 41, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(191, 27, 41, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        linear-gradient(135deg, #bf1b29 0%, #8b1520 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
}

/* 和風装飾要素 - 背景パターン */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.03) 20px, rgba(255, 255, 255, 0.03) 40px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.03) 20px, rgba(255, 255, 255, 0.03) 40px);
    opacity: 0.5;
    z-index: 0;
}

/* 和風装飾 - 円形模様 */
.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    top: -200px;
    right: -200px;
    z-index: 0;
}

/* 和風パターン装飾 */
.japanese-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* 波模様（青海波風） */
.japanese-pattern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background:
        radial-gradient(circle at 0% 100%, transparent 60px, rgba(255, 255, 255, 0.05) 60px, rgba(255, 255, 255, 0.05) 65px, transparent 65px),
        radial-gradient(circle at 50% 100%, transparent 60px, rgba(255, 255, 255, 0.05) 60px, rgba(255, 255, 255, 0.05) 65px, transparent 65px),
        radial-gradient(circle at 100% 100%, transparent 60px, rgba(255, 255, 255, 0.05) 60px, rgba(255, 255, 255, 0.05) 65px, transparent 65px);
    background-size: 120px 120px;
    background-position: 0 0, 60px 0, 120px 0;
    opacity: 0.8;
}

/* 装飾的な円（紋様風） */
.japanese-pattern::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.05),
        0 0 0 16px rgba(255, 255, 255, 0.03);
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.hero-logo img {
    max-width: 600px;
    width: 90%;
    height: auto;
    filter: drop-shadow(2px 2px 8px rgba(255, 255, 255, 0.8));
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-date {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-location {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-about {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-badge {
    display: inline-block;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.badge-text {
    background: var(--secondary-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    display: inline-block;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--white);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}


/* 店舗セクション */
.stores-section {
    background: rgba(255, 255, 255, 0.3);
}

/* 店舗タブ */
.store-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0 2rem;
}

.store-tab {
    background: var(--white);
    border: 3px solid transparent;
    border-radius: 15px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
    overflow: hidden;
    width: 150px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
}

/* アニメーション有効化 */
.store-tab.animate {
    animation: slideInFromLeft 0.6s ease forwards;
}

/* 各タブに順番にアニメーションを適用 */
.store-tab.animate:nth-child(1) {
    animation-delay: 0.1s;
}

.store-tab.animate:nth-child(2) {
    animation-delay: 0.2s;
}

.store-tab.animate:nth-child(3) {
    animation-delay: 0.3s;
}

.store-tab.animate:nth-child(4) {
    animation-delay: 0.4s;
}

.store-tab.animate:nth-child(5) {
    animation-delay: 0.5s;
}

.store-tab.animate:nth-child(6) {
    animation-delay: 0.6s;
}

.store-tab.animate:nth-child(7) {
    animation-delay: 0.7s;
}

.store-tab.animate:nth-child(8) {
    animation-delay: 0.8s;
}

.store-tab.animate:nth-child(9) {
    animation-delay: 0.9s;
}

.store-tab.and-more.animate {
    animation-delay: 1.0s;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.store-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.store-tab.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(191, 27, 41, 0.4);
}

.store-tab img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.store-tab span {
    display: block;
    padding: 0.8rem 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-align: center;
    background: var(--white);
}

.store-tab.active span {
    color: var(--primary-color);
}

/* And More タブ */
.store-tab.and-more {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #dee2e6;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-tab.and-more:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.and-more-content {
    text-align: center;
    padding: 1rem 0.5rem;
}

.and-more-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.and-more-content span {
    display: block;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.and-more-text {
    font-size: 0.7rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
}

/* 店舗詳細コンテナ */
.store-details-container {
    position: relative;
    min-height: 500px;
}

.store-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.store-detail:not(.animate-detail) {
    opacity: 0;
    transform: translateX(-50px);
}

.store-detail.animate-detail {
    animation: slideInFromLeftDetail 0.6s ease forwards;
}

@keyframes slideInFromLeftDetail {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 画像スライダー */
.store-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-image.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.store-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.store-location {
    font-size: 0.9rem;
    color: var(--white);
    background: var(--secondary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-weight: normal;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.store-days {
    font-size: 0.9rem;
    color: var(--white);
    background: linear-gradient(135deg, #4CAF50, #45a049);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.store-badge {
    font-size: 0.8rem;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 0;
}

.store-badge.new {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.store-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.store-menu {
    position: relative;
    background: #ffffff;
    border: 3px solid #000000;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

/* 吹き出しの三角形 */
.store-menu::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #000000;
}

.store-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
    z-index: 1;
}

.store-menu h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.store-menu h4::before {
    content: '🍙';
    font-size: 1.3rem;
}

.store-menu ul {
    list-style: none;
}

.store-menu li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.8;
}

.store-menu li::before {
    content: '・';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* イベントセクション */
.events-section {
    background: rgba(249, 249, 249, 0.95);
}

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

.event-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.event-card.highlight h3,
.event-card.highlight .event-description {
    color: var(--white);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.event-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.event-info {
    margin-top: 1.5rem;
}

.event-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
}

.event-badge.premium {
    background: var(--secondary-color);
}

/* ワークショップセクション */
.workshop-section {
    background: rgba(255, 255, 255, 0.95);
}

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

.workshop-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    line-height: 1.8;
}

.workshop-details {
    background: rgba(249, 249, 249, 0.9);
    padding: 3rem;
    border-radius: 15px;
}

.workshop-instructor {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #ddd;
}

.instructor-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
}

.instructor-title {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.instructor-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.instructor-shop {
    color: var(--text-light);
}

.workshop-description {
    margin-bottom: 2rem;
}

.workshop-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.workshop-note {
    color: var(--text-light);
    font-size: 0.95rem;
    font-style: italic;
}

.workshop-apply {
    text-align: center;
    margin-top: 2rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    font-weight: bold;
}

.btn-primary:hover {
    background: #45a049;
    transform: scale(1.05);
}

.apply-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* 開催時間・アクセス */
.info-section {
    background: rgba(249, 249, 249, 0.95);
}

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

.info-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.info-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-time {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.info-location {
    line-height: 1.8;
    color: var(--text-dark);
}

.info-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* 一覧に戻るボタン */
.back-to-list-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(191, 27, 41, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-list-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-list-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(191, 27, 41, 0.6);
}

.back-to-list-btn .btn-icon {
    font-size: 1.2rem;
}

.back-to-list-btn .btn-text {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
}

/* フッター */
.footer {
    background: #333;
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-copyright {
    color: #999;
    font-size: 0.9rem;
}

/* アニメーション */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-logo img {
        max-width: 350px;
    }

    .hero-date {
        font-size: 1.3rem;
    }

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

    .hero-about {
        padding: 1.5rem;
        margin: 1.5rem 1rem 0;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.8;
    }

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

    .store-tabs {
        gap: 0.5rem;
    }

    .store-tab {
        width: 120px;
    }

    .store-tab img {
        height: 80px;
    }

    .store-tab span {
        font-size: 0.8rem;
        padding: 0.5rem 0.3rem;
    }

    .and-more-text {
        font-size: 0.65rem;
    }

    .and-more-icon {
        font-size: 1.5rem;
    }

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

    .store-slider {
        min-height: 300px;
    }

    .store-content {
        padding: 1.5rem;
    }

    .back-to-list-btn {
        bottom: 20px;
        right: 20px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .back-to-list-btn .btn-icon {
        font-size: 1rem;
    }

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

    .workshop-instructor {
        flex-direction: column;
        text-align: center;
    }

    .workshop-details {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        max-width: 280px;
    }

    .hero-about {
        padding: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .store-tab {
        width: 100px;
    }

    .store-tab img {
        height: 70px;
    }

    .store-tab span {
        font-size: 0.75rem;
        padding: 0.4rem 0.2rem;
    }

    .and-more-text {
        font-size: 0.6rem;
    }

    .and-more-icon {
        font-size: 1.2rem;
    }

    .and-more-content span {
        font-size: 0.8rem;
    }

    .back-to-list-btn {
        bottom: 15px;
        right: 15px;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .back-to-list-btn .btn-text {
        display: none;
    }

    .back-to-list-btn .btn-icon {
        font-size: 1.5rem;
    }

    .back-to-list-btn {
        border-radius: 50%;
        padding: 1rem;
        width: 50px;
        height: 50px;
        justify-content: center;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }
}