@charset "UTF-8";

/* =========================================
   Reset & Classic Base
========================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --clr-bg: #FFFFFF;
    --clr-text: #333333;
    --clr-primary: #85C7B3; /* Refreshing mint green, used sparingly */
    --clr-border: #EEEEEE;
    --clr-gray: #F9F9F9;
    
    --font-serif: 'Shippori Mincho', serif;
    --font-sans: 'Noto Serif JP', serif;
    
    --content-width: 1000px;
}

html {
    font-size: 62.5%;
}

body {
    background-color: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--font-sans);
    font-size: 1.8rem; /* Increased from 1.6rem */
    line-height: 2.0;
    letter-spacing: 0.05em;
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section {
    padding: 80px 0;
}

.section--gray {
    background-color: var(--clr-gray);
}

/* =========================================
   Typography & Titles
========================================= */
.section__title {
    font-family: var(--font-serif);
    font-size: 3.2rem; /* Increased from 2.8rem */
    text-align: center;
    margin: 0 0 50px;
    font-weight: 500;
    color: var(--clr-text);
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-block;
    padding: 18px 50px; /* Increased padding */
    font-size: 1.8rem; /* Increased font */
    text-align: center;
    border: 1px solid var(--clr-text);
    background-color: transparent;
    color: var(--clr-text);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--clr-text);
    color: var(--clr-bg);
}

.btn-wrap {
    text-align: center;
    margin-top: 40px;
}

/* =========================================
   Header (Classic & Clean)
========================================= */
.header {
    border-top: 5px solid var(--clr-primary);
    background-color: var(--clr-bg);
    border-bottom: 1px solid var(--clr-border);
}

.header__inner {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 30px 20px 20px;
    text-align: center;
}

.header__logo {
    margin: 0 0 20px;
}

.header__logo a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.logo-company {
    font-size: 2.0rem;
    font-weight: normal;
    color: #555;
    letter-spacing: 0.05em;
}

.logo-jp {
    font-size: clamp(2.6rem, 5vw, 4.0rem);
    font-weight: bold;
    color: var(--clr-text);
    letter-spacing: 0.1em;
}

.header__nav {
    border-top: 1px solid var(--clr-border);
    padding-top: 20px;
}

.header__nav-list {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.header__nav-list a {
    font-size: 1.8rem; /* Increased from 1.5rem */
    font-weight: bold;
    letter-spacing: 0.1em;
}

.hamburger {
    display: none;
}

/* =========================================
   Hero (Classic Image Banner)
========================================= */
.hero {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero {
    background-color: var(--clr-gray);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--clr-border);
}

.page-hero__title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin: 0;
}

/* =========================================
   Concept (About)
========================================= */
.concept__text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* =========================================
   Products (Standard Grid & Carousel)
========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.products-carousel {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;  /* Firefox */
    scrollbar-color: var(--clr-primary) #f1f1f1;
    
    /* Fade out the right edge to indicate more content */
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.products-carousel::-webkit-scrollbar {
    display: block;
    height: 8px;
}

.products-carousel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.products-carousel::-webkit-scrollbar-thumb {
    background: var(--clr-primary);
    border-radius: 4px;
}

.products-carousel::-webkit-scrollbar-thumb:hover {
    background: #6bb09c;
}

.scroll-hint {
    text-align: right;
    font-size: 1.4rem;
    color: #888;
    margin-bottom: 10px;
    animation: bounceRight 2s infinite;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.products-carousel .product-item {
    flex: 0 0 380px; /* Adjusted to 380px to show a clear 'peek' of the next item */
    scroll-snap-align: start;
}

.product-item {
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
}

.product-item__image {
    width: 100%;
    height: 350px; /* Increased from 250px */
    overflow: hidden;
    border-bottom: 1px solid var(--clr-border);
}

.product-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-item:hover .product-item__image img {
    transform: scale(1.15); /* Pronounced hover effect */
}

.product-item__content {
    padding: 20px;
    text-align: center;
}

.product-item__title {
    font-size: 2.4rem; /* Increased from 2rem */
    font-family: var(--font-serif);
    margin: 0 0 15px;
}

.product-item__desc {
    font-size: 1.6rem; /* Increased from 1.4rem */
    text-align: left;
    color: #555;
    margin: 0;
}

/* =========================================
   Shop & Cafe (Standard Layout)
========================================= */
.shop-info {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.shop-info__image {
    flex: 1;
}

.shop-info__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop-info__text h3 {
    font-size: 2.4rem;
    font-family: var(--font-serif);
    margin: 0 0 20px;
}

/* =========================================
   Access (Table)
========================================= */
.access-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.access-table th, .access-table td {
    padding: 20px;
    border-bottom: 1px solid var(--clr-border);
    text-align: left;
}

.access-table th {
    width: 25%;
    font-weight: normal;
    color: #666;
}

.access-map {
    width: 100%;
    height: 400px;
    background: #eee;
}

/* =========================================
   Footer
========================================= */
.footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 60px 0 30px;
    text-align: center;
}

.footer__brand {
    margin-bottom: 30px;
}

.footer__brand .logo-company {
    display: block;
    color: #FFFFFF;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.footer__brand .logo-jp {
    color: #AAAAAA;
    font-size: 1.4rem;
}

.footer__copyright {
    font-size: 1.2rem;
    color: #888888;
    border-top: 1px solid #444444;
    padding-top: 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Media Queries
========================================= */
@media screen and (max-width: 768px) {
    .header__nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-info {
        flex-direction: column;
    }
    
    .access-table th, .access-table td {
        display: block;
        width: 100%;
    }
    
    .access-table th {
        border-bottom: none;
        padding-bottom: 5px;
        font-weight: bold;
    }
}
