:root {
--c-primary: #2D6BFF;
--c-secondary: #1E3A8A;
--c-accent: #F4B942;
--c-bg: #0A1022;
--c-surface: #131F3F;
--c-text-primary: #EEF4FF;
--c-text-secondary: #B5C2DE;
--f-heading: 'Playfair Display', sans-serif;
--f-body: 'Inter', sans-serif;
--container-pad: 24px;
}
@media (min-width: 768px) {
:root { --container-pad: 32px; }
}
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
overflow-x: hidden;
background-color: var(--c-bg);
color: var(--c-text-primary);
font-family: var(--f-body);
font-size: 16px;
line-height: 1.6;
}
.forestrush_body {
padding-left: env(safe-area-inset-left, 0);
padding-right: env(safe-area-inset-right, 0);
}
img {
max-width: 100%;
height: auto;
display: block;
}
a {
color: inherit;
text-decoration: none;
}
button {
font-family: inherit;
cursor: pointer;
}
.forestrush_container {
width: 100%;
padding-left: var(--container-pad);
padding-right: var(--container-pad);
margin: 0 auto;
max-width: 1200px;
}
.forestrush_section {
padding-top: 64px;
padding-bottom: 64px;
}
@media (max-width: 767px) {
.forestrush_section {
padding-top: 40px;
padding-bottom: 40px;
}
}
.forestrush_container.forestrush_section {
padding-left: var(--container-pad);
padding-right: var(--container-pad);
}
.forestrush_bg_surface {
background-color: var(--c-surface);
}
.forestrush_h1, .forestrush_h2, .forestrush_h3, .forestrush_h4 {
font-family: var(--f-heading);
font-weight: 700;
margin-bottom: 16px;
line-height: 1.2;
}
.forestrush_h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.forestrush_h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.forestrush_h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
.forestrush_btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 24px;
font-weight: 600;
border: none;
border-radius: 4px;
transition: transform 0.2s, background-color 0.2s;
min-height: 44px;
text-align: center;
}
.forestrush_btn:active {
transform: scale(0.96);
}
.forestrush_btn_primary {
background-color: var(--c-primary);
color: #fff;
position: relative;
overflow: hidden;
}
.forestrush_btn_primary:hover {
background-color: #1a51d4;
}
@keyframes shimmer {
0% { background-position: -200% center; }
100% { background-position: 200% center; }
}
.forestrush_btn_primary:hover::after {
content: "";
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
background-size: 200% auto;
animation: shimmer 0.6s linear infinite;
pointer-events: none;
}
.forestrush_btn_outline {
background: transparent;
border: 1px solid var(--c-text-primary);
color: var(--c-text-primary);
}
.forestrush_link {
color: var(--c-accent);
text-decoration: underline;
}
.forestrush_w_full { width: 100%; }

