/* ==========================================
   RESET & BASE
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Inter', Arial, sans-serif;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
video { width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ==========================================
   BUTTONS
========================================== */
.btn-yellow {
  display: block;
  background-color: #D4A017;
  color: #000000;
  font-weight: bold;
  font-size: 16px;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 80%;
  text-align: center;
  margin: 10px auto;
}

.btn-yellow:hover { background-color: #e6b020; }

.btn-small {
  font-size: 13px;
  padding: 10px 20px;
  width: auto;
  display: inline-block;
  margin: 10px 0;
}

.btn-inquire {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-inquire:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* ==========================================
   BASKET ICON
========================================== */
.basket-btn {
  position: relative;
  color: #ffffff;
  font-size: 22px;
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.basket-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #D4A017;
  color: #000;
  font-size: 10px;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   HEADER
========================================== */
.site-header {
  background-color: #000000;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.hamburger-btn span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

.header-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  padding-bottom: 10px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  transition: background 0.3s;
}

.social-btn:hover {
  background-color: #D4A017;
  color: #000;
}

.header-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255,255,255,0.3);
  margin-top: 10px;
}

/* ==========================================
   LOGO GLOW ANIMATION
========================================== */
.header-logo img {
  height: 90px;
  width: auto;
  animation: logoBlink 3s ease-in-out infinite;
}

@keyframes logoBlink {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(212,160,23,0.6));
    opacity: 1;
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(212,160,23,1))
            drop-shadow(0 0 50px rgba(212,160,23,0.5));
    opacity: 0.85;
  }
}

/* ==========================================
   HAMBURGER MENU OVERLAY
========================================== */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 9999;
  display: none;
}

.menu-overlay.active { display: flex; }

