/* =========================================================================
   メインビジュアル (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%;
    min-height: 600px;
    background-size: cover;
    background-position: center right;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(251, 247, 240, 0.95) 0%, rgba(251, 247, 240, 0.75) 35%, rgba(251, 247, 240, 0.1) 65%, transparent 85%);
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 22px;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.hero-subtitle {
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin: 0 0 28px;
    padding-bottom: 8px;
    letter-spacing: 0.04em;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary) 0%, var(--color-primary-light) 100%);
}

.hero-body {
    margin: 0 0 36px;
    color: var(--color-text);
    font-size: 0.98rem;
    line-height: 2;
}

.hero-body p {
    margin: 0;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-btn:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    transform: translateY(-1px);
    opacity: 1;
}

.hero-btn .fa-paw {
    font-size: 1.1rem;
}

.hero-btn .fa-arrow-right {
    font-size: 0.9rem;
}

/* =========================================================================
   看板商品 (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-catch {
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    line-height: 1.5;
    margin: 0 0 18px;
    padding: 8px 0 8px 18px;
    letter-spacing: 0.04em;
    border-left: 4px solid var(--color-primary);
    background: linear-gradient(90deg, rgba(200, 150, 62, 0.08) 0%, transparent 100%);
}

.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: 992px) {
    .hero-slide {
        min-height: 500px;
        padding: 40px 0;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 450px;
        padding: 30px 0;
        background-position: center right -100px;
    }

    .hero-slide::after {
        background: linear-gradient(to right, rgba(251, 247, 240, 0.95) 0%, rgba(251, 247, 240, 0.85) 60%, rgba(251, 247, 240, 0.5) 100%);
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-body {
        font-size: 0.88rem;
        line-height: 1.9;
    }

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