/* Header */
.forestrush_header {
position: sticky;
top: 0;
z-index: 100;
background-color: var(--c-bg);
border-bottom: 1px solid rgba(255,255,255,0.1);
transition: backdrop-filter 0.3s, box-shadow 0.3s;
}
.forestrush_header.header--scrolled {
backdrop-filter: blur(14px);
background-color: rgba(10, 16, 34, 0.9);
box-shadow: 0 2px 24px rgba(0,0,0,0.12);
}
.forestrush_header_container {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px var(--container-pad);
max-width: 1200px;
margin: 0 auto;
width: 100%;
}
.forestrush_logo {
font-family: var(--f-heading);
font-size: 1.5rem;
font-weight: 700;
color: var(--c-accent);
}
.forestrush_nav {
display: none;
flex-direction: column;
position: absolute;
top: 65px;
left: 0;
right: 0;
background: var(--c-surface);
padding: 16px var(--container-pad) 24px;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.forestrush_nav.is-open {
display: flex;
}
.forestrush_nav a {
padding: 12px 0;
font-weight: 500;
position: relative;
}
.forestrush_nav_account {
display: block;
margin-top: 8px;
padding-top: 16px !important;
border-top: 1px solid rgba(255,255,255,0.1);
font-weight: 600;
color: var(--c-accent);
}
@media (max-width: 767px) {
.forestrush_header_actions > #authLink {
display: none;
}
}
@media (min-width: 768px) {
.forestrush_nav_account {
display: none;
}
}
.forestrush_header_actions {
display: flex;
align-items: center;
gap: 16px;
}
.forestrush_icon_btn {
background: none;
border: none;
color: var(--c-text-primary);
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
}
.forestrush_icon_link {
display: flex;
align-items: center;
height: 44px;
font-weight: 600;
}
.forestrush_cart_badge {
position: absolute;
top: 4px;
right: 4px;
background: var(--c-accent);
color: var(--c-bg);
font-size: 0.7rem;
font-weight: 700;
width: 18px;
height: 18px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
@keyframes pop {
0% { transform: scale(1); }
50% { transform: scale(1.5); background-color: #fff; }
100% { transform: scale(1); }
}
.forestrush_cart_badge.pop { animation: pop 0.28s ease-out; }
.forestrush_burger {
display: flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
background: none;
border: none;
color: var(--c-text-primary);
}
@media(min-width: 768px) {
.forestrush_burger { display: none; }
.forestrush_nav {
display: flex;
flex-direction: row;
position: static;
background: none;
padding: 0;
box-shadow: none;
gap: 24px;
}
.forestrush_nav a::after {
content: "";
position: absolute;
bottom: 8px; left: 0; width: 0; height: 2px;
background: var(--c-accent);
transition: width 0.22s;
}
.forestrush_nav a:hover::after { width: 100%; }
}

/* Animations */
.reveal {
opacity: 0;
transform: translateY(32px);
transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
opacity: 1;
transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
.reveal { transition: none; transform: none; }
}
.forestrush_hero {
position: relative;
min-height: 80vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background-color: var(--c-surface);
overflow: hidden;
padding: 32px var(--container-pad);
}
.forestrush_hero_content {
max-width: 800px;
position: relative;
z-index: 2;
}
.forestrush_hero_sub {
font-size: 1.1rem;
color: var(--c-text-secondary);
margin-bottom: 24px;
}
.forestrush_trust_strip {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
margin-bottom: 32px;
font-size: 0.9rem;
font-weight: 600;
color: var(--c-accent);
}

/* Footer */
.forestrush_footer {
background-color: var(--c-surface);
padding: 48px 0 24px;
border-top: 1px solid rgba(255,255,255,0.05);
}
.forestrush_footer > .forestrush_container {
padding-left: var(--container-pad);
padding-right: var(--container-pad);
}
.forestrush_footer_grid {
display: flex;
flex-direction: column;
gap: 32px;
margin-bottom: 32px;
}
.forestrush_footer_title {
font-size: 1.1rem;
color: var(--c-accent);
margin-bottom: 16px;
}
.forestrush_footer_nav a {
display: block;
padding: 8px 0;
color: var(--c-text-secondary);
}
.forestrush_footer_bottom {
border-top: 1px solid rgba(255,255,255,0.1);
padding-top: 24px;
text-align: center;
color: var(--c-text-secondary);
font-size: 0.9rem;
}
.forestrush_footer_payments {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
flex-wrap: wrap;
margin-bottom: 20px;
}
.forestrush_footer_pay_text {
display: inline-block;
padding: 6px 14px;
background: rgba(255,255,255,0.08);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 4px;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.04em;
color: var(--c-text-primary);
text-transform: uppercase;
}
@media(min-width: 768px) {
.forestrush_footer_grid { flex-direction: row; justify-content: space-between; flex-wrap: wrap; }
.forestrush_footer_col { flex: 1; min-width: 200px; }
}
.forestrush_footer_map {
margin-top: 16px;
border-radius: 8px;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.1);
}
.forestrush_footer_map iframe {
display: block;
width: 100%;
height: 160px;
border: none;
}
.forestrush_policy_list {
margin: 16px 0 24px 20px;
color: var(--c-text-secondary);
}
.forestrush_policy_list li { margin-bottom: 10px; }

/* Product Cards */
.forestrush_grid_catalog, .forestrush_grid_featured {
display: grid;
grid-template-columns: 1fr;
gap: 24px;
}
@media(min-width: 481px) {
.forestrush_grid_catalog, .forestrush_grid_featured { grid-template-columns: repeat(2, 1fr); }
}
@media(min-width: 768px) {
.forestrush_grid_catalog { grid-template-columns: repeat(3, 1fr); }
.forestrush_grid_featured { grid-template-columns: repeat(4, 1fr); }
}
.forestrush_card {
background: var(--c-surface);
border-radius: 8px;
overflow: hidden;
position: relative;
transition: box-shadow 0.22s;
display: flex;
flex-direction: column;
border: 1px solid rgba(255,255,255,0.05);
}
.forestrush_card:hover {
box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.forestrush_card_img_wrapper {
position: relative;
padding-top: 75%;
overflow: hidden;
background: #000;
cursor: pointer;
}
.forestrush_card_img {
position: absolute;
top: 0; left: 0; width: 100%; height: 100%;
object-fit: cover;
transition: transform 0.22s;
}
.forestrush_card:hover .forestrush_card_img {
transform: scale(1.07);
}
.forestrush_card_badge {
position: absolute;
top: 12px; left: 12px;
background: var(--c-accent);
color: var(--c-bg);
padding: 4px 8px;
font-size: 0.75rem;
font-weight: 700;
border-radius: 4px;
z-index: 2;
}
.forestrush_wishlist_toggle {
position: absolute;
top: 12px; right: 12px;
background: rgba(0,0,0,0.5);
border: none;
color: #fff;
width: 36px; height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}
@keyframes heartBounce {
0% { transform: scale(1); }
50% { transform: scale(1.45); }
100% { transform: scale(1); }
}
.forestrush_wishlist_toggle.is-active svg {
fill: var(--c-accent);
stroke: var(--c-accent);
animation: heartBounce 0.25s ease-out;
}
.forestrush_card_content {
padding: 16px;
flex: 1;
display: flex;
flex-direction: column;
}
.forestrush_card_cat {
font-size: 0.8rem;
color: var(--c-text-secondary);
text-transform: uppercase;
margin-bottom: 4px;
}
.forestrush_card_title {
font-family: var(--f-heading);
font-size: 1.1rem;
margin-bottom: 8px;
cursor: pointer;
}
.forestrush_card_price {
font-weight: 700;
color: var(--c-accent);
margin-bottom: 12px;
font-size: 1.2rem;
}
.forestrush_card_desc {
font-size: 0.9rem;
color: var(--c-text-secondary);
margin-bottom: 16px;
flex: 1;
}
.forestrush_card_btn {
margin-top: auto;
width: 100%;
}

/* Modals & Toasts */
.forestrush_modal_overlay {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0,0,0,0.8);
backdrop-filter: blur(4px);
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.2s;
pointer-events: none;
}
.forestrush_modal_overlay.is-active {
opacity: 1;
pointer-events: auto;
}
.forestrush_modal_panel {
background: var(--c-surface);
width: calc(100% - 32px);
max-width: 500px;
border-radius: 8px;
padding: 24px;
max-height: 90vh;
overflow-y: auto;
transform: translateY(56px);
transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
position: relative;
}
.forestrush_modal_overlay.is-active .forestrush_modal_panel {
transform: translateY(0);
}
.forestrush_modal_close {
position: absolute;
top: 16px; right: 16px;
background: none;
border: none;
color: var(--c-text-primary);
width: 32px; height: 32px;
display: flex;
align-items: center;
justify-content: center;
}
.forestrush_form_group {
margin-bottom: 16px;
}
.forestrush_label {
display: block;
margin-bottom: 8px;
font-weight: 500;
font-size: 0.9rem;
}
.forestrush_input {
width: 100%;
padding: 12px;
background: var(--c-bg);
border: 1px solid rgba(255,255,255,0.2);
color: var(--c-text-primary);
border-radius: 4px;
font-size: 16px;
font-family: inherit;
}
.forestrush_input:focus {
outline: 2px solid var(--c-accent);
}
.forestrush_error_msg {
color: #ff6b6b;
font-size: 0.8rem;
margin-top: 4px;
display: none;
}
.forestrush_toast_container {
position: fixed;
bottom: 24px; left: 24px;
z-index: 1100;
display: flex;
flex-direction: column;
gap: 8px;
}
.forestrush_toast {
background: var(--c-surface);
border-left: 4px solid var(--c-accent);
padding: 16px 24px;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
transform: translateX(-110%);
transition: transform 0.27s ease-out, opacity 0.2s;
opacity: 1;
}
.forestrush_toast.is-visible {
transform: translateX(0);
}

/* Chat Widget */
.forestrush_chat_widget {
position: fixed;
bottom: 24px; right: 24px;
z-index: 900;
display: flex;
flex-direction: column;
align-items: flex-end;
}
.forestrush_chat_panel {
width: calc(100vw - 32px);
max-width: 360px;
background: var(--c-surface);
border-radius: 8px;
box-shadow: 0 8px 24px rgba(0,0,0,0.3);
margin-bottom: 16px;
display: flex;
flex-direction: column;
overflow: hidden;
max-height: 0;
transition: max-height 0.27s ease-out;
}
.forestrush_chat_panel.is-open {
max-height: 380px;
border: 1px solid rgba(255,255,255,0.1);
}
.forestrush_chat_header {
background: var(--c-primary);
padding: 12px 16px;
font-weight: 700;
}
.forestrush_chat_body {
height: 250px;
overflow-y: auto;
padding: 16px;
display: flex;
flex-direction: column;
gap: 12px;
background: var(--c-bg);
}
.forestrush_chat_msg {
padding: 8px 12px;
border-radius: 8px;
max-width: 85%;
font-size: 0.9rem;
}
.forestrush_chat_msg.bot { background: var(--c-surface); align-self: flex-start; }
.forestrush_chat_msg.user { background: var(--c-primary); align-self: flex-end; }
.forestrush_chat_input_area {
display: flex;
padding: 8px;
border-top: 1px solid rgba(255,255,255,0.1);
}
.forestrush_chat_input {
flex: 1;
background: none;
border: none;
color: var(--c-text-primary);
padding: 8px;
font-size: 16px;
}
.forestrush_chat_input:focus { outline: none; }
.forestrush_chat_send {
background: none;
border: none;
color: var(--c-accent);
padding: 8px;
font-weight: 700;
}
.forestrush_chat_toggle {
width: 56px; height: 56px;
border-radius: 50%;
background: var(--c-primary);
color: #fff;
border: none;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.3);
transition: transform 0.2s;
}
.forestrush_chat_toggle.is-open svg {
transform: rotate(45deg);
transition: transform 0.2s;
}

