/* =========================================================
   TC AMOR BIKES
   PRODUCT PAGE
========================================================= */

/* =========================================================
   VARIABLES
========================================================= */

:root {
  --product-orange: #ff6b00;
  --product-orange-dark: #ed5f00;

  --product-black: #111111;
  --product-text: #252525;
  --product-muted: #777777;

  --product-border: #e5e5e5;
  --product-background: #ffffff;
  --product-soft: #f7f7f7;

  --product-warning: #fff4e9;

  --product-success: #4f9b61;

  --product-radius: 12px;
}

/* =========================================================
   GLOBAL PRODUCT PAGE
========================================================= */

.product-page {
  width: 100%;
  background: var(--product-background);
  color: var(--product-text);
}

.product-container {
  width: min(1400px, calc(100% - 80px));
  margin: 0 auto;
}

/* =========================================================
   BREADCRUMBS
========================================================= */

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 24px 0 18px;

  font-size: 14px;
  color: var(--product-muted);
}

.breadcrumbs a {
  color: var(--product-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--product-orange);
}

.breadcrumbs span:last-child {
  color: var(--product-black);
  font-weight: 600;
}

/* =========================================================
   MAIN LAYOUT
========================================================= */

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 36px;

  align-items: start;
}

/* =========================================================
   GALLERY
========================================================= */

.product-gallery {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;

  margin-bottom: 30px;
}

/* =========================================================
   THUMBNAILS
========================================================= */

.gallery-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnail {
  width: 74px;
  height: 74px;

  padding: 0;

  background: #fff;

  border: 1px solid var(--product-border);
  border-radius: 9px;

  overflow: hidden;

  cursor: pointer;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.thumbnail:hover {
  border-color: #bbbbbb;
}

.thumbnail.active {
  border: 2px solid var(--product-orange);
}

.thumbnail img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* =========================================================
   MAIN GALLERY
========================================================= */

.gallery-main {
  position: relative;

  min-width: 0;
  height: 590px;

  overflow: hidden;

  background: #f7f7f7;

  border-radius: var(--product-radius);
}

.gallery-track {
  width: 100%;
  height: 100%;

  position: relative;
}

.gallery-slide {
  position: absolute;
  inset: 0;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.25s ease;
}

.gallery-slide.active {
  opacity: 1;
  visibility: visible;
}

.gallery-slide img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
}

/* =========================================================
   GALLERY ARROWS
========================================================= */

.gallery-arrow {
  position: absolute;

  top: 50%;

  width: 42px;
  height: 42px;

  transform: translateY(-50%);

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--product-border);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.95);

  cursor: pointer;

  z-index: 3;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.gallery-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.gallery-prev {
  left: 18px;
}

.gallery-next {
  right: 18px;
}

.gallery-arrow svg {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* =========================================================
   FULLSCREEN
========================================================= */

.gallery-fullscreen {
  position: absolute;

  right: 18px;
  bottom: 18px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--product-border);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.95);

  cursor: pointer;

  z-index: 3;
}

.gallery-fullscreen svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

/* =========================================================
   PRODUCT INTRO
========================================================= */

.product-category {
  margin: 0 0 6px;

  color: var(--product-orange);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.08em;
}

