/* Toned & Tan Co — Orchard Theme, Left Sidebar Layout */
:root {
    --leaf: #7cba3d;
    --leaf-dark: #5a8f2a;
    --leaf-light: #a8d86a;
    --wood: #8b6914;
    --wood-dark: #6b4f10;
    --wood-panel: #c4a35a;
    --wood-bg: #f5deb3;
    --wood-light: #faf0dc;
    --sky: #87ceeb;
    --sky-dark: #5ba8cf;
    --candy-pink: #ff6eb4;
    --candy-purple: #9b59b6;
    --fruit-red: #e12a32;
    --fruit-orange: #f68b1e;
    --fruit-purple: #8c1db3;
    --text: #3d2b1a;
    --text-muted: #6b5340;
    --white: #ffffff;
    --shadow: rgba(61, 43, 26, 0.12);
    --radius: 16px;
    --radius-pill: 50px;
    --sidebar-w: 220px;
    --shell-w: 1200px;
    --font: 'Nunito', sans-serif;
    --font-display: 'Quicksand', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: linear-gradient(160deg, #ffe8f5 0%, #e8f5d6 35%, var(--wood-light) 100%);
    min-height: 100vh;
    line-height: 1.65;
}

a { color: var(--leaf-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--wood-dark); }

img { max-width: 100%; height: auto; display: block; }

/* App Shell */
.tt-app { min-height: 100vh; }

.tt-layout {
    max-width: var(--shell-w);
    margin: 0 auto;
    display: flex;
    min-height: 100vh;
    background: var(--white);
    box-shadow: 0 0 40px var(--shadow);
}

/* Sidebar */
.tt-sidebar {
    width: var(--sidebar-w);
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--wood-dark) 0%, var(--wood) 100%);
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.tt-sidebar-vine {
    margin-top: auto;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Cpath d='M0 40 Q30 10 60 35 T120 30 T180 20' fill='none' stroke='%237cba3d' stroke-width='3'/%3E%3Ccircle cx='60' cy='35' r='8' fill='%237cba3d'/%3E%3Ccircle cx='120' cy='30' r='6' fill='%23a8d86a'/%3E%3C/svg%3E") no-repeat bottom center;
    opacity: 0.7;
}

.tt-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.15);
}

.tt-brand-logo {
    width: 100%;
    max-width: 180px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.tt-brand-text strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
}

.tt-brand-text small {
    color: var(--leaf-light);
    font-size: 0.72rem;
}

.tt-nav ul { list-style: none; }

.tt-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    margin-bottom: 4px;
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.tt-nav-link i { width: 18px; text-align: center; font-size: 0.95rem; }

.tt-nav-link:hover,
.tt-nav-link.is-active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.tt-nav-link.is-active { border-left: 3px solid var(--leaf-light); }

.tt-nav-leaf.is-active i { color: var(--leaf-light); }
.tt-nav-wood.is-active i { color: var(--wood-panel); }
.tt-nav-fruit.is-active i { color: var(--fruit-orange); }
.tt-nav-sky.is-active i { color: var(--sky); }

.tt-shop-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 14px 16px;
    background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 16px rgba(124,186,61,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: shopPulse 2.5s ease-in-out infinite;
}

.tt-shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,186,61,0.55);
    color: var(--white);
}

.tt-shop-btn.is-active {
    background: linear-gradient(135deg, var(--fruit-orange) 0%, #d9740f 100%);
    animation: none;
}

@keyframes shopPulse {
    0%, 100% { box-shadow: 0 4px 16px rgba(124,186,61,0.45); }
    50% { box-shadow: 0 4px 24px rgba(124,186,61,0.65); }
}

.tt-sidebar-toggle {
    display: none;
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 10px;
    background: var(--wood-dark);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px var(--shadow);
}

/* Content Area */
.tt-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.tt-main { flex: 1; }

.tt-wrap {
    padding: 32px 36px;
    max-width: 980px;
}

/* Tags & Typography */
.tt-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--leaf-light);
    color: var(--leaf-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.tt-title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 16px;
}

