:root { --accent: #527a20; --canvas: #f7f7f0; }
.store-nav { display: flex; align-items: center; gap: 25px; }
.store-nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 700; }
.store-nav a.active { color: var(--accent); }
.cart { border: 1px solid #dfe5d7; border-radius: 12px; padding: 9px 13px; color: #35431f; background: #fff; font-weight: 800; }
.cart strong { display: inline-grid; place-items: center; width: 21px; height: 21px; margin-left: 5px; border-radius: 50%; color: #fff; background: var(--accent); font-size: 11px; }
.product-layout { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: 30px; }
.product-info { padding: 20px 8px; }
.product-info h1 { margin-bottom: 12px; font-size: 46px; letter-spacing: -.06em; }
.lead { color: var(--muted); font-size: 18px; line-height: 1.55; }
.rating { margin: 22px 0; color: #f3a10b; font-weight: 900; }
.rating span { color: var(--muted); font-size: 13px; font-weight: 600; }
.price { margin: 20px 0; font-size: 36px; font-weight: 900; }
.price small { display: block; color: var(--muted); font-size: 12px; font-weight: 600; }
.buy { width: 100%; margin-bottom: 10px; }
.features { display: grid; gap: 12px; padding: 18px 0 0; list-style: none; color: #4d5646; font-size: 14px; }
.features li::before { content: "✓"; margin-right: 9px; color: var(--accent); font-weight: 900; }
.preview-area { min-width: 0; }
.preview-toolbar { min-height: 55px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid #dfe3d9; }
.tab, .scene-controls button { border: 0; padding: 10px 12px; color: var(--muted); background: transparent; font-weight: 800; }
.tab.active { color: var(--accent); border-bottom: 3px solid var(--accent); }
.scene-controls { display: flex; gap: 5px; }
.scene-controls button { border: 1px solid #dce2d4; border-radius: 10px; background: #fff; }
.forest-scene { height: 510px; overflow: hidden; position: relative; border-radius: 20px; background: linear-gradient(#92d8e9 0 45%, #c9eaa4 46% 100%); box-shadow: var(--shadow); transition: background .4s ease; }
.forest-scene.night { background: linear-gradient(#172b55 0 45%, #31573c 46% 100%); }
.sun { position: absolute; width: 75px; height: 75px; top: 36px; right: 60px; border-radius: 50%; background: #fff6a7; box-shadow: 0 0 40px rgba(255,245,148,.9); transition: .4s ease; }
.night .sun { background: #fffbe5; transform: translate(-40px, 5px) scale(.7); box-shadow: 0 0 30px rgba(255,255,238,.5); }
.hill { position: absolute; width: 70%; height: 260px; bottom: 80px; border-radius: 50% 50% 0 0; background: #6aa353; }
.hill-one { left: -20%; }.hill-two { right: -25%; background: #497e43; transform: scale(.9); }
.ground { position: absolute; inset: auto 0 0; height: 112px; background: linear-gradient(#477d30, #264d27); }
.scene-item { position: absolute; z-index: 4; object-fit: contain; filter: drop-shadow(0 10px 8px rgba(36,61,27,.18)); transition: filter .4s ease; }
.night .scene-item { filter: brightness(.7) saturate(.8) drop-shadow(0 10px 8px rgba(0,0,0,.28)); }
.tree { width: 180px; bottom: 68px; }.tree.one { left: 2%; }.tree.two { right: 0; transform: scale(.8); }
.cottage { width: 250px; right: 16%; bottom: 70px; }
.bush { width: 150px; bottom: 66px; }.bush.one { left: 25%; }
.rock { width: 105px; left: 48%; bottom: 72px; }
.mushroom { width: 60px; left: 59%; bottom: 70px; }
.coin { width: 52px; left: 42%; bottom: 210px; animation: coin 1.2s ease-in-out infinite alternate; }
.fox { width: 120px; left: 30%; bottom: 70px; transform-origin: bottom center; }
.fox.jump { animation: jump .65s ease; }
.scene-note { position: absolute; z-index: 8; left: 18px; top: 18px; padding: 8px 11px; border-radius: 10px; color: #324630; background: rgba(255,255,255,.75); font-size: 12px; font-weight: 800; backdrop-filter: blur(8px); }
.asset-strip { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 9px; margin-top: 12px; }
.asset-button { min-width: 0; aspect-ratio: 1.15; padding: 8px; border: 1px solid #dfe3d9; border-radius: 13px; background: #fff; }
.asset-button.active { outline: 3px solid #a7c77d; border-color: var(--accent); }
.asset-button img { width: 100%; height: 100%; object-fit: contain; }
.asset-detail { display: flex; align-items: center; gap: 16px; margin-top: 12px; padding: 14px 18px; box-shadow: none; }
.asset-detail img { width: 68px; height: 68px; object-fit: contain; }
.asset-detail h3 { margin: 3px 0; }
.asset-detail p { margin: 0; color: var(--muted); font-size: 13px; }
@keyframes coin { to { transform: translateY(-9px) rotateY(20deg); } }
@keyframes jump { 50% { transform: translateY(-75px) rotate(-5deg); } }
@media (max-width: 900px) { .product-layout { grid-template-columns: 1fr; } .product-info { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; } .product-info h1, .product-info .lead, .product-info .eyebrow, .features { grid-column: 1 / -1; } .store-nav { display: none; } }
@media (max-width: 600px) { .product-info { display: block; } .preview-toolbar { align-items: stretch; flex-direction: column; padding-bottom: 10px; } .forest-scene { height: 400px; } .cottage { width: 190px; right: 2%; } .tree { width: 130px; } .fox { width: 95px; left: 20%; } .bush { left: 36% !important; } .rock, .mushroom { display: none; } .asset-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (max-width: 430px) { .app-header { gap: 8px; } .brand { gap: 8px; font-size: 14px; } .brand-mark { width: 30px; } .cart { padding: 8px 9px; font-size: 13px; } }