.menu-sidebar {
  width: 70%;
  max-width: 320px;
  height: 100%;
  background-color: #1a1a1a;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

.menu-close-area {
  flex: 1;
  background: rgba(0,0,0,0.6);
}

.menu-logo { margin-bottom: 20px; }
.menu-logo img { height: 70px; width: auto; }

.menu-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

.menu-nav { display: flex; flex-direction: column; }

.menu-link {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  padding: 18px 0;
  border-bottom: 1px solid #2a2a2a;
  transition: color 0.2s;
}

.menu-link.active { color: #D4A017; }
.menu-link:not(.active):hover { color: #D4A017; }

/* ==========================================
   HERO SECTION
========================================== */

.hero-section{
  background:#000;
  min-height:90vh;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px 20px;
}

.hero-content{
  width:100%;
  max-width:700px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero-title{
  font-family:'Oswald',sans-serif;
  font-size:56px;
  font-weight:700;
  letter-spacing:4px;
  color:#fff;
  margin-bottom:18px;
  text-transform:uppercase;
}

.hero-subtitle{
  font-size:30px;
  color:#D4A017;
  font-family:'Oswald',sans-serif;
  margin-bottom:18px;
}

.hero-text{
  font-size:20px;
  color:#cfcfcf;
  margin-bottom:45px;
  max-width:420px;
  line-height:1.7;
}

.hero-btn{
  background:#D4A017;
  padding:18px 45px;
  color:#000;
  font-weight:bold;
  letter-spacing:2px;
  margin-top:35px;
  transition:.35s;
  border-radius:4px;
}

.hero-btn:hover{
  background:#fff;
}

.scroll-indicator{
  margin-top:45px;
  display:flex;
  flex-direction:column;
  align-items:center;
  color:#888;
  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;
  animation:bounce 2s infinite;
}

.scroll-indicator i{
  font-size:24px;
  margin-top:8px;
  color:#D4A017;
}

@keyframes bounce{
  0%,20%,50%,80%,100%{ transform:translateY(0); }
  40%{ transform:translateY(10px); }
  60%{ transform:translateY(5px); }
}

@media(max-width:600px){
  .hero-title{ font-size:42px; }
  .hero-subtitle{ font-size:24px; }
  .hero-text{ font-size:17px; }
}

.spark {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.spark::before,
.spark::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}

.spark::before {
  width: 60px; height: 3px;
  box-shadow: 0 0 20px 4px rgba(255,255,255,0.9);
}

.spark::after {
  width: 3px; height: 60px;
  box-shadow: 0 0 20px 4px rgba(255,255,255,0.9);
}

.virtual-bike-wrap {
  position: relative;
  width: 320px;
  height: 220px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bike-aura {
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(58,214,214,0.35) 0%,
    rgba(58,214,214,0.1) 40%,
    rgba(0,0,0,0) 70%);
  animation: auraPulse 3s ease-in-out infinite;
}

@keyframes auraPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.15); opacity: 1; }
}

.virtual-bike-svg {
  position: relative;
  width: 100%; height: 100%;
  z-index: 2;
  animation: bikeSpin 6s linear infinite;
  filter: drop-shadow(0 0 8px rgba(58,214,214,0.8));
}

@keyframes bikeSpin {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

/* ==========================================
   FEATURES SECTION
========================================== */

.featured-section{
  padding:90px 25px;
  background:#050505;
}

.section-heading{
  text-align:center;
  max-width:700px;
  margin:auto auto 60px;
}

.section-heading span{
  color:#D4A017;
  letter-spacing:4px;
  font-size:13px;
  font-weight:bold;
}

.section-heading h2{
  font-family:'Oswald',sans-serif;
  font-size:48px;
  margin:18px 0;
}

.section-heading p{
  color:#aaa;
  font-size:18px;
  line-height:1.8;
}

.featured-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  max-width:1200px;
  margin:auto;
}

.feature-card{
  background:#111;
  padding:40px 30px;
  border:1px solid #222;
  border-radius:16px;
  transition:.35s;
  text-align:center;
}

.feature-card:hover{
  transform:translateY(-10px);
  border-color:#D4A017;
  box-shadow:0 0 25px rgba(212,160,23,.25);
}

.feature-card i{
  font-size:42px;
  color:#D4A017;
  margin-bottom:25px;
}

.feature-card h3{
  font-family:'Oswald',sans-serif;
  font-size:26px;
  margin-bottom:18px;
}

.feature-card p{
  color:#999;
  line-height:1.7;
  font-size:15px;
}

/* ==========================================
   CATALOG SECTION
========================================== */
.catalog-section {
  background-color: #000000;
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
}

.empty-catalog {
  text-align: center;
  padding: 80px 20px;
  color: #444;
}

.empty-catalog p { font-size: 20px; margin-bottom: 15px; }
.empty-catalog a { color: #D4A017; font-size: 16px; }

/*=================================
CATALOG HEADER
=================================*/

.catalog-header{
  text-align:center;
  max-width:700px;
  margin:0 auto 70px;
}

.catalog-header span{
  display:inline-block;
  color:#D4A017;
  font-size:13px;
  font-weight:bold;
  letter-spacing:4px;
  margin-bottom:18px;
}

.catalog-header h2{
  font-family:'Oswald',sans-serif;
  font-size:52px;
  margin-bottom:20px;
  color:#fff;
}

.catalog-header p{
  font-size:18px;
  color:#999;
  line-height:1.8;
  max-width:600px;
  margin:auto;
}

/* ==========================================
   BIKE CARD (name bar + hero image + video + slider,
   all stacked together as ONE unit, flush, no gaps)
========================================== */
.bike-card{
  background:linear-gradient(180deg, #111, #080808);
  border:1px solid #1d1d1d;
  border-radius:20px;
  overflow:hidden;
  margin:70px auto;
  max-width:950px;
  transition:.35s;
  box-shadow:0 15px 35px rgba(0,0,0,.45);
}

.bike-card:hover{
  transform:translateY(-8px);
  border-color:#D4A017;
  box-shadow:0 20px 45px rgba(212,160,23,.18);
}

/* Name bar sits directly on top of the card, flush against hero image below */
.bike-name-bar{
  padding:25px 20px 20px;
  text-align:center;
  background:#111;
  border-bottom:1px solid #222;
}

.bike-name{
  font-family:'Oswald',sans-serif;
  font-size:42px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#fff;
  margin-bottom:8px;
}

.bike-subtitle{
  font-size:18px;
  color:#999;
  max-width:600px;
  margin:0 auto 20px;
  line-height:1.7;
}

.bike-status{
  display:inline-block;
  padding:10px 28px;
  border-radius:40px;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

.bike-status.available{
  background:#13361d;
  color:#55ff84;
}

.bike-status.sold{
  background:#4d1717;
  color:#ff8d8d;
}

.bike-status.out{
  background:#3d3212;
  color:#ffd54d;
}

.bike-price {
  display: block;
  color: #D4A017;
  font-size: 24px;
  font-weight: 700;
  margin-top: 5px;
}

/* HERO IMAGE — shows the full image at its own natural shape, no cropping, no forced height */
.bike-hero-img{
  width:100%;
  padding:0;
  margin:0;
  background:#000;
  display:flex;
  justify-content:center;
  align-items:center;
}

.bike-hero-img img{
  width:100%;
  max-width:800px;
  height:auto;
  object-fit:contain;
  display:block;
  transition:.3s;
}

.bike-hero-img img:hover{
  transform:scale(1.03);
}

/* VIDEO / DETAIL IMAGE — same box width as hero image, each shows at its own natural shape */
.bike-top-media{
  width:100%;
  padding:0;
  margin:0;
  background:#000;
  display:flex;
  justify-content:center;
  align-items:center;
}

.bike-top-media video{
  width:100%;
  max-width:800px;
  height:auto;
  object-fit:contain;
  display:block;
}

.bike-top-media img{
  width:100%;
  max-width:800px;
  height:auto;
  object-fit:contain;
  display:block;
}

/* ==========================================
   IMAGE SLIDER
========================================== */
.bike-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 40px;
}

.slider-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
  background: #000;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: 2px solid #555;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: #D4A017;
  color: #000;
  border-color: #D4A017;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
}

.dot.active { background: #D4A017; }

/* ==========================================
   CONTACT SECTION
========================================== */
.contact-section {
  background-color: #000000;
  padding: 60px 20px;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  color: #D4A017;
  margin-bottom: 30px;
  text-align: center;
}

.order-form .form-group { margin-bottom: 20px; }

.order-form label {
  display: block;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 8px;
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 14px;
  background-color: #f5f0e8;
  border: none;
  color: #000000;
  font-size: 15px;
  outline: none;
  border-radius: 2px;
}

.order-form input::placeholder,
.order-form textarea::placeholder { color: #5ba8a0; }

.order-form textarea {
  resize: vertical;
  min-height: 120px;
}

.order-form .btn-yellow {
  width: 100%;
  padding: 18px;
  font-size: 18px;
  margin: 0;
}

.success-msg {
  background: #1a4a1a;
  color: #88ff88;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
}

/* ==========================================
   CHAT BUBBLE
========================================== */
.chat-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 58px;
  height: 58px;
  background-color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  z-index: 8888;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.chat-bubble:hover {
  background: #D4A017;
  color: #000;
}

/* ==========================================
   CHAT MODAL
========================================== */
.chat-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: #a8d5d8;
  z-index: 99999;
  display: none;
  flex-direction: column;
}

.chat-modal.active { display: flex; }

.chat-modal-header {
  background: #ffffff;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-business-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-logo-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #D4A017;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: bold;
  font-size: 11px;
}

.chat-business-name {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.chat-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

.chat-modal-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chat-timestamp {
  text-align: center;
  background: rgba(0,0,0,0.2);
  color: #fff;
  font-size: 13px;
  padding: 5px 15px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto;
}

.chat-message-bubble {
  background: #ffffff;
  color: #000000;
  padding: 18px 20px;
  border-radius: 18px 18px 18px 4px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 90%;
}

.chat-form-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 25px 20px;
}

.chat-field { margin-bottom: 20px; }

.chat-field label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

.chat-field input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px 0;
  font-size: 15px;
  outline: none;
  background: transparent;
  color: #000;
}

.chat-submit {
  width: 100%;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 10px;
}

.chat-submit:hover {
  background: #D4A017;
  color: #000;
}

/* ==========================================
   CHATBOT QUICK BUTTONS
========================================== */
.chatbot-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 15px;
}

.chatbot-qbtn {
  background: #f0f0f0;
  color: #000;
  border: 1px solid #ddd;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.chatbot-qbtn:hover {
  background: #D4A017;
  color: #000;
  border-color: #D4A017;
}

.chatbot-input-wrap {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.chatbot-input-wrap input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  background: #f9f9f9;
  color: #000;
}

.bot-send-btn {
  background: #D4A017;
  color: #000;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bot-send-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ==========================================
   PORTFOLIO PAGE
========================================== */
.portfolio-section {
  background: #000;
  padding: 20px 0 60px;
}

.portfolio-title-wrap {
  text-align: center;
  padding: 40px 20px 30px;
}

.portfolio-title {
  font-family: 'Oswald', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #D4A017;
  font-style: italic;
}

.portfolio-category {
  margin-bottom: 40px;
  padding: 0 15px;
}

.category-name {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.portfolio-slider-wrap {
  position: relative;
  width: 100%;
}

.portfolio-slider-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 45px;
}

.portfolio-slider-track::-webkit-scrollbar { display: none; }

.portfolio-slide {
  flex-shrink: 0;
  width: 60vw;
  max-width: 280px;
}

.portfolio-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.p-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.75);
  color: #ffffff;
  border: none;
  width: 38px;
  height: 38px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.p-arrow:hover { background: #D4A017; color: #000; }
.p-arrow-left { left: 0px; }
.p-arrow-right { right: 0px; }

/* ==========================================
   PREMIUM SHOP PAGE
========================================== */

.shop-section{
  background:#000;
  padding:50px 25px 80px;
}

.shop-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:35px;
  max-width:1300px;
  margin:40px auto 0;
}

.shop-item{
  background:#111;
  border-radius:15px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid #222;
  transition:.35s ease;
  box-shadow:0 8px 25px rgba(0,0,0,.35);
}

.shop-item:hover{
  transform:translateY(-8px);
  border-color:#D4A017;
  box-shadow:0 0 25px rgba(212,160,23,.35);
}

.shop-item-slider{
  position:relative;
  width:100%;
  height:380px;
  overflow:hidden;
  background:#222;
}

.shop-item-track{
  display:flex;
  height:100%;
  transition:transform .4s ease;
}

.shop-item-slide{
  min-width:100%;
  height:100%;
}

.shop-item-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:.5s;
}

