:root {
    --primary: #ff6f00; /* Tasty Orange */
    --primary-light: #fff3e0;
    --dark: #2d2d2d;
    --white: #ffffff;
    --text: #333;
    --green: #4caf50;
    --gray: #f5f5f5;
}

body {
    -webkit-user-select: none; user-select: none;
    font-family: 'Montserrat', sans-serif;
    color: var(--text); background: var(--white);
    margin: 0; padding: 0; overflow-x: hidden; line-height: 1.5;
}
* { box-sizing: border-box; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 15px; }
.section { padding: 60px 0; }
.bg-orange-light { background: var(--primary-light); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-white { background: var(--white); }
.white { color: var(--white) !important; }

/* Image Helper */
.no-crop {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Header */
.header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 22px; color: var(--dark); }
.logo span { color: var(--primary); }
.btn-small { background: var(--primary); color: white; padding: 8px 20px; border-radius: 20px; text-decoration: none; font-weight: 700; font-size: 13px; box-shadow: 0 4px 10px rgba(255, 111, 0, 0.3); }

/* Hero (New Layout) */
.hero { background: radial-gradient(circle at top center, #fff8e1 0%, #ffffff 100%); padding: 50px 0; overflow: hidden; }
.hero-container { display: flex; flex-direction: column; align-items: center; gap: 30px; text-align: center; }
.badge-top { background: var(--dark); color: white; padding: 5px 15px; font-weight: 800; font-size: 12px; border-radius: 20px; display: inline-block; margin-bottom: 15px; }
.hero h1 { font-size: 34px; line-height: 1.1; margin-bottom: 15px; font-weight: 900; color: var(--dark); }
.hero h1 span { color: var(--primary); }
.subtitle { font-size: 16px; margin-bottom: 25px; color: #555; max-width: 600px; }

.features-pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 25px; }
.pill { background: var(--white); border: 1px solid var(--primary); color: var(--primary); padding: 6px 15px; border-radius: 20px; font-size: 13px; font-weight: 700; }

.price-block { margin-bottom: 25px; }
.price-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 5px; }
.old-price { text-decoration: line-through; color: #999; font-size: 18px; }
.discount { background: #d32f2f; color: white; padding: 2px 6px; border-radius: 4px; font-size: 12px; font-weight: 700; }
.new-price { color: var(--primary); font-size: 42px; font-weight: 900; }

.hero-image-box { position: relative; width: 100%; max-width: 500px; }
.main-img { filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1)); transition: transform 0.3s; }
.main-img:hover { transform: scale(1.02); }
.float-badge { position: absolute; bottom: 30px; right: 0; background: var(--white); padding: 10px 15px; border-radius: 30px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); font-weight: 700; font-size: 14px; color: var(--dark); border: 2px solid var(--primary-light); animation: float 3s ease-in-out infinite; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-10px); } 100% { transform: translateY(0px); } }

