/*! MIKIMOTO Style Application CSS - Unified */
/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #000000;
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

ul, li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Layout Container
   ========================================================================== */
.page-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 60px;
  }
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .header__inner {
    height: 80px;
    padding: 0 40px;
  }
}

.header__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__menu-btn {
  background: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.header__menu-line {
  width: 24px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}

.header__logo {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .header__logo {
    font-size: 24px;
    letter-spacing: 6px;
  }
}

.header__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hide search and wishlist icons on mobile, keep login text */
@media (max-width: 767px) {
  .header__right .header__icon {
    display: none;
  }
}

@media (min-width: 768px) {
  .header__right {
    gap: 25px;
  }
}

.header__icon {
  font-size: 18px;
  padding: 8px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .header__icon {
    font-size: 20px;
  }
}

.header__text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .header__text {
    font-size: 13px;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  margin-top: 60px;
  position: relative;
  min-height: auto;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero {
    margin-top: 80px;
    min-height: 100vh;
    background: url('/static/user/images/les-petales-place-vendome_main01_pc.webp') center/contain no-repeat;
    position: relative;
  }
}

.hero__image-mobile {
  width: 100%;
  display: block;
  background: #ffffff;
  line-height: 0;
}

.hero__image-mobile img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero__image-mobile {
    display: none;
  }
}

.hero__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  height: 100%;
}

@media (min-width: 768px) {
  .hero__container {
    padding: 0;
    min-height: 100vh;
    position: relative;
  }
}

.hero__content {
  color: #000000;
  padding: 30px 20px 40px;
  z-index: 2;
  max-width: 100%;
  background: #ffffff;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__content {
    color: #ffffff;
    max-width: 650px;
    padding: 40px 0;
    background: transparent;
    position: absolute;
    bottom: 60px;
    left: 60px;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    max-width: 700px;
    bottom: 80px;
    left: 80px;
  }
}

.hero__title {
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-weight: 300;
  }
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 48px;
    margin-bottom: 30px;
  }
}

@media (min-width: 1200px) {
  .hero__title {
    font-size: 42px;
  }
}

.hero__description {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 300;
  opacity: 0.9;
}

@media (min-width: 768px) {
  .hero__description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 1;
    font-weight: 400;
  }
}

@media (min-width: 1200px) {
  .hero__description {
    font-size: 15px;
    margin-bottom: 35px;
  }
}

.hero__btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero__btn:hover {
  background: #000000;
  color: #ffffff;
  opacity: 1;
}

@media (min-width: 768px) {
  .hero__btn {
    padding: 14px 40px;
    font-size: 13px;
    color: #ffffff;
    border-color: #ffffff;
  }
  
  .hero__btn:hover {
    background: #ffffff;
    color: #000000;
  }
}


/* ==========================================================================
   Product Grid Section
   ========================================================================== */
.product-section {
  padding: 60px 0;
  background: #fafafa;
}

@media (min-width: 768px) {
  .product-section {
    padding: 100px 0;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}

.product-card {
  background: #ffffff;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
}

.product-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-color: #e5e5e5;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 15px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__wishlist {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-card__wishlist:hover {
  border-color: #7b1450;
  color: #7b1450;
}

.product-card__name {
  font-size: 14px;
  margin-bottom: 8px;
  color: #000;
}

@media (min-width: 768px) {
  .product-card__name {
    font-size: 15px;
  }
}

/* ==========================================================================
   Feature Section
   ========================================================================== */
.feature-section {
  padding: 60px 0;
  background: #ffffff;
}

@media (min-width: 768px) {
  .feature-section {
    padding: 100px 0;
  }
}

.feature-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 768px) {
  .feature-container {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
}

.feature__image {
  flex: 1;
}

.feature__image img {
  width: 100%;
  height: auto;
}

.feature__content {
  flex: 1;
  padding: 20px;
}

@media (min-width: 768px) {
  .feature__content {
    padding: 40px;
  }
}

.feature__label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #666;
}

.feature__title {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .feature__title {
    font-size: 32px;
    margin-bottom: 25px;
  }
}

.feature__description {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .feature__description {
    font-size: 15px;
  }
}

.feature__divider {
  width: 60px;
  height: 1px;
  background: #000;
  margin: 30px 0;
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news-section {
  padding: 60px 0;
  background: #fafafa;
}

@media (min-width: 768px) {
  .news-section {
    padding: 100px 0;
  }
}

.news-section__title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .news-section__title {
    font-size: 32px;
    margin-bottom: 60px;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.news-card {
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
}

.news-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.news-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.05);
}

.news-card__content {
  padding: 25px;
}

.news-card__date {
  font-size: 11px;
  color: #999;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.news-card__title {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .news-card__title {
    font-size: 17px;
  }
}

.news-card__link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid #000;
  display: inline-block;
  padding-bottom: 2px;
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
  padding: 60px 0;
  background: #ffffff;
  border-top: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
  .newsletter-section {
    padding: 80px 0;
  }
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__title {
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 400;
}

@media (min-width: 768px) {
  .newsletter__title {
    font-size: 20px;
  }
}

.newsletter__description {
  font-size: 13px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 768px) {
  .newsletter__form {
    flex-direction: row;
    gap: 0;
  }
}

.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
}

.newsletter__button {
  padding: 14px 30px;
  background: #000;
  color: #fff;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.newsletter__button:hover {
  background: #7b1450;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: #f5f5f5;
  padding: 40px 0 20px;
  border-top: 1px solid #e5e5e5;
}

@media (min-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.footer__column-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer__link {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.footer__bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #999;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
  
  .desktop-only {
    display: block;
  }
}

