/* ============================================
   Scope & Variables (Osonae ver.)
   ============================================ */
.lp-wrapper-main {
  /* Scoped Variables */
  --lp-color-base: #F9F9F9; /* Slightly cool white */
  --lp-color-text: #444444; /* Softer gray text */
  --lp-color-accent: #807785; /* Grayish Lavender: Elegant & Respectful */
  --lp-color-accent-hover: #675f6c;
  --lp-color-white: #FFFFFF;
  --lp-color-gray-light: #EFF0F2;
  --lp-font-serif: "Noto Serif JP", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", serif;
  --lp-font-sans: "Noto Sans JP", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  --lp-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  --lp-easing: cubic-bezier(0.25, 1, 0.5, 1);
  
  font-family: var(--lp-font-sans);
  color: var(--lp-color-text);
  background-color: var(--lp-color-base);
  line-height: 1.8;
  letter-spacing: 0.05em;
  box-sizing: border-box;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.lp-wrapper-main *,
.lp-wrapper-main *::before,
.lp-wrapper-main *::after {
  box-sizing: inherit;
}

/* ============================================
   Common Utilities
   ============================================ */
.lp-wrapper-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-wrapper-u-sp-only {
  display: block;
}
@media (min-width: 768px) {
  .lp-wrapper-u-sp-only {
    display: none;
  }
}

.lp-wrapper-heading {
  font-family: var(--lp-font-serif);
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--lp-color-accent);
}

.lp-wrapper-heading--sm {
  font-size: 1.5rem;
}

.lp-wrapper-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 1.5rem auto 0;
  padding: 14px 0;
  background-color: var(--lp-color-accent);
  color: var(--lp-color-white);
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: background-color 0.3s, transform 0.3s;
}

.lp-wrapper-btn:hover {
  background-color: var(--lp-color-accent-hover);
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ============================================
   1. Hero Section
   ============================================ */
.lp-wrapper-hero {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

.lp-wrapper-hero__inner {
  position: relative;
}

.lp-wrapper-hero__img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  /* PC: Aspect ratio based on 1140x400 */
  max-height: 600px; 
  max-width:1140px;
  object-fit: cover;
  filter: brightness(0.95); /* Slightly dimmed for Osonae atmosphere */
  margin:0 auto;
}

.lp-wrapper-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  color: var(--lp-color-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4); /* Enhanced shadow for readability */
}

.lp-wrapper-hero__title {
  font-family: var(--lp-font-serif);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.lp-wrapper-hero__subtitle {
  font-size: 1rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .lp-wrapper-hero {
    margin-bottom: 100px;
  }
  .lp-wrapper-hero__title {
    font-size: 4rem;
  }
  .lp-wrapper-hero__subtitle {
    font-size: 1.2rem;
  }
}

/* ============================================
   2. Introduction Section
   ============================================ */
.lp-wrapper-intro {
  margin-bottom: 80px;
  text-align: center;
}

.lp-wrapper-intro__lead {
  font-family: var(--lp-font-serif);
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 2rem;
  color: var(--lp-color-text);
}

.lp-wrapper-text {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 3rem;
}

.lp-wrapper-intro__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 2rem;
}

.lp-wrapper-intro__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
  filter: sepia(10%) contrast(95%); /* Soft tone */
}

@media (min-width: 768px) {
  .lp-wrapper-intro {
    margin-bottom: 120px;
  }
  .lp-wrapper-intro__gallery {
    gap: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================
   3. Product List Section
   ============================================ */
.lp-wrapper-products {
  margin-bottom: 80px;
  background-color: #fff;
  padding: 60px 0;
}

.lp-wrapper-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .lp-wrapper-products {
    margin-bottom: 120px;
  }
  .lp-wrapper-products__grid {
    /* 2 items side-by-side */
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}

/* Product Card */
.lp-wrapper-card {
  background: var(--lp-color-white);
  /* Gentle shadow for cleaner separation */
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.lp-wrapper-card__body {
  padding: 25px 0;
  text-align: center;
}

.lp-wrapper-card__title {
  font-family: var(--lp-font-serif);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: var(--lp-color-text);
}

.lp-wrapper-card__subtitle {
  font-size: 0.9rem;
  color: var(--lp-color-accent);
  display: block;
  margin-top: 0.4rem;
}

.lp-wrapper-card__desc {
  font-family:var(--lp-font-serif);
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 1rem;
}
 
.lp-wrapper-card__price {
  font-family: var(--lp-font-serif);
  font-size: 1.4rem;
  color: var(--lp-color-text);
}

.lp-wrapper-card__tax {
  font-size: 0.8rem;
  margin-left: 4px;
}

/* Carousel Component */
.lp-wrapper-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.lp-wrapper-carousel__stage {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s var(--lp-easing);
}

.lp-wrapper-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.lp-wrapper-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carousel Navigation */
.lp-wrapper-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
}

.lp-wrapper-carousel:hover .lp-wrapper-carousel__nav {
  opacity: 1;
}

.lp-wrapper-carousel__nav:hover {
  background: rgba(255, 255, 255, 0.95);
}

.lp-wrapper-carousel__nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  transform: translate(-50%, -50%) rotate(45deg);
}

.lp-wrapper-carousel__nav--prev {
  left: 10px;
}
.lp-wrapper-carousel__nav--prev::before {
  transform: translate(-40%, -50%) rotate(-135deg);
}

.lp-wrapper-carousel__nav--next {
  right: 10px;
}

/* Carousel Dots */
.lp-wrapper-carousel__dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.lp-wrapper-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s;
}

.lp-wrapper-carousel__dot.is-active {
  background: var(--lp-color-accent);
}

/* ============================================
   4. Notes Section
   ============================================ */
.lp-wrapper-notes {
  background-color: var(--lp-color-gray-light);
  padding: 60px 0;
  font-size: 0.9rem;
}

.lp-wrapper-notes__content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.lp-wrapper-notes__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lp-wrapper-notes__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.lp-wrapper-notes__item:last-child {
  margin-bottom: 0;
}

.lp-wrapper-notes__icon {
  color: var(--lp-color-accent);
  margin-right: 0.5em;
  font-weight: bold;
}