/* Cookie Banner */
.forestrush_cookie_banner {
position: fixed;
bottom: 0; left: 0; width: 100%;
background: var(--c-surface);
padding: 16px var(--container-pad);
display: flex;
flex-direction: column;
gap: 16px;
align-items: center;
text-align: center;
z-index: 950;
transform: translateY(100%);
transition: transform 0.36s ease-out;
border-top: 1px solid rgba(255,255,255,0.1);
}
.forestrush_cookie_banner.is-visible {
transform: translateY(0);
}
@media(min-width: 768px) {
.forestrush_cookie_banner { flex-direction: row; justify-content: space-between; text-align: left; padding: 16px var(--container-pad); }
}

/* Home blocks */
.forestrush_founder_split { display: flex; flex-direction: column; gap: 32px; }
@media(min-width: 768px) { .forestrush_founder_split { flex-direction: row; align-items: center; } .forestrush_founder_img_wrapper, .forestrush_founder_text { flex: 1; } }
.forestrush_craftsmanship_grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media(min-width: 768px) { .forestrush_craftsmanship_grid { grid-template-columns: repeat(3, 1fr); } }
.forestrush_craft_card { background: var(--c-bg); padding: 24px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.forestrush_mechanics_layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media(min-width: 768px) { .forestrush_mechanics_layout { grid-template-columns: 1fr 1fr; } }
.forestrush_tips_rail { display: flex; flex-direction: column; gap: 16px; }
.forestrush_tip_card { background: var(--c-bg); padding: 16px; border-radius: 8px; border-left: 4px solid var(--c-primary); }
.forestrush_tip_label { font-weight: 700; display: block; margin-bottom: 8px; color: var(--c-accent); }
.forestrush_review_wall { column-count: 1; column-gap: 24px; }
@media(min-width: 768px) { .forestrush_review_wall { column-count: 2; } }
@media(min-width: 1024px) { .forestrush_review_wall { column-count: 3; } }
.forestrush_review_card { break-inside: avoid; background: var(--c-surface); padding: 24px; margin-bottom: 24px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.05); }
.forestrush_stars { color: var(--c-accent); margin-bottom: 12px; }
.forestrush_review_author { margin-top: 12px; font-size: 0.85rem; color: var(--c-text-secondary); }
.forestrush_faq_item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.forestrush_faq_trigger { width: 100%; text-align: left; padding: 16px 0; background: none; border: none; color: var(--c-text-primary); font-family: var(--f-heading); font-size: 1.1rem; font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.forestrush_faq_trigger::after { content: "+"; font-size: 1.5rem; color: var(--c-accent); }
.forestrush_faq_item.is-open .forestrush_faq_trigger::after { content: "-"; }
.forestrush_faq_content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.forestrush_faq_item.is-open .forestrush_faq_content { padding-bottom: 16px; }
.forestrush_newsletter_banner { background: var(--c-primary); padding: 48px 24px; border-radius: 8px; text-align: center; }
.forestrush_newsletter_form { display: flex; flex-direction: column; gap: 16px; max-width: 400px; margin: 24px auto 0; }
@media(min-width: 768px) { .forestrush_newsletter_form { flex-direction: row; } }

/* Shop Layout */
.forestrush_shop_layout { display: flex; flex-direction: column; gap: 32px; }
@media(min-width: 768px) { .forestrush_shop_layout { flex-direction: row; } .forestrush_shop_sidebar { width: 250px; flex-shrink: 0; } .forestrush_shop_main { flex: 1; } }
.forestrush_filter_options { display: flex; flex-direction: column; gap: 8px; }
.forestrush_filter_btn { text-align: left; background: none; border: none; color: var(--c-text-secondary); padding: 8px; border-radius: 4px; transition: background 0.2s; }
.forestrush_filter_btn:hover { background: rgba(255,255,255,0.05); }
.forestrush_filter_btn.is-active { color: var(--c-accent); font-weight: 700; background: rgba(255,255,255,0.05); }

/* Product Detail */
.forestrush_product_detail { display: flex; flex-direction: column; gap: 32px; }
@media(min-width: 768px) { .forestrush_product_detail { flex-direction: row; } .forestrush_product_gallery { width: 50%; } .forestrush_product_info { width: 50%; } }
.forestrush_main_img_wrapper { background: #000; border-radius: 8px; overflow: hidden; margin-bottom: 16px; padding-top: 100%; position: relative; }
.forestrush_main_img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; }
.forestrush_thumbnail_strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
@media(min-width: 481px) { .forestrush_thumbnail_strip { grid-template-columns: repeat(4, 1fr); } }
.forestrush_thumb { padding-top: 100%; position: relative; cursor: pointer; border-radius: 4px; overflow: hidden; opacity: 0.6; transition: opacity 0.2s; background: #000; }
.forestrush_thumb.is-active, .forestrush_thumb:hover { opacity: 1; outline: 2px solid var(--c-accent); }
.forestrush_thumb img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.forestrush_p_price { font-size: 2rem; color: var(--c-accent); font-weight: 700; margin: 16px 0; }
.forestrush_tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.forestrush_tag { background: rgba(255,255,255,0.1); padding: 4px 12px; border-radius: 16px; font-size: 0.8rem; }
.forestrush_stock { color: #a0f0a0; font-weight: 600; margin-bottom: 24px; }
.forestrush_stock.low { color: #ffb0b0; }

/* Cart Page */
.forestrush_cart_layout { display: flex; flex-direction: column; gap: 32px; margin-top: 24px; }
@media(min-width: 768px) { .forestrush_cart_layout { flex-direction: row; } .forestrush_cart_items { flex: 1; } .forestrush_cart_summary { width: 350px; flex-shrink: 0; background: var(--c-surface); padding: 24px; border-radius: 8px; height: fit-content; } }
.forestrush_cart_item { display: flex; flex-direction: column; gap: 16px; padding: 16px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; margin-bottom: 16px; }
@media(min-width: 481px) { .forestrush_cart_item { flex-direction: row; align-items: center; } }
.forestrush_cart_item_img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; }
.forestrush_cart_item_info { flex: 1; }
.forestrush_cart_item_controls { display: flex; align-items: center; gap: 12px; }
.forestrush_qty_btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--c-surface); border: 1px solid rgba(255,255,255,0.2); color: var(--c-text-primary); }
.forestrush_remove_btn { background: none; border: none; color: #ff6b6b; text-decoration: underline; font-size: 0.9rem; }
.forestrush_cart_row { display: flex; justify-content: space-between; margin-bottom: 16px; font-weight: 500; }
.forestrush_cart_total { font-size: 1.2rem; font-weight: 700; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; }
.forestrush_progress_bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; margin: 8px 0 24px; }
.forestrush_progress_fill { height: 100%; background: var(--c-accent); width: 0%; transition: width 0.3s; }

/* Account Page */
.forestrush_auth_container { max-width: 400px; margin: 0 auto; background: var(--c-surface); padding: 24px; border-radius: 8px; }
.forestrush_tabs { display: flex; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.forestrush_tab_btn { flex: 1; padding: 12px; background: none; border: none; color: var(--c-text-secondary); font-weight: 600; border-bottom: 2px solid transparent; }
.forestrush_tab_btn.is-active { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.forestrush_tab_content { display: none; }
.forestrush_tab_content.is-active { display: block; }
.forestrush_dashboard_header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.forestrush_dashboard_grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media(min-width: 768px) { .forestrush_dashboard_grid { grid-template-columns: 1fr 1fr; } }
.forestrush_wishlist_grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* Utility */
.forestrush_empty_msg { color: var(--c-text-secondary); padding: 32px 0; }
.forestrush_success_msg { color: #a0f0a0; padding: 16px; background: rgba(160,240,160,0.1); border-radius: 4px; }
.forestrush_text_block { margin-bottom: 32px; }
.forestrush_policy_layout { max-width: 800px; margin: 0 auto; width: 100%; }
.forestrush_about_layout,
.forestrush_faq_page_layout,
.forestrush_contact_layout,
.forestrush_policy_layout {
width: 100%;
overflow-wrap: break-word;
word-wrap: break-word;
}
main.forestrush_container {
box-sizing: border-box;
max-width: 100%;
}
.forestrush_contact_layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width: 768px) { .forestrush_contact_layout { grid-template-columns: 1fr 1fr; } }

/* Try Your Luck Page */
.forestrush_luck_layout {
display: grid;
grid-template-columns: 1fr;
gap: 32px;
align-items: start;
}
@media(min-width: 1024px) {
.forestrush_luck_layout { grid-template-columns: 1fr 300px; gap: 40px; }
}
.forestrush_luck_block {
background: var(--c-surface);
border: 1px solid rgba(244, 185, 66, 0.25);
border-radius: 8px;
padding: 24px;
margin-bottom: 24px;
}
.forestrush_luck_block:last-child { margin-bottom: 0; }
.forestrush_luck_block_desc {
color: var(--c-text-secondary);
margin-bottom: 20px;
font-size: 0.95rem;
}
.forestrush_luck_prize_wrap {
max-width: 360px;
}
.forestrush_luck_slot_frame {
position: relative;
width: 100%;
overflow: hidden;
border-radius: 8px;
border: 1px solid rgba(255,255,255,0.1);
background: var(--c-bg);
}
.forestrush_luck_iframe {
display: block;
position: absolute;
top: 0;
left: 0;
width: 1024px;
height: 768px;
border: none;
transform-origin: top left;
}
.forestrush_luck_sidebar_block {
background: var(--c-surface);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
}
.forestrush_luck_sidebar_block:last-child { margin-bottom: 0; }
.forestrush_luck_sidebar_note {
font-size: 0.85rem;
color: var(--c-text-secondary);
margin-top: 12px;
}
.forestrush_age_badge {
display: inline-flex;
align-items: center;
justify-content: center;
width: 72px;
height: 72px;
border-radius: 50%;
border: 3px solid #ff6b6b;
color: #ff6b6b;
font-family: var(--f-heading);
font-size: 1.5rem;
font-weight: 700;
}
.forestrush_geo_plates {
display: flex;
flex-direction: column;
gap: 8px;
}
.forestrush_geo_plate {
display: block;
padding: 10px 14px;
background: var(--c-bg);
border: 1px solid rgba(244, 185, 66, 0.3);
border-radius: 4px;
font-size: 0.9rem;
font-weight: 600;
color: var(--c-accent);
text-align: center;
}
.forestrush_luck_disclaimer p {
font-size: 0.85rem;
color: var(--c-text-secondary);
margin-bottom: 12px;
}
.forestrush_luck_disclaimer p:last-child { margin-bottom: 0; }
.forestrush_luck_discount_badge {
display: inline-block;
background: var(--c-accent);
color: var(--c-bg);
font-size: 0.8rem;
font-weight: 700;
padding: 4px 10px;
border-radius: 4px;
margin-bottom: 12px;
}