.shop-item:hover img{
  transform:scale(1.05);
}

.shop-no-img{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
  background:#222;
}

.shop-item-info{
  padding:22px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.shop-item-name{
  font-family:'Oswald',sans-serif;
  font-size:24px;
  line-height:1.3;
  margin-bottom:12px;
}

.shop-item-price{
  color:#D4A017;
  font-size:22px;
  font-weight:bold;
  margin-bottom:12px;
}

.shop-item-status{
  font-size:15px;
  font-weight:bold;
  margin-bottom:20px;
}

.shop-item-status.available{
  color:#39d353;
}

.shop-item-status.out{
  color:#ff5d5d;
}

/* View Button */

.shop-btn{
  display:block;
  width:100%;
  padding:14px;
  text-align:center;
  background:#D4A017;
  color:#000;
  font-weight:bold;
  border-radius:8px;
  transition:.3s;
}

.shop-btn:hover{
  background:#fff;
}

.shop-slide-prev,
.shop-slide-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:rgba(0,0,0,.6);
  color:#fff;
  cursor:pointer;
  font-size:18px;
  transition:.3s;
}

.shop-item-status.sold-out {
  color: #ff4444;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-top: 4px;
}

.shop-slide-prev{left:12px;}
.shop-slide-next{right:12px;}

