/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Yu Gothic', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FAFAFA;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E5E5E5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    filter: drop-shadow(0 2px 4px rgba(45, 80, 22, 0.1));
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #2D5016;
    margin: 0;
    line-height: 1.2;
}

.brand-year {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-top: -2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(45, 80, 22, 0.02) 100%);
    padding: 80px 0;
    position: relative;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(45, 80, 22, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, rgba(45, 80, 22, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2D5016;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
}

/* Image Placeholders */
.image-placeholder {
    background: linear-gradient(135deg, #E5E5E5 0%, #D1D1D1 100%);
    border: 2px solid #C5C5C5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    width: 100%;
    height: 300px;
    text-align: center;
}

/* Category Images */
.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

/* Product Images */
.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
}

/* Maker Images */
.maker-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Personalize Image */
.personalize-img {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Sections */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2D5016;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title:after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #2D5016;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

/* Featured Trends */
.featured-trends {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.trend-item {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(45, 80, 22, 0.01) 100%);
    border-radius: 12px;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.trend-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trend-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 16px;
}

.trend-item p {
    color: #666;
    line-height: 1.6;
}

/* Categories */
.categories {
    padding: 80px 0;
    background-color: #FAFAFA;
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.category-card .image-placeholder {
    height: 200px;
    border-radius: 0;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D5016;
    padding: 20px;
}

/* Products */
.products {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 80, 22, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image .image-placeholder {
    height: 220px;
    border-radius: 0;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 12px;
}

.product-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-button {
    display: inline-block;
    background-color: #2D5016;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: #1F3A0F;
}

/* Budget Guide */
.budget-guide {
    padding: 80px 0;
    background-color: #FAFAFA;
    text-align: center;
}

.budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.budget-item {
    text-align: center;
    padding: 40px 20px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 2px solid rgba(45, 80, 22, 0.1);
}

.budget-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 16px;
}

.budget-item p {
    color: #666;
    line-height: 1.6;
}

/* Local Makers */
.local-makers {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.makers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.maker-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(45, 80, 22, 0.01) 100%);
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.maker-card .image-placeholder {
    height: 200px;
    margin-bottom: 20px;
}

.maker-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 12px;
}

.maker-card p {
    color: #666;
    line-height: 1.6;
}

/* Personalization */
.personalization {
    padding: 80px 0;
    background-color: #FAFAFA;
    text-align: center;
}

.personalize-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.personalize-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 20px;
}

.personalize-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #2D5016;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1F3A0F;
}

/* Seasonal */
.seasonal {
    padding: 80px 0;
    background-color: #FFFFFF;
    text-align: center;
}

.seasonal-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.seasonal-item {
    padding: 40px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(45, 80, 22, 0.01) 100%);
    border-radius: 12px;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.seasonal-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 16px;
}

.seasonal-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #FAFAFA;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2D5016;
}

.testimonial-card p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card cite {
    color: #666;
    font-weight: 500;
    font-style: normal;
}

/* Contact */
.contact {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(45, 80, 22, 0.01) 100%);
    border-radius: 12px;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 12px;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item a {
    color: #2D5016;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2D5016;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-left {
    flex: 1;
}

.footer-right {
    display: flex;
    gap: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand-name {
    font-size: 18px;
    font-weight: 600;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-nav-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .personalize-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        align-items: center;
    }

    .footer-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }

    .footer-nav-section {
        text-align: center;
    }

    .trends-grid,
    .categories-grid,
    .products-grid,
    .budget-grid,
    .makers-grid,
    .testimonials-grid {
    .footer-right {
        flex-direction: column;
        gap: 20px;

    .seasonal-content,
    .contact-info {
        grid-template-columns: 1fr;
    }
}