/* --- Base Styles --- */
:root {
  --color-primary: #b45309; /* amber-700 */
  --color-dark: #1c1917; /* stone-900 */
  --color-gray: #6b7280; /* gray-500 */
  --color-light-gray: #e5e7eb; /* gray-200 */
  --color-bg-soft: #f9f7f2;
  --font-main: "Noto Sans JP", sans-serif;
  --font-serif: "Playfair Display", serif;
  --max-width: 1200px;
}

.container {
  max-width: var(--max-width);
  padding: 0 clamp(1.25rem, 0.962rem + 1.282vw, 2.5rem);
  margin: 0 auto;
}

/* --- Components --- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.btn-dark {
  color: #fff !important;
  text-decoration: none !important;
  background-color: var(--color-dark);
}

.btn-dark:hover {
  background-color: #444;
}

.btn-outline {
  color: var(--color-gray);
  text-decoration: none !important;
  border: 1px solid var(--color-light-gray);
  border-radius: 50px;
}

.btn-outline:hover {
  background-color: #f3f4f6;
}

@media screen and (max-width: 767px) {
  .hero,
  .recommend {
    margin-inline: -1.5rem;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  height: 70vh;
  min-height: 500px;
  background: #eee;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 550px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 768px) {
  .hero-content {
    margin-left: 20px;
  }
}

.hero-tag {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.2em;
}

.hero-title {
  margin-bottom: 20px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
}

.hero-title span {
  font-weight: 500;
}

/* --- Categories --- */
.section-padding {
  padding: clamp(3.75rem, 3.462rem + 1.282vw, 5rem) 0;
}

.text-center {
  margin-bottom: 50px;
  text-align: center;
}

.section-title {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 300;
}

.section-subtitle {
  font-size: 14px;
  color: var(--color-gray);
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (width >= 768px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.category-card {
  cursor: pointer;
}

.card-img-wrapper {
  aspect-ratio: 3/4;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s ease;
}

.category-card:hover img {
  transform: scale(1.05);
}

.card-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.card-desc {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--color-gray);
}

.card-link {
  padding-bottom: 2px;
  font-size: 12px;
  border-bottom: 1px solid var(--color-dark);
}

/* --- Item Grid --- */
.bg-soft {
  background-color: var(--color-bg-soft);
}

.item-header {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .item-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (width >= 1024px) {
  .item-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.product-card {
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.product-img {
  position: relative;
  aspect-ratio: 1/1;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 4px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  font-size: 10px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 2px;
}

.product-cat {
  margin-bottom: 5px;
  font-size: 10px;
  color: var(--color-gray);
}

.product-name {
  height: 40px;
  margin-bottom: 10px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
}

.product-price {
  font-size: 14px;
}

.product-price span {
  font-size: 10px;
  color: var(--color-gray);
}

/* --- Banner --- */
.banner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background: var(--color-dark);
  border-radius: 24px;
}

@media (width >= 768px) {
  .banner {
    flex-direction: row;
  }
}
.banner-body {
  flex: 1;
  padding: clamp(1.875rem, 1.587rem + 1.282vw, 3.125rem);
}

.banner-img {
  flex: 1;
}

.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}/*# sourceMappingURL=category_new-life.css.map */