/* Reset and global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    --primary: #b08fb4; /* pastel purple */
    --secondary: #f7f2f7; /* very light purple/pink */
    --accent: #d6a4e5; /* accent color */
    --background: #ffffff;
    --text: #333333;
    --border-radius: 8px;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
}
a { color: var(--primary); }
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}
.nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}
.nav-links a:hover {
    color: var(--primary);
}
.mobile-menu-icon {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}
.mobile-nav {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.mobile-nav a {
    padding: 1rem 2rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--text);
}
.mobile-nav a:hover { background-color: var(--secondary); }
.hero {
    position: relative;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    color: var(--primary);
    padding: 6rem 2rem;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.search-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}
.search-bar select,
.search-bar input[type="text"] {
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    background-color: #fff;
    min-width: 160px;
}
.search-bar button {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    background-color: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s;
}
.search-bar button:hover {
    background-color: var(--accent);
}
.section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
}
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}
.category-card {
    text-align: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 1.2rem 1rem;
    transition: box-shadow 0.3s ease;
}
.category-card:hover {
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
.category-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.category-card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text);
}
.consult-section {
    background-color: var(--secondary);
    border-radius: var(--border-radius);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.consult-section .image {
    flex: 1 1 200px;
    text-align: center;
}
.consult-section .image img {
    width: 160px;
    height: auto;
    border-radius: 50%;
}
.consult-section .text {
    flex: 2;
}
.consult-section .text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.consult-section .text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text);
}
.consult-section .text button {
    background-color: var(--primary);
    color: #fff;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s;
}
.consult-section .text button:hover {
    background-color: var(--accent);
}
.coupon-section {
    background-color: var(--secondary);
    border-radius: var(--border-radius);
}
.coupon-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.coupon-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1 1 260px;
}
.coupon-icon {
    color: var(--primary);
    flex-shrink: 0;
}
.coupon-card h4 {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary);
}
.coupon-card p {
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: #666;
}
.recommended-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.item-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.item-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.item-info {
    padding: 1rem;
}
.item-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary);
}
.item-info span {
    font-size: 0.9rem;
    color: #666;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.blog-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.blog-info {
    padding: 1rem;
}
.blog-info h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary);
}
.blog-info p {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: #666;
}
footer {
    background-color: var(--primary);
    color: #fff;
    padding: 3rem 2rem;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-content div {
    flex: 1 1 200px;
}
footer h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}
footer a:hover {
    text-decoration: underline;
}
footer p {
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .mobile-nav {
        display: flex;
    }
}
