.page-placeholder {
            max-width: 720px;
            margin: 0 auto;
            padding: 120px 5% 160px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .page-coming {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 24px 60px rgba(15, 99, 199, 0.18);
            backdrop-filter: blur(8px);
            display: grid;
            gap: 1.5rem;
        }

        .page-coming h1 {
            font-size: 1.8rem;
            color: #0f63c7;
            margin: 0;
        }

        .page-coming p {
            margin: 0;
            line-height: 1.8;
            color: #2f3f4f;
        }

        .page-coming__link a {
            color: #0f63c7;
            font-weight: 600;
            text-decoration: none;
        }

        .page-coming__link a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .page-placeholder {
                padding: 80px 1.5rem 120px;
            }

            .page-coming {
                padding: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .page-placeholder {
                padding: 60px 1.25rem 100px;
            }

            .page-coming {
                padding: 2rem;
            }

            .page-coming h1 {
                font-size: 1.6rem;
            }
        }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Kiwi Maru', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #1f2a36;
            background: linear-gradient(135deg, #74b9ff 0%, #0984e3 45%, #00b894 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }

        main {
            padding: 60px 5%;
            max-width: 1200px;
            margin: 0 auto 80px;
        }

        section {
            margin-bottom: 80px;
        }

        .hero {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 28px;
            padding: 60px 40px;
            box-shadow: 0 40px 90px rgba(15, 99, 199, 0.25);
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: "";
            position: absolute;
            top: -120px;
            right: -80px;
            width: 360px;
            height: 360px;
            background: radial-gradient(circle, rgba(116, 185, 255, 0.5), transparent 65%);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 640px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 999px;
            background: rgba(9, 132, 227, 0.1);
            color: #0f63c7;
            font-weight: 600;
            letter-spacing: 0.08em;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin: 18px 0 16px;
            letter-spacing: 0.04em;
        }

        .hero p {
            font-size: 1.1rem;
            color: #34495e;
            margin-bottom: 28px;
        }

        .cta-buttons {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 700;
            letter-spacing: 0.05em;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .cta-primary {
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: #ffffff;
            box-shadow: 0 18px 30px rgba(9, 132, 227, 0.25);
        }

        .cta-secondary {
            background: rgba(255, 255, 255, 0.9);
            color: #0984e3;
            border: 1px solid rgba(9, 132, 227, 0.3);
            box-shadow: 0 12px 25px rgba(9, 132, 227, 0.15);
        }

        .cta-button:hover {
            transform: translateY(-3px);
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 36px;
            text-align: center;
            color: #ffffff;
            letter-spacing: 0.05em;
            text-shadow: 0 8px 20px rgba(15, 99, 199, 0.45);
        }

        .section-title .section-subtitle {
            display: block;
            font-size: 1rem;
            margin-top: 10px;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.08em;
        }

        .section-title-dark {
            color: #1f2a36;
            text-shadow: none;
        }

        .section-title-dark .section-subtitle {
            color: #566573;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
        }

        .product-card {
            background: rgba(255, 255, 255, 0.96);
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 22px 70px rgba(13, 71, 161, 0.18);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 28px 80px rgba(13, 71, 161, 0.24);
        }

        .product-tag {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #0984e3;
            background: rgba(9, 132, 227, 0.12);
            letter-spacing: 0.06em;
            margin-bottom: 14px;
        }

        .product-name {
            font-size: 1.35rem;
            margin-bottom: 12px;
            color: #1f2a36;
        }

        .product-desc {
            flex: 1;
            color: #566573;
            margin-bottom: 16px;
        }

        .product-price {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0f63c7;
            margin-bottom: 6px;
        }

        .product-note {
            font-size: 0.85rem;
            color: #7f8c8d;
            margin-bottom: 18px;
        }

        .product-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .product-actions a {
            flex: 1;
            text-align: center;
            padding: 12px 0;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.2s ease, transform 0.2s ease;
        }

        .btn-cart {
            background: linear-gradient(135deg, #00b894, #00cec9);
            color: #ffffff;
            box-shadow: 0 14px 28px rgba(0, 206, 201, 0.25);
        }

        .btn-details {
            background: rgba(9, 132, 227, 0.12);
            color: #0984e3;
        }

        .btn-details:hover {
            background: rgba(9, 132, 227, 0.2);
        }

        .info-panels {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .info-panel {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 22px;
            padding: 28px;
            box-shadow: 0 20px 60px rgba(15, 99, 199, 0.2);
        }

        .info-panel h3 {
            font-size: 1.3rem;
            margin-bottom: 14px;
            color: #1f2a36;
        }

        .info-panel ul {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .info-panel li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #4a5a6a;
        }

        .info-panel li::before {
            content: '✔';
            color: #00b894;
            font-weight: 700;
            margin-top: 2px;
        }

        .how-to-order {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 20px 60px rgba(15, 99, 199, 0.2);
        }

        .order-steps {
            display: grid;
            gap: 22px;
            counter-reset: step;
        }

        .order-step {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 18px;
            align-items: start;
        }

        .order-step::before {
            counter-increment: step;
            content: counter(step);
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, #74b9ff, #0984e3);
            color: #ffffff;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 25px rgba(9, 132, 227, 0.25);
        }

        .order-step h4 {
            font-size: 1.2rem;
            margin-bottom: 6px;
            color: #1f2a36;
        }

        .faq {
            background: rgba(255, 255, 255, 0.94);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 20px 60px rgba(46, 134, 193, 0.2);
        }

        .faq-item + .faq-item {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(9, 132, 227, 0.12);
        }

        .faq-item h4 {
            font-size: 1.1rem;
            color: #0f63c7;
            margin-bottom: 8px;
        }

        .faq-item p {
            color: #4a5a6a;
        }

        .cta-banner {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 28px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 28px 70px rgba(15, 99, 199, 0.25);
        }

        .cta-banner h2 {
            font-size: 2rem;
            margin-bottom: 14px;
            color: #1f2a36;
        }

        .cta-banner p {
            margin-bottom: 24px;
            color: #566573;
        }

        .cta-banner .cta-button {
            justify-content: center;
            min-width: 220px;
        }

        @media (max-width: 768px) {
            main {
                padding: 48px 1.5rem;
            }

            .hero {
                padding: 48px 28px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

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

            .order-step {
                grid-template-columns: 1fr;
            }

            .order-step::before {
                width: 38px;
                height: 38px;
            }
        }

        @media (max-width: 480px) {
            .cta-buttons {
                flex-direction: column;
            }

            .cta-button {
                width: 100%;
                justify-content: center;
            }
        }
