/* =========================================================================
   メインビジュアル (Hero/Slider)
   ========================================================================= */
.hero-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
}

.hero-slider {
    width: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(251, 248, 243, 0.8) 0%, rgba(251, 248, 243, 0.2) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 500px;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-text);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 500;
}

/* =========================================================================
   看板商品 (Featured Product)
   ========================================================================= */
.featured-section {
    padding: var(--section-padding);
    background-color: var(--color-bg-alt);
}

.featured-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.featured-image-wrapper {
    flex: 1;
    position: relative;
}

.featured-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    opacity: 0.1;
    border-radius: 20px;
    z-index: 0;
}

.featured-image {
    position: relative;
    z-index: 1;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.featured-info {
    flex: 1;
}

.featured-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.featured-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.featured-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.featured-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.featured-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.featured-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-primary);
    position: absolute;
    left: 0;
    top: 2px;
}

/* =========================================================================
   商品カテゴリ (Categories)
   ========================================================================= */
.category-section {
    padding: var(--section-padding);
    background-color: var(--color-white);
}

.category-card {
    display: block;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: var(--color-bg);
    height: 100%;
    border: 1px solid var(--color-border);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(200, 150, 62, 0.15);
    /* primary color tint */
    border-color: var(--color-primary-light);
}

.category-img-wrapper {
    position: relative;
    padding-top: 75%;
    /* 4:3 aspect ratio */
    overflow: hidden;
    background-color: #fff;
}

.category-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img-wrapper img {
    transform: scale(1.05);
}

.category-info {
    padding: 20px 15px;
}

.category-title {
    font-size: 1.2rem;
    margin: 0;
    color: var(--color-text);
    font-weight: 700;
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .featured-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .featured-title {
        font-size: 2rem;
    }
}