@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Playfair+Display:wght@400;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* 基本設定 */
body {
    font-family: "Source Serif 4", "Source Serif Pro", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

/* Typography Guidelines Implementation */
h1, h2, h3, h4, h5, h6,
.logo a,
.hero-title,
.card-title,
.profile-name,
.special-card h3,
.report-banner h2 {
    font-family: "Playfair Display", serif;
}

nav,
.btn,
.search-box select,
.search-box button,
.status-badge,
.rank-badge,
.cat-action,
.rating-label,
.spec-label,
.card-meta,
.post-meta,
.category-tag,
.toc,
.hamburger-menu,
.social-handle,
.hero-subtitle {
    font-family: "Space Grotesk", sans-serif;
}

.spec-value, .rating-value {
    font-family: "JetBrains Mono", monospace;
}

/* ヘッダー */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    position: relative;
}
.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3EA8FF;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-container nav ul {
    display: flex;
    gap: 20px;
}
.header-container nav a {
    font-weight: bold;
    font-size: 0.9rem;
}
.site-branding {
    display: flex;
    flex-direction: column;
}
.logo {
    margin: 0;
    line-height: 1.2;
}
.logo-img {
    height: 50px;
    width: auto;
    vertical-align: middle;
}
.logo-text {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    color: #3EA8FF;
}
.logo-sub {
    font-size: 0.65rem;
    color: #3EA8FF;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0;
}
/* ハンバーガーメニュー */
.hamburger-menu {
    display: none;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 100;
    padding: 0;
}
.hamburger-menu span,
.hamburger-menu span::before,
.hamburger-menu span::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: all 0.3s;
}
.hamburger-menu span { top: 50%; transform: translateY(-50%); }
.hamburger-menu span::before { top: -8px; }
.hamburger-menu span::after { top: 8px; }

/* ハンバーガーメニューのアクティブ状態 */
.hamburger-menu.active span { background-color: transparent; }
.hamburger-menu.active span::before { top: 0; transform: rotate(45deg); }
.hamburger-menu.active span::after { top: 0; transform: rotate(-45deg); }

