:root{--primary:#e74c3c;--primary-dark:#c0392b;--accent:#f39c12;--text:#2d3436;--text-light:#636e72;--bg:#fafafa;--white:#fff;--radius:16px;--shadow:0 4px 20px rgba(0,0,0,0.08)}
*{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth}
body{font-family:'Noto Sans KR',sans-serif;color:var(--text);background:var(--bg);line-height:1.7;-webkit-font-smoothing:antialiased}
.container{max-width:800px;margin:0 auto;padding:0 20px}
.recipe-hero{position:relative;height:70vh;min-height:480px;overflow:hidden;display:flex;align-items:flex-end}
.recipe-hero__bg{position:absolute;inset:0;background:center/cover #333}
.recipe-hero__overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.2) 50%,rgba(0,0,0,.1) 100%)}
.recipe-hero__content{position:relative;z-index:2;padding:0 24px 48px;max-width:800px;margin:0 auto;width:100%}
.recipe-hero__badge{display:inline-flex;align-items:center;gap:6px;background:var(--primary);color:#fff;font-size:12px;font-weight:600;padding:6px 14px;border-radius:20px;margin-bottom:16px}
.recipe-hero__badge svg{width:14px;height:14px;fill:currentColor}
.recipe-hero__title{font-size:clamp(2rem,6vw,3.2rem);font-weight:800;color:#fff;line-height:1.2;margin-bottom:8px}
.recipe-hero__title-en{font-family:'Inter',sans-serif;font-size:clamp(.9rem,2.5vw,1.1rem);color:rgba(255,255,255,.6);margin-bottom:20px}
.recipe-hero__meta{display:flex;gap:24px;flex-wrap:wrap;color:rgba(255,255,255,.8);font-size:14px}
.recipe-hero__meta-item{display:flex;align-items:center;gap:6px}
.recipe-hero__meta-item svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2}
.info-bar{background:var(--white);border-bottom:1px solid #eee;padding:20px 0;position:sticky;top:0;z-index:100;box-shadow:0 2px 10px rgba(0,0,0,.04)}
.info-bar__inner{display:flex;justify-content:space-between;align-items:center;max-width:800px;margin:0 auto;padding:0 20px}
.info-bar__tabs{display:flex;gap:4px}
.info-bar__tab{padding:8px 18px;border-radius:20px;font-size:14px;font-weight:500;cursor:pointer;border:none;background:transparent;color:var(--text-light);transition:all .2s;font-family:'Noto Sans KR',sans-serif}
.info-bar__tab:hover{background:#f0f0f0}
.info-bar__tab.active{background:var(--primary);color:#fff}
.section{padding:48px 0}.section--alt{background:var(--white)}
.section__title{font-size:22px;font-weight:700;margin-bottom:24px;display:flex;align-items:center;gap:10px}
.section__title-icon{width:32px;height:32px;background:linear-gradient(135deg,var(--primary),var(--accent));border-radius:8px;display:flex;align-items:center;justify-content:center;color:#fff;font-size:16px}
.spice-level{display:flex;align-items:center;gap:12px;padding:16px 20px;background:linear-gradient(135deg,#fff5f5,#ffe8e8);border-radius:var(--radius);margin-bottom:24px}
.spice-level__label{font-size:14px;font-weight:600}
.spice-level__bar{display:flex;gap:4px}
.spice-dot{width:24px;height:24px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px}
.spice-dot--active{background:var(--primary)}.spice-dot--inactive{background:#f0f0f0}
.ingredients-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.ingredient{display:flex;justify-content:space-between;align-items:center;padding:12px 16px;background:var(--white);border-radius:10px;border:1px solid #f0f0f0;font-size:14px;transition:all .2s;gap:8px}
.ingredient:hover{border-color:var(--primary);background:#fff5f5}
.ingredient__name{font-weight:500;flex:1}
.ingredient__amount{color:var(--primary);font-weight:600;font-size:13px;white-space:nowrap}
.ingredient__buy{font-size:11px;padding:4px 10px;background:var(--primary);color:#fff;border-radius:12px;text-decoration:none;white-space:nowrap;transition:all .2s}
.ingredient__buy:hover{background:var(--primary-dark)}
.ingredient--optional{opacity:.6;border-style:dashed}
.shopping-cta{display:flex;align-items:center;justify-content:space-between;margin-top:20px;padding:16px 20px;background:linear-gradient(135deg,#ff6b35,#f7931e);border-radius:var(--radius);color:#fff;cursor:pointer;transition:transform .2s;text-decoration:none}
.shopping-cta:hover{transform:translateY(-2px)}
.shopping-cta__text{font-size:15px;font-weight:600}
.shopping-cta__sub{font-size:12px;opacity:.8;margin-top:2px}
.shopping-cta__icon{width:44px;height:44px;background:rgba(255,255,255,.2);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:22px}
.step{display:flex;gap:20px;margin-bottom:36px;opacity:0;transform:translateY(20px);transition:all .5s ease}
.step.visible{opacity:1;transform:translateY(0)}
.step__number{flex-shrink:0;width:36px;height:36px;background:var(--primary);color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:'Inter',sans-serif;font-weight:700;font-size:15px;margin-top:4px}
.step__content{flex:1}
.step__image{width:100%;border-radius:12px;overflow:hidden;margin-bottom:14px;box-shadow:var(--shadow);position:relative}
.step__image img{width:100%;height:auto;display:block}
.step__image-overlay{position:absolute;bottom:0;left:0;right:0;padding:8px 14px;background:linear-gradient(to top,rgba(0,0,0,.6),transparent);display:flex;align-items:center;gap:6px;color:#fff;font-size:11px;font-weight:500}
.step__image-overlay svg{width:14px;height:14px;fill:currentColor}
.step__text{font-size:15px;line-height:1.8}
.step__tip{margin-top:10px;padding:12px 14px;background:#fff3e0;border-left:3px solid var(--accent);border-radius:0 8px 8px 0;font-size:13px;color:#e65100}
.tips-list{display:flex;flex-direction:column;gap:12px}
.tip-card{display:flex;gap:14px;align-items:flex-start;padding:16px;background:var(--white);border-radius:12px;border:1px solid #f0f0f0}
.tip-card__icon{flex-shrink:0;width:40px;height:40px;background:#fef3c7;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:20px}
.tip-card__text{font-size:14px;line-height:1.6}
.footer-cta{padding:48px 0;background:#1a1a2e;text-align:center}
.footer-cta__title{color:#fff;font-size:20px;font-weight:700;margin-bottom:8px}
.footer-cta__sub{color:rgba(255,255,255,.6);font-size:14px;margin-bottom:24px}
.footer-cta__buttons{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.btn-cta{padding:14px 28px;border-radius:50px;font-size:15px;font-weight:600;border:none;cursor:pointer;transition:all .2s;text-decoration:none}
.btn-cta--primary{background:var(--primary);color:#fff}.btn-cta--primary:hover{background:var(--primary-dark);transform:translateY(-2px)}
.btn-cta--outline{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.3)}.btn-cta--outline:hover{border-color:#fff}
.mealkit-slot{padding:24px 0}
.mealkit-banner{display:flex;align-items:center;justify-content:space-between;padding:20px 24px;background:linear-gradient(135deg,#e8f5e9,#c8e6c9);border-radius:var(--radius)}
.mealkit-banner__text h3{font-size:16px;margin-bottom:4px}.mealkit-banner__text p{font-size:13px;color:#555}
.mealkit-banner__btn{padding:10px 20px;background:#27ae60;color:#fff;border-radius:20px;font-size:14px;font-weight:600;text-decoration:none}
.ad-slot{text-align:center;padding:20px;background:#f9f9f9;border:1px dashed #ddd;margin:16px 0;border-radius:8px}
.ad-placeholder{font-size:12px;color:#bbb}
.ad-slot--in-step{margin:20px 0;padding:12px}
@media(max-width:600px){.recipe-hero{height:55vh;min-height:380px}.ingredients-grid{grid-template-columns:1fr}.step{gap:14px}.step__number{width:30px;height:30px;font-size:13px}.recipe-hero__meta{gap:16px}.mealkit-banner{flex-direction:column;text-align:center;gap:12px}}
