/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --red: #D52B1E; --red-dark: #a82116; --red-light: #f5e6e5;
  --white: #ffffff; --gray-50: #f9f9f9; --gray-100: #f0f0f0;
  --gray-300: #cccccc; --gray-600: #666666; --gray-800: #222222;
  --green: #2e7d32; --green-dark: #1b5e20;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-h: 0 8px 36px rgba(213,43,30,0.18);
  --radius: 14px; --tr: 0.25s ease;
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--gray-800); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== HEADER / NAV ===== */
header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
nav { max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 68px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; font-weight: 800; }
.logo-cross { width: 36px; height: 36px; background: var(--red); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-cross svg { width: 20px; height: 20px; fill: white; }
.logo em { font-style: normal; color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 3px; list-style: none; flex-wrap: wrap; }
.nav-links a { padding: 7px 11px; border-radius: 8px; font-size: 0.84rem; font-weight: 500; color: var(--gray-600); transition: background var(--tr), color var(--tr); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { background: var(--red-light); color: var(--red); }
.nav-links a.active { font-weight: 700; }
.nav-cta { background: var(--red) !important; color: var(--white) !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--red-dark) !important; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; }

/* ===== MOBILE MENU ===== */
.mmenu { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 99; flex-direction: column; padding: 20px; gap: 6px; overflow-y: auto; }
.mmenu.open { display: flex; }
.mmenu a { padding: 13px 16px; border-radius: 10px; font-size: 0.95rem; font-weight: 600; color: var(--gray-800); transition: background var(--tr); }
.mmenu a:hover { background: var(--red-light); color: var(--red); }
.mcta { background: var(--red) !important; color: var(--white) !important; text-align: center; margin-top: 8px; font-weight: 800 !important; border-radius: 10px; }

/* ===== HERO ===== */
.hero { min-height: 88vh; display: flex; align-items: center; padding: 80px 24px; }
.page-hero { min-height: 50vh; display: flex; align-items: center; padding: 80px 24px; }
.hero-inner { max-width: 720px; margin: 0 auto; text-align: center; color: var(--white); }
.hero-badge { display: inline-block; background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; padding: 6px 18px; border-radius: 20px; margin-bottom: 22px; text-transform: uppercase; }
.hero-inner h1 { font-size: clamp(2rem,5vw,3.4rem); font-weight: 900; line-height: 1.15; margin-bottom: 18px; text-shadow: 0 2px 16px rgba(0,0,0,0.3); }
.hero-inner h1 em { font-style: normal; color: #ffd700; }
.hero-inner p { font-size: 1.05rem; opacity: 0.92; margin-bottom: 36px; max-width: 580px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; justify-content: center; margin-top: 52px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; }
.stat-label { font-size: 0.8rem; opacity: 0.8; margin-top: 2px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 10px; font-size: 0.98rem; font-weight: 700; cursor: pointer; border: none; transition: transform var(--tr), box-shadow var(--tr); text-decoration: none; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-h); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: #f5f5f5; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.65); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }

/* ===== SHARED SECTION ===== */
section { padding: 80px 24px; }
.si { max-width: 1200px; margin: 0 auto; }
.stag { display: inline-block; background: var(--red-light); color: var(--red); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 12px; }
.green-tag { display: inline-block; background: #e8f5e9; color: var(--green); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 12px; }
.stitle { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 900; line-height: 1.2; margin-bottom: 10px; }
.ssub { color: var(--gray-600); font-size: 1rem; max-width: 600px; margin-bottom: 40px; }

/* ===== SEARCH BOX ===== */
.sbox { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.sgrid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.sf { display: flex; flex-direction: column; gap: 6px; }
.sf label { font-size: 0.74rem; font-weight: 700; color: var(--gray-600); text-transform: uppercase; letter-spacing: 0.05em; }
.sf input, .sf select { padding: 12px 14px; border-radius: 8px; border: 1.5px solid var(--gray-300); font-size: 0.95rem; color: var(--gray-800); background: var(--white); transition: border-color var(--tr); outline: none; }
.sf input:focus, .sf select:focus { border-color: var(--red); }
.sbtn-wrap { display: flex; align-items: flex-end; }
.sbtn-wrap button { width: 100%; padding: 13px; background: var(--red); color: var(--white); border: none; border-radius: 8px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background var(--tr); }
.sbtn-wrap button:hover { background: var(--red-dark); }
.anote { font-size: 0.75rem; color: var(--gray-600); margin-top: 12px; text-align: center; }
.anote a { color: var(--red); }

/* ===== DEALS GRID ===== */
.dgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }
.dc { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: transform var(--tr), box-shadow var(--tr); }
.dc:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); }
.dimg { height: 200px; position: relative; overflow: hidden; }
.dimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dc:hover .dimg img { transform: scale(1.05); }
.dbadge { position: absolute; top: 14px; left: 14px; background: var(--red); color: var(--white); font-size: 0.74rem; font-weight: 800; padding: 4px 12px; border-radius: 20px; }
.dbody { padding: 20px; }
.dcat { font-size: 0.72rem; font-weight: 800; color: var(--red); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.dtitle { font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; }
.ddesc { font-size: 0.86rem; color: var(--gray-600); margin-bottom: 16px; line-height: 1.55; }
.dfoot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.dprice { display: flex; flex-direction: column; }
.pfrom { font-size: 0.72rem; color: var(--gray-600); }
.pval { font-size: 1.2rem; font-weight: 900; color: var(--red); }
.pold { font-size: 0.76rem; color: var(--gray-300); text-decoration: line-through; }
.dbtn { padding: 10px 16px; background: var(--red); color: var(--white); border-radius: 8px; font-size: 0.85rem; font-weight: 700; transition: background var(--tr); cursor: pointer; border: none; white-space: nowrap; display: inline-block; }
.dbtn:hover { background: var(--red-dark); }

/* ===== SKI ===== */
.skigrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.skicard { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: transform var(--tr), box-shadow var(--tr); }
.skicard:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.skiimg { height: 180px; overflow: hidden; }
.skiimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.skicard:hover .skiimg img { transform: scale(1.06); }
.skibody { padding: 18px; }
.skiname { font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.skimeta { font-size: 0.81rem; color: var(--gray-600); margin-bottom: 12px; }
.skitags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.skitag { background: var(--red-light); color: var(--red); font-size: 0.71rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.skirow { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.skiprice { font-size: 1.05rem; font-weight: 900; color: var(--red); }

/* ===== SWISS PASS ===== */
.pass-section { background: var(--red); color: var(--white); padding: 0; }
.pass-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 24px; }
.pass-content .stag { background: rgba(255,255,255,0.2); color: var(--white); }
.pass-content .stitle { color: var(--white); }
.pass-content .ssub { color: rgba(255,255,255,0.85); }
.pass-feats { list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
.pass-feats li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; }
.pass-feats li::before { content: '✓'; background: rgba(255,255,255,0.25); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 900; flex-shrink: 0; margin-top: 2px; }
.pass-visual { background: rgba(255,255,255,0.12); border-radius: 20px; padding: 32px; border: 1px solid rgba(255,255,255,0.25); }
.pv-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.pv-title { font-size: 1.1rem; font-weight: 900; }
.pv-info { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 26px; }
.pvi label { font-size: 0.7rem; opacity: 0.75; display: block; margin-bottom: 4px; text-transform: uppercase; }
.pvi span { font-size: 0.96rem; font-weight: 700; }
.pass-opts { display: flex; gap: 8px; flex-wrap: wrap; }
.popt { background: rgba(255,255,255,0.15); padding: 8px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 700; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; transition: background var(--tr); }
.popt.active, .popt:hover { background: rgba(255,255,255,0.3); }

/* ===== CATEGORIES ===== */
.catgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; }
.catcard { background: var(--white); border-radius: var(--radius); padding: 26px 18px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr); border: 2px solid transparent; display: block; color: var(--gray-800); }
.catcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); border-color: var(--red); }
.caticon { font-size: 2.2rem; margin-bottom: 10px; }
.catname { font-size: 0.92rem; font-weight: 800; margin-bottom: 4px; }
.catsub { font-size: 0.74rem; color: var(--gray-600); }