.shop-slide-prev:hover,
.shop-slide-next:hover{
  background:#D4A017;
  color:#000;
}

/* ==========================================
   BIKE DETAIL PAGE
========================================== */
.detail-page {
  background: #000;
  min-height: 100vh;
  padding-bottom: 80px;
  max-width: 600px;
  margin: 0 auto;
}

.back-to-shop {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  padding: 15px 20px;
  text-decoration: none;
}

.back-to-shop:hover { color: #D4A017; }

.detail-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #000;
}

.detail-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.detail-slide { min-width: 100%; flex-shrink: 0; }

.detail-slide img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
  background: #000;
}

.detail-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 15px 0;
}

.detail-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
}

.detail-dot.active { background: #D4A017; }

.detail-info { padding: 25px 20px; }

.detail-name {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.detail-subtitle {
  color: #cccccc;
  font-size: 18px;
  margin-bottom: 10px;
}

.detail-price {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.detail-description {
  color: #aaaaaa;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.quantity-wrap { margin-bottom: 20px; }

.quantity-label {
  display: block;
  color: #aaaaaa;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #333;
  padding: 5px 15px;
  border-radius: 4px;
}

.qty-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
  padding: 5px 10px;
  transition: color 0.2s;
}

.qty-btn:hover { color: #D4A017; }

.qty-display {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  min-width: 30px;
  text-align: center;
}

.total-box {
  background: #111;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.total-label {
  color: #aaaaaa;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.total-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #D4A017;
}

.detail-btn-out {
  width: 100%;
  background: transparent;
  color: #555;
  border: 2px solid #333;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: not-allowed;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.detail-btn-order {
  display: block;
  width: 100%;
  background: #D4A017;
  color: #000000;
  border: none;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-decoration: none;
  transition: background 0.3s;
}

.detail-btn-order:hover {
  background: #ffffff;
  color: #000;
}

/* ==========================================
   CART PAGE
========================================== */
.cart-section {
  background: #000;
  min-height: 80vh;
  padding: 0 0 80px;
  max-width: 600px;
  margin: 0 auto;
}

.cart-header { padding: 30px 20px 0; }

.cart-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-divider {
  border: none;
  border-top: 1px solid #333;
  margin-bottom: 20px;
}

.cart-empty {
  text-align: center;
  padding: 80px 20px;
}

.cart-empty p {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 20px;
}

.cart-continue {
  color: #aaaaaa;
  font-size: 16px;
  text-decoration: underline;
}

.cart-continue:hover { color: #D4A017; }

.cart-items { padding: 0 20px; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #222;
  flex-wrap: wrap;
}

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.cart-item-price { color: #aaaaaa; font-size: 14px; }

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #333;
  padding: 5px 10px;
  border-radius: 4px;
}

.cart-item-qty span {
  color: #fff;
  font-size: 16px;
  min-width: 25px;
  text-align: center;
}

.cart-item-total {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: #D4A017;
  font-weight: 700;
}

.cart-remove {
  background: none;
  border: none;
  color: #666;
  font-size: 18px;
  cursor: pointer;
}

.cart-remove:hover { color: #ff4444; }

.cart-total-box {
  margin: 20px 20px;
  background: #111;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 20px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-total-row span:first-child {
  color: #aaaaaa;
  font-size: 16px;
  text-transform: uppercase;
}

.cart-grand-total {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #D4A017;
}

.cart-order-btn {
  display: block;
  margin: 0 20px 15px;
  background: #D4A017;
  color: #000;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s;
}

.cart-order-btn:hover {
  background: #ffffff;
  color: #000;
}

.cart-clear-btn {
  display: block;
  margin: 0 20px;
  width: calc(100% - 40px);
  background: transparent;
  color: #666;
  border: 1px solid #333;
  padding: 14px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
}

.cart-clear-btn:hover {
  color: #ff4444;
  border-color: #ff4444;
}

/* ==========================================
   FOOTER
========================================== */
.site-footer {
  background-color: #000000;
  border-top: 1px solid #222;
  padding: 20px;
  text-align: center;
  color: #666666;
  font-size: 13px;
}

/* Tablet */

@media(max-width:992px){
  .shop-grid{
    grid-template-columns:1fr;
    gap:30px;
  }
  .shop-item-slider{
    height:320px;
  }
}

/* Mobile */

@media(max-width:600px){
  .shop-section{
    padding:30px 15px 60px;
  }
  .shop-item-slider{
    height:250px;
  }
  .hero-title{
    font-size:38px;
  }
  /* Mobile: hero image, video, and detail image show full, at their own natural shape, no cropping */
  .bike-hero-img img,
  .bike-top-media video,
  .bike-top-media img{
    max-width:100%;
    height:auto;
    object-fit:contain;
  }
}

/* ==========================================
   RESPONSIVE — DESKTOP
========================================== */
@media (min-width: 901px) {
  .site-header { padding: 15px 40px; }

  .catalog-section {
    max-width: 900px;
    width: 95%;
    margin: 0 auto;
  }

  .features-section {
    max-width: 480px;
    margin: 0 auto;
  }

  .promo-banner-wrap {
    max-width: 480px;
  }

  .hero-content {
    max-width: 480px;
  }

  .hero-title { font-size: 60px; }

  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px;
    max-width: 1000px;
  }

  .shop-item-slide img { height: 250px; }

  .virtual-bike-wrap { width: 420px; height: 280px; }

  /* Slightly smaller hero image on desktop, shown at its own natural shape, no cropping */
  .bike-hero-img img{
    max-width:650px;
    height:auto;
  }

  .bike-top-media video{
    max-width:650px;
    height:auto;
  }

  .bike-top-media img{
    max-width:650px;
    height:auto;
  }
}
/* ==========================================
   SUCCESS POPUP
========================================== */
.success-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-popup-inner {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  position: relative;
}

.success-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #666;
}

.success-close:hover { color: #000; }
/* ==========================================
   BASKET ICON ANIMATION
========================================== */
.basket-btn {
  animation: basketWiggle 3s ease-in-out infinite;
}

@keyframes basketWiggle {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%           { transform: rotate(-15deg); }
  94%           { transform: rotate(15deg); }
  96%           { transform: rotate(-10deg); }
  98%           { transform: rotate(10deg); }
}

/* ==========================================
   HAMBURGER ICON ANIMATION
========================================== */
.hamburger-btn {
  animation: hamburgerPulse 4s ease-in-out infinite;
}

@keyframes hamburgerPulse {
  0%, 100% { 
    filter: drop-shadow(0 0 0px rgba(212,160,23,0));
  }
  50% { 
    filter: drop-shadow(0 0 8px rgba(212,160,23,0.9));
  }
}

.hamburger-btn span {
  transition: background-color 0.3s;
}

.hamburger-btn:hover span {
  background-color: #D4A017;
}