/* スマホ用ナビゲーション */
@media (max-width: 768px) {
    .hamburger-menu { display: block; }
    .header-container nav {
        display: none;
        position: absolute; top: 100%; left: 0; width: 100%;
        background: #fff; border-bottom: 1px solid #e0e0e0; z-index: 99;
    }
    .header-container nav.active { display: block; }
    .header-container nav ul { flex-direction: column; gap: 0; }
    .header-container nav a { display: block; padding: 15px 20px; border-bottom: 1px solid #f0f0f0; }
}

/* ヒーローセクション */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/背景.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}
.hero-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* ボタン */
.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: opacity 0.2s;
}
.btn:hover { opacity: 0.9; }
.btn-primary { background-color: #e53935; color: white; }
.btn-secondary { background-color: #fff; color: #333; }
.btn-tertiary { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-search { background: #333; color: #fff; padding: 10px 20px; border-radius: 2px; }
.btn-reserve { background-color: #e53935; color: white; text-align: center; padding: 10px; border-radius: 2px; display: block; font-size: 0.9rem; }
.btn-detail { background-color: #f0f0f0; color: #333; text-align: center; padding: 10px; border-radius: 2px; display: block; font-size: 0.9rem; }

/* 検索ボックス */
.search-box { background: #fff; padding: 30px 0; border-bottom: 1px solid #eee; }
.search-box h3 { text-align: center; margin-top: 0; }
.search-box form { display: flex; justify-content: center; gap: 15px; align-items: center; flex-wrap: wrap; }
.search-box select { padding: 8px; border-radius: 2px; border: 1px solid #ccc; }

/* サウナカード */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.sauna-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.card-image-wrapper { position: relative; height: 200px; }
.card-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.status-badge {
    position: absolute; top: 10px; left: 10px;
    color: #fff; padding: 4px 8px; border-radius: 2px;
    font-size: 0.75rem; font-weight: bold;
}
.status-normal { background: #4caf50; }
.card-content { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.card-title { margin: 0 0 5px; font-size: 1.2rem; }
.card-meta { font-size: 0.9rem; color: #666; margin-bottom: 10px; }
.spec-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
    background: #f5f5f5; padding: 8px; border-radius: 4px; margin: 8px 0 15px;
    text-align: center; font-size: 0.8rem;
}
.spec-value { display: block; font-weight: bold; color: #333; font-size: 1rem; }
.card-actions { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* フッター */
footer { background-color: #333; color: #fff; padding: 40px 0 80px; }
.footer-nav ul { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.footer-nav a { color: #ccc; font-size: 0.9rem; transition: color 0.3s; }
.footer-nav a:hover { color: #fff; }
.copyright { text-align: center; font-size: 0.8rem; color: #999; margin: 0; }

/* スマホ用追従フッター */
.mobile-sticky-footer {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #fff; display: flex; justify-content: space-around;
    padding: 10px 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 1000;
}
.sticky-btn {
    flex: 1; text-align: center; font-size: 0.7rem;
    display: flex; flex-direction: column; align-items: center; color: #333;
}
.sticky-btn span { font-size: 1.4rem; margin-bottom: 2px; }
.sticky-btn.primary { color: #e53935; font-weight: bold; }

@media (min-width: 768px) {
    .mobile-sticky-footer { display: none; }
    footer { padding-bottom: 40px; }
}

/* ランキングページ用スタイル */
.ranking-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ranking-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.rank-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.rank-badge {
    padding: 5px 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 2px;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.total-score {
    font-weight: bold;
    font-size: 1.2rem;
    color: #e53935;
}
.facility-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.ranking-item h2 {
    font-size: 1.6rem;
    margin: 15px 0 5px;
    color: #333;
}
.ranking-item > p {
    color: #666;
    margin-bottom: 20px;
    font-weight: 500;
}
@media (min-width: 768px) {
    .facility-image {
        height: 500px;
    }
}
.rating-detail {
    margin: 15px 0;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}
.rating-row {
    display: flex;
    border-bottom: 1px solid #eee;
}
.rating-row:last-child {
    border-bottom: none;
}
.rating-label {
    background: #f5f5f5;
    padding: 10px;
    width: 30%;
    font-weight: bold;
    font-size: 0.9rem;
}
.rating-value {
    padding: 10px;
    width: 70%;
}
@media (max-width: 600px) {
    .rating-row {
        flex-direction: column;
    }
    .rating-label, .rating-value {
        width: 100%;
        box-sizing: border-box;
    }
}
.highlight {
    background: #fff3e0;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.highlight h4 {
    margin: 0 0 10px;
    color: #e65100;
}
.highlight ul {
    list-style: disc;
    padding-left: 20px;
}

/* 順位別バッジカラー */
.rank-badge.gold {
    background-color: #ffd700;
    background-image: linear-gradient(135deg, #ffd700 0%, #fdb931 100%);
}
.rank-badge.silver {
    background-color: #c0c0c0;
    background-image: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
}
.rank-badge.bronze {
    background-color: #cd7f32;
    background-image: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
}

/* カテゴリ検索セクション */
.nav-section {
    margin-bottom: 40px;
}
.nav-section h2 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}
@media (min-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.category-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.cat-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}
.category-card h3 {
    font-size: 1.1rem;
    margin: 0 0 5px;
    color: #333;
}
.category-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 15px;
    flex-grow: 1;
    line-height: 1.4;
}
.cat-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}
.cat-action {
    background: #e53935;
    color: #fff;
    padding: 6px 18px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* スペシャルコンテンツ & レポート */
.special-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}
@media (min-width: 768px) {
    .special-grid { grid-template-columns: 1fr 1fr; }
}
.special-card, .report-banner {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.special-card h3, .report-banner h2 { margin: 0; font-size: 1.2rem; }
.report-banner { display: block; background: linear-gradient(135deg, #1a237e 0%, #283593 100%); margin-top: 20px; }

/* 記事ページ用スタイル */
.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.toc {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}
.toc h3 { margin-top: 0; font-size: 1.2rem; }
.toc ul { list-style: none; padding-left: 0; }
.toc ul ul { padding-left: 20px; margin-top: 5px; }
.toc li { margin-bottom: 8px; }
.toc a { color: #333; text-decoration: underline; }

.article-section { margin-bottom: 40px; }
.article-section h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #e53935;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.check-list { list-style: none; padding: 0; }
.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}
.check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #e53935;
    font-weight: bold;
}
.summary-box {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-weight: bold;
}
.category-tag {
    display: inline-block;
    background: #eee;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 0.8rem;
    color: #666;
}

/* プロフィールページ用スタイル */
.profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}
.profile-name {
    font-size: 1.8rem;
    margin: 0 0 10px;
}
.profile-bio {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}
.social-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}
.social-section h2 { font-size: 1.2rem; margin: 0 0 10px; }
.social-handle { font-weight: bold; font-size: 1.1rem; color: #e53935; }
.social-links { margin-top: 20px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.social-btn { color: #fff; font-size: 0.9rem; padding: 10px 20px; }
.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-btn.tiktok {
    background: #000;
}
.social-btn.instagram:hover {
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}
.social-btn.tiktok:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

/* 記事詳細用スタイル追加 */
.article-header h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.update-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
    text-align: right;
}

/* 詳細情報テーブル */
.detail-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 0.9rem;
}
.detail-table th, .detail-table td {
    border: 1px solid #eee;
    padding: 12px;
    text-align: left;
}
.detail-table th {
    background-color: #f9f9f9;
    width: 30%;
    font-weight: bold;
    color: #555;
    white-space: nowrap;
}

/* 吹き出しスタイル */
.chat-box {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: flex-start;
}
.chat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}
.chat-content {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 15px;
    position: relative;
    flex: 1;
}
.chat-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #e3f2fd;
}

/* プロモーションバナー */
.promo-banner {
    background: linear-gradient(90deg, #e65100 0%, #f57c00 100%);
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 0.9rem;
    font-weight: bold;
}
.promo-banner a {
    color: #fff;
    display: block;
    text-decoration: none;
}
.promo-banner a:hover {
    opacity: 0.9;
    text-decoration: underline;
}
.promo-badge {
    background: #fff;
    color: #e65100;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-right: 8px;
    vertical-align: text-bottom;
}

/* Sidebar Layout */
.page-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.main-content {
    flex: 1;
    min-width: 0;
}
.sidebar {
    width: 300px;
    flex-shrink: 0;
}
.sidebar-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}
.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    font-family: "Playfair Display", serif;
}
.sidebar-profile {
    text-align: center;
}
.sidebar-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
    border: 2px solid #eee;
}
.sidebar-link-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}
.sidebar-link-list li:last-child {
    border-bottom: none;
}
.sidebar-link-list a {
    display: block;
    color: #333;
    transition: color 0.2s;
    font-size: 0.95rem;
}
.sidebar-link-list a:hover {
    color: #e53935;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .page-wrapper {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
}

/* 広告スペース */
.ad-widget {
    margin-bottom: 30px;
    text-align: center;
}
.ad-space {
    background-color: #f5f5f5;
    border: 1px dashed #ddd;
    color: #aaa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-height: 250px;
    width: 100%;
    box-sizing: border-box;
}
.ad-label {
    font-size: 0.7rem;
    color: #999;
    margin-bottom: 5px;
    display: block;
    text-align: right;
}

/* ショップ機能 */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
    transition: transform 0.2s;
}
.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}
.product-price {
    font-weight: bold;
    color: #e53935;
    font-size: 1.1rem;
    margin: 5px 0;
}
.product-card .card-content {
    padding: 15px;
}
.product-card .card-content h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    font-family: "Playfair Display", serif;
}

/* 管理画面 */
.admin-dashboard {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
}
.admin-sidebar {
    background: #333;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}
.admin-menu li { margin-bottom: 10px; }
.admin-menu a { color: #ccc; display: block; padding: 8px; border-radius: 4px; }
.admin-menu a:hover, .admin-menu a.active { color: #fff; background: #555; }
.admin-content { background: #fff; padding: 20px; border-radius: 8px; border: 1px solid #e0e0e0; }
.admin-table { width: 100%; border-collapse: collapse; margin-top: 20px; font-size: 0.9rem; }
.admin-table th, .admin-table td { border: 1px solid #ddd; padding: 10px; text-align: left; }
.admin-table th { background: #f5f5f5; }
.status-pending { color: #f57c00; font-weight: bold; }
.status-confirmed { color: #4caf50; font-weight: bold; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin-bottom: 20px; }
.stat-card { background: #f9f9f9; padding: 15px; border-radius: 8px; text-align: center; border: 1px solid #eee; }
.stat-number { font-size: 1.5rem; font-weight: bold; color: #333; display: block; margin-top: 5px; }

@media (max-width: 768px) {
    .admin-dashboard { grid-template-columns: 1fr; }
    .admin-sidebar { margin-bottom: 20px; }
}

/* カートバッジ */
.nav-cart-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e53935;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    display: none;
}

/* 注文フローのデザイン改善 */
.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.9rem;
    color: #999;
}
.step-indicator span {
    position: relative;
    padding: 0 15px;
}
.step-indicator span.active {
    color: #e53935;
    font-weight: bold;
}
.step-indicator span:not(:last-child)::after {
    content: '>';
    position: absolute;
    right: -5px;
    color: #ccc;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #e53935;
    outline: none;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

/* ラジオボタンのカード化 */
.radio-group {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.2s;
}
.radio-group:hover {
    border-color: #ffcdd2;
    background-color: #fffaf0;
}
.radio-group input[type="radio"] {
    margin-right: 15px;
    accent-color: #e53935;
    transform: scale(1.2);
}
.radio-group:has(input:checked) {
    border-color: #e53935;
    background-color: #fff5f5;
}

/* Admin Login Overlay */
#admin-login-overlay input:focus {
    outline: none;
    border-color: #e53935;
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.1);
}