.product-intro h1 {
  margin: 0 0 7px;

  color: var(--product-black);

  font-size: clamp(32px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 800;
}

/* =========================================================
   RATING
========================================================= */

.product-rating {
  display: flex;
  align-items: center;
  gap: 7px;

  margin-bottom: 14px;
}

.stars,
.review-stars {
  color: var(--product-orange);

  letter-spacing: 1px;

  font-size: 17px;
}

.rating-number {
  font-weight: 600;
}

.rating-count {
  color: var(--product-muted);
  font-size: 14px;
}

.product-description {
  max-width: 850px;

  margin: 0;

  color: #555;

  font-size: 16px;
  line-height: 1.65;
}

/* =========================================================
   SPECIFICATIONS
========================================================= */

.product-specifications {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  margin-top: 26px;

  border-top: 1px solid var(--product-border);
  border-bottom: 1px solid var(--product-border);
}

.spec-item {
  min-height: 90px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 18px 20px;
}

.spec-item:not(:last-child) {
  border-right: 1px solid var(--product-border);
}

.spec-label {
  margin-bottom: 7px;

  color: #999;

  font-size: 13px;
}

.spec-item strong {
  color: var(--product-black);

  font-size: 15px;
}

/* =========================================================
   PRODUCT SECTIONS
========================================================= */

.product-section {
  margin-top: 34px;
}

.product-section h2 {
  margin: 0 0 18px;

  color: var(--product-black);

  font-size: 21px;
  font-weight: 750;
}

/* =========================================================
   EQUIPMENT
========================================================= */

.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.equipment-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 9px 13px;

  border: 1px solid #dedede;
  border-radius: 30px;

  background: #fff;

  font-size: 14px;
}

.equipment-tag svg {
  width: 15px;
  height: 15px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* =========================================================
   IMPORTANT INFORMATION
========================================================= */

.important-information {
  margin-top: 28px;
  padding: 20px 24px;

  background: var(--product-warning);

  border-radius: 12px;
}

.important-information h3 {
  margin: 0 0 17px;

  font-size: 16px;
}

.important-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 30px;
}

.important-item {
  display: flex;
  align-items: center;
  gap: 9px;

  font-size: 14px;
}

.important-item svg {
  width: 17px;
  height: 17px;

  flex: 0 0 auto;

  fill: none;
  stroke: #4e8060;
  stroke-width: 2;
}

/* =========================================================
   PICKUP LOCATION
========================================================= */

.pickup-location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

  min-height: 220px;

  border: 1px solid var(--product-border);
  border-radius: 12px;

  overflow: hidden;

  background: #fff;
}

.location-map {
  position: relative;

  width: 100%;
  min-width: 0;
  min-height: 220px;

  overflow: hidden;

  background: #f1f1f1;
}

.location-map iframe {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 220px;

  border: 0;
}

.location-map img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.location-content {
  min-width: 0;

  padding: 25px;
}

.location-content h3 {
  margin: 0 0 10px;

  font-size: 20px;
}

.location-content p {
  margin: 0 0 13px;

  color: #555;

  line-height: 1.55;
}

.location-link {
  color: var(--product-orange);

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;
}

/* =========================================================
   REVIEWS
========================================================= */

.reviews-card {
  display: grid;
  grid-template-columns: 170px 1px minmax(0, 1fr);

  min-height: 145px;

  padding: 22px;

  border: 1px solid var(--product-border);
  border-radius: 12px;
}

.review-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-summary strong {
  font-size: 46px;
  line-height: 1;
  color: var(--product-black);
}

.review-summary .review-stars {
  margin: 7px 0 5px;
}

.review-summary span {
  color: #777;
  font-size: 12px;
}

.review-divider {
  width: 1px;

  background: var(--product-border);
}

.review {
  display: flex;
  gap: 14px;

  padding-left: 24px;
}

.review-avatar {
  width: 42px;
  height: 42px;

  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #e8eef5;

  color: #3c536b;

  font-size: 13px;
  font-weight: 700;
}

.review-content {
  width: 100%;
}

.review-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.review-header > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.review-header span {
  color: #888;
  font-size: 12px;
}

.review-content p {
  margin: 12px 0 0;

  color: #555;

  font-size: 14px;
  line-height: 1.6;
}

/* =========================================================
   FAQ
========================================================= */

.faq-list {
  border-top: 1px solid var(--product-border);
  border-bottom: 1px solid var(--product-border);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--product-border);
}

.faq-question {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 18px 4px;

  border: 0;
  background: transparent;

  color: var(--product-black);

  font: inherit;
  font-size: 14px;
  text-align: left;

  cursor: pointer;
}