.tt-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 720px;
}

.tt-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: var(--leaf-dark);
}

.tt-link:hover { color: var(--wood-dark); }

/* Orchard Banner (Home) */
.orchard-banner {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 420px;
}

.orchard-banner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orchard-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.orchard-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.78) 45%, rgba(255,255,255,0.25) 100%);
}

.orchard-banner-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 28px;
    align-items: center;
    padding: 40px 36px;
    min-height: 420px;
}

.orchard-game-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(155,89,182,0.35);
    border: 3px solid var(--white);
}

.orchard-banner h1 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    margin-bottom: 20px;
}

.orchard-banner-visual img {
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(155,89,182,0.25);
    border: 4px solid var(--white);
    aspect-ratio: 9/16;
    object-fit: cover;
    width: 100%;
}

.home-split {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 32px;
    align-items: center;
}

.home-split-visual img {
    border-radius: var(--radius);
    box-shadow: 0 8px 24px var(--shadow);
    border: 3px solid var(--white);
    aspect-ratio: 9/16;
    object-fit: cover;
    width: 100%;
}

.shot-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.shot-mosaic-item {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 6px 18px var(--shadow);
    border: 3px solid var(--white);
}

.shot-mosaic-item.span-2 {
    grid-row: span 2;
}

.shot-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9/16;
    display: block;
}

.store-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.store-btns a img {
    height: 48px;
    width: auto;
    transition: transform 0.2s;
}

.store-btns a:hover img { transform: scale(1.04); }

/* Section Blocks */
.wood-section {
    padding: 36px;
    background: var(--wood-light);
    border-top: 3px solid var(--wood-panel);
}

.wood-panel {
    background: linear-gradient(180deg, var(--wood-bg) 0%, #edd9a8 100%);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 4px 12px var(--shadow);
    border: 2px solid var(--wood-panel);
}

.leaf-section {
    padding: 36px;
    background: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    margin: 16px 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(139,105,20,0.2);
}

.feature-list li i {
    color: var(--leaf);
    margin-top: 4px;
    flex-shrink: 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.btn-leaf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
    color: var(--white);
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(124,186,61,0.35);
    transition: transform 0.2s;
}

.btn-leaf:hover { transform: translateY(-2px); color: var(--white); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--wood-dark);
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: 2px solid var(--wood-panel);
    transition: all 0.2s;
}

.btn-outline:hover {
    background: var(--wood-bg);
    color: var(--wood-dark);
}

/* Screenshot Strip */
.shot-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.shot-strip img {
    border-radius: 12px;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px var(--shadow);
    aspect-ratio: 9/16;
    object-fit: cover;
}

/* About Page */
.about-hero {
    overflow: hidden;
    line-height: 0;
    background: #1a1020;
}

.about-hero img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.about-intro {
    max-width: 820px;
}

.about-intro p {
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-live-note {
    margin-top: 24px;
    color: var(--text-muted);
}

.about-screens {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.about-screen-item {
    margin: 0;
    flex: 0 1 auto;
    max-width: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 6px 20px var(--shadow);
    background: var(--white);
}

.about-screen-item img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

.advantage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.adv-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border-left: 4px solid var(--leaf);
    box-shadow: 0 2px 8px var(--shadow);
}

.adv-card h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--leaf-dark);
}

.adv-card p { font-size: 0.88rem; color: var(--text-muted); }

