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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #2D3748;
    background-color: #FFFFFF;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

a {
    color: #2D3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #D69E2E;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background-color: #D69E2E;
    color: white;
}

.btn-primary:hover {
    background-color: #B7791F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #2D3748;
    border: 2px solid #2D3748;
}

.btn-secondary:hover {
    background-color: #2D3748;
    color: white;
}

/* Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #38A169, #2D3748);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 8px;
}

/* Header */
.header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 1rem 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(45, 55, 72, 0.1);
}

.brand-name h1 {
    font-size: 1.8rem;
    color: #2D3748;
    margin: 0;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #718096;
    margin: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 100%);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.1);
}

/* Section Headers */
.centered-section {
    text-align: center;
}

.centered-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.centered-section .section-header,
.centered-section .hero-content,
.centered-section .about-grid,
.centered-section .collections-grid,
.centered-section .products-grid,
.centered-section .benefits-grid,
.centered-section .corporate-features,
.centered-section .testimonials-grid {
    width: 100%;
    max-width: 1200px;
}

.centered-section .seasonal-content {
    width: 100%;
    max-width: 1200px;
    text-align: left;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: #2D3748;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #718096;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: #F7FAFC;
}

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

.about-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(45, 55, 72, 0.08);
    transition: transform 0.3s ease;
}

.about-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.15);
}

.about-icon {
    margin: 0 auto 1rem;
}

/* Featured Collections */
.featured-collections {
    padding: 4rem 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.collection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(45, 55, 72, 0.08);
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.15);
}

.collection-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.collection-content {
    padding: 1.5rem;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background-color: #F7FAFC;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(45, 55, 72, 0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 55, 72, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.product-content {
    padding: 1.5rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: #D69E2E;
    margin: 1rem 0;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem 1rem;
}

.benefit-item h3 {
    color: #2D3748;
    margin-bottom: 1rem;
}

/* Seasonal Section */
.seasonal {
    padding: 4rem 0;
    background-color: #F7FAFC;
}

.seasonal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.seasonal-features {
    list-style: none;
    padding: 0;
}

.seasonal-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.seasonal-features li:before {
    content: "•";
    color: #38A169;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

.seasonal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.1);
}

/* Corporate Section */
.corporate {
    padding: 4rem 0;
}

.corporate-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.corporate-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #D69E2E;
    box-shadow: 0 2px 12px rgba(45, 55, 72, 0.08);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: #F7FAFC;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(45, 55, 72, 0.08);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4A5568;
}

.testimonial-author {
    font-weight: 500;
    color: #2D3748;
}

/* Contact Section */
.contacts {
    padding: 4rem 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: #F7FAFC;
    border-radius: 12px;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #D69E2E;
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: #2D3748;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    grid-column: 1;
}

.footer-brand .logo-section .brand-name h3 {
    color: white;
    margin-bottom: 0.2rem;
}

.footer-brand .logo-section .brand-tagline {
    color: #CBD5E0;
}

.footer-links {
    grid-column: 2 / 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #D69E2E;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #CBD5E0;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #4A5568;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #CBD5E0;
    margin: 0;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2D3748;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 -2px 12px rgba(45, 55, 72, 0.3);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    color: #D69E2E;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: #D69E2E;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Cookie Customization */
.cookie-customization {
    background: #4A5568;
    border-top: 1px solid #718096;
    padding: 1.5rem 0;
}

.cookie-custom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-custom-content h4 {
    color: #D69E2E;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.cookie-option label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-option input[type="checkbox"] {
    margin-right: 0.5rem;
    align-self: flex-start;
}

.cookie-label {
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
}

.cookie-option small {
    color: #CBD5E0;
    font-size: 0.8rem;
    margin-left: 1.5rem;
}

.cookie-custom-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-custom-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-options {
        grid-template-columns: 1fr;
    }
    
    .cookie-custom-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 15px;
    }

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

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

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .seasonal-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-column: 1;
        grid-template-columns: 1fr;
    }

    .collections-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .benefits-grid,
    .corporate-features,
    .testimonials-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .logo-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .logo-section .logo {
        width: 40px;
        height: 40px;
    }

    .brand-name h1 {
        font-size: 1.5rem;
    }
}