﻿@charset "utf-8";

.inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.pc-layout { display: flex; gap: 40px; align-items: flex-start; position: relative; }
.pc-main { flex: 1; min-width: 0; align-self: flex-start; }
.pc-sidebar { width: 400px; flex-shrink: 0; align-self: flex-start; position: static; }

.gallery-slider .owl-item .item { height: 544px; background-size: cover; background-position: center; background-repeat: no-repeat; }
.owl-theme .owl-dots { text-align: center; margin-top: 10px; }
.owl-theme .owl-dots .owl-dot { display: inline-block; }
.owl-theme .owl-dots .owl-dot span { width: 10px; height: 10px; margin: 5px 7px; background: #ddd; border-radius: 50%; display: block; border: 2px solid transparent; }

.section { padding: 5px 0; }
.product-title { font-size: 28px; font-weight: 700; letter-spacing: -1px; margin-bottom: 10px; }
.product-desc { font-size: 14px; color: #333; line-height: 1.8; margin-bottom: 15px; }
.product-desc li { list-style: none; }
.product-notice { font-size: 12px; color: #BD1010; margin-bottom: 15px; }
.product-price { font-size: 28px; font-weight: 700; letter-spacing: -1px; text-align: right; }

.booking-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; }
.booking-grid img { width: 100%; display: block; }

.review-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.review-card { display: block; border-radius: 8px; overflow: hidden; background: #f9f9f9; }
.review-card img { width: 100%; height: 200px; object-fit: cover; }
.review-card .review-text { padding: 10px; }
.review-card .review-text h4 { font-size: 13px; font-weight: 600; margin-bottom: 5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.review-card .review-text p { font-size: 12px; color: #666; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.mobile-section { padding: 0 15px; }
.mobile-gallery { width: 100%; }
.mobile-gallery .owl-item .item { height: 300px; background-size: cover; background-position: center; }

.prod-imgs img { width: 100%; display: block; margin-bottom: 0; }

.pc-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 991px) {
  .pc-sidebar { width: 320px; align-self: flex-start; }
  .gallery-slider .owl-item .item { height: 380px; }
}

@media (max-width: 767px) {
  .pc-only { display: none; }
  .mobile-only { display: block; }
  .pc-layout { flex-direction: column; gap: 20px; }
  .pc-sidebar { width: 100%; }
  .pc-main.is-sticky,
  .pc-sidebar.is-sticky { position: static; top: auto; }
  .gallery-slider .owl-item .item { height: 300px; }
}

@media (max-width: 575px) {
  .pc-sidebar { width: 100%; }
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
}