/* ===== PARTNERS ===== */
.partners-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; margin-top: 28px; }
.pchip { background: var(--gray-50); border: 1.5px solid var(--gray-100); border-radius: 10px; padding: 12px 22px; font-size: 0.88rem; font-weight: 700; color: var(--gray-600); transition: border-color var(--tr), color var(--tr); }
.pchip:hover { border-color: var(--red); color: var(--red); }

/* ===== TIPS ===== */
.tipgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.tipcard { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-left: 4px solid var(--red); }
.tipicon { font-size: 1.7rem; margin-bottom: 10px; }
.tiptitle { font-size: 0.95rem; font-weight: 800; margin-bottom: 7px; }
.tiptext { font-size: 0.86rem; color: var(--gray-600); line-height: 1.6; }
.tiptext a { color: var(--red); }

/* ===== HOSTELS ===== */
.hostelgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.hostelcard { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--tr), box-shadow var(--tr); }
.hostelcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.hostelimg { height: 190px; overflow: hidden; }
.hostelimg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.hostelcard:hover .hostelimg img { transform: scale(1.05); }
.hostelbody { padding: 18px; }
.hostel-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.hostelname { font-size: 0.98rem; font-weight: 800; }
.hostelrating span { background: #2e7d32; color: white; padding: 2px 8px; border-radius: 6px; font-size: 0.84rem; font-weight: 700; }
.hostelmeta { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 10px; }
.hostelfeats { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.hostelfeat { background: var(--gray-50); border: 1px solid var(--gray-100); font-size: 0.7rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; color: var(--gray-600); }
.hostelrow { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.hostelprice { font-size: 1.05rem; font-weight: 900; color: var(--red); }

/* ===== BIKES ===== */
.bikes-hero { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); color: var(--white); border-radius: var(--radius); padding: 36px; margin-bottom: 36px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; }
.bikes-hero h3 { font-size: 1.4rem; font-weight: 900; margin-bottom: 10px; }
.bikes-hero p { opacity: 0.9; font-size: 0.93rem; line-height: 1.6; }
.bikes-hero-icon { font-size: 5rem; }
.citygrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 14px; }
.citycard { background: var(--white); border-radius: 12px; padding: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); border: 2px solid transparent; transition: border-color var(--tr), transform var(--tr); text-align: center; }
.citycard:hover { border-color: var(--green); transform: translateY(-3px); }
.citycard-icon { font-size: 1.9rem; margin-bottom: 8px; }
.citycard-name { font-size: 0.92rem; font-weight: 800; margin-bottom: 4px; }
.citycard-info { font-size: 0.76rem; color: var(--gray-600); }
.bikes-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.step { background: var(--white); border-radius: 12px; padding: 22px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); display: flex; gap: 14px; align-items: flex-start; }
.step-num { width: 34px; height: 34px; background: var(--green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 900; flex-shrink: 0; }
.step-text h4 { font-size: 0.93rem; font-weight: 800; margin-bottom: 4px; }
.step-text p { font-size: 0.83rem; color: var(--gray-600); line-height: 1.55; }
.city-emoji { font-size: 1.9rem; margin-bottom: 8px; }
.city-name { font-size: 0.92rem; font-weight: 800; margin-bottom: 4px; }
.city-info { font-size: 0.76rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 10px; }
.city-link { display: inline-block; margin-top: 8px; font-size: 0.8rem; font-weight: 700; color: #1e7840; }

/* ===== EUROPE FLIGHTS ===== */
.dest-tabs { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.dest-tab { padding: 11px 26px; border-radius: 10px; border: 2px solid var(--gray-300); background: var(--white); font-size: 0.93rem; font-weight: 700; cursor: pointer; transition: all var(--tr); color: var(--gray-600); }
.dest-tab.active { background: var(--red); color: var(--white); border-color: var(--red); }
.dest-tab:hover:not(.active) { border-color: var(--red); color: var(--red); }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(195px, 1fr)); gap: 14px; }
.dest-card { background: var(--white); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr); border: 2px solid transparent; display: flex; flex-direction: column; gap: 6px; }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); border-color: var(--red); }
.dest-flag { font-size: 2rem; }
.dest-city { font-size: 0.98rem; font-weight: 800; }
.dest-country { font-size: 0.76rem; color: var(--gray-600); }
.dest-time { font-size: 0.76rem; color: var(--gray-600); }
.dest-price { font-size: 1.05rem; font-weight: 900; color: var(--red); margin-top: 4px; }
.dest-price small { font-size: 0.7rem; font-weight: 400; color: var(--gray-600); }
.dest-btn { margin-top: auto; padding: 9px; background: var(--red); color: var(--white); border: none; border-radius: 8px; font-size: 0.83rem; font-weight: 700; cursor: pointer; text-align: center; transition: background var(--tr); display: block; }
.dest-btn:hover { background: var(--red-dark); }

