/*
Theme Name: 東栄貿易株式会社
Theme URI: https://www.toei-trading.com
Author: TOEI TRADING
Author URI: https://www.toei-trading.com
Description: 東栄貿易株式会社のオフィシャルWordPressテーマ。輸入洋酒専門商社として、世界の銘酒を日本へお届けします。
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: toei-trading
Tags: business, corporate, luxury, e-commerce
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;600&family=Montserrat:wght@200;300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root {
    --primary: #012063;
    --secondary: #0340a8;
    --gold: #d4af37;
    --dark: #0a0a0a;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fcfdfe;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.15s ease;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    animation: float 3s infinite ease-in-out;
    opacity: 0.3;
}

/* Header */
header#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 80px;
    background: rgba(1, 32, 99, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    padding: 15px 80px;
    background: rgba(1, 32, 99, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

nav {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    height: 40px;
    position: relative;
    z-index: 1002;
}

.logo img {
    height: 100%;
    filter: brightness(1);
    transition: none;
}

.logo:hover img {
    filter: brightness(1.1);
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: #8B2332;
}

.nav-links {
    display: flex;
    gap: 60px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.4s;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--gold);
    letter-spacing: 4px;
}

.nav-links a:hover::before {
    width: 100%;
}
.nav-links a:hover::after {
    width: 10px;
}

.nav-links li,
.nav-links .menu-item {
    position: relative;
}

.nav-links .submenu,
.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(1, 32, 99, 0.98);
    min-width: 200px;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-top: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    list-style: none;
}

.nav-links li:hover .submenu,
.nav-links li:hover .sub-menu,
.nav-links .menu-item:hover .submenu,
.nav-links .menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .submenu a,
.nav-links .sub-menu a {
    display: block;
    padding: 12px 30px;
    font-size: 13px;
    letter-spacing: 2px;
}

.nav-links .submenu a::before,
.nav-links .submenu a::after,
.nav-links .sub-menu a::before,
.nav-links .sub-menu a::after {
    display: none;
}
.nav-links .submenu a:hover,
.nav-links .sub-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    padding-left: 40px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* WordPress Menu Classes Support */
.nav-links #menu-primary,
.nav-links .menu {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links .menu-item-has-children > .sub-menu {
    display: block;
}

.nav-links .current-menu-item > a,
.nav-links .current_page_item > a {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(1, 32, 99, 0.5)),
        url('https://images.unsplash.com/photo-1611575189074-9dfbbceb258a?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(1, 32, 99, 0.3) 0%, transparent 50%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    opacity: 0.3;
    animation: shimmer 20s linear infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1400px;
    padding: 0 60px;
}

.hero-badge {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    background: rgba(212, 175, 55, 0.05);
    animation: fadeUp 1s ease-out, pulse 3s infinite;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 90px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 20px;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeUp 1s 0.3s ease-out backwards, shimmer 8s ease-in-out infinite;
    text-shadow: 0 0 80px rgba(212, 175, 55, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 8px;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeUp 1s 0.6s ease-out backwards;
    text-transform: uppercase;
}

.hero-divider {
    width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 50px auto;
    animation: fadeUp 1s 0.8s ease-out backwards;
}

.cta-buttons {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 70px;
    animation: fadeUp 1s 1s ease-out backwards;
}

.hero-news {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    z-index: 3;
}


.hero-news-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 30px;
    transition: all 0.3s;
    animation: fadeUp 1s 1.2s ease-out backwards;
}

.hero-news-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: var(--gold);
}

.hero-news-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 400;
    flex-shrink: 0;
}

.hero-news-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    font-weight: 300;
    flex-shrink: 0;
}

.hero-news-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
    flex: 1;
}

.hero-news-title:hover {
    color: #fff;
}

.btn {
    padding: 22px 55px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.8s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #e8c55a, #d4af37);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.6);
    letter-spacing: 6px;
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
    letter-spacing: 6px;
}

.btn-simple {
    padding: 22px 55px;
    font-size: 14px;
    letter-spacing: 4px;
    background: rgba(1, 32, 99, 0.03);
    color: var(--primary);
    border: 2px solid rgba(1, 32, 99, 0.15);
    font-weight: 400;
    box-shadow: 0 2px 8px rgba(1, 32, 99, 0.08);
    cursor: pointer;
    display: inline-block;
}

.btn-simple:hover {
    background: rgba(1, 32, 99, 0.08);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 32, 99, 0.2);
    letter-spacing: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    writing-mode: vertical-rl;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 20px auto 0;
}

/* Section Base */

#company {
    background: #012063 !important;
    padding: 80px 80px !important;
}

#company .section-label {
    color: var(--gold) !important;
}

#company .section-title {
    color: #fff !important;
}

#company .section-title::after {
    background: linear-gradient(90deg, transparent, var(--gold), transparent) !important;
}

#company .about-card h3 {
    color: #fff !important;
}

#company .about-card p {
    color: rgba(255, 255, 255, 0.8) !important;
}

#company .about-card::before {
    border-color: rgba(212, 175, 55, 0.3) !important;
}
section {
    padding: 120px 80px;
    max-width: 1800px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

#company .section-header {
    margin-bottom: 60px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 300;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 54px;
    font-weight: 300;
    letter-spacing: 15px;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}

.about-card {
    text-align: center;
    padding: 40px 50px 80px;
    position: relative;
}

.about-icon {
    width: 150px;
    height: 150px;
    margin: 0 auto 50px;
    position: relative;
}

.about-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 1px solid rgba(1, 32, 99, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.about-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3)) brightness(1.3);
    transition: all 0.8s;
}

.about-card:hover .about-icon img {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 20px 50px rgba(212, 175, 55, 0.6)) brightness(1.5);
}

.about-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.about-card p {
    color: #666;
    font-size: 15px;
    line-height: 2.2;
    font-weight: 300;
}

/* Products Section */
.products {
    background: #f0f3f7;
}

.new-products {
    background: #f8fafb;
}

.new-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.product-card {
    position: relative;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border: 1px solid rgba(1, 32, 99, 0.15);
}

.product-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
    z-index: 10;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover::before {
    width: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.product-image {
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.product-card:hover .product-image::before {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.3), transparent);
}

/* 新商品セクション用 - 画像全体表示スタイル */
.product-image-contain {
    height: 300px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product-image-contain img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

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

.product-info {
    padding: 35px 30px;
    text-align: center;
    background: #ffffff;
    backdrop-filter: blur(20px);
    min-height: 180px;
}

.product-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-weight: 400;
}

.product-info p {
    color: #666;
    font-size: 14px;
    line-height: 2;
    font-weight: 300;
}

/* Featured Products */
.featured-products {
    background: #eef2f5;
}

.featured-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
    max-width: 1500px;
    margin: 0 auto;
}

.featured-card {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    padding: 40px;
    border: 1px solid rgba(1, 32, 99, 0.2);
    background: #ffffff;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover::before {
    width: 100%;
}

.featured-card:hover {
    transform: translateX(30px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 30px 100px rgba(212, 175, 55, 0.2);
}

.featured-number {
    position: absolute;
    top: -40px;
    left: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 300;
    color: rgba(212, 175, 55, 0.1);
    z-index: 0;
}

.featured-image {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}


.featured-card:hover .featured-image {
    transform: scale(1.1) rotate(3deg);
}


.featured-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.featured-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: 400;
}

.featured-content p {
    color: #666;
    line-height: 2.4;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 300;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s;
    font-weight: 300;
}