.contact-block {
    background: linear-gradient(135deg, var(--sky) 0%, #b8e4f5 100%);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 24px;
}

.contact-block h3 { margin-bottom: 12px; }

.contact-block p { margin-bottom: 8px; }

/* Game Page */
.game-intro-banner {
    background: linear-gradient(135deg, var(--candy-purple) 0%, #6b3fa0 50%, var(--candy-pink) 100%);
    color: var(--white);
    padding: 0;
}

.game-intro-inner {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 28px;
    align-items: center;
    padding: 40px 36px;
}

.game-intro-copy .tt-title { color: var(--white); }
.game-intro-copy .tt-lead { color: rgba(255,255,255,0.88); }

.game-intro-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 3px solid rgba(255,255,255,0.5);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.game-intro-visual img {
    border-radius: 20px;
    border: 4px solid rgba(255,255,255,0.6);
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
    aspect-ratio: 9/16;
    object-fit: cover;
    width: 100%;
}

.game-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.game-feat-card {
    background: var(--wood-light);
    border-radius: var(--radius);
    padding: 22px;
    border-top: 4px solid var(--fruit-orange);
}

.game-feat-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--wood-dark);
}

.game-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 24px 0;
}

.game-gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 12px var(--shadow);
    border: 3px solid var(--white);
}

.game-gallery img {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
}

.faq-list { margin-top: 20px; }

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 12px;
    border: 1px solid rgba(139,105,20,0.15);
}

.faq-item h3 {
    font-size: 0.95rem;
    color: var(--leaf-dark);
    margin-bottom: 8px;
}

.faq-item p { font-size: 0.9rem; color: var(--text-muted); }

/* Contact Page */
.contact-hero {
    position: relative;
    overflow: hidden;
    line-height: 0;
    min-height: 220px;
}

.contact-hero > img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(107,63,160,0.82) 0%, rgba(255,110,180,0.55) 100%);
}

.contact-hero-copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px;
    line-height: 1.65;
}

.contact-hero-copy .tt-tag {
    background: rgba(255,255,255,0.25);
    color: var(--white);
    align-self: flex-start;
}

.contact-hero-copy .tt-title {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.contact-hero-copy .tt-lead {
    color: rgba(255,255,255,0.92);
    max-width: 560px;
    margin-bottom: 0;
    font-size: 0.98rem;
}

.contact-body {
    padding: 36px 0 40px;
}

.contact-body-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}

.contact-panel {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 32px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 2px solid rgba(139,105,20,0.12);
}

.contact-panel-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--wood-dark);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-panel-title i {
    color: var(--leaf-dark);
}

.contact-channel-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-channel-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px dashed rgba(139,105,20,0.2);
}

.contact-channel-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-channel-item:first-child {
    padding-top: 0;
}

.contact-channel-text h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text);
}

.contact-channel-text p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-channel-note {
    margin-top: 6px !important;
    font-size: 0.82rem !important;
    opacity: 0.85;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-icon.loc { background: #ffe0e0; color: var(--fruit-red); }
.contact-icon.mail { background: #e0f0ff; color: var(--sky-dark); }
.contact-icon.phone { background: #e8f5d6; color: var(--leaf-dark); }
.contact-icon.globe { background: #f0e8ff; color: var(--fruit-purple); }

.contact-tip {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f5d6 100%);
    border-radius: 12px;
    border-left: 4px solid var(--sky-dark);
}

.contact-tip i {
    color: var(--sky-dark);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-tip p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-aside-photo {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 6px 20px var(--shadow);
    border: 3px solid var(--white);
    line-height: 0;
}

.contact-aside-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-aside-box {
    background: linear-gradient(180deg, var(--wood-bg) 0%, #edd9a8 100%);
    border-radius: var(--radius);
    padding: 22px;
    border: 2px solid var(--wood-panel);
    text-align: center;
}

.contact-aside-box h3 {
    font-size: 1rem;
    color: var(--wood-dark);
    margin-bottom: 10px;
}

.contact-aside-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-aside-btn {
    width: 100%;
    justify-content: center;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px dashed rgba(139,105,20,0.2);
}

/* Store Page */
.store-intro {
    background: linear-gradient(135deg, var(--wood-dark) 0%, var(--wood) 100%);
    color: var(--white);
    padding: 32px 36px;
}

.store-intro .tt-title { color: var(--white); }
.store-intro .tt-lead { color: rgba(255,255,255,0.88); }

.store-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.store-notes li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    background: rgba(255,255,255,0.12);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
}

.shop-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    color: #856404;
    margin: 20px 36px 0;
    font-size: 0.9rem;
}

.currency-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 36px;
    background: var(--wood-light);
    border-bottom: 1px solid rgba(139,105,20,0.15);
    flex-wrap: wrap;
}

.currency-bar-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.88rem;
}

.currency-switcher { display: flex; gap: 8px; flex-wrap: wrap; }

.currency-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 2px solid var(--wood-panel);
    border-radius: var(--radius-pill);
    background: var(--white);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.currency-btn.is-active {
    background: var(--leaf);
    border-color: var(--leaf-dark);
    color: var(--white);
}

.coin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    padding: 24px 36px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--leaf) var(--wood-light);
}

