/* ========================================
   Store Page - New Design
   ======================================== */

/* ========================================
   Hero Carousel Slider
   ======================================== */
.hero-carousel-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    margin-top: 70px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
}

.swiper-pagination-bullet {
    background: white !important;
}

.hero-carousel-title {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.hero-carousel-title h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-carousel-title p {
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.9;
}

/* ========================================
   Store Introduction Section
   ======================================== */
.store-introduction-section {
    padding: 80px 0;
    background: white;
}

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

.intro-text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--text-dark);
}

.intro-text p {
    margin-bottom: 1.5em;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.image-caption {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* ========================================
   Store Interior Section
   ======================================== */
.store-interior-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.interior-grid {
    display: grid;
    gap: 40px;
}

.interior-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.interior-item:nth-child(even) {
    grid-template-columns: 1fr 400px;
}

.interior-item:nth-child(even) .interior-image {
    order: 2;
}

.interior-item:nth-child(even) .interior-description {
    order: 1;
}

.interior-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.interior-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ========================================
   Reservation Banner
   ======================================== */
.reservation-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.reservation-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.reservation-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.reservation-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.reservation-content p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.reservation-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: white;
    color: var(--primary-color);
    padding: 20px 48px;
    border-radius: 60px;
    font-size: 1.375rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
}

.reservation-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.reservation-button svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

/* ========================================
   Store Info Table Section
   ======================================== */
.store-info-table-section {
    padding: 80px 0;
    background: white;
}

.info-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.store-info-table {
    width: 100%;
    border-collapse: collapse;
}

.store-info-table th,
.store-info-table td {
    padding: 24px 32px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.store-info-table th {
    width: 180px;
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.store-info-table td {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.store-info-table tr:last-child th,
.store-info-table tr:last-child td {
    border-bottom: none;
}

.google-map {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.google-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.sns-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.sns-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 30px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-normal);
}

.sns-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.sns-links svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Section Title
   ======================================== */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
    .hero-carousel-section {
        height: 60vh;
        min-height: 400px;
    }

    .hero-carousel-title h1 {
        font-size: 2rem;
    }

    .hero-carousel-title p {
        font-size: 0.95rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .interior-item {
        grid-template-columns: 1fr !important;
        padding: 20px;
    }

    .interior-item:nth-child(even) .interior-image,
    .interior-item:nth-child(even) .interior-description {
        order: 0;
    }

    .store-info-table th,
    .store-info-table td {
        padding: 16px 20px;
    }

    .store-info-table th {
        width: 120px;
        font-size: 0.9375rem;
    }

    .store-info-table td {
        font-size: 0.9375rem;
    }
}

@media (max-width: 640px) {
    .hero-carousel-section {
        margin-top: 60px;
        height: 50vh;
    }

    .hero-carousel-title {
        bottom: 40px;
    }

    .hero-carousel-title h1 {
        font-size: 1.75rem;
    }

    .hero-carousel-title p {
        font-size: 0.875rem;
    }

    .store-introduction-section,
    .store-interior-section,
    .store-info-table-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }

    .reservation-banner {
        padding: 40px 0;
    }

    .reservation-content h3 {
        font-size: 1.5rem;
    }

    .reservation-button {
        padding: 16px 32px;
        font-size: 1.125rem;
    }

    .reservation-button svg {
        width: 24px;
        height: 24px;
    }

    .info-table-wrapper {
        border-radius: 0;
    }

    .store-info-table th,
    .store-info-table td {
        display: block;
        width: 100%;
        padding: 12px 20px;
    }

    .store-info-table th {
        background: var(--primary-color);
        color: white;
        font-size: 0.875rem;
        border-bottom: none;
    }

    .store-info-table td {
        background: white;
        padding: 16px 20px;
        border-bottom: 2px solid #f5f5f5;
    }

    .store-info-table tr {
        display: block;
        margin-bottom: 0;
    }

    .sns-links {
        flex-direction: column;
    }

    .sns-links a {
        width: 100%;
        justify-content: center;
    }

    .interior-image img {
        height: 250px;
    }
}