.featured-link::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.4s;
}

.featured-link:hover {
    gap: 30px;
    letter-spacing: 5px;
}

.featured-link:hover::after {
    transform: translateX(10px);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(1, 32, 99, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -300px;
    left: -300px;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(1, 32, 99, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite reverse;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(1, 32, 99, 0.2);
    transition: all 0.6s;
}

.stat-item:hover {
    transform: translateY(-20px);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(212, 175, 55, 0.3);
}

.stat-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 90px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.stat-item p {
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

/* News Section */
#news {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 100px;
    margin-bottom: 0;
}

.news-list {
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 50px 60px;
    border: 1px solid rgba(1, 32, 99, 0.15);
    margin-bottom: 30px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.news-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
    transition: width 0.6s;
}

.news-item:hover::before {
    width: 100%;
}

.news-item:hover {
    transform: translateX(30px);
    border-color: rgba(212, 175, 55, 0.5);
}

.news-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold);
    min-width: 180px;
    font-weight: 300;
    letter-spacing: 2px;
}

.news-title {
    font-size: 18px;
    font-weight: 300;
    transition: color 0.4s;
    text-decoration: none;
    color: #333;
}

.news-title:hover {
    color: var(--gold);
}

/* Footer */
footer {
    background: #012063 !important;
    padding: 150px 80px 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

.footer-content {
    max-width: 1800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    margin-bottom: 100px;
}

.footer-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 40px;
    font-weight: 400;
    letter-spacing: 2px;
}

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

.footer-section li {
    margin-bottom: 20px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.4s;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(10px);
}

.footer-bottom {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(120px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 80px;
    }

    .about-grid,
    .products-grid,
    .stats-grid,
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-card {
        flex-direction: column;
        gap: 30px;
    }

    .featured-image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    html {
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero {
        width: 100%;
        box-sizing: border-box;
    }

    section {
        width: 100%;
        box-sizing: border-box;
    }

    footer {
        width: 100%;
        box-sizing: border-box;
    }

    header {
        transition: none !important;
        padding: 20px !important;
        height: 80px;
        box-sizing: border-box;
        width: 100%;
    }

    header.scrolled {
        padding: 20px !important;
        height: 80px;
    }

    nav {
        max-width: 100%;
        width: 100%;
        justify-content: space-between;
    }

    .logo {
        flex-shrink: 0;
    }

    .hamburger {
        display: flex;
        flex-shrink: 0;
    }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(1, 32, 99, 0.98), rgba(1, 32, 99, 0.95));
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0;
        box-shadow: none;
        z-index: 1000;
        justify-content: center;
        align-items: center;
        overflow-y: auto;
        gap: 15px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links > li {
        margin: 5px 0;
        width: 100%;
    }

    .nav-links > li > a {
        font-size: 20px;
        letter-spacing: 1px;
        color: #fff;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 300;
        background: linear-gradient(135deg, #fff 0%, var(--gold) 50%, #fff 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        transition: all 0.5s ease;
        display: inline-block;
        position: relative;
        padding: 5px 0;
    }

    .nav-links > li > a::after {
        display: none;
    }


    .nav-links .submenu {
        display: block !important;
        position: static !important;
        padding: 0 !important;
        margin-top: 12px !important;
        margin-bottom: 8px !important;
        background: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        border-top: none !important;
        border: none !important;
        text-align: center !important;
    }

    .nav-links .submenu li {
        margin: 4px 0;
        list-style: none;
        text-align: center;
    }

    .nav-links .submenu a {
        display: block;
        font-size: 14px;
        padding: 3px 0;
        letter-spacing: 0.5px;
        color: rgba(255, 255, 255, 0.8) !important;
        font-weight: 300;
        text-decoration: none;
        font-family: 'Montserrat', sans-serif !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.8) !important;
        background-clip: unset !important;
        text-align: center !important;
    }

    .nav-links .submenu a:hover {
        color: #d4af37 !important;
        -webkit-text-fill-color: #d4af37 !important;
    }

    .hero-content {
        padding: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-news {
        width: 90%;
        left: 5%;
        transform: none;
    }

    * {
        min-width: 0;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 10px;
    }

    .hero-subtitle {
        letter-spacing: 8px;
        font-size: 20px;
    }

    .section-title {
        font-size: 42px;
    }

    .hero, .hero * {
        max-width: 100vw;
        box-sizing: border-box;
    }


    section {
        padding: 60px 20px !important;
    }

    #company {
        padding: 60px 20px !important;
    }

    .stats {
        padding: 60px 20px !important;
    }

    footer {
        padding: 80px 30px 30px !important;
    }

    .about-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px !important;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px !important;
    }

    .new-products .products-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px !important;
    }

    .footer-section {
        text-align: left;
    }

    .cta-buttons {
        flex-direction: column;
        margin-bottom: 20px;
        gap: 25px;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hero-news {
        width: 90%;
        left: 5%;
        right: 5%;
        max-width: calc(100% - 10%);
        bottom: 50px;
    }

    .hero-news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }

    .hero-news-date {
        min-width: auto;
    }

    .stats::before,
    .stats::after {
        display: none;
    }

}

/* Single Post Styles */
body.single,
body.single-post {
    padding-top: 120px;
    padding-bottom: 0;
    margin-bottom: 0;
}

body.page,
body.archive,
body.category {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.single-post {
    max-width: 1200px;
    margin: 0 auto 0 auto;
    padding: 80px 80px 80px 80px;
    background: #fff;
}

.post-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(1, 32, 99, 0.1);
}

.post-category {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), #e8c55a);
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 30px;
    text-decoration: none;
}

.post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.4;
    letter-spacing: 2px;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    color: #666;
    font-size: 14px;
    letter-spacing: 1px;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-meta-item::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
}

.post-thumbnail {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin-bottom: 60px;
    border: 1px solid rgba(1, 32, 99, 0.1);
}

.post-content {
    font-size: 16px;
    line-height: 2.2;
    color: #333;
    margin-bottom: 80px;
}

.post-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--primary);
    margin: 60px 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    letter-spacing: 2px;
}

.post-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--primary);
    margin: 40px 0 20px;
    letter-spacing: 1px;
}

.post-content p {
    margin-bottom: 30px;
}

.post-content ul,
.post-content ol {
    margin: 30px 0;
    padding-left: 40px;
}

.post-content li {
    margin-bottom: 15px;
}

.post-content a {
    color: var(--gold);
    text-decoration: underline;
    transition: all 0.3s;
}

.post-content a:hover {
    color: var(--secondary);
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 40px 0;
    border: 1px solid rgba(1, 32, 99, 0.1);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 40px 0;
    border-top: 1px solid rgba(1, 32, 99, 0.1);
    border-bottom: 1px solid rgba(1, 32, 99, 0.1);
    margin-bottom: 60px;
}

.post-tags-label {
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 14px;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(1, 32, 99, 0.05);
    color: #666;
    font-size: 12px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(1, 32, 99, 0.1);
}

.tag:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 80px;
}

.nav-post {
    flex: 1;
    padding: 30px;
    background: #f8fafb;
    border: 1px solid rgba(1, 32, 99, 0.1);
    transition: all 0.4s;
    text-decoration: none;
    display: block;
}

.nav-post:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.nav-post-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 400;
}

.nav-post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 1px;
}

.related-posts {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 2px solid rgba(1, 32, 99, 0.1);
}