/* ===== ROUTE CHIPS ===== */
.rchips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.rchip { background: var(--gray-50); border: 1.5px solid var(--gray-100); border-radius: 8px; padding: 9px 16px; font-size: 0.86rem; font-weight: 600; color: var(--gray-800); transition: border-color var(--tr), color var(--tr); }
.rchip:hover { border-color: var(--red); color: var(--red); }

/* ===== CTA ===== */
.cta-section { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: var(--white); text-align: center; padding: 80px 24px; }
.cta-section .stitle { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.82); font-size: 1.02rem; margin: 12px auto 34px; max-width: 520px; }
.cta-section .stag { background: rgba(213,43,30,0.3); color: #ff8a80; }
.cta-green { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.cta-green .stag { background: rgba(255,255,255,0.2); color: var(--white); }

/* ===== FOOTER ===== */
footer { background: #1a1a1a; color: rgba(255,255,255,0.65); padding: 56px 24px 28px; }
.fi { max-width: 1200px; margin: 0 auto; }
.fgrid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.flogo { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.1rem; font-weight: 800; margin-bottom: 14px; }
.fbrand p { font-size: 0.86rem; line-height: 1.75; max-width: 260px; }
.fcol h4 { color: var(--white); font-size: 0.84rem; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.fcol ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.fcol ul a { font-size: 0.86rem; transition: color var(--tr); }
.fcol ul a:hover { color: var(--white); }
.fbot { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.79rem; }
.fbot a { color: var(--red); }
.fcontact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 40px; }
.fcontact h4 { color: var(--white); font-size: 0.84rem; font-weight: 800; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.fcontact-form form { display: flex; flex-direction: column; gap: 8px; }
.fcontact-form input, .fcontact-form textarea { padding: 9px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.9); font-size: 0.84rem; font-family: inherit; outline: none; transition: border-color 0.2s; width: 100%; }
.fcontact-form input:focus, .fcontact-form textarea:focus { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); }
.fcontact-form input::placeholder, .fcontact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.fcontact-form textarea { min-height: 80px; resize: vertical; }
.fcontact-form button { padding: 10px 20px; background: var(--red); color: #fff; border: none; border-radius: 8px; font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.fcontact-form button:hover { background: var(--red-dark); }
.fcontact-social { display: flex; flex-direction: column; gap: 10px; }
.fcontact-social a { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 600; padding: 10px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12); transition: color 0.2s, border-color 0.2s; }
.fcontact-social a:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
@media (max-width: 700px) { .fcontact { grid-template-columns: 1fr; gap: 28px; } }

/* ===== SCROLL TOP ===== */
#st { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; background: var(--red); color: var(--white); border-radius: 50%; border: none; font-size: 1.3rem; font-weight: 900; cursor: pointer; box-shadow: 0 4px 16px rgba(213,43,30,0.45); opacity: 0; pointer-events: none; transition: opacity var(--tr), transform var(--tr); z-index: 200; }
#st.v { opacity: 1; pointer-events: auto; }
#st:hover { transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
.fi2 { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fi2.vis { opacity: 1; transform: none; }

/* ===== FEATURE CARDS ===== */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.feat-card { background: var(--white); border-radius: 12px; padding: 20px 22px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); display: flex; gap: 14px; align-items: center; }
.feat-icon { font-size: 2rem; flex-shrink: 0; }
.feat-title { font-weight: 800; margin-bottom: 3px; font-size: 0.95rem; }
.feat-sub { font-size: 0.82rem; color: var(--gray-600); }

/* ===== PRICE CARDS ===== */
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.price-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border: 2px solid transparent; transition: border-color var(--tr), transform var(--tr); text-align: center; }
.price-card:hover { border-color: var(--red); transform: translateY(-3px); }
.price-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.price-card .price { font-size: 1.6rem; font-weight: 900; color: var(--red); margin-bottom: 6px; }
.price-card .price-sub { font-size: 0.78rem; color: var(--gray-600); margin-bottom: 16px; }
.price-card .note { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 16px; font-style: italic; }

/* ===== INFO BOX ===== */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.info-box { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.info-box h3 { font-size: 1rem; font-weight: 800; margin-bottom: 10px; }
.info-box p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.65; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) { .nav-links a { padding: 6px 8px; font-size: 0.8rem; } }
@media (max-width: 900px) {
  .pass-inner { grid-template-columns: 1fr; gap: 32px; }
  .fgrid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .bikes-hero { grid-template-columns: 1fr; }
  .bikes-hero-icon { display: none; }
}
@media (max-width: 600px) {
  section { padding: 56px 20px; }
  .hero { padding: 60px 20px; }
  .page-hero { padding: 60px 20px; }
  .stitle { text-align: center; }
  .fgrid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 20px; }
  .pv-info { grid-template-columns: 1fr; }
  .pass-inner { padding: 56px 20px; }
}

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: #1a1a2e; color: #fff;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { margin: 0; font-size: 0.88rem; line-height: 1.6; opacity: 0.92; max-width: 700px; }
#cookie-banner a { color: #f87171; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--red); color: #fff; border: none; border-radius: 8px;
  padding: 10px 22px; font-size: 0.88rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--red-dark); }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px; padding: 10px 16px; font-size: 0.88rem; cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cookie-accept { flex: 1; text-align: center; }
}
