:root {
    --primary-color: #8E2323;
    /* Waseda Maroon */
    --accent-color: #E6B422;
    /* Gold */
    --text-color: #333333;
    --bg-color: #FFFFFF;
    --light-gray: #F4F4F4;
    --font-heading: 'Shippori Mincho', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

ul {
    list-style: none;
}

/* Header */
#global-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color var(--transition-speed), padding var(--transition-speed);
}

#global-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    /* Adjust based on header size */
    width: auto;
}

#global-header.scrolled .logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
}

#global-header.scrolled .nav-links a {
    color: var(--text-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navigation Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1100;
}

.dropdown-menu li {
    width: 100%;
    margin: 0 !important;
}

.dropdown-menu a {
    color: var(--text-color) !important;
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem !important;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 700;
}

.dropdown-menu a::after {
    display: none; /* No underline effect for dropdown links */
}

.dropdown-menu a:hover {
    background-color: var(--light-gray);
    color: var(--primary-color) !important;
}

/* Show dropdown on hover (for non-touch devices) */
.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.menu-toggle {
    display: none;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    background: radial-gradient(circle at center, #B7282E, #5e1111);
}

.hero-content {
    z-index: 2;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.5rem;
}

.main-title .char {
    display: inline-block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    animation-delay: calc(var(--i) * 0.1s);
}

.theme-wrapper {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.theme-main {
    font-size: 3.5rem;
    /* Increased size */
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.theme-sub {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.about-theme-main {
    display: block;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-theme-sub {
    display: block;
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: normal;
}

.hero-date {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.5s forwards;
}

.scrolldown {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s infinite;
}

.scrolldown span {
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Sections */
section {
    padding: 6rem 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.ja-title {
    display: block;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

/* Countdown */
#countdown-section {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 4rem 5%;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-block span:first-child {
    font-size: 3rem;
    font-weight: 900;
}

.time-block .label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color var(--transition-speed);
}

.btn-primary:hover {
    background-color: #6a1a1a;
}

.about-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.about-buttons .btn-primary,
.about-buttons .btn-secondary {
    margin-top: 0;
}

.class-tag { background-color: #2c3e50; }
.gym-tag { background-color: #e67e22; }
.voluntary-tag { background-color: #27ae60; }
.souvenir-tag { background-color: #8e44ad; }

.about-img-real {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.img-box {
    width: 100%;
    height: 300px;
    background-color: #ddd;
    /* Image placeholder */
    display: none;
    /* Hide placeholder when real image is used */
    justify-content: center;
    align-items: center;
    color: #888;
}

/* Kasogyoretu */
#kasogyoretu {
    background-color: var(--light-gray);
}

.news-grid {
    display: grid;
    gap: 1.5rem;
}

.news-placeholder {
    text-align: center;
    color: #999;
    padding: 3rem 1rem;
    font-size: 2rem;
    letter-spacing: 0.25em;
    font-weight: bold;
}

.news-card {
    background: #fff;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.news-card .date {
    font-weight: bold;
    color: #888;
}

.news-card .category {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.2rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 4px;
}

.news-title {
    font-weight: 500;
}

/* Access */
#access {
    background-color: var(--light-gray);
}

.access-info {
    text-align: center;
}

.venue-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.access-buttons {
    margin: 2rem 0;
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: bold;
    transition: all var(--transition-speed);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #ccc;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.school-link-area {
    display: flex;
    align-items: center;
}

.school-link-button {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 2px;
    transition: all var(--transition-speed);
}

.school-link-button:hover {
    color: var(--primary-color);
    border-bottom-color: transparent;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    color: #666;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page Header (for subpages) */
.page-header {
    padding-top: 120px;
    padding-bottom: 2rem;
    background-color: var(--light-gray);
    text-align: center;
}

/* Contact Form */
.contact-form-section {
    padding-top: 2rem;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.required {
    background-color: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn-primary {
    margin-top: 0;
    width: 100%;
    max-width: 300px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 2000;
        width: 30px;
        height: 25px;
        position: relative;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--primary-color);
        /* Correct color for white bg */
        margin-bottom: 5px;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    #global-header:not(.scrolled) .menu-toggle span {
        background-color: #fff;
        /* White on hero */
    }

    #global-header.scrolled .menu-toggle span {
        background-color: var(--primary-color);
        /* Maroon on scrolled */
    }

    /* Hamburger Animation */
    .menu-toggle.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
        background-color: var(--primary-color);
    }

    .menu-toggle.toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
        background-color: var(--primary-color);
    }

    .nav-links {
        display: flex;
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        width: 100%;
        /* Full width */
        padding-top: 100px;
        /* Space for X button */
        transition: right 0.5s ease-in-out;
        z-index: 1500;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links a {
        color: var(--text-color);
        font-size: 1.5rem;
        margin: 1.2rem 0 0.5rem 0; /* Adjusted for dropdown layout */
    }

    /* Mobile Dropdown styles */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        background: transparent;
        margin-top: 0rem;
        margin-bottom: 0.5rem;
        min-width: auto;
        transition: none;
    }

    .dropdown-menu li {
        width: auto;
    }

    .dropdown-menu a {
        font-size: 1.1rem !important;
        padding: 0.4rem 0 !important;
        margin: 0.3rem 0 !important;
        color: #666 !important;
        font-weight: 500;
    }

    .dropdown-menu a:hover {
        background-color: transparent;
        color: var(--primary-color) !important;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .news-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Coming Soon / Under Construction Styling */
.coming-soon-area {
    text-align: center;
    padding: 5rem 1rem;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.coming-soon-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.coming-soon-text {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Kitchen Cars Layout */
.food-truck-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.food-truck-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.food-truck-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(142, 35, 35, 0.15); /* Primary color shadow */
}

.food-truck-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.food-truck-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.food-truck-card:hover .food-truck-img {
    transform: scale(1.05);
}

.food-truck-badges-absolute {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 10;
}

.location-badge {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.special-badge {
    background-color: var(--accent-color);
    color: #333333;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.paypay-badge {
    background-color: #00A4E4; /* PayPay Blue */
    color: #ffffff;
}

.food-truck-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.food-truck-number {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.3rem;
    display: block;
}

.food-truck-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.3;
}

.menu-list-wrapper {
    margin-bottom: 1.2rem;
}

.menu-list-title {
    font-size: 0.8rem;
    color: #888888;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.menu-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.menu-badge {
    background-color: var(--light-gray);
    color: var(--text-color);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.food-truck-desc {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: auto;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.intro-lead-box {
    background-color: var(--light-gray);
    border-left: 5px solid var(--primary-color);
    padding: 2rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.intro-lead-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.8;
}

.intro-location-box {
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .food-truck-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .food-truck-card:hover {
        transform: translateY(-4px);
    }
    
    .food-truck-img-wrapper {
        height: 200px;
    }
    
    .food-truck-info {
        padding: 1.5rem;
    }
    
    .intro-lead-box {
        padding: 1.5rem;
    }
    
    .intro-lead-text {
        font-size: 1rem;
    }
}

/* Hero Time Display */
.hero-time {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.8s forwards;
    line-height: 1.6;
}

.hero-time-note {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Tab Navigation */
.tabs-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tab-button {
    background-color: var(--light-gray);
    color: var(--text-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background-color: #e5e5e5;
}

.tab-button.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(142, 35, 35, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Placeholder card for classes still editing */
.placeholder-card {
    border: 2px dashed rgba(0, 0, 0, 0.1) !important;
    background: transparent !important;
    box-shadow: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    text-align: center;
    padding: 2rem;
}

.coming-soon-inner {
    color: #888;
}

.coming-soon-icon-small {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.placeholder-card h4 {
    font-size: 1rem;
    font-weight: 700;
}

/* Souvenir Sales Layout */
.souvenir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.souvenir-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.souvenir-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(142, 35, 35, 0.15);
}

.souvenir-img-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #f8f8f8;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.souvenir-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Contain the product photo beautifully */
    transition: transform 0.5s ease;
    padding: 1rem; /* Space around product image */
}

.souvenir-card:hover .souvenir-img {
    transform: scale(1.03);
}

.souvenir-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.souvenir-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.souvenir-price {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.souvenir-price .tax-in {
    font-size: 0.8rem;
    color: #888888;
    font-weight: normal;
}

.souvenir-desc {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    background-color: var(--light-gray);
    padding: 1rem 1.2rem;
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.souvenir-meta-list {
    margin-top: auto;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.souvenir-meta-item {
    display: flex;
    font-size: 0.9rem;
    line-height: 1.5;
}

.souvenir-meta-label {
    width: 90px;
    font-weight: 700;
    color: #888888;
    flex-shrink: 0;
}

.souvenir-meta-value {
    color: var(--text-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .souvenir-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .souvenir-img-wrapper {
        height: 220px;
    }
    
    .souvenir-info {
        padding: 1.5rem;
    }
}