.faq-question svg {
  width: 18px;
  height: 18px;

  flex: 0 0 auto;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;

  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;

  transition: grid-template-rows 0.25s ease;
}

.faq-answer p {
  overflow: hidden;

  margin: 0;
  padding: 0 4px;

  color: #666;

  font-size: 14px;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 18px;
}

/* =========================================================
   PRODUCT CTA / PREFOOTER
========================================================= */

.product-cta {
  position: relative;

  width: 100%;

  margin-top: 70px;

  min-height: 330px;

  overflow: hidden;

  background: linear-gradient(90deg, #fff7ef 0%, #fffaf6 42%, #f7eee5 100%);
}

.product-cta::after {
  content: "";

  position: absolute;

  right: 0;
  top: 0;
  bottom: 0;

  width: 48%;

  background: linear-gradient(90deg, rgba(255, 247, 239, 0) 0%, rgba(255, 247, 239, 0.12) 30%, rgba(255, 247, 239, 0.35) 100%);

  pointer-events: none;
}

.product-cta-inner {
  position: relative;

  z-index: 1;

  width: min(100% - 80px, 1200px);

  min-height: 330px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}

.product-cta-content {
  max-width: 570px;

  padding: 45px 0;
}

.product-cta-eyebrow {
  margin: 0 0 10px;

  color: var(--product-orange);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-cta-content h2 {
  margin: 0;

  color: var(--product-black);

  font-size: clamp(36px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -1.8px;
}

.product-cta-content h2 span {
  color: var(--product-orange);
}

.product-cta-text {
  max-width: 510px;

  margin: 20px 0 25px;

  color: #666;

  font-size: 15px;
  line-height: 1.6;
}

.product-cta-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 14px;

  min-height: 48px;

  padding: 0 20px;

  border-radius: 8px;

  background: var(--product-orange);

  color: #fff;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-cta-button span {
  font-size: 20px;
  line-height: 1;
}

.product-cta-button:hover {
  background: var(--product-orange-dark);

  transform: translateY(-1px);
}

.product-cta-message {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  margin-right: 40px;

  color: var(--product-black);

  font-size: 22px;
  font-weight: 700;

  line-height: 1.05;
}

.product-cta-message i {
  display: block;

  width: 65px;
  height: 3px;

  margin-top: 12px;

  background: var(--product-orange);

  transform: rotate(-5deg);
}

/* =========================================================
   BOOKING SIDEBAR
========================================================= */

.booking-sidebar {
  position: sticky;
  top: 25px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================================================
   BOOKING CARD
========================================================= */

.booking-card {
  padding: 24px;

  border: 1px solid var(--product-border);
  border-radius: 14px;

  background: #fff;

  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
}

.booking-header h2 {
  margin: 0 0 7px;

  color: var(--product-black);

  font-size: 17px;
}

.booking-price {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.rental-rate-select {
  width: 100%;
  min-height: 48px;
  padding: 0 42px 0 14px;

  appearance: none;
  color: var(--product-black);
  background-color: #fff;
  background-image: linear-gradient(45deg, transparent 50%, var(--product-orange) 50%), linear-gradient(135deg, var(--product-orange) 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 20px,
    calc(100% - 13px) 20px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  border: 2px solid var(--product-orange);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(255, 107, 0, 0.12);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.rental-rate-select:hover,
.rental-rate-select:focus {
  border-color: var(--product-orange-dark);
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.22);
  outline: none;
}

.additional-hour {
  align-self: flex-end;
  width: fit-content;
  margin: 8px 0 0;
  padding: 4px 8px;

  background: #eeeeee;
  border-radius: 5px;

  color: var(--product-muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}

.booking-price .additional-hour strong {
  margin-left: 2px;
  font-size: 18px !important;
  color: var(--product-black);
  font-size: inherit;
  line-height: inherit;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-price strong {
  color: var(--product-black);

  font-size: 31px;
  line-height: 1;
}

.booking-price span {
  color: #777;

  font-size: 14px;
}

.availability {
  margin: -7px 0 20px;

  color: var(--product-muted);
  font-size: 12px;
  text-align: right;
}

.availability strong {
  color: var(--product-orange);
  font-weight: 800;
}

.booking-divider {
  height: 1px;

  margin: 15px 0;

  background: var(--product-border);
}

/* =========================================================
   BOOKING FIELDS
========================================================= */

.booking-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  margin-bottom: 15px;
}

.booking-field {
  min-width: 0;
}

.booking-field label {
  display: block;

  margin-bottom: 7px;

  color: #333;

  font-size: 12px;
  font-weight: 600;
}

.booking-field input,
.booking-field select {
  width: 100%;
  height: 48px;

  padding: 0 11px;

  border: 1px solid #ddd;
  border-radius: 9px;

  background: #fff;

  color: #222;

  font: inherit;
  font-size: 14px;

  outline: none;

  box-sizing: border-box;
}

.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--product-orange);

  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* =========================================================
   DURATION
========================================================= */

.duration-row {
  display: flex;
  justify-content: space-between;

  margin: 7px 0 22px;
  padding: 14px 0;

  border-top: 1px solid var(--product-border);
}

.duration-row span {
  color: #777;

  font-size: 13px;
}

.duration-row strong {
  color: var(--product-black);

  font-size: 14px;
}

/* =========================================================
   QUANTITY
========================================================= */

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 24px;
}

.quantity-row > span {
  font-size: 14px;
  font-weight: 600;
}

.quantity-control {
  display: flex;
  align-items: center;

  border: 1px solid #ddd;
  border-radius: 9px;

  overflow: hidden;
}

.quantity-control button {
  width: 40px;
  height: 40px;

  border: 0;

  background: #fff;

  color: #333;

  font-size: 20px;

  cursor: pointer;
}

.quantity-control button:hover {
  background: #f6f6f6;
}

.quantity-control input {
  width: 48px;
  height: 40px;

  padding: 0;

  border: 0;

  color: #333;
  background: #fff;

  font: inherit;
  font-size: 14px;
  text-align: center;
}

.quantity-control input:focus {
  outline: 2px solid var(--product-orange);
  outline-offset: -2px;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  margin: 0;
}

.quantity-control input {
  appearance: textfield;

  text-align: center;
}

/* =========================================================
   BOOKING BUTTONS
========================================================= */

.booking-button {
  width: 100%;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  border-radius: 8px;

  font: inherit;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.booking-button svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.booking-button:hover {
  transform: translateY(-1px);
}

.booking-button.primary {
  border: 1px solid var(--product-orange);

  background: var(--product-orange);

  color: white;
}

.booking-button.primary:hover {
  background: var(--product-orange-dark);
}

.booking-button.secondary {
  margin-top: 9px;

  border: 1px solid var(--product-orange);

  background: #fff;

  color: var(--product-black);
}

.booking-button.secondary:hover {
  background: #fff7f0;
}

/* =========================================================
   MOBILE BOOKING — ADJUST
   ========================================================= */

.mobile-booking-adjust {
  position: absolute;
  right: 0;
  bottom: 100%;

  display: inline-flex;
  align-items: center;
  gap: 5px;

  padding: 6px 10px;

  background: #fff;
  color: #ff6b00;

  border: 1px solid #e5e5e5;
  border-bottom: none;
  border-radius: 7px 0 0 0;

  font-size: 13px;
  font-weight: 600;
  line-height: 1;

  box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.09);

  white-space: nowrap;
  z-index: 10;
}

.mobile-booking-adjust:hover {
  background: #fff;
  color: #ff6b00;
}

/* =========================================================
   MOBILE BOOKING BAR
   ========================================================= */

.mobile-booking-bar {
  position: fixed;
}

/* =========================================================
   SIDEBAR CARDS
========================================================= */

.sidebar-card {
  padding: 22px;

  border: 1px solid var(--product-border);
  border-radius: 12px;

  background: #fff;
}

.sidebar-card h3 {
  margin: 0 0 17px;

  color: var(--product-black);

  font-size: 15px;
}

/* =========================================================
   INCLUDED LIST
========================================================= */

.included-list {
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding: 0;
  margin: 0;

  list-style: none;
}

.included-list li {
  position: relative;

  padding-left: 19px;

  color: #555;

  font-size: 13px;
}

.included-list li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--product-success);

  font-weight: 700;
}

/* =========================================================
   PAYMENT
========================================================= */

.payment-card {
  margin-top: 0;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-methods span {
  color: #303030;

  font-size: 12px;
  font-weight: 800;
}

/* =========================================================
   TRUST CARD
========================================================= */

.trust-card {
  padding: 8px 20px;

  border: 1px solid var(--product-border);
  border-radius: 12px;

  background: #fff;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;

  padding: 15px 0;
}

.trust-item + .trust-item {
  border-top: 1px solid var(--product-border);
}

.trust-icon {
  width: 38px;
  height: 38px;

  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #fff1e5;

  color: var(--product-orange);
}

.trust-icon svg {
  width: 19px;
  height: 19px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.trust-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-item strong {
  color: var(--product-black);

  font-size: 13px;
}

.trust-item span {
  color: #888;

  font-size: 11px;
  line-height: 1.4;
}

/* =========================================================
   FULLSCREEN MODE
========================================================= */

body.gallery-open {
  overflow: hidden;
}

.gallery-main.fullscreen {
  position: fixed;

  inset: 0;

  width: 100vw;
  height: 100vh;

  z-index: 9999;

  border-radius: 0;

  background: rgba(0, 0, 0, 0.96);
}

.gallery-main.fullscreen .gallery-slide img {
  object-fit: contain;
}

.gallery-main.fullscreen .gallery-fullscreen {
  position: fixed;

  top: 25px;
  right: 25px;
  bottom: auto;
}

/* =========================================================
   MOBILE BOOKING BAR
   Hidden on desktop
========================================================= */

.mobile-booking-bar {
  display: none;
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {
  .product-container {
    width: min(100% - 40px, 900px);
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .booking-card {
    grid-column: 1 / -1;
  }

  .trust-card {
    grid-column: 1 / -1;
  }

  .gallery-main {
    height: 520px;
  }
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {
  .product-container {
    width: min(100% - 40px, 900px);
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .booking-sidebar {
    position: static;

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: start;
  }

  .booking-card {
    grid-column: 1 / -1;
  }

  .trust-card {
    grid-column: 1 / -1;
  }

  .gallery-main {
    height: 520px;
  }
}

/* =========================================================
   TABLET BOOKING BAR
========================================================= */

@media (min-width: 701px) and (max-width: 1100px) {
  .booking-sidebar {
    display: block;
    padding-bottom: 92px;
  }

  .booking-card {
    display: none;
  }

  .booking-card.mobile-booking-open {
    display: block;
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 0;
    z-index: 1100;
    width: min(560px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 28px;
    transform: translateX(-50%);
    border: 0;
    border-radius: 20px 20px 0 0;
    background: #fff;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
  }

  .booking-card.mobile-booking-open::before {
    content: "";
    display: block;
    width: 42px;
    height: 4px;
    margin: -12px auto 20px;
    border-radius: 10px;
    background: #d9d9d9;
  }

  .mobile-booking-overlay {
    display: none;
  }

  .mobile-booking-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, 0.35);
  }

  .mobile-booking-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #fff;
    border-top: 1px solid var(--product-border);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
  }

  .mobile-booking-adjust {
    position: absolute;
    right: 28px;
    bottom: calc(100% + 8px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 8px;
    border: 0;
    background: transparent;
    color: var(--product-orange);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-booking-adjust span {
    font-size: 17px;
    line-height: 1;
  }

  .mobile-booking-reserve {
    width: 100%;
    max-width: 560px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--product-orange);
    border-radius: 8px;
    background: var(--product-orange);
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {
  /* =======================================================
     PAGE
  ======================================================= */

  .product-container {
    width: calc(100% - 28px);
  }

  .breadcrumbs {
    padding: 18px 0;

    overflow-x: auto;

    white-space: nowrap;

    font-size: 12px;
  }

  /* =======================================================
     GALLERY
  ======================================================= */

  .product-gallery {
    display: flex;

    flex-direction: column-reverse;

    gap: 10px;
  }

  .gallery-main {
    width: 100%;

    height: 390px;

    border-radius: 10px;

    touch-action: pan-y;
  }

  .gallery-track {
    touch-action: pan-y;

    user-select: none;

    -webkit-user-select: none;
  }

  .gallery-slide img {
    user-select: none;

    -webkit-user-drag: none;

    pointer-events: none;
  }

  .gallery-thumbnails {
    flex-direction: row;

    overflow-x: auto;

    padding-bottom: 3px;
  }

  .thumbnail {
    width: 64px;

    height: 64px;

    flex: 0 0 auto;
  }

  .gallery-arrow {
    width: 38px;

    height: 38px;
  }

  /* =======================================================
     INTRO
  ======================================================= */

  .product-intro h1 {
    font-size: 32px;
  }

  .product-description {
    font-size: 14px;
  }

  /* =======================================================
     SPECS
  ======================================================= */

  .product-specifications {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec-item {
    min-height: 75px;

    padding: 14px;
  }

  .spec-item:nth-child(2) {
    border-right: 0;
  }

  .spec-item:nth-child(3),
  .spec-item:nth-child(4) {
    border-top: 1px solid var(--product-border);
  }

  .spec-item:nth-child(4) {
    border-right: 0;
  }

  .spec-item:last-child {
    border-top: 1px solid var(--product-border);
  }

  /* =======================================================
     IMPORTANT
  ======================================================= */

  .important-grid {
    grid-template-columns: 1fr;
  }

  /* =======================================================
     LOCATION
  ======================================================= */

  .pickup-location {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 240px;

    width: 100%;

    overflow: hidden;

    border-radius: 10px;
  }

  .location-map iframe {
    display: block;

    width: 100%;

    height: 240px;

    border: 0;
  }

  /* =======================================================
     REVIEWS
  ======================================================= */

  .reviews-card {
    grid-template-columns: 1fr;

    gap: 18px;
  }

  .review-divider {
    width: 100%;

    height: 1px;
  }

  .review {
    padding-left: 0;
  }

  .review-header {
    flex-direction: column;

    gap: 7px;
  }

  .product-cta {
    margin-top: 50px;

    min-height: auto;
  }

  .product-cta-inner {
    width: min(100% - 40px, 600px);

    min-height: auto;

    display: block;
  }

  .product-cta-content {
    max-width: none;

    padding: 45px 0;
  }

  .product-cta-content h2 {
    font-size: 40px;

    letter-spacing: -1.3px;
  }

  .product-cta-text {
    font-size: 14px;
  }

  .product-cta-message {
    display: none;
  }

  .product-cta::after {
    display: none;
  }

  /* =======================================================
     BOOKING SIDEBAR
  ======================================================= */

  .booking-sidebar {
    display: flex;

    flex-direction: column;

    position: relative;

    width: calc(100% + 28px);

    margin-left: -14px;

    padding-bottom: 90px;
  }

  /* =======================================================
     SIDEBAR CARDS — FULL MOBILE WIDTH
  ======================================================= */

  .booking-sidebar .sidebar-card,
  .booking-sidebar .trust-card {
    width: calc(100% - 28px);

    margin-left: 14px;

    margin-right: 14px;

    box-sizing: border-box;
  }

  .booking-sidebar .sidebar-card {
    padding: 20px;
  }

  .booking-sidebar .payment-card {
    margin-top: 12px;
  }

  .booking-sidebar .trust-card {
    margin-top: 12px;

    padding: 8px 20px;
  }

  /* =======================================================
     BOOKING CARD
  ======================================================= */

  .booking-card {
    display: none;

    padding: 20px;
  }

  .booking-card.mobile-booking-open {
    display: block;

    position: fixed;

    left: 0;

    right: 0;

    bottom: 0;

    z-index: 1100;

    width: 100%;

    max-height: 85vh;

    overflow-y: auto;

    box-sizing: border-box;

    padding: 24px 20px;

    border: 0;

    border-radius: 20px 20px 0 0;

    background: #fff;

    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
  }

  .booking-card.mobile-booking-open::before {
    content: "";

    display: block;

    width: 42px;

    height: 4px;

    margin: -10px auto 20px;

    border-radius: 10px;

    background: #d9d9d9;
  }

  /* =======================================================
     TIME INPUTS
  ======================================================= */

  .booking-field input[type="date"],
  .booking-field input[type="time"] {
    width: 100%;

    min-height: 40px;

    height: 40px;

    box-sizing: border-box;

    padding: 0 14px;

    border: 1px solid var(--product-border);

    border-radius: 10px;

    background: #fff;

    color: var(--product-black);

    font: inherit;

    font-size: 14px;

    line-height: 1.4;
  }

  .booking-field input[type="date"]:focus,
  .booking-field input[type="time"]:focus {
    outline: none;

    border-color: var(--product-orange);

    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  }

  /* =======================================================
     MOBILE BOOKING OVERLAY
  ======================================================= */

  .mobile-booking-overlay {
    display: none;
  }

  .mobile-booking-overlay.active {
    display: block;

    position: fixed;

    inset: 0;

    z-index: 1090;

    background: rgba(0, 0, 0, 0.35);
  }

  /* =======================================================
     STICKY MOBILE BOOKING BAR
  ======================================================= */

  .mobile-booking-bar {
    position: fixed;

    left: 0;

    right: 0;

    bottom: 0;

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 12px 16px;

    background: #fff;

    border-top: 1px solid var(--product-border);

    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
  }

  /* =======================================================
     ADJUST
  ======================================================= */

  .mobile-booking-adjust {
    position: absolute;

    right: 18px;

    bottom: calc(100% + 8px);

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    padding: 5px 8px;

    border: 0;

    background: transparent;

    color: var(--product-orange);

    font: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;
  }

  .mobile-booking-adjust span {
    font-size: 17px;

    line-height: 1;
  }

  .mobile-booking-adjust:hover {
    color: var(--product-orange-dark);
  }

  /* =======================================================
     RESERVE
  ======================================================= */

  .mobile-booking-reserve {
    width: 100%;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--product-orange);

    border-radius: 8px;

    background: var(--product-orange);

    color: #fff;

    font: inherit;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition:
      background 0.2s ease,
      transform 0.2s ease;
  }

  .mobile-booking-reserve:hover {
    background: var(--product-orange-dark);

    transform: translateY(-1px);
  }

  /* =======================================================
     PAYMENT
  ======================================================= */

  .payment-methods {
    justify-content: flex-start;
  }

  /* =======================================================
     BODY LOCK
  ======================================================= */

  body.mobile-booking-active {
    overflow: hidden;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {
  .booking-field-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 8px;
  }

  .gallery-main {
    height: 330px;
  }

  .product-section {
    margin-top: 28px;
  }

  .location-map,
  .location-map iframe {
    height: 220px;

    min-height: 220px;
  }
}
