/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans CJK JP', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FAFAFA;
}

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

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    flex-shrink: 0;
}

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

.brand-name {
    font-size: 32px;
    font-weight: 700;
    color: #8B4513;
    margin: 0;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 14px;
    color: #D2691E;
    margin: 0;
    font-weight: 400;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F4A460 0%, #D2691E 100%);
    color: white;
    padding: 80px 0;
}

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

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* Section Titles */
.section-title {
    font-size: 36px;
    color: #8B4513;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

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

.about-text p {
    font-size: 18px;
    color: #2F4F4F;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

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

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

.product-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 22px;
    color: #8B4513;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-card p {
    color: #2F4F4F;
    margin-bottom: 20px;
    font-size: 16px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 20px;
}

.product-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: #A0522D;
}

.btn-secondary {
    background-color: #D2691E;
    color: white;
}

.btn-secondary:hover {
    background-color: #E6864B;
}

/* Regional Kilns Section */
.regional-kilns {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

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

.kiln-card {
    text-align: center;
}

.kiln-image {
    width: 100%;
    height: 180px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

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

.kiln-card h3 {
    font-size: 20px;
    color: #8B4513;
    margin-bottom: 10px;
    font-weight: 600;
}

.kiln-card p {
    color: #2F4F4F;
    font-size: 16px;
}

/* Tea Ceremony Section */
.tea-ceremony {
    padding: 80px 0;
    background-color: #F8F8F8;
    text-align: center;
}

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

.tea-text p {
    font-size: 18px;
    color: #2F4F4F;
    line-height: 1.8;
}

.tea-image {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.tea-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

/* Handmade Process Section */
.handmade-process {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

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

.step {
    text-align: center;
}

.step-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.step h3 {
    font-size: 20px;
    color: #8B4513;
    margin-bottom: 10px;
    font-weight: 600;
}

.step p {
    color: #2F4F4F;
    font-size: 16px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #F8F8F8;
    text-align: center;
}

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

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature h3 {
    font-size: 20px;
    color: #8B4513;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    color: #2F4F4F;
    font-size: 16px;
    line-height: 1.6;
}

/* Contacts Section */
.contacts {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.contacts-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-icon {
    color: #8B4513;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h3 {
    font-size: 18px;
    color: #8B4513;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    color: #2F4F4F;
    font-size: 16px;
    line-height: 1.5;
}

.contact-item a {
    color: #D2691E;
    text-decoration: none;
}

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

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #F4A460;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #D2691E;
    background-color: rgba(244, 164, 96, 0.1);
}

.footer-bottom {
    border-top: 1px solid #4A6B6B;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #B0C4C4;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(47, 79, 79, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
}

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

.cookie-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #F4A460;
}

.cookie-text p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-link {
    color: #D2691E;
    text-decoration: underline;
    font-size: 14px;
    margin-left: 10px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #D2691E;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #E6864B;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #F4A460;
    border: 1px solid #F4A460;
}

.cookie-btn.reject:hover {
    background-color: #F4A460;
    color: #2F4F4F;
}

.cookie-btn.customize {
    background-color: #8B4513;
    color: white;
}

.cookie-btn.customize:hover {
    background-color: #A0522D;
}

.cookie-customization {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #4A6B6B;
}

.cookie-customization h4 {
    color: #F4A460;
    margin-bottom: 15px;
    font-size: 16px;
}

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

.cookie-option {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 6px;
}

.cookie-option label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #F4A460;
}

.cookie-option p {
    font-size: 12px;
    color: #B0C4C4;
    margin: 0;
}

.cookie-option input[type="checkbox"] {
    margin-right: 8px;
}

.cookie-custom-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-content,
    .tea-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-options {
        grid-template-columns: 1fr;
    }
}