@charset "UTF-8";

/* ====================================================
   ReLUMI Concept Design - "Medical Chic"
   Ref: hari-nature.com (Clean, Trustworthy, Elegant)
   ==================================================== */

:root {
    /* Color Palette */
    --primary: #B08D55;
    /* Primary Gold (was Deep Green #085640) */
    --primary-light: #F4EBD0;
    /* Gold Light (was #E8F3F1) */
    --accent: #E55C5C;
    /* Coral Red */
    --accent-hover: #D14B4B;
    --text-main: #333333;
    --text-sub: #666666;
    --bg-body: #FAFAFA;
    --bg-white: #FFFFFF;

    /* Typography */
    --font-sans: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGSMinchoE", serif;

    /* Spacing & Sizes */
    --container-max: 1000px;
    --header-height: 80px;
    --radius-card: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background: var(--bg-body);
    line-height: 1.8;
    padding-top: var(--header-height);
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

/* Typography Utilities */
.serif {
    font-family: var(--font-serif);
}

.text-primary {
    color: var(--primary);
}

.text-accent {
    color: var(--accent);
}

/* Layout Utilities */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent);
}

/* ====================================================
   Header (Split Layout)
   ==================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    /* Wider for header */
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-main);
    letter-spacing: 0.05em;
}

.nav-pc {
    display: flex;
    gap: 30px;
}

.nav-pc a {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.header-cta {
    background: var(--accent);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(229, 92, 92, 0.3);
}

.header-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* ====================================================
   Hero (Full Width + Card Overlay)
   ==================================================== */
.hero {
    position: relative;
    height: 400px;
    /* Reduced from 600px for compact view */
    background: url('../images/hero.jpg') center/cover no-repeat;
}

.hero-overlay-card {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 4px;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: #eee;
    color: #555;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: bold;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    line-height: 1.4;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-desc {
    color: var(--text-sub);
    margin-bottom: 0;
}

/* ====================================================
   Features (Grid)
   ==================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-sub);
    line-height: 1.8;
}

/* ====================================================
   CTA (Campaign)
   ==================================================== */
.cta-section {
    background: var(--primary-light);
    padding: 60px 0;
}

.cta-box {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    border-top: 5px solid var(--accent);
}

.cta-content {
    padding: 50px 40px;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.cta-head {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.price-box {
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px dashed #ddd;
}

.price-large {
    color: var(--accent);
    font-size: 3rem;
    font-weight: bold;
    font-family: var(--font-sans);
    /* Number usually Sans */
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-main {
    background: var(--accent);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(229, 92, 92, 0.4);
}

.btn-line {
    background: #06C755;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.3);
}

/* ====================================================
   Carousel (Reviews)
   ==================================================== */
.carousel-wrap {
    overflow-x: auto;
    display: flex;
    gap: 20px;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
}

.carousel-wrap::-webkit-scrollbar {
    height: 8px;
}

.carousel-wrap::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.review-item {
    flex: 0 0 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ====================================================
   Mobile Override
   ==================================================== */
@media (max-width: 768px) {

    .nav-pc,
    .header-cta {
        display: none;
    }

    .hero-overlay-card {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        padding: 30px 20px;
        text-align: center;
    }

    .tags {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-main,
    .btn-line {
        width: 100%;
        max-width: 320px;
    }

    /* Sticky Footer */
    .sticky-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 2000;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    }

    .sticky-btn {
        flex: 1;
        padding: 15px;
        text-align: center;
        color: #fff;
        font-weight: bold;
        font-size: 0.9rem;
    }

    /* Concept Compact Mobile Overrides */
    .hero {
        height: 400px;
        /* Reduce height from 600px */
    }

    .hero-overlay-card {
        padding: 20px 15px;
        /* Compact padding */
    }

    .hero-title {
        font-size: 1.6rem;
        /* Smaller title */
    }

    .section-title {
        font-size: 1.5rem;
        /* Force smaller size to keep 1 line */
        white-space: nowrap;
        /* Force 1 line */
    }

    .problem-box {
        padding: 0 10px;
    }

    .check-item {
        margin-bottom: 10px;
        /* Tighter spacing */
        font-size: 0.9rem;
        padding: 10px;
    }

    /* Force Concept Page Header Compaction (Mobile) */
    .page-header {
        padding: 20px 0 !important;
        margin-bottom: 0 !important;
        min-height: auto !important;
        height: auto !important;
    }

    .page-header h1 {
        margin: 0 !important;
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }

    .page-header-en {
        font-size: 0.8rem !important;
        display: block;
        margin-top: 5px;
    }

    /* Optimize Intro Text for Mobile to prevent wrapping issues */
    .bridge-copy {
        font-size: 1.3rem !important;
        /* Reduced from 1.8rem */
        line-height: 1.6 !important;
        padding: 30px 15px !important;
    }
}

/* PC Compaction for Page Header */
@media (min-width: 769px) {
    .page-header {
        padding: 40px 0 !important;
        height: auto !important;
    }

    .page-header h1 {
        margin-bottom: 10px !important;
    }

    /* Bridge copy compaction */
    .bridge-copy {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
}

/* Base Styles for Checklist (Problem Box) - Enhanced */
.problem-box {
    background: #faf8f0;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e0d0b0;
    margin: 30px auto;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(176, 141, 85, 0.15);
}

.check-item {
    display: flex !important;
    /* Force flex */
    align-items: flex-start !important;
    gap: 15px !important;
    /* Force gap */
    padding-left: 0 !important;
    /* Reset any padding */
    text-indent: 0 !important;
    /* Reset indent */
    margin-bottom: 12px;
    font-weight: bold;
    color: var(--text-main);
    text-align: left;
    line-height: 1.5;
    padding-bottom: 12px;
    border-bottom: 1px dashed #e0e0e0;
}

.check-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Checkmark Icon - Styled Circle */
.check-item::before {
    content: "✔";
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: static !important;
    /* Ensure no absolute positioning */
    width: 24px;
    height: 24px;
    background: var(--primary);
    /* Gold Checkmark (was Red) */
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    margin-top: 0;
    margin-right: 0;
    /* Gap handles spacing */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .problem-box {
        padding: 20px 15px !important;
        border-width: 1px;
    }

    .check-item {
        margin-bottom: 10px !important;
        padding-bottom: 10px;
        font-size: 0.95rem;
        padding-left: 0 !important;
        /* Ensure reset holds */
    }

    .check-item::before {
        width: 20px;
        height: 20px;
        font-size: 11px;
        /* Slightly smaller check */
        margin-top: 2px;
    }
}