.coin-grid::-webkit-scrollbar {
    width: 8px;
}

.coin-grid::-webkit-scrollbar-track {
    background: var(--wood-light);
    border-radius: 4px;
}

.coin-grid::-webkit-scrollbar-thumb {
    background: var(--leaf);
    border-radius: 4px;
}

.coin-grid::-webkit-scrollbar-thumb:hover {
    background: var(--leaf-dark);
}

.coin-card {
    position: relative;
    background: linear-gradient(180deg, var(--wood-bg) 0%, #edd9a8 100%);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s;
    box-shadow: 0 3px 10px var(--shadow);
}

.coin-card:hover { transform: translateY(-3px); border-color: var(--leaf-light); }

.coin-card.is-selected {
    border-color: var(--leaf);
    box-shadow: 0 0 0 3px rgba(124,186,61,0.3);
}

.coin-card-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--leaf);
    color: var(--white);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.coin-card.is-selected .coin-card-check { display: flex; }

.coin-card-badge img { width: 56px; margin: 0 auto 10px; }

.coin-card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 6px;
}

.coin-card-price {
    font-weight: 800;
    color: var(--leaf-dark);
    font-size: 1.05rem;
}

.coin-loading, .coin-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

.coin-loading-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--wood-panel);
    border-top-color: var(--leaf);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.store-checkout {
    padding: 24px 36px 36px;
    background: var(--wood-light);
}

.store-checkout-form {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
}

.store-checkout-fields {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 2px 10px var(--shadow);
}

.store-checkout-fields h2 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--wood-dark);
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.form-group label .required { color: var(--fruit-red); }

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--wood-panel);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.92rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--leaf);
}

.form-group input[readonly] {
    background: var(--wood-light);
    color: var(--text-muted);
}

.field-error {
    display: block;
    color: var(--fruit-red);
    font-size: 0.8rem;
    margin-top: 4px;
    min-height: 18px;
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 2px solid var(--wood-panel);
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}

.payment-chip input { display: none; }

.payment-chip.is-selected,
.payment-chip:has(input:checked) {
    border-color: var(--leaf);
    background: rgba(124,186,61,0.1);
}

.agree-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.agree-row input { margin-top: 4px; flex-shrink: 0; }

.store-summary-card {
    background: linear-gradient(180deg, var(--wood-bg) 0%, #edd9a8 100%);
    border-radius: var(--radius);
    padding: 24px;
    border: 2px solid var(--wood-panel);
    position: sticky;
    top: 20px;
}

.store-summary-card h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--wood-dark);
}

.store-summary-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.store-summary-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.store-summary-value.has-value { color: var(--text); }

.store-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 2px dashed var(--wood-panel);
    margin-bottom: 16px;
    font-weight: 700;
}

.store-summary-total strong {
    font-size: 1.3rem;
    color: var(--leaf-dark);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--leaf) 0%, var(--leaf-dark) 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(124,186,61,0.4);
    transition: transform 0.2s;
}

.btn-submit:hover { transform: translateY(-2px); }

/* Transaction Pages */
.tx-wrap {
    padding: 48px 36px;
    display: flex;
    justify-content: center;
}

.tx-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px var(--shadow);
    border: 2px solid var(--wood-panel);
}