.related-posts-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.related-post-card {
    border: 1px solid rgba(1, 32, 99, 0.1);
    transition: all 0.4s;
    text-decoration: none;
    display: block;
    background: #fff;
}

.related-post-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.related-post-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.related-post-content {
    padding: 30px;
}

.related-post-date {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.related-post-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.6;
}

.back-to-list {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .single-post {
        margin-top: 80px;
        padding: 40px 20px;
    }

    .post-title {
        font-size: 32px;
    }

    .post-meta {
        flex-direction: column;
        gap: 15px;
    }

    .post-content {
        font-size: 15px;
    }

    .post-content h2 {
        font-size: 28px;
    }

    .post-content h3 {
        font-size: 22px;
    }

    .post-navigation {
        flex-direction: column;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Archive Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 150px 80px 100px;
    padding-top: calc(80px + 100px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

/* Page Navigation */
.page-nav {
    background: #fff;
    border-bottom: 1px solid rgba(1, 32, 99, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
}

.page-nav-item {
    padding: 12px 24px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(1, 32, 99, 0.1);
    white-space: nowrap;
}

.page-nav-item:hover {
    background: linear-gradient(135deg, var(--gold), #e8c55a);
    color: #000;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.2);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.lang-current {
    color: var(--primary);
    font-weight: 500;
}

.lang-separator {
    color: rgba(1, 32, 99, 0.3);
}

.lang-link {
    color: rgba(1, 32, 99, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: var(--gold);
}

.page-header .section-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 300;
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    color: white;
    letter-spacing: 8px;
    font-weight: 300;
    margin-bottom: 20px;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 300;
}

.archive-content {
    padding: 120px 80px;
    background: #fcfdfe;
}

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

/* News Category Filter */
.news-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(1, 32, 99, 0.1);
    justify-content: center;
}

.category-filter-btn {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(1, 32, 99, 0.05);
    color: var(--primary);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(1, 32, 99, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-filter-btn:hover {
    background: rgba(1, 32, 99, 0.08);
    border-color: rgba(1, 32, 99, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(1, 32, 99, 0.1);
}

.category-filter-btn.active {
    background: linear-gradient(135deg, var(--gold), #e8c55a);
    color: #000;
    border-color: var(--gold);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.news-archive-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-archive-item {
    display: flex;
    gap: 30px;
    padding: 40px 40px;
    border-bottom: 1px solid rgba(1, 32, 99, 0.1);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.news-archive-thumbnail {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
    order: 3;
}

.news-archive-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.news-archive-item:hover .news-archive-thumbnail img {
    transform: scale(1.1);
}

.news-archive-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-archive-item:hover {
    background: rgba(1, 32, 99, 0.02);
    padding-left: 50px;
}

.news-archive-item:hover::before {
    height: 100%;
}

.news-archive-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--primary);
    letter-spacing: 2px;
    min-width: 120px;
    padding-top: 5px;
    font-weight: 300;
    order: 1;
}

.news-archive-content {
    order: 2;
    flex: 1;
}

.news-archive-category {
    display: inline-block;
    background: rgba(1, 32, 99, 0.08);
    color: var(--primary);
    padding: 8px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
    border-radius: 2px;
}

.news-archive-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: #333;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.6;
    transition: color 0.3s;
}

.news-archive-item:hover .news-archive-title {
    color: var(--secondary);
}

.news-archive-excerpt {
    color: #666;
    line-height: 2;
    font-size: 14px;
    font-weight: 300;
}

.no-posts {
    text-align: center;
    padding: 100px 0;
    color: #999;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 100px;
    align-items: center;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
    padding: 0 20px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    border: 1px solid rgba(1, 32, 99, 0.15);
    transition: all 0.3s;
    font-weight: 300;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.page-numbers.dots {
    border: none;
}

.page-numbers.dots:hover {
    background: transparent;
    color: var(--primary);
}

/* About Page Styles */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Vision Section */
.about-vision {
    padding: 120px 0;
    background: #fcfdfe;
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-text {
    font-size: 16px;
    line-height: 2.2;
    color: #333;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Message Section */
.about-message {
    padding: 120px 0;
    background: linear-gradient(to bottom, #fcfdfe, #f8f9fa);
}

.message-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-top: 60px;
}

.message-image {
    width: 300px;
    flex-shrink: 0;
}

.message-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(1, 32, 99, 0.15);
}

.message-text {
    flex: 1;
}

.message-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
}

.message-text p {
    font-size: 15px;
    line-height: 2.2;
    color: #555;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.message-signature {
    margin-top: 60px;
    text-align: right;
}

.signature-title {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 15px;
    margin-top: 0;
}

.signature-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--primary);
    letter-spacing: 4px;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 0;
}

.signature-name-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 300;
    text-transform: capitalize;
    margin-top: 0;
    margin-bottom: 0;
}

/* Team Section */
.about-team {
    padding: 120px 0;
    background: #fcfdfe;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(212, 175, 55, 0.2);
}

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

.team-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-name-en {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #999;
    letter-spacing: 1px;
    font-weight: 300;
    text-transform: capitalize;
}

.team-position {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.team-description {
    font-size: 14px;
    line-height: 2;
    color: #666;
    font-weight: 300;
}

/* History Section */
.about-history {
    padding: 120px 0;
    background: linear-gradient(to bottom, #f8f9fa, #fcfdfe);
}

.history-timeline {
    position: relative;
    margin-top: 80px;
    padding-left: 200px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
}

.history-item {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
}

.history-item::before {
    content: '';
    position: absolute;
    left: -56.5px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid #fcfdfe;
    box-shadow: 0 0 0 1px var(--gold);
}

.history-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--primary);
    letter-spacing: 2px;
    min-width: 120px;
    font-weight: 400;
    padding-top: 2px;
}

.history-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #333;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400;
}

.history-content p {
    font-size: 14px;
    line-height: 2;
    color: #666;
    font-weight: 300;
}

/* Company Info Section */
.about-company-info {
    padding: 120px 0;
    background: #fcfdfe;
}

.company-info-table {
    margin-top: 60px;
}

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

.company-info-table tr {
    border-bottom: 1px solid rgba(1, 32, 99, 0.1);
}

.company-info-table th,
.company-info-table td {
    padding: 30px 40px;
    text-align: left;
    font-size: 15px;
    letter-spacing: 1px;
}

.company-info-table th {
    width: 200px;
    color: var(--primary);
    font-weight: 400;
    background: rgba(1, 32, 99, 0.02);
}

.company-info-table td {
    color: #555;
    line-height: 2;
    font-weight: 300;
}

/* Access Section */
.about-access {
    padding: 120px 0 120px;
    background: linear-gradient(to bottom, #f8f9fa, #fcfdfe);
}

.access-content {
    margin-top: 60px;
}

.access-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.access-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 400;
}

.access-item p {
    font-size: 14px;
    line-height: 2;
    color: #555;
    font-weight: 300;
}

.access-map {
    margin-bottom: 0;
}

.access-map iframe {
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(1, 32, 99, 0.1);
}

/* About Page - Mobile Responsive */
@media (max-width: 768px) {
    .news-category-filter {
        gap: 10px;
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .category-filter-btn {
        padding: 10px 20px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .news-archive-item {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }

    .news-archive-thumbnail {
        width: 100%;
        height: 200px;
    }

    .news-archive-date {
        min-width: auto;
    }

    .about-container {
        padding: 0 15px;
    }

    .page-nav {
        top: 60px;
    }

    .page-nav-container {
        padding: 15px;
        gap: 8px;
    }

    .page-nav-item {
        padding: 10px 16px;
        font-size: 12px;
    }

    .page-header {
        padding: 120px 12px 60px;
    }

    .language-switcher {
        font-size: 12px;
        gap: 8px;
        margin-bottom: 15px;
    }

    .page-title {
        font-size: 42px;
        letter-spacing: 4px;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .about-vision,
    .about-message,
    .about-team,
    .about-history,
    .about-company-info,
    .about-access {
        padding: 80px 0;
    }

    .message-content {
        flex-direction: column;
        gap: 40px;
    }

    .message-image {
        width: 200px;
        margin: 0 auto;
    }

    .message-text h3 {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .message-text p {
        font-size: 14px;
    }

    .signature-name {
        font-size: 22px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .history-timeline {
        padding-left: 0;
        margin-left: 15px;
    }

    .history-timeline::before {
        left: 6px;
    }

    .history-item {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
        padding-left: 25px;
    }

    .history-item::before {
        left: -2px;
    }

    .history-year {
        font-size: 24px;
        min-width: auto;
    }

    .history-content h3 {
        font-size: 18px;
    }

    .company-info-table th,
    .company-info-table td {
        padding: 20px;
        font-size: 14px;
        display: block;
        width: 100%;
    }

    .company-info-table th {
        padding-bottom: 15px;
    }

    .company-info-table td {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .access-info {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .access-map iframe {
        height: 300px;
    }
}

/* Contact Navigation Item */
.nav-contact a {
    background: rgba(212, 175, 55, 0.15);
    padding: 12px 24px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    color: var(--gold) !important;
    font-weight: 400;
    transition: all 0.3s;
}

.nav-contact a:hover {
    background: var(--gold);
    color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.nav-contact a::before,
.nav-contact a::after {
    display: none;
}

@media (max-width: 768px) {
    .nav-contact a {
        padding: 8px 20px !important;
        font-size: 11px;
        letter-spacing: 2px;
    }

    .nav-links > li {
        margin: 5px 0 !important;
    }

    .nav-links .submenu {
        position: static;
        display: block;
        background: transparent;
        box-shadow: none;
        padding: 5px 0 0;
        margin-top: 5px;
        gap: 5px;
    }

    .nav-links .submenu li {
        opacity: 1;
        margin: 3px 0;
    }
}

/* Product Detail Page */
.single-product {
    padding: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans JP', sans-serif;
}

.single-product h1,
.single-product h2,
.single-product h3,
.single-product h4 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans JP', sans-serif;
}

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

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-images {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-image-main {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    aspect-ratio: 1 / 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-image-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-image-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-thumbnail:hover {
    border-color: var(--gold);
}

.product-thumbnail.active {
    border-color: var(--primary);
}

.single-product .product-info {
    padding-top: 0;
    background: none;
}

.product-category-label {
    display: block;
    color: var(--gold);
    font-size: 11px;
    margin: 0 0 16px 0;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
}

.product-title {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: left;
}

.product-name-en {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
    text-align: left;
}

.product-price {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
}

.product-flavor {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #666;
    font-size: 15px;
    text-align: left;
}

.product-details-table {
    margin-bottom: 40px;
}

.product-details-table table {
    width: 100%;
    border-collapse: collapse;
}

.product-details-table th,
.product-details-table td {
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.product-details-table th {
    width: 150px;
    font-weight: 600;
    color: var(--primary);
    background: #f9f9f9;
}

.product-details-table td {
    color: #333;
}

.product-taste-chart {
    margin-bottom: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
}

.product-taste-chart h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.taste-chart-main-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.taste-chart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.taste-chart-item {
}

.taste-chart-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}

.taste-chart-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
    color: #999;
}

.taste-chart-bar-dots {
    position: relative;
    padding: 0 10px;
}

.taste-chart-bar-line {
    position: relative;
    height: 8px;
    background: linear-gradient(90deg,
        #A8C5DD 0%,
        #A8C5DD calc(var(--taste-value) * 20%),
        #8B5A5F calc(var(--taste-value) * 20%),
        #8B5A5F 100%);
    border-radius: 4px;
    transition: background 0.5s ease;
}

/* パターン2: ドット表示 */
.taste-chart-dots-v2 {
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.taste-dot-v2 {
    flex: 1;
    height: 8px;
    background: #e8e8e8;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.taste-dot-v2.active {
    background: var(--gold);
}

/* パターン3: シングルバー中央マーカー */
.taste-chart-bar-v3 {
    position: relative;
    height: 6px;
    background: linear-gradient(90deg,
        #A8C5DD 0%,
        #A8C5DD calc((var(--taste-value) - 1) * 25%),
        #8B5A5F calc((var(--taste-value) - 1) * 25%),
        #8B5A5F 100%);
    border-radius: 3px;
    transition: background 0.5s ease;
}

.taste-chart-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: left 0.4s ease;
}

/* パターン4: レーダーチャート（非表示） */
.product-taste-chart:has(.radar-chart-container) {
    display: none;
}

.radar-chart-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.radar-chart {
    width: 100%;
    height: auto;
}

.radar-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.radar-label {
    position: absolute;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    white-space: nowrap;
}

.radar-label-top {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.radar-label-top-right {
    top: 20%;
    right: 5%;
}

.radar-label-bottom-right {
    bottom: 20%;
    right: 5%;
}

.radar-label-bottom {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.radar-label-bottom-left {
    bottom: 20%;
    left: 5%;
}

.radar-label-top-left {
    top: 20%;
    left: 5%;
}

.product-description {
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-description h2 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.product-content {
    line-height: 2;
    color: #333;
}

.product-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.product-inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-inquiry-btn::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .product-main {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .product-images {
        position: relative;
        top: 0;
        order: -1;
    }

    .product-title {
        font-size: 24px;
    }

    .product-price {
        font-size: 20px;
        padding: 15px;
    }

    .product-details-table th {
        width: 120px;
        font-size: 14px;
        padding: 12px;
    }

    .product-details-table td {
        font-size: 14px;
        padding: 12px;
    }

    .product-description {
        padding: 20px;
    }

    .product-description h2 {
        font-size: 20px;
    }

    .product-container {
        padding: 0 20px;
    }

    .product-info {
        padding-left: 0;
        padding-right: 0;
    }

    .product-taste-chart {
        margin-left: -5px;
        margin-right: -5px;
    }

    .product-actions {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .product-actions .btn {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
    }
}

/* Product Archive Page */
.product-archive {
    padding-top: 80px;
}

.product-archive-header {
    background:
        linear-gradient(135deg,
            rgba(1, 32, 99, 0.93) 0%,
            rgba(2, 45, 120, 0.9) 40%,
            rgba(10, 55, 130, 0.88) 70%,
            rgba(5, 35, 105, 0.92) 100%
        ),
        url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?q=80&w=1740&auto=format&fit=crop') center/cover no-repeat;
    padding: 70px 0;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.product-archive-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 60%, rgba(80, 120, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    animation: shimmer 8s ease-in-out infinite;
}

.product-archive-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c1.5 0 2.5 8 2.5 15s-1 15-2.5 15-2.5-8-2.5-15 1-15 2.5-15z' fill='rgba(212,175,55,0.03)'/%3E%3Ccircle cx='30' cy='45' r='8' fill='none' stroke='rgba(212,175,55,0.02)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.product-archive-header .container {
    position: relative;
    z-index: 1;
}

.archive-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 8px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.archive-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
}

.archive-description {
    font-size: 16px;
    opacity: 0.9;
    margin-top: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.product-archive-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Filters Sidebar */
.product-filters {
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Filter toggle - hidden on desktop */
.filter-toggle {
    display: none;
}

.filter-current-conditions {
    display: none;
}

.filter-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.filter-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.filter-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.3s;
}

.filter-item:hover {
    color: var(--gold);
}

.filter-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.filter-count {
    margin-left: auto;
    font-size: 12px;
    color: #999;
}

.filter-reset {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-reset:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* Filter close button - hidden on desktop */
.filter-close {
    display: none;
}

/* Archive Toolbar */
.archive-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.archive-count {
    font-size: 16px;
    color: #666;
}

.result-count {
    font-weight: 600;
    color: var(--primary);
    font-size: 20px;
}

.archive-sort select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    background: white;
}

/* Products Grid */
.products-grid-wrapper {
    position: relative;
    min-height: 200px;
}

.products-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.products-loading.active {
    opacity: 1;
    visibility: visible;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.products-loading span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

.products-grid-archive {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.product-card-archive {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-card-archive:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card-image {
    width: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-card-image img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    transition: transform 0.5s;
}

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

.product-card-content {
    padding: 24px;
}

.product-card-category {
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.product-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-card-name {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.no-products-icon {
    color: #ccc;
    margin-bottom: 20px;
}

.no-products-title {
    font-size: 18px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.no-products-text {
    font-size: 14px;
    color: #999;
}

.no-products p {
    font-size: 18px;
    color: #999;
}

/* Pagination */
.archive-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.archive-pagination a,
.archive-pagination span {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s;
}

.archive-pagination a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.archive-pagination .current {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .products-grid-archive {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .product-archive-content {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .product-archive {
        padding-top: 80px;
    }

    .product-archive-header {
        padding: 50px 20px;
        background-attachment: scroll;
    }

    .product-archive-header::after {
        background-size: 80px 80px;
    }

    .archive-title {
        font-size: 26px;
        letter-spacing: 4px;
    }

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

    .product-filters {
        position: relative;
        top: 0;
    }

    /* Container padding for mobile */
    .product-archive .container {
        padding: 0 15px;
    }

    /* Filter toggle button for mobile */
    .filter-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        padding: 14px 20px;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 1px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .filter-toggle:hover {
        background: var(--secondary);
    }

    .filter-toggle-left {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .filter-toggle-icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .filter-toggle-arrow {
        width: 18px;
        height: 18px;
        transition: transform 0.3s;
        flex-shrink: 0;
    }

    .filter-toggle.active .filter-toggle-arrow {
        transform: rotate(180deg);
    }

    .filter-current-conditions {
        font-size: 12px;
        font-weight: 400;
        opacity: 0.9;
        margin-top: 4px;
        text-align: left;
    }

    .filter-section {
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        transition: max-height 0.3s ease, padding 0.3s ease;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .filter-section.open {
        max-height: 2000px !important;
        padding: 20px !important;
    }

    /* Filter close button for mobile */
    .filter-close {
        display: block;
        width: 100%;
        padding: 12px;
        margin-top: 15px;
        background: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s;
    }

    .filter-close:hover {
        background: var(--primary);
        color: white;
    }

    /* Current conditions display */
    .filter-current-conditions {
        display: block !important;
        font-size: 11px;
        font-weight: 400;
        opacity: 0.85;
        margin-top: 2px;
    }

    /* Product cards - 2 column grid on mobile */
    .products-grid-archive {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card-archive {
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
    }

    .product-card-archive .product-card-link {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .product-card-archive .product-card-image {
        width: 100%;
        aspect-ratio: 1 / 1;
        padding: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-card-archive .product-card-image img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .product-card-archive .product-card-content {
        padding: 12px 14px;
        text-align: left;
    }

    .product-card-archive .product-card-title {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .product-card-archive .product-card-category {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .product-card-archive .product-card-name {
        font-size: 12px;
        color: #666;
        display: none;
    }

    .archive-toolbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}


.filter-item-child {
    padding-left: 24px;
    font-size: 14px;
}

.filter-item-parent {
    font-weight: 600;
}


.filter-subgroup {
    margin-bottom: 16px;
}

.filter-sublabel {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.filter-items input[type="text"],
.filter-items input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 10px;
}

.filter-items input[type="text"]:focus,
.filter-items input[type="number"]:focus {
    outline: none;
    border-color: var(--gold);
}


/* Taste Filter Bar Styles */
.taste-filter-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.taste-filter-bar {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 10px 0;
}

.taste-bar-item {
    flex: 1;
    cursor: pointer;
    position: relative;
}

.taste-bar-item input[type="checkbox"] {
    display: none;
}

.taste-bar-dot {
    display: block;
    height: 32px;
    background: #e8e8e8;
    border-radius: 4px;
    transition: all 0.3s;
    position: relative;
}

.taste-bar-item input[type="checkbox"]:checked + .taste-bar-dot {
    background: var(--gold);
}

.taste-bar-item:hover .taste-bar-dot {
    background: #d4d4d4;
}

.taste-bar-item input[type="checkbox"]:checked:hover + .taste-bar-dot {
    background: #c9a747;
}

/* Vintage Input Styles */
.vintage-separator {
    display: block;
    text-align: center;
    color: #999;
    margin: 2px 0;
    font-size: 12px;
}

.vintage-input-group {
    position: relative;
}

.vintage-input-group input {
    width: 100%;
    margin-bottom: 0 !important;
}



/* =====================================================
   Recruit Page Styles
   ===================================================== */

.recruit-content {
    padding: 80px 0;
    background: #fcfdfe;
}

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

.recruit-message,
.recruit-status,
.recruit-contact {
    margin-bottom: 80px;
}

.recruit-message:last-child,
.recruit-status:last-child,
.recruit-contact:last-child {
    margin-bottom: 0;
}

.recruit-message-text {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.recruit-message-text p {
    margin: 0;
}

/* No Openings Box */
.recruit-no-openings {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.no-openings-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #adb5bd;
}

.no-openings-icon svg {
    width: 100%;
    height: 100%;
}

.recruit-no-openings h3 {
    font-size: 20px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 16px;
}

.recruit-no-openings p {
    font-size: 15px;
    line-height: 1.8;
    color: #6c757d;
    margin: 0;
}

/* Recruit Contact */
.recruit-contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.recruit-contact-info > p {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.recruit-contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.contact-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-value {
    display: block;
    font-size: 15px;
    color: #333;
    font-weight: 500;
}

.recruit-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.recruit-contact-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.recruit-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 32, 99, 0.3);
}

.recruit-contact-btn:hover svg {
    transform: translateX(4px);
}

/* Recruit Mobile Styles */
@media (max-width: 768px) {
    .recruit-content {
        padding: 60px 0;
    }

    .recruit-message,
    .recruit-status,
    .recruit-contact {
        margin-bottom: 60px;
    }

    .recruit-no-openings {
        padding: 40px 24px;
    }

    .no-openings-icon {
        width: 60px;
        height: 60px;
    }

    .recruit-no-openings h3 {
        font-size: 18px;
    }

    .recruit-contact-info {
        padding: 24px;
    }

    .recruit-contact-details {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .recruit-contact-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   Contact Page Styles
   ===================================================== */

.contact-content {
    padding: 80px 0;
    background: #fcfdfe;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 40px;
    border-radius: 16px;
    color: #fff;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-content h3 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-info-content p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.contact-note {
    font-size: 12px;
    opacity: 0.8;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.contact-form-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* WPForms Styling Override */
.contact-form .wpforms-container {
    margin: 0;
}

.contact-form .wpforms-form .wpforms-field-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .wpforms-form .wpforms-field-required {
    color: #e74c3c;
}

.contact-form .wpforms-form input[type="text"],
.contact-form .wpforms-form input[type="email"],
.contact-form .wpforms-form input[type="tel"],
.contact-form .wpforms-form textarea,
.contact-form .wpforms-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .wpforms-form input[type="text"]:focus,
.contact-form .wpforms-form input[type="email"]:focus,
.contact-form .wpforms-form input[type="tel"]:focus,
.contact-form .wpforms-form textarea:focus,
.contact-form .wpforms-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form .wpforms-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .wpforms-form .wpforms-submit-container {
    margin-top: 20px;
}

.contact-form .wpforms-form button[type="submit"],
.contact-form .wpforms-form .wpforms-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .wpforms-form button[type="submit"]:hover,
.contact-form .wpforms-form .wpforms-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 32, 99, 0.3);
}

/* Contact Mobile Styles */
@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-content {
        padding: 40px 0;
    }

    .contact-container {
        padding: 0 12px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .contact-info-title,
    .contact-form-title {
        font-size: 18px;
    }
}

/* =====================================================
   World Map - Origin Map (Google Maps)
   ===================================================== */
.product-origin-map {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
}

.origin-map-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}

.origin-map-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.origin-country-name {
    font-size: 16px;
    font-weight: 500;
    color: #666;
}

.origin-map-container {
    position: relative;
    width: 100%;
    padding-bottom: 50%; /* 横長（2:1比率） */
    overflow: hidden;
    border-radius: 12px;
}

.origin-google-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    display: block;
}

/* Mobile styles for origin map */
@media (max-width: 768px) {
    .product-origin-map {
        margin-top: 30px;
        padding: 20px 16px;
        border-radius: 12px;
    }

    .origin-map-header {
        gap: 10px;
        margin-bottom: 12px;
    }

    .origin-map-title {
        font-size: 14px;
    }

    .origin-country-name {
        font-size: 14px;
    }
}

/* ============================================
   Single Product - Luxury Design
   ============================================ */

.single-product-luxury {
    padding-top: 0;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans JP', sans-serif;
}

/* Hero Section */
.product-hero {
    position: relative;
    padding: 120px 20px 40px;
    margin-top: -80px;
    background:
        linear-gradient(180deg, #050d1a 0%, var(--primary) 40%, var(--primary) 60%, #050d1a 100%);
    overflow: hidden;
}

.product-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 100%),
        radial-gradient(ellipse 60% 40% at 0% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 100%),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 20%,
        rgba(212, 175, 55, 0.8) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent 100%);
}

.product-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 175, 55, 0.2) 20%,
        rgba(212, 175, 55, 0.5) 50%,
        rgba(212, 175, 55, 0.2) 80%,
        transparent 100%);
}

.product-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.product-hero-category {
    display: inline-block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding: 10px 24px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50px;
    box-shadow:
        0 0 15px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.15);
}

.product-hero-title {
    font-size: 42px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: 2px;
}

.product-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 販売終了バッジ */
.product-discontinued-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 24px;
    background: rgba(139, 35, 50, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Main Container */
.product-luxury-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

/* Main Layout */
.product-luxury-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

/* Gallery */
.product-luxury-gallery {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.product-gallery-main {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-gallery-main:hover img {
    transform: scale(1.02);
}

.product-gallery-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-gallery-thumb {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #eee;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumb:hover {
    border-color: var(--gold);
}

.product-gallery-thumb.active {
    border-color: var(--primary);
}

/* Info Section */
.product-luxury-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Price Box */
.product-luxury-price-box {
    background: linear-gradient(135deg, #fefaf3 0%, #fff9ed 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 24px 30px;
    position: relative;
}

.product-luxury-price-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold) 0%, #b8941f 100%);
    border-radius: 4px 0 0 4px;
}

.product-luxury-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.price-tax {
    font-size: 14px;
    color: #666;
}

/* CTA Button */
.product-luxury-cta {
    margin-top: 30px;
}

.btn-inquiry {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--primary) 0%, #0340a8 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(1, 32, 99, 0.3);
}

.btn-inquiry svg {
    width: 20px;
    height: 20px;
}

.btn-inquiry:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(1, 32, 99, 0.4);
    background: linear-gradient(135deg, #0340a8 0%, var(--primary) 100%);
}

/* Luxury Cards */
.product-luxury-flavor,
.product-luxury-details {
    padding: 28px 0;
    border-bottom: 1px solid #eee;
}

.luxury-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.luxury-card-header svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.luxury-card-header span {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-luxury-flavor p {
    line-height: 1.9;
    color: #444;
    font-size: 15px;
}

/* Specs */
.product-luxury-specs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spec-row {
    display: flex;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row dt {
    width: 140px;
    flex-shrink: 0;
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

.spec-row dd {
    flex: 1;
    font-size: 15px;
    color: #333;
    margin: 0;
}

.spec-price {
    font-size: 15px;
    font-weight: 400;
    color: #333;
}

.spec-price-tax {
    font-size: 14px;
    color: #666;
    margin-left: 4px;
}

/* Taste Chart Inline (in right column) */
.product-luxury-taste {
    padding: 28px 0;
    border-bottom: 1px solid #eee;
}

.taste-chart-inline {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 400px;
    margin: 0 auto;
}

.taste-item-inline {
    margin-bottom: 0;
}

.taste-item-inline .taste-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.taste-item-inline .taste-label-left,
.taste-item-inline .taste-label-right {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 60px;
}

.taste-item-inline .taste-label-right {
    text-align: right;
}

.taste-item-inline .taste-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
}

/* Section Styling */
.product-luxury-section {
    margin-top: 10px;
    margin-bottom: 20px;
    padding-top: 60px;
    padding-bottom: 40px;
}

.luxury-section-header {
    text-align: center;
    margin-bottom: 15px;
}

.luxury-section-label {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.luxury-section-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.luxury-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Taste Chart Luxury */
.taste-chart-luxury {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0;
}

.taste-item-luxury {
    margin-bottom: 28px;
}

.taste-item-luxury:last-child {
    margin-bottom: 0;
}

.taste-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.taste-label-left,
.taste-label-right {
    font-size: 11px;
    color: #888;
    width: 70px;
}

.taste-label-right {
    text-align: right;
}

.taste-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.taste-bar-luxury {
    position: relative;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: visible;
}

.taste-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 0 !important;
}

.taste-bar-fill.animated {
    width: var(--target-width) !important;
}

.taste-bar-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: var(--gold);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
    left: 0 !important;
    opacity: 0;
}

.taste-bar-marker.animated {
    left: var(--target-left) !important;
    opacity: 1;
}

/* Content Section */
.product-luxury-content {
    padding: 30px 0;
    line-height: 2.2;
    color: #444;
    font-size: 15px;
}

.product-luxury-content p {
    margin-bottom: 20px;
}

.product-luxury-content p:last-child {
    margin-bottom: 0;
}

/* Map Section */
.product-luxury-map {
    padding: 20px 0;
}

.product-luxury-map .product-origin-map {
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
}

/* Footer */
.product-luxury-footer {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.btn-back svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-back:hover {
    background: var(--primary);
    color: #fff;
}

.btn-back:hover svg {
    transform: translateX(-4px);
}

/* Responsive - Single Product Luxury */
@media (max-width: 1024px) {
    .product-luxury-main {
        gap: 50px;
    }

    .product-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .single-product-luxury {
        padding-top: 0;
    }

    .product-hero {
        padding: 100px 20px 40px;
        margin-top: -70px;
    }

    .product-hero-category {
        font-size: 12px;
        padding: 8px 18px;
    }

    .product-hero-title {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .product-hero-subtitle {
        font-size: 14px;
    }

    .product-luxury-container {
        padding: 40px 16px 60px;
    }

    .product-luxury-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-luxury-gallery {
        position: relative;
        top: 0;
    }

    .product-gallery-main {
        border-radius: 12px;
    }

    .product-gallery-thumb {
        width: 60px;
        height: 60px;
    }

    .product-luxury-info {
        gap: 24px;
    }

    .product-luxury-price-box {
        padding: 20px 24px;
    }

    .price-amount {
        font-size: 28px;
    }

    .btn-inquiry {
        padding: 16px 24px;
        font-size: 14px;
    }

    .product-luxury-flavor,
    .product-luxury-details {
        padding: 24px;
        border-radius: 12px;
    }

    .luxury-card-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .luxury-card-header span {
        font-size: 14px;
    }

    .spec-row {
        flex-direction: column;
        gap: 4px;
        padding: 12px 0;
    }

    .spec-row dt {
        width: 100%;
        font-size: 12px;
    }

    .spec-row dd {
        font-size: 14px;
    }

    .product-luxury-section {
        margin-bottom: 40px;
    }

    .luxury-section-header {
        margin-bottom: 30px;
    }

    .luxury-section-title {
        font-size: 22px;
    }

    .taste-chart-luxury {
        padding: 24px;
        border-radius: 12px;
    }

    .taste-item-luxury {
        margin-bottom: 24px;
    }

    .taste-label-left,
    .taste-label-right {
        font-size: 10px;
        width: 60px;
    }

    .taste-name {
        font-size: 12px;
    }

    .product-luxury-content {
        padding: 30px 24px;
        border-radius: 12px;
        line-height: 2;
        font-size: 14px;
    }

    .product-luxury-map {
        padding: 20px;
        border-radius: 12px;
    }

    .btn-back {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* 印刷専用タイトル（通常時は非表示） */
.print-only-title {
    display: none;
}

.print-qr-code {
    display: none;
}

/* 印刷専用味わいチャート（通常時は非表示） */
.print-taste-chart {
    display: none;
}

/* =============================================
   スマホ用グローバル余白・文字サイズ調整
   ============================================= */
@media (max-width: 768px) {
    /* ベースフォントサイズを大きく */
    body {
        font-size: 16px !important;
    }

    /* グローバルコンテナの余白を詰める */
    .container,
    .about-container,
    .contact-container,
    .news-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* ページヘッダー */
    .page-header {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .page-subtitle {
        font-size: 15px !important;
    }

    /* 商品ページ */
    .product-luxury-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .product-hero {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* セクション内の余白 */
    .about-vision,
    .about-message,
    .about-team,
    .about-history,
    .about-company-info,
    .about-access,
    .contact-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* カード類の余白 */
    .product-luxury-flavor,
    .product-luxury-details {
        padding: 16px !important;
    }

    /* フィルター */
    .product-filters {
        padding: 0 12px !important;
    }

    .filter-section {
        padding: 16px 12px !important;
    }

    /* ニュースアーカイブ */
    .news-archive-item {
        padding: 24px 12px !important;
    }

    /* お問い合わせ */
    .contact-info,
    .contact-form-wrapper {
        padding: 24px 16px !important;
    }

    /* 文字サイズ調整 */
    .section-title {
        font-size: 28px !important;
    }

    .vision-text,
    .message-text p,
    .team-description,
    .history-content p,
    .access-item p {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    .contact-info-content p,
    .contact-form-description {
        font-size: 15px !important;
    }

    /* 商品詳細ページの文字サイズ */
    .product-luxury-content,
    .product-luxury-content p {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }

    .spec-row dt {
        font-size: 13px !important;
    }

    .spec-row dd {
        font-size: 15px !important;
    }

    /* 会社概要テーブル */
    .company-info-table th,
    .company-info-table td {
        font-size: 14px !important;
        padding: 12px !important;
    }

    /* フィルター関連 */
    .filter-group-title {
        font-size: 14px !important;
    }

    .filter-label {
        font-size: 14px !important;
    }

    /* ボタン */
    .btn-inquiry {
        font-size: 15px !important;
    }

    /* 商品説明の余白（狭く） */
    .product-luxury-section {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .product-luxury-section .product-luxury-content {
        padding: 4px !important;
    }

    /* 味わいチャートの余白（広く） */
    .product-luxury-info .product-luxury-taste {
        padding: 20px !important;
    }

    .product-luxury-info .product-luxury-taste .taste-chart-inline {
        padding: 8px 16px !important;
    }

    .taste-chart-luxury {
        padding: 24px !important;
    }

    .taste-chart-inline {
        padding: 8px 16px !important;
    }

    /* 産地マップを正方形・完全フル幅・角丸なし */
    .product-origin-map {
        position: relative !important;
        left: 50% !important;
        right: 50% !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        width: 100vw !important;
        padding: 16px 0 !important;
        border-radius: 0 !important;
        background: #f8fafc !important;
    }

    .origin-map-container {
        padding-bottom: 100% !important; /* 正方形 */
        border-radius: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    /* 地図の角丸を完全に削除 */
    .origin-map-container iframe,
    .origin-google-map,
    .origin-map-container > * {
        border-radius: 0 !important;
    }

    .origin-map-header {
        padding: 0 16px !important;
    }
}

/* =============================================
   印刷用スタイル (Print Styles)
   A4サイズ 1枚に収める
   ============================================= */
@media print {
    @page {
        size: A4 portrait;
        margin: 8mm;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    html, body {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        color: #000 !important;
        font-size: 8pt !important;
        line-height: 1.3 !important;
        overflow: visible !important;
    }

    /* 非表示要素 */
    header, footer, nav,
    .site-header, .site-footer,
    .cursor, .cursor-follower,
    .product-hero,
    .product-hero-bg,
    .product-hero-content,
    .product-hero-category,
    .product-hero-title,
    .product-hero-subtitle,
    .product-luxury-map, .product-origin-map,
    .product-luxury-cta, .product-luxury-footer,
    .btn-back, .btn-inquiry,
    .product-gallery-thumbs,
    .product-gallery-thumbnails,
    .mobile-menu, .hamburger,
    .section-label,
    .product-category-badge,
    .product-luxury-header,
    .product-luxury-header::before,
    .product-luxury-header::after {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* ページ全体 */
    .single-product-luxury {
        padding: 0 !important;
        margin: 0 !important;
        background: #fff !important;
        min-height: auto !important;
    }

    /* 印刷専用タイトル表示 */
    .print-only-title {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        visibility: visible !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        margin: 0 0 6mm 0 !important;
        padding: 0 0 3mm 0 !important;
        border-bottom: 0.5pt solid #333 !important;
    }

    .print-title-content {
        flex: 1 1 auto !important;
    }

    .print-qr-code {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        flex-shrink: 0 !important;
        margin-left: 4mm !important;
    }

    .print-qr-code img {
        width: 18mm !important;
        height: 18mm !important;
        border: 0.3pt solid #ddd !important;
    }

    .print-qr-label {
        display: block !important;
        font-size: 6pt !important;
        color: #666 !important;
        margin-top: 1mm !important;
        text-align: center !important;
    }

    .print-product-name {
        display: block !important;
        visibility: visible !important;
        font-size: 16pt !important;
        font-weight: 700 !important;
        color: #000 !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.3 !important;
    }

    .print-discontinued {
        display: none !important;
    }

    .print-product-subtitle {
        display: block !important;
        visibility: visible !important;
        font-size: 10pt !important;
        color: #444 !important;
        margin: 1.5mm 0 0 0 !important;
        padding: 0 !important;
        font-style: italic !important;
    }

    .product-luxury-container {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* メインコンテンツ：3列レイアウト（画像左、商品情報中央、味わいチャート右） */
    .product-luxury-main {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 4mm !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 左列：画像 */
    .product-luxury-gallery {
        flex: 0 0 48mm !important;
        width: 48mm !important;
        max-width: 48mm !important;
        position: static !important;
        order: 1 !important;
    }

    /* 中央列：特徴・商品情報 */
    .product-luxury-info {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 48mm - 52mm - 8mm) !important;
        overflow: hidden !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        writing-mode: horizontal-tb !important;
        box-sizing: border-box !important;
        order: 2 !important;
    }

    /* 右列：味わいチャート（印刷専用） */
    .print-taste-chart {
        flex: 0 0 52mm !important;
        width: 52mm !important;
        max-width: 52mm !important;
        display: block !important;
        visibility: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: none !important;
        box-sizing: border-box !important;
        order: 3 !important;
    }

    .product-gallery-main {
        width: 48mm !important;
        height: 48mm !important;
        background: #fff !important;
        border: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        aspect-ratio: 1/1 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .product-gallery-main img {
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        margin: 0 !important;
    }

    /* セクション共通 - borderなし、余白削除 */
    .product-luxury-flavor,
    .product-luxury-details {
        padding: 0 !important;
        margin: 0 0 1mm 0 !important;
        border: none !important;
        background: none !important;
    }

    /* 通常の味わいチャート（info内）は印刷時に非表示 */
    .product-luxury-taste {
        display: none !important;
        visibility: hidden !important;
    }

    /* 印刷専用味わいチャートの見出しを表示 */
    .print-taste-chart .luxury-card-header {
        display: block !important;
        margin-bottom: 1.5mm !important;
    }

    .print-taste-chart .luxury-card-header span {
        font-size: 8pt !important;
        font-weight: 700 !important;
        color: #333 !important;
    }

    /* 特徴・商品情報のタイトルは非表示 */
    .product-luxury-flavor .luxury-card-header,
    .product-luxury-details .luxury-card-header {
        display: none !important;
    }

    /* 特徴テキスト - 大きめに */
    .product-luxury-flavor p {
        font-size: 8pt !important;
        line-height: 1.4 !important;
        color: #333 !important;
        margin: 0 !important;
        padding: 0 !important;
        word-break: normal !important;
        white-space: normal !important;
        writing-mode: horizontal-tb !important;
    }

    /* 商品スペック - 1列表示 */
    .product-luxury-specs {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .spec-row {
        display: block !important;
        padding: 0 !important;
        margin: 0 0 0.5mm 0 !important;
        border: none !important;
    }

    .spec-row dt {
        display: inline-block !important;
        width: 28mm !important;
        font-size: 10pt !important;
        font-weight: 600 !important;
        color: #555 !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        vertical-align: top !important;
        white-space: nowrap !important;
    }

    .spec-row dt::after {
        content: "：" !important;
        margin-left: 0.5mm !important;
    }

    .spec-row dd {
        display: inline-block !important;
        visibility: visible !important;
        width: calc(100% - 30mm) !important;
        font-size: 10pt !important;
        color: #000 !important;
        line-height: 1.4 !important;
        margin: 0 !important;
        vertical-align: top !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .spec-row-price {
        display: flex !important;
        background: none !important;
        padding: 1mm 0 0 0 !important;
        margin: 0 !important;
        border: none !important;
    }

    .spec-price {
        font-size: 7pt !important;
        font-weight: 400 !important;
        color: #000 !important;
    }

    .spec-price-tax {
        font-size: 7pt !important;
        color: #000 !important;
    }

    /* 味わいチャート - 縦一列、間隔広め */
    .taste-chart-inline {
        display: flex !important;
        flex-direction: column !important;
        gap: 3.5mm !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .taste-item-inline .taste-item-header {
        margin-bottom: 0.5mm !important;
        padding: 0 !important;
    }

    .taste-item-inline .taste-label-left,
    .taste-item-inline .taste-label-right {
        font-size: 8pt !important;
        min-width: 10mm !important;
    }

    .taste-item-inline .taste-name {
        font-size: 9pt !important;
        font-weight: 600 !important;
    }

    .taste-bar-luxury {
        height: 1.5mm !important;
        background: #ddd !important;
        border-radius: 0.75mm !important;
    }

    .taste-bar-fill,
    .taste-bar-fill.animated {
        height: 100% !important;
        background: #444 !important;
        border-radius: 0.75mm !important;
        width: var(--target-width) !important;
        transition: none !important;
    }

    .taste-bar-marker,
    .taste-bar-marker.animated {
        width: 2mm !important;
        height: 2mm !important;
        background: #222 !important;
        border: 0.2pt solid #fff !important;
        left: var(--target-left) !important;
        opacity: 1 !important;
        transition: none !important;
    }

    /* 商品説明セクション - 見出し非表示 */
    .product-luxury-section {
        display: block !important;
        visibility: visible !important;
        margin: 4mm 0 0 0 !important;
        padding: 3mm 0 !important;
        border-top: 0.3pt solid #ccc !important;
        background: none !important;
    }

    .luxury-section-header {
        display: none !important;
    }

    .luxury-section-label {
        display: none !important;
    }

    .luxury-section-title {
        display: none !important;
    }

    /* 商品説明テキスト */
    .product-luxury-content {
        font-size: 7pt !important;
        line-height: 1.6 !important;
        color: #333 !important;
        margin: 0 !important;
        padding: 0 !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .product-luxury-content p {
        margin: 0 0 2mm 0 !important;
        padding: 0 !important;
        line-height: 1.6 !important;
        font-size: 7pt !important;
    }

    .product-luxury-content br {
        display: block !important;
        content: "" !important;
        margin: 0 !important;
    }

    /* フッター情報 */
    .single-product-luxury::after {
        content: "東栄貿易株式会社 | TEL: 03-6912-2211 | FAX: 03-6912-2219";
        display: block !important;
        text-align: right !important;
        font-size: 6pt !important;
        color: #888 !important;
        margin-top: 2mm !important;
        padding-top: 0 !important;
        border-top: none !important;
    }

    /* リンク装飾なし */
    a[href]::after {
        content: none !important;
    }
}

/* ===================================
   トップページ新商品グリッド（8件表示用）
   =================================== */
.products-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

a.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.product-card:hover {
    text-decoration: none;
}

@media (max-width: 1024px) {
    .products-grid-8 {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-grid-8 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