/* Buttons */
.btn-main {
    display: flex; justify-content: center; align-items: center; text-align: center;
    background: var(--primary); color: white; padding: 18px 40px; width: 100%; max-width: 450px; margin: 0 auto;
    border-radius: 50px; font-size: 18px; font-weight: 800; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 111, 0, 0.4); transition: transform 0.2s, background 0.3s;
}
.btn-main:hover { background: #e65100; transform: translateY(-3px); }
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(255, 111, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0); } }
.timer-text { margin-top: 15px; font-size: 14px; color: #777; font-weight: 600; }

/* Sections Common */
.section-title { text-align: center; font-size: 26px; margin-bottom: 40px; text-transform: uppercase; font-weight: 900; color: var(--dark); }
.section-title.white { color: var(--white); }
.section-desc { text-align: center; max-width: 600px; margin: -25px auto 40px; color: #666; font-size: 15px; }

/* Scenarios Grid */
.scenarios-grid { display: grid; gap: 15px; grid-template-columns: repeat(2, 1fr); margin-bottom: 30px; }
.sc-card { background: var(--white); padding: 20px 15px; border-radius: 15px; text-align: center; box-shadow: 0 5px 15px rgba(0,0,0,0.05); border: 1px solid #eee; }
.sc-icon { font-size: 30px; display: block; margin-bottom: 10px; }
.sc-card h3 { font-size: 16px; margin-bottom: 5px; color: var(--dark); font-weight: 700; }
.sc-card p { font-size: 12px; color: #666; line-height: 1.4; }
.scenario-big-img { margin-top: 20px; }
.rounded-img { border-radius: 20px; box-shadow: 0 10px 25px rgba(0,0,0,0.1); }

/* Anatomy Flex */
.anatomy-flex { display: flex; flex-direction: column; gap: 30px; align-items: center; }
.anatomy-img img { max-width: 400px; }
.anatomy-list { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.a-item { display: flex; gap: 15px; align-items: flex-start; background: var(--white); padding: 15px; border-radius: 12px; box-shadow: 0 5px 10px rgba(0,0,0,0.03); }
.a-num { background: var(--primary); color: white; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; }
.a-item h4 { font-size: 16px; margin-bottom: 5px; font-weight: 700; }
.a-item p { font-size: 13px; color: #666; margin: 0; }

/* Steps */
.steps-img-container { margin-bottom: 30px; text-align: center; }
.steps-img-container img { border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); max-width: 500px; }
.steps-text-row { display: flex; justify-content: space-between; align-items: center; text-align: center; background: var(--primary-light); padding: 20px; border-radius: 15px; }
.step-t span { font-size: 30px; font-weight: 900; color: var(--primary); display: block; margin-bottom: 5px; opacity: 0.5; }
.step-t p { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.step-arrow { color: var(--primary); font-size: 20px; font-weight: bold; }

/* Specs */
.specs-layout { display: flex; flex-direction: column; gap: 30px; align-items: center; }
.specs-img img { border-radius: 15px; }
.specs-data { width: 100%; background: rgba(255,255,255,0.1); padding: 25px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }
.specs-data ul { padding: 0; margin: 0; list-style: none; }
.specs-data li { margin-bottom: 15px; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; color: #ddd; }
.specs-data li:last-child { border: none; margin: 0; padding: 0; }
.specs-data strong { color: var(--primary); margin-right: 5px; }

/* Reviews */
.google-review-header { background: #1a1a1a; border-radius: 15px; padding: 20px; margin-bottom: 25px; }
.g-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.g-logo { font-family: sans-serif; font-weight: bold; font-size: 18px; letter-spacing: -1px; color: white; }
.g-shopping { color: #fff; font-weight: 400; margin-left: 5px; }
.g-rating { color: #fff; font-weight: bold; font-size: 20px; }
.g-verified { color: #ccc; font-size: 11px; margin-bottom: 15px; }
.g-progress-wrap { background: #333; height: 6px; border-radius: 3px; overflow: hidden; margin-bottom: 8px; }
.g-progress-bar { background: #4caf50; height: 100%; }
.g-stats { display: flex; justify-content: space-between; font-size: 12px; color: #888; }
.g-green { color: #4caf50; font-weight: bold; }

.btn-write-review { display: block; width: 100%; background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 12px; border-radius: 30px; font-weight: 700; margin-bottom: 30px; cursor: pointer; transition: 0.2s; }
.btn-write-review:hover { background: var(--primary); color: white; }

.reviews-grid-scroll { display: grid; gap: 15px; grid-template-columns: 1fr; max-height: 600px; overflow-y: auto; }
.review-item { background: #f9f9f9; padding: 20px; border-radius: 12px; border: 1px solid #eee; }
.ri-head { display: flex; justify-content: space-between; margin-bottom: 10px; align-items: center; }
.ri-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.ri-stars { color: #ffc107; font-size: 13px; }
.ri-text { color: #555; font-size: 13px; line-height: 1.5; margin-bottom: 10px; }
.ri-date { font-size: 11px; color: #999; text-align: right; }

/* Order Form */
.order-section { background: var(--primary); padding: 60px 0; }
.form-wrapper { background: white; padding: 30px 20px; border-radius: 15px; max-width: 500px; margin: 0 auto; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.form-wrapper h2 { text-align: center; font-size: 22px; margin-bottom: 5px; color: var(--dark); }
.form-wrapper > p { text-align: center; font-size: 14px; color: #666; margin-bottom: 20px; }
.product-preview { display: flex; align-items: center; gap: 15px; background: var(--gray); padding: 10px; border-radius: 8px; margin-bottom: 20px; }
.product-preview img { width: 60px; height: 60px; object-fit: contain; }
.pp-info h4 { font-size: 14px; margin-bottom: 3px; font-weight: 700; }
.pp-info p { font-size: 12px; color: #666; margin: 0; }

.input-group { margin-bottom: 15px; }
.input-group label { display: block; margin-bottom: 6px; font-weight: 700; font-size: 12px; text-transform: uppercase; color: var(--dark); }
.input-group input { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 6px; font-size: 16px; -webkit-appearance: none; }
.price-final { font-size: 18px; text-align: center; font-weight: 700; margin: 25px 0; border-top: 1px solid #eee; padding-top: 20px; }
.price-final span { color: var(--primary); font-size: 26px; }
.spam-warning { display: none; background: #e8f5e9; color: #2e7d32; padding: 10px; border-radius: 5px; text-align: center; margin-bottom: 15px; font-size: 13px; font-weight: 600; }
.secure-text { text-align: center; margin-top: 15px; font-size: 11px; color: #999; }

/* Footer */
footer { background: #222; color: #666; text-align: center; padding: 30px 0; font-size: 12px; }
footer a { color: #888; }

/* PC Adaptation */
@media (min-width: 768px) {
    .hero { padding: 80px 0; }
    .hero-container { flex-direction: row; text-align: left; justify-content: space-between; gap: 50px; }
    .hero-content { flex: 1; align-items: flex-start; text-align: left; }
    .hero h1 { font-size: 48px; }
    .btn-main { margin: 0; display: inline-flex; }
    .features-pill-row { justify-content: flex-start; }
    
    .scenarios-grid { grid-template-columns: repeat(4, 1fr); }
    
    .anatomy-flex { flex-direction: row; }
    .anatomy-img, .anatomy-list { flex: 1; }
    
    .steps-text-row { max-width: 600px; margin: 0 auto; }
    
    .specs-layout { flex-direction: row; align-items: center; }
    .specs-img, .specs-data { flex: 1; }
    
    .reviews-grid-scroll { grid-template-columns: repeat(3, 1fr); max-height: none; overflow: visible; }
}