.tx-icon, .result-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.tx-icon { background: var(--wood-light); color: var(--wood-dark); }

.result-icon.success { background: #e8f5d6; color: var(--leaf-dark); }
.result-icon.fail { background: #ffe0e0; color: var(--fruit-red); }

.tx-card h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.tx-card > p { color: var(--text-muted); margin-bottom: 24px; }

.order-details { text-align: left; margin-bottom: 24px; }

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(139,105,20,0.2);
    font-size: 0.9rem;
}

.detail-row .label { color: var(--text-muted); font-weight: 600; }
.detail-row .value { font-weight: 700; text-align: right; max-width: 60%; word-break: break-all; }
.detail-row .value.total { color: var(--leaf-dark); font-size: 1.05rem; }

.payment-redirect { margin: 20px 0; }

.countdown {
    font-size: 2rem;
    font-weight: 800;
    color: var(--leaf-dark);
    margin: 12px 0;
}

.tx-actions, .store-process-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.btn-action.primary {
    background: var(--leaf);
    color: var(--white);
}

.btn-action.primary:hover { background: var(--leaf-dark); color: var(--white); }

.btn-action.secondary {
    background: transparent;
    border: 2px solid var(--wood-panel);
    color: var(--wood-dark);
}

.error-code {
    display: inline-block;
    padding: 4px 12px;
    background: #ffe0e0;
    color: var(--fruit-red);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

/* Footer */
.tt-footer {
    background: var(--wood-dark);
    color: rgba(255,255,255,0.85);
    padding: 28px 36px;
    margin-top: auto;
}

.tt-footer-inner { max-width: 100%; }

.tt-footer-info p {
    font-size: 0.82rem;
    margin-bottom: 6px;
    line-height: 1.5;
}

.tt-footer-info a { color: var(--leaf-light); }
.tt-footer-info a:hover { color: var(--white); }

.tt-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px 0 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.tt-footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
}

.tt-footer-links a:hover { color: var(--white); }

.tt-footer-copy {
    font-size: 0.78rem;
    opacity: 0.6;
}

/* Page Tone Variations */
.tt-tone-about .tt-sidebar { background: linear-gradient(180deg, #6b4f10 0%, #8b6914 100%); }
.tt-tone-game .leaf-section { background: #faf8f4; }
.tt-tone-contact .tt-content {
    background: linear-gradient(180deg, #f0f8ff 0%, #e8f5d6 55%, var(--wood-light) 100%);
}
.tt-tone-contact .tt-main { background: transparent; }
.tt-tone-contact .contact-body { background: transparent; }
.tt-tone-shop .tt-main { background: var(--wood-light); }

/* Responsive */
@media (max-width: 900px) {
    .tt-sidebar-toggle { display: flex; align-items: center; justify-content: center; }

    .tt-sidebar {
        position: fixed;
        left: -280px;
        width: 260px;
        transition: left 0.3s;
        height: 100vh;
    }

    .tt-sidebar.is-open { left: 0; }

    .orchard-banner-inner,
    .home-split,
    .game-intro-inner,
    .contact-body-grid,
    .two-col,
    .game-features-grid,
    .store-checkout-form,
    .advantage-cards { grid-template-columns: 1fr; }

    .shot-strip { grid-template-columns: repeat(2, 1fr); }
    .shot-mosaic { grid-template-columns: 1fr 1fr; }
    .shot-mosaic-item.span-2 { grid-row: auto; }
    .game-gallery { grid-template-columns: 1fr 1fr; }
    .about-screen-item { max-width: 100%; }
}

@media (max-width: 600px) {
    .tt-wrap, .orchard-banner, .wood-section, .leaf-section,
    .store-intro, .coin-grid, .store-checkout, .tx-wrap,
    .contact-body, .contact-hero-copy { padding-left: 20px; padding-right: 20px; }

    .shot-strip, .game-gallery, .advantage-cards { grid-template-columns: 1fr; }
}
