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

:root {
    /* Primary Emerald Green Palette (翡翠色) */
    --tiffany-blue: #50C878;
    --tiffany-blue-light: #6FD89C;
    --tiffany-blue-dark: #3BA564;
    --tiffany-blue-deep: #2D8B57;
    
    /* Rare Accent - Light Green (special highlights only) */
    --accent-teal: #5FD99A;
    --accent-teal-light: #85E5B0;
    
    /* Core Colors */
    --white: #ffffff;
    --off-white: #fafafa;
    --black: #2a2a2a;
    --charcoal: #4a4a4a;
    
    /* Accent Brown (rare use) */
    --warm-brown: #8b6f47;
    
    /* Neutrals */
    --cream: #f8f8f8;
    --light-gray: #e8e8e8;
    --gray: #888888;
    
    /* Legacy support */
    --ivory: #fafafa;
    --gold: #50C878;
    --silver: #e8e8e8;
    
    /* Shadows */
    --shadow-tiffany: rgba(80, 200, 120, 0.3);
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-padding-top: 100px;
    /* Enable smooth scrolling on all devices */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* Better text rendering on mobile */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.7;
    position: relative;
    scroll-behavior: smooth;
    margin: 0 !important;
    padding: 0 !important;
    /* Premium text rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    letter-spacing: 0.01em;
}

/* Premium scrollbar - Emerald Green */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--off-white);
    border-left: 1px solid rgba(80, 200, 120, 0.15);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--tiffany-blue), var(--tiffany-blue-light));
    border-radius: 5px;
    border: 2px solid var(--white);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--tiffany-blue-dark), var(--tiffany-blue));
    box-shadow: 0 0 8px rgba(80, 200, 120, 0.6), inset 0 0 6px rgba(0, 0, 0, 0.15);
}

/* Wind-Themed Background Elements */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.35;
    background: 
        radial-gradient(circle at 20% 80%, rgba(80, 200, 120, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(80, 200, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(133, 193, 233, 0.08) 0%, transparent 50%);
}


/* Unused decorative elements removed (floating-particles, luxury-overlay) */

/* Removed wind animations per user request */

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(80, 200, 120, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
    opacity: 0;
    pointer-events: none;
}

.ripple:active::after {
    width: 300px;
    height: 300px;
    opacity: 1;
    transition: width 0s, height 0s, opacity 0s;
}

.ripple:active::after {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

/* gradientFloat animation removed (unused) */

/* Wind Texture Overlay */
.paper-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.4;
    background-color: var(--white);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(80, 200, 120, 0.03) 2px, rgba(80, 200, 120, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(80, 200, 120, 0.02) 2px, rgba(80, 200, 120, 0.02) 4px),
        radial-gradient(ellipse at 20% 30%, rgba(80, 200, 120, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(133, 193, 233, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.paper-texture::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(80, 200, 120, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(80, 200, 120, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(133, 193, 233, 0.04) 0%, transparent 50%);
}


/* Luxury Loading Screen - White Background */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease;
}

.loader-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.loader-logo {
    height: 60px;
    margin-bottom: 2rem;
    filter: none;
}

.loader-text {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(80, 200, 120, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(80, 200, 120, 0.2);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--tiffany-blue), var(--tiffany-blue-light));
    border-radius: 1px;
    animation: loadingProgress 2s ease-out forwards;
    box-shadow: 0 0 10px rgba(80, 200, 120, 0.5);
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* loaderPulse animation removed (unused) */

/* Navigation - FIXED SIZING */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 0 clamp(1rem, 5vw, 5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    height: 70px;
}

.logo-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 100%;
}

.nav-logo-large {
    height: 48px;
    filter: brightness(0) invert(1);
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* logo-divider and logo-text removed */

.nav-center {
    display: flex;
    gap: 3rem;
    list-style: none;
    height: 100%;
    align-items: center;
    margin: 0;
}

.nav-center a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding: 0.6rem 0;
    display: inline-block;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--tiffany-blue);
    transition: width 0.2s ease;
}

.nav-center a:hover {
    color: var(--tiffany-blue);
}

.nav-center a:hover::after {
    width: 100%;
}


.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.nav-icon {
    cursor: pointer;
    font-size: 1.3rem;
    position: relative;
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--tiffany-blue);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--tiffany-blue), var(--tiffany-blue-dark));
    color: #000000;
    font-size: 0.7rem;
    padding: 4px 7px;
    border-radius: 14px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    display: none;
    box-shadow: 0 3px 12px var(--shadow-tiffany);
    border: 2px solid white;
    animation: pulseCart 2s ease-in-out infinite;
}

@keyframes pulseCart {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 12px var(--shadow-tiffany);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 5px 18px rgba(80, 200, 120, 0.6);
    }
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(42, 42, 42, 0.98));
    backdrop-filter: blur(20px);
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(80, 200, 120, 0.2);
}

.mobile-menu-logo {
    flex: 1;
}

.mobile-menu-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    cursor: pointer;
    font-size: 1.8rem;
    color: white;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: var(--tiffany-blue);
    transform: rotate(90deg);
}

.mobile-menu-links {
    list-style: none;
    padding: 2rem 0;
}

.mobile-menu-links li {
    margin: 0;
}

.mobile-menu-links a {
    display: block;
    color: white;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 1.5rem 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.mobile-menu-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--tiffany-blue), transparent);
    opacity: 0.1;
    transition: width 0.3s ease;
}

.mobile-menu-links a:hover::before {
    width: 100%;
}

.mobile-menu-links a:hover {
    color: var(--tiffany-blue);
    border-left-color: var(--tiffany-blue);
    padding-left: 2.5rem;
    background: rgba(80, 200, 120, 0.05);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Show hamburger menu button on mobile */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
        order: -1;
    }
}

/* Old hero section and CRITICAL mobile performance moved to tablet section */

/* ===== MINIMAL CENTERED HERO ===== */
.hero-minimal {
    height: 100vh;
    min-height: 750px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
}

@media (max-width: 768px) {
    .hero-minimal {
        min-height: 100vh;
        height: auto;
        padding: 2rem 0 0 0;
    }
}

@media (max-width: 480px) {
    .hero-minimal {
        min-height: 100vh;
        padding: 1rem 0 0 0;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    animation: fadeInUp 1.5s ease-out 1s both;
}

.scroll-text {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: white;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.scroll-text-bold {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-text-small {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    color: white;
    letter-spacing: 0.05em;
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile scroll indicator */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 3rem;
        padding: 0 1.5rem;
    }
    
    .scroll-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .scroll-text-bold {
        font-size: 1.1rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }
    
    .scroll-text-small {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .scroll-arrow {
        font-size: 1.2rem;
        margin-top: 0.4rem;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 2.5rem;
        padding: 0 1rem;
        max-width: 90%;
    }
    
    .scroll-text {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .scroll-text-bold {
        font-size: 0.95rem;
        line-height: 1.2;
        margin-bottom: 0.3rem;
    }
    
    .scroll-text-small {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .scroll-arrow {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    .hero-logo {
        margin-bottom: 8rem;
    }
    
    .hero-main {
        padding-bottom: 10rem;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #000000;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(74, 144, 226, 0.4) 0%,
        rgba(80, 200, 120, 0.4) 50%,
        rgba(74, 144, 226, 0.4) 100%
    );
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    pointer-events: none;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    z-index: 3;
    pointer-events: none;
}

/* ASCII elements removed per user request */

.hero-main {
    position: relative;
    z-index: 100;
    text-align: center;
    width: 100%;
    max-width: 1400px;
    padding: 5rem 3rem 10rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 100%;
    z-index: 10;
    padding: 0;
}

@media (max-width: 1600px) {
    .hero-layout {
        gap: 0;
    }
}

@media (max-width: 1400px) {
    .hero-layout {
        gap: 0;
    }
}

@media (max-width: 1200px) {
    .hero-layout {
        flex-direction: column;
        gap: 0;
    }
}

.hero-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    justify-content: center;
    flex: 1;
    position: relative;
    z-index: 100;
    margin-top: 3rem;
}

/* hero-rotating-text removed */

/* Hero Logo Swaying Animation with Physics */
@keyframes logoSway {
    0%, 100% {
        transform: translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateX(-8px) rotate(-1.5deg) scale(1.01);
    }
    50% {
        transform: translateX(0) rotate(0deg) scale(1);
    }
    75% {
        transform: translateX(8px) rotate(1.5deg) scale(1.01);
    }
}

@keyframes logoRipple {
    0%, 100% {
        filter: brightness(0) invert(1) drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
    }
    25% {
        filter: brightness(0) invert(1) drop-shadow(-5px 12px 45px rgba(0, 0, 0, 0.35));
    }
    50% {
        filter: brightness(0) invert(1) drop-shadow(0 15px 50px rgba(0, 0, 0, 0.4));
    }
    75% {
        filter: brightness(0) invert(1) drop-shadow(5px 12px 45px rgba(0, 0, 0, 0.35));
    }
}

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

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-logo {
    height: 550px;
    filter: brightness(0) invert(1) drop-shadow(0 10px 40px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
    margin-top: 0;
    margin-bottom: 8rem;
    position: relative;
    z-index: 100;
    animation: 
        logoEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both,
        logoSway 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) 1.5s infinite,
        logoRipple 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) 1.5s infinite;
    transform-origin: center center;
    will-change: transform, filter;
}

/* Respect user's motion preferences for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-logo {
        animation: logoEntrance 0.5s ease 0.3s both;
    }
}

@media (max-width: 1400px) {
    .hero-logo {
        height: 480px;
        margin-top: 0;
        margin-bottom: 7rem;
    }
}

@media (max-width: 1200px) {
    .hero-logo {
        height: 400px;
        margin-top: 0;
        margin-bottom: 6rem;
    }
}

@media (max-width: 968px) {
    .hero-logo {
        height: 250px;
        max-width: 90%;
        margin-top: 0;
        margin-bottom: 8rem;
        /* Lighter animation for mobile performance - side to side only */
        animation: 
            logoSway 10s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    }
    
    /* Simplified sway animation for mobile */
    @keyframes logoSway {
        0%, 100% {
            transform: translateX(0) rotate(0deg) scale(1);
        }
        25% {
            transform: translateX(-5px) rotate(-1deg) scale(1);
        }
        50% {
            transform: translateX(0) rotate(0deg) scale(1);
        }
        75% {
            transform: translateX(5px) rotate(1deg) scale(1);
        }
    }
}

@media (max-width: 768px) {
    .hero-logo {
        height: 220px;
        margin-bottom: 7rem;
    }
    
    .hero-logo-container {
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .hero-main {
        padding-bottom: 12rem;
    }
}

@media (max-width: 600px) {
    .hero-logo {
        height: 200px;
        margin-bottom: 7rem;
    }
    
    .hero-main {
        padding-bottom: 11rem;
    }
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-explore,
.btn-artisans {
    padding: 1.2rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-width: 200px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-side {
    flex: 0 0 auto;
    z-index: 20;
}

.btn-explore.btn-side,
.btn-artisans.btn-side {
    position: static;
}

/* Prevent overlap with logo on all screen sizes */
@media (max-width: 1600px) {
    .btn-explore.btn-side {
        left: 3rem;
    }
    
    .btn-artisans.btn-side {
        right: 3rem;
    }
}

@media (max-width: 1400px) {
    .btn-side {
        bottom: 5rem;
    }
    
    .btn-explore.btn-side {
        left: 2.5rem;
    }
    
    .btn-artisans.btn-side {
        right: 2.5rem;
    }
}

/* Tablet and below - centered logo */
@media (max-width: 1200px) {
    .hero-layout {
        flex-direction: column;
        gap: 0;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo-container {
        flex: 0 1 auto;
        max-width: 100%;
    }
    
    .hero-logo {
        max-width: 90%;
        height: auto;
    }
}

@media (min-width: 1201px) and (max-width: 1300px) {
    .btn-side {
        bottom: 4.5rem;
    }
    
    .btn-explore.btn-side {
        left: 2rem;
    }
    
    .btn-artisans.btn-side {
        right: 2rem;
    }
}

.btn-explore {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-explore:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
}

.btn-explore:hover::before {
    transform: translateX(100%);
}

.btn-artisans {
    background: rgba(255, 255, 255, 0.15);
    color: #000000;
    border: 2px solid rgba(0, 0, 0, 0.3);
}

.btn-artisans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-artisans:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.btn-artisans:hover::before {
    transform: translateX(100%);
}

/* Old hero-split layout removed - not in HTML */

/* fadeInScale animation removed (unused) */

/* Old hero systems removed (split layouts, taglines, carousels, luxury-cta, hero-bg, etc.) */

/* Scroll Indicator - Clean */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 4;
    animation: elegantFloat 3s ease-in-out infinite;
}

.scroll-line-clean {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--tiffany-blue), transparent);
    margin: 0 auto 0.8rem;
    opacity: 0.7;
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1.15);
        opacity: 1;
    }
}

.scroll-text-clean {
    font-size: 0.75rem;
    color: var(--charcoal);
    opacity: 0.6;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

/* Legacy scroll styles removed */

/* Old map-section removed (using bento-map) */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-label {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--tiffany-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--charcoal);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.section-title-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.25em;
    color: var(--tiffany-blue);
    opacity: 0.9;
}

/* map-instructions removed */

#japanMap {
    height: 650px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background: var(--cream);
    border: 1px solid rgba(196, 165, 114, 0.2);
}

/* Custom Map Markers */
.custom-marker {
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.3);
    border: 3px solid var(--tiffany-blue);
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% {
        box-shadow: 0 4px 15px var(--shadow-tiffany);
    }
    50% {
        box-shadow: 0 4px 25px rgba(80, 200, 120, 0.6);
    }
}

.custom-marker:hover {
    transform: scale(1.25) translateY(-5px);
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.8);
    border-width: 4px;
    animation: none;
}

.marker-pottery { border-color: var(--warm-brown); }
.marker-kimono { border-color: var(--tiffany-blue-light); }
.marker-cutlery { border-color: var(--charcoal); }
.marker-woodcraft { border-color: #8b4513; }
.marker-textile { border-color: var(--tiffany-blue); }

/* Location Popup Styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.location-popup {
    font-family: 'Cinzel', serif;
    padding: 0.5rem;
}

.location-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--charcoal);
}

.location-specialty {
    font-size: 1rem;
    color: var(--tiffany-blue-dark);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.location-count {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.2rem;
}

.view-products-btn {
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, var(--tiffany-blue), var(--tiffany-blue-dark));
    color: #2a2a2a;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px var(--shadow-tiffany);
}

.view-products-btn i {
    font-size: 0.9rem;
}

.view-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 200, 120, 0.6);
    background: linear-gradient(135deg, var(--tiffany-blue-dark), var(--tiffany-blue-deep));
}

/* Old products-section, filter-buttons, and products-grid removed (using marketplace-bento) */

@keyframes fadeInGrid {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    background: #f0f8ff;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    min-height: 420px;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Desktop specific sizing - 2-row horizontal grid */
@media (min-width: 1024px) {
    .bento-products .product-card {
        width: 280px;
        height: 100%;
        max-width: 280px;
        min-height: 420px;
    }
    
    .bento-products .product-image {
        height: 260px;
        object-fit: cover;
    }
    
    .bento-products .product-info {
        padding: 0.8rem 0.7rem 0.9rem;
        min-height: auto;
    }
    
    .bento-products .product-name {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .bento-products .product-artisan {
        font-size: 0.75rem;
    }
    
    .bento-products .product-location {
        font-size: 0.7rem;
    }
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tiffany-blue), var(--warm-brown));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

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

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 1rem 1rem 1.2rem;
    text-align: center;
    background: white;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.3rem;
    min-height: 180px;
}

/* Better product info spacing */
.product-info > * {
    margin-bottom: 0;
}

.product-info .product-actions {
    margin-top: auto;
    padding-top: 0.6rem;
}

.product-category-label {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-brown);
    margin-bottom: 0.3rem;
    font-weight: 700;
    display: block;
}

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--charcoal);
    line-height: 1.25;
}

.product-artisan {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.4rem;
}

.product-location {
    font-size: 0.75rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* product-bottom, product-price, and add-to-cart-btn removed */

/* Product Detail Modal */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2500;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.product-modal.active {
    display: flex;
}

.product-modal-content {
    background: white;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    border-radius: 12px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .product-modal-content {
        width: 95%;
        max-width: 95%;
        max-height: 90vh;
        border-radius: 8px;
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    color: #2a2a2a;
    background: rgba(0, 0, 0, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.close-modal:hover {
    transform: rotate(90deg) scale(1.1);
    background: #000000;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: #000000;
}

@media (max-width: 768px) {
    .close-modal {
        top: 0.8rem;
        right: 0.8rem;
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
    }
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.cart-modal.active {
    display: flex;
}

.cart-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    width: 90%;
    max-width: 650px;
    max-height: 85vh;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-header {
    padding: 1.8rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.close-cart {
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-cart:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.cart-items {
    padding: 2rem;
    max-height: 450px;
    overflow-y: auto;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: #999;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    align-items: center;
    transition: background 0.3s ease;
}

.cart-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.cart-item-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-size: 1.05rem;
    color: var(--charcoal);
}

.cart-item-artisan {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.6rem;
}

.cart-item-price {
    font-weight: 700;
    color: #000000;
    font-size: 1.1rem;
}

.cart-item-remove {
    color: #e53935;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.cart-item-remove:hover {
    transform: scale(1.3);
}

.cart-footer {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.cart-total, .cart-shipping {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-total {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.cart-shipping {
    font-size: 0.95rem;
    color: #666;
}

.checkout-btn {
    width: 100%;
    padding: 1.3rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

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

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

.checkout-btn:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

/* Checkout Modal */
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    overflow-y: auto;
    padding: 2rem 0;
}

.checkout-modal.active {
    display: flex;
}

.checkout-content {
    background: white;
    width: 95%;
    max-width: 1000px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    margin: auto;
}

.checkout-header {
    padding: 1.8rem 2rem;
    background: linear-gradient(135deg, var(--tiffany-blue), var(--tiffany-blue-dark));
    color: #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.checkout-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmerSlide 3s ease-in-out infinite;
}

.checkout-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.close-checkout {
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-checkout:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.checkout-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    padding: 2rem;
}

.checkout-summary {
    background: var(--cream);
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.checkout-summary h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

#checkoutItems {
    margin-bottom: 2rem;
}

.checkout-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.checkout-item-artisan {
    font-size: 0.8rem;
    color: #666;
}

.checkout-item-price {
    font-weight: 600;
    color: var(--tiffany-blue);
}

.checkout-totals {
    border-top: 2px solid #ddd;
    padding-top: 1rem;
}

.checkout-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.checkout-line.total {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #ddd;
    color: var(--charcoal);
}

.checkout-form h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--charcoal);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Cinzel', serif;
    background: white;
    color: var(--charcoal);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--tiffany-blue);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
    transform: translateY(-1px);
    background: var(--ivory);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.card-element {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    background: white;
    transition: all 0.3s ease;
}

.card-element:focus-within {
    border-color: var(--tiffany-blue);
    box-shadow: 0 0 0 3px rgba(196, 165, 114, 0.1);
}

.card-errors {
    color: #e53935;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 20px;
}

.pay-btn {
    width: 100%;
    padding: 1.4rem;
    background: linear-gradient(135deg, var(--tiffany-blue), var(--tiffany-blue-light));
    color: #2a2a2a;
    border: none;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    font-weight: 700;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

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

.pay-btn:hover:not(:disabled)::before {
    left: 100%;
}

.pay-btn:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.pay-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Old ascii-video-section and #asciiOutput removed (using asciiOutputHero/Partner) */

/* Notifications */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    animation: slideIn 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    max-width: 400px;
}

.notification-success {
    border-left: 4px solid #4caf50;
    color: #2e7d32;
}

.notification-error {
    border-left: 4px solid #f44336;
    color: #c62828;
}

.notification-info {
    border-left: 4px solid #2196f3;
    color: #1565c0;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Test Card Helper Styling */
.test-card-helper button:hover {
    background: #e3f2fd !important;
    transform: translateX(4px);
}

/* Artisan Products Preview */
.artisan-products-preview {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(80, 200, 120, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(80, 200, 120, 0.2);
}

.artisan-products-preview h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 600;
}

.artisan-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.artisan-product-mini {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.artisan-product-mini::after {
    content: '→';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 30px;
    height: 30px;
    background: rgba(80, 200, 120, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artisan-product-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(80, 200, 120, 0.4);
    border-color: var(--tiffany-blue);
}

.artisan-product-mini:hover::after {
    opacity: 1;
}

.artisan-product-mini img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.artisan-product-mini:hover img {
    transform: scale(1.05);
}

.product-mini-info {
    padding: 0.8rem;
}

.product-mini-name {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.product-mini-price {
    display: none; /* Hide prices in Masters of Tradition featured works */
}

.spotlight-cta-secondary {
    width: 100%;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
}

.spotlight-cta-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

/* Map Expand Button */
.map-expand-btn {
    padding: 0.6rem 1.2rem;
    background: #2a2a2a;
    color: #ffffff;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-expand-btn:hover {
    background: #000000;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.bento-map-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Map Modal */
.map-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    backdrop-filter: blur(10px);
}

.map-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.map-modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    width: 95vw;
    height: 90vh;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.map-modal-header {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-modal-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.map-modal-header .close-modal {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: static;
}

.map-modal-header .close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.map-expanded {
    flex: 1;
    width: 100%;
    height: 100%;
}

.map-legend-expanded {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Footer */
footer {
    background: #ffffff;
    color: #000000;
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-logo-img {
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .social-links {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
    
    .footer-links {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tiffany-blue), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

footer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(80, 200, 120, 0.06) 0%, transparent 70%);
    animation: footerGlow 15s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 10%) scale(1.1); }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin: 0 auto 1.5rem;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

/* footer-logo removed (using footer-logo-img) */

.footer-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2.8rem;
    line-height: 2;
    letter-spacing: 0.02em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.social-link {
    color: #000000;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    color: var(--tiffany-blue);
    transform: translateY(-6px) rotate(5deg);
    border-color: var(--tiffany-blue);
    background: rgba(80, 200, 120, 0.2);
    box-shadow: 0 8px 25px var(--shadow-tiffany);
}

/* Duplicate animations removed - already defined above */

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, var(--tiffany-blue), var(--tiffany-blue-dark));
    color: #2a2a2a;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow-tiffany);
    z-index: 3500;
    animation: slideInBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-weight: 600;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes slideInBounce {
    0% {
        transform: translateX(400px);
        opacity: 0;
    }
    60% {
        transform: translateX(-20px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
    }
}

/* ===== VIDEO SECTION CINEMATIC ===== */
.video-section-cinematic {
    padding: 8rem 3rem 6rem;
    background: linear-gradient(
        135deg,
        #4A90E2 0%,
        #50C878 25%,
        #4A90E2 50%,
        #50C878 75%,
        #4A90E2 100%
    );
    background-size: 400% 400%;
    animation: gradientMove 20s ease infinite;
    color: #000000;
    position: relative;
    overflow: hidden;
}

.video-section-cinematic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
    z-index: 0;
}

.video-header-cinematic {
    max-width: 1600px;
    margin: 0 auto 5rem;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.video-header-cinematic .section-badge {
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.15), rgba(80, 200, 120, 0.08));
    border-color: var(--accent-teal);
    color: #000000;
}

.video-title-cinematic {
    margin-bottom: 1.5rem;
}

.video-title-cinematic .title-main {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.video-title-cinematic .title-jp {
    display: block;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: #000000;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.video-description-cinematic {
    font-size: 1.1rem;
    color: #000000;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.video-grid-cinematic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-items: stretch;
    align-items: start;
}

.video-card-cinematic {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-card-cinematic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tiffany-blue), var(--tiffany-blue-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 10;
}

.video-card-cinematic:hover::before {
    transform: scaleX(1);
}

.video-card-cinematic:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(80, 200, 120, 0.35);
    border-color: var(--tiffany-blue);
    background: rgba(255, 255, 255, 0.08);
}

.video-wrapper-cinematic {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--charcoal);
}

.craft-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* video-overlay-cinematic and video-play-icon removed (videos use native controls) */

.video-wrapper-cinematic iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info-cinematic {
    padding: 2rem;
    text-align: center;
}

.video-card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000000;
    line-height: 1.3;
}

.video-card-subtitle {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.video-card-description {
    font-size: 0.95rem;
    color: #2a2a2a;
    line-height: 1.6;
}

/* Old video section removed (using video-section-cinematic) */

/* ===== GLOBAL MOBILE IMPROVEMENTS ===== */

/* Better touch targets for mobile */
@media (max-width: 768px) {
    /* Enable all touch gestures */
    * {
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(80, 200, 120, 0.15);
    }
    
    /* Allow pinch zoom on specific elements */
    img,
    .product-card,
    .product-image,
    #japanMap {
        touch-action: pinch-zoom pan-x pan-y;
    }
    
    /* Minimum touch target size for better mobile UX */
    button,
    a,
    .nav-icon,
    .filter-chip {
        min-height: 40px !important;
        min-width: 40px !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Smooth scrolling on mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better font rendering on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Prevent horizontal scroll */
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Better spacing for sections */
    section {
        padding-left: clamp(1rem, 3vw, 3rem);
        padding-right: clamp(1rem, 3vw, 3rem);
    }
    
    /* Larger text for better readability */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Better button visibility */
    button {
        font-size: 16px;
        cursor: pointer;
        border-radius: 8px;
    }
    
    /* Smooth transitions for touch interactions */
    .product-card,
    .craftsman-card,
    button,
    a {
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    /* Active states for touch */
    .product-card:active,
    button:active,
    a:active {
        transform: scale(0.98);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .checkout-body {
        grid-template-columns: 1fr;
    }
    
    nav {
        padding: 0 2rem;
    }
}

/* Old marketplace responsive layouts removed */

/* Tablet Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        height: 70px;
        padding: 0 1.5rem;
    }
    
    .nav-logo-large {
        height: 40px;
    }
    
    .nav-center {
        display: flex;
        gap: 2rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0.5rem 1rem;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    
    .nav-center::-webkit-scrollbar {
        display: none;
    }
    
    .nav-center li {
        scroll-snap-align: start;
    }
    
    .nav-center a {
        font-size: 0.9rem;
        white-space: nowrap;
        padding: 0.8rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .nav-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        flex-shrink: 0;
        border-radius: 50%;
        transition: all 0.2s ease;
    }
    
    .nav-icon:active {
        transform: scale(0.9);
        background: rgba(255, 255, 255, 0.2);
    }
    
    /* Hero Section */
    .hero-main {
        padding: 2rem 1.5rem;
        min-height: calc(100vh - 70px);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo-container {
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .hero-logo {
        height: auto;
        max-width: 100%;
        margin-top: 0;
    }
    
    .hero-layout {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo-container {
        flex: 0 1 auto;
        max-width: 100%;
    }
    
    /* Products Grid */
    .bento-products {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 1.5rem;
        height: auto;
        max-height: none;
        overflow: visible;
    }
    
    .product-card {
        min-height: 480px;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-info {
        padding: 1.2rem 1rem 1.5rem;
        min-height: 200px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-price-large {
        font-size: 1.3rem;
    }
    
    /* Artisans Section */
    .craftsman-card-image {
        height: 300px;
    }
    
    /* Video Section */
    .video-grid-cinematic {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .craft-video {
        height: 300px;
    }
    
    /* Partner Section */
    /* PARTNER SECTION - LARGE AND READABLE */
    .partner-section {
        padding: 3rem 1.5rem !important;
    }
    
    .partner-content {
        padding: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
        width: 100% !important;
    }
    
    .partner-left {
        width: 100% !important;
        margin-bottom: 2rem !important;
    }
    
    .partner-title {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .partner-title-jp {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .partner-description {
        font-size: 1.05rem !important;
        line-height: 1.8 !important;
        margin-bottom: 2rem !important;
    }
    
    .partner-benefits {
        margin-top: 2rem !important;
    }
    
    .partner-benefits li {
        font-size: 1rem !important;
        padding: 1rem 0 !important;
        line-height: 1.6 !important;
    }
    
    .partner-benefits li i {
        font-size: 1.3rem !important;
        margin-right: 1rem !important;
    }
    
    .partner-right {
        width: 100% !important;
    }
    
    /* Map */
    .bento-map {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        position: relative;
        top: 0;
        padding: 1rem;
    }
    
    .bento-map-header h3 {
        font-size: 1.2rem;
    }
    
    #japanMap {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
        border-radius: 12px;
        width: 100% !important;
    }
    
    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Navigation */
    nav {
        height: 70px;
        padding: 0 1.5rem;
    }
    
    nav.scrolled {
        height: 60px;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-logo-large {
        height: 34px;
    }
    
    .nav-right {
        gap: 1.5rem;
    }
    
    .nav-icon {
        font-size: 1.1rem;
    }
    
    /* Hero Split Mobile */
    /* Hero Mobile */
    .hero-minimal {
        min-height: 100vh;
    }
    
    .hero-main {
        padding: 2rem 1.5rem;
        padding-top: 1rem;
        align-items: center;
    }
    
    .hero-layout {
        flex-direction: column;
        gap: 0;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo-container {
        flex: 0 1 auto;
        max-width: 100%;
    }
    
    .hero-logo {
        height: auto;
        max-width: 90%;
        margin-top: 0;
    }
    
    /* Artisan products mobile */
    .artisan-products-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .artisan-product-mini img {
        height: 150px;
    }
    
    .hero-overlay {
        opacity: 0.7;
    }
    
    
    /* Bento Marketplace Mobile */
    .filter-bar-sticky {
        top: 70px;
    }
    
    .filter-container {
        padding: 1rem 1.5rem;
        gap: 0.6rem;
    }
    
    .filter-chip {
        padding: 0.5rem 0.9rem !important;
        font-size: 0.75rem !important;
        min-height: 38px !important;
        border-radius: 20px !important;
    }
    
    .filter-count {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
        margin-left: 0;
    }
    
    .bento-container {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .filter-bar-sticky {
        top: 70px;
    }
    
    .filter-container {
        padding: 1rem 1.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-chip {
        padding: 0.45rem 0.8rem !important;
        font-size: 0.7rem !important;
        white-space: nowrap !important;
        min-height: 36px !important;
        border-radius: 18px !important;
    }
    
    .filter-count {
        font-size: 0.8rem;
    }
    
    .bento-map {
        position: sticky;
        top: 80px;
        padding: 1rem;
        height: 650px;
        max-height: 650px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    
    .bento-map-header {
        margin-bottom: 0.6rem;
    }
    
    .bento-map-header h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .bento-map-header p {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
    
    .map-expand-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    #japanMap {
        flex: 1;
        min-height: 0;
        border-radius: 10px;
        overflow: hidden;
        width: 100% !important;
    }
    
    .map-legend-bento {
        gap: 0.4rem;
        flex-wrap: wrap;
        margin-top: 0.6rem;
        font-size: 0.65rem;
    }
    
    .legend-bento .dot {
        width: 7px;
        height: 7px;
    }
    
    /* MOBILE: COMPLETELY RE-ENGINEERED - SIMPLE FLEXBOX APPROACH */
    .bento-products {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.8rem !important;
        padding: 1rem !important;
        height: 580px !important;
        max-height: 580px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-behavior: smooth !important;
        scroll-snap-type: x mandatory !important;
        scroll-padding: 1rem !important;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(8px);
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.08);
        -webkit-overflow-scrolling: touch;
        align-content: flex-start;
    }
    
    .bento-products.collapsed {
        height: 580px !important;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    
    .bento-products .product-card {
        width: 145px !important;
        height: 280px !important;
        flex-shrink: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        border-radius: 10px;
        overflow: hidden;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-sizing: border-box !important;
        margin: 0 !important;
        scroll-snap-align: start !important;
        background: white;
    }
    
    .bento-products .product-card:active {
        transform: scale(0.98);
    }
    
    .bento-products .product-image {
        height: 100px !important;
        min-height: 100px !important;
        max-height: 100px !important;
        object-fit: cover !important;
        flex-shrink: 0 !important;
        width: 100% !important;
    }
    
    .bento-products .product-info {
        padding: 0.5rem !important;
        flex: 1 1 auto !important;
        display: flex !important;
        flex-direction: column !important;
        background: rgba(255, 255, 255, 0.95);
        overflow: hidden !important;
        box-sizing: border-box !important;
    }
    
    .bento-products .product-category-label {
        font-size: 0.55rem !important;
        margin-bottom: 0.2rem !important;
        font-weight: 700;
        opacity: 0.7;
    }
    
    .bento-products .product-name {
        font-size: 0.7rem !important;
        margin-bottom: 0.2rem !important;
        line-height: 1.15 !important;
        font-weight: 600;
    }
    
    .bento-products .product-artisan {
        font-size: 0.55rem !important;
        margin-bottom: 0.15rem !important;
        opacity: 0.8;
    }
    
    .bento-products .product-location {
        font-size: 0.5rem !important;
        margin-bottom: 0.25rem !important;
        opacity: 0.7;
    }
    
    .bento-products .product-price-large {
        font-size: 0.75rem !important;
        margin-bottom: 0.3rem !important;
        font-weight: 700 !important;
        margin-top: auto;
        color: #000000;
    }
    
    .bento-products .product-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
        margin-top: auto !important;
        flex-shrink: 0 !important;
    }
    
    .bento-products .product-stripe-btn,
    .bento-products .product-cart-btn {
        width: 100% !important;
        padding: 0.4rem 0.3rem !important;
        font-size: 0.53rem !important;
        min-height: 30px !important;
        max-height: 30px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 6px !important;
        font-weight: 600 !important;
        flex-shrink: 0 !important;
        box-sizing: border-box !important;
    }
    
    .bento-products .product-stripe-btn i,
    .bento-products .product-cart-btn i {
        font-size: 0.48rem !important;
        margin-right: 0.2rem !important;
    }
    
    .bento-map {
        position: relative;
        top: 0;
        padding: 1.5rem;
        height: auto;
        max-height: none;
        min-height: auto;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .bento-map-header {
        margin-bottom: 1rem;
    }
    
    .bento-map-header h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    
    .bento-map-header p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        opacity: 0.8;
    }
    
    .map-expand-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
    }
    
    #japanMap {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
        border-radius: 12px;
        overflow: hidden;
        width: 100% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .map-legend-bento {
        gap: 0.8rem;
        flex-wrap: wrap;
        margin-top: 1rem;
        font-size: 0.75rem;
        justify-content: center;
    }
    
    .legend-bento {
        background: rgba(0, 0, 0, 0.03);
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
    }
    
    .legend-bento .dot {
        width: 8px;
        height: 8px;
    }
    
    .craftsman-element {
        display: none;
    }
    
    /* Touch gestures for mobile */
    .product-card,
    .craftsman-card {
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.1);
        touch-action: manipulation;
    }
    
    
    /* Video section cinematic mobile */
    .video-section-cinematic {
        padding: 6rem 1.5rem 4rem;
    }
    
    .video-header-cinematic {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .video-title-cinematic .title-main {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .video-description-cinematic {
        font-size: 1rem;
    }
    
    .video-grid-cinematic {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .video-card-cinematic:hover {
        transform: translateY(-6px);
    }
    
    
    .video-info-cinematic {
        padding: 1.5rem;
    }
    
    .video-card-title {
        font-size: 1.3rem;
    }
    
    .video-card-subtitle {
        font-size: 0.9rem;
    }
    
    .video-card-description {
        font-size: 0.85rem;
    }
    
    /* Form improvements */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Enhanced touch interactions */
    .product-card,
    .craftsman-card,
    .video-card-cinematic,
    .filter-btn-luxury,
    button {
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.15);
        touch-action: manipulation;
    }
    
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px !important;
    }
    
    /* Better modal sizing */
    .product-modal-content,
    /* CRAFTSMAN MODAL - FULLY OPTIMIZED FOR SMALL MOBILE */
    .craftsman-modal-content {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        height: 100vh !important;
        margin: 0 !important;
        border-radius: 0 !important;
        overflow-y: auto !important;
    }
    
    .craftsman-modal-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
    }
    
    .craftsman-modal-left {
        width: 100% !important;
        gap: 0 !important;
    }
    
    .craftsman-modal-image {
        height: 300px !important;
        width: 100% !important;
        border-radius: 0 !important;
    }
    
    .craftsman-modal-video {
        height: 250px !important;
        width: 100% !important;
        border-radius: 0 !important;
    }
    
    .craftsman-modal-right {
        padding: 2rem 1.5rem 3rem !important;
    }
    
    .craftsman-modal-name {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    .craftsman-modal-story p {
        font-size: 1.05rem !important;
        line-height: 1.8 !important;
    }
    
    .craftsman-modal-quote p {
        font-size: 1.15rem !important;
        line-height: 1.7 !important;
    }
    
    .craftsman-modal-browse {
        padding: 1.4rem 2rem !important;
        font-size: 1.05rem !important;
    }
}

/* iPhone and Mobile Responsive Design */
@media (max-width: 480px) {
    /* Better overall spacing */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Navigation */
    nav {
        height: 60px;
        padding: 0 1rem;
    }
    
    .nav-logo-large {
        height: 36px;
    }
    
    .nav-center {
        display: none;
    }
    
    .nav-right {
        gap: 0.8rem;
    }
    
    .nav-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-icon i {
        font-size: 1.1rem;
    }
    
    /* Hero Section */
    .hero-main {
        padding: 2rem 1rem;
        padding-bottom: 10rem;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo-container {
        gap: 1rem;
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .hero-logo {
        height: 180px;
        margin-top: 0;
        margin-bottom: 8rem;
    }
    
    
    .hero-layout {
        flex-direction: column;
        gap: 0;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo-container {
        max-width: 100%;
    }
    
    /* Products Grid */
    /* MOBILE: Horizontal scroll grid like Instagram Stories */
    .bento-products {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(220px, 220px)) !important;
        grid-auto-flow: column !important;
        gap: 0.9rem !important;
        padding: 1.5rem 1rem !important;
        height: auto !important;
        max-height: none !important;
        overflow-y: hidden !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        scroll-snap-type: x mandatory !important;
    }
    
    .bento-products.collapsed {
        display: none !important;
    }
    
    .bento-products .product-card {
        width: 220px !important;
        height: auto !important;
        min-height: 320px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        border-radius: 12px;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    }
    
    .bento-products .product-image {
        height: 180px !important;
        flex-shrink: 0;
        object-fit: cover;
    }
    
    .bento-products .product-info {
        padding: 0.6rem 0.6rem 0.7rem !important;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }
    
    .bento-products .product-name {
        font-size: 0.8rem !important;
        line-height: 1.2;
        margin-bottom: 0.2rem;
    }
    
    .bento-products .product-artisan {
        font-size: 0.6rem !important;
        margin-bottom: 0.15rem;
    }
    
    .bento-products .product-location {
        font-size: 0.58rem !important;
        margin-bottom: 0.3rem;
    }
    
    .bento-products .product-category-label {
        font-size: 0.58rem;
        margin-bottom: 0.2rem;
    }
    
    .bento-products .product-price-large {
        font-size: 0.9rem !important;
        margin-bottom: 0.4rem;
        margin-top: auto;
    }
    
    .bento-products .product-actions {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .bento-products .product-stripe-btn,
    .bento-products .product-cart-btn {
        flex: 1;
        padding: 0.7rem 0.7rem !important;
        font-size: 0.75rem !important;
        white-space: nowrap;
        border-radius: 8px;
        min-height: 42px;
    }
    
    .bento-products .product-stripe-btn i,
    .bento-products .product-cart-btn i {
        font-size: 0.85rem;
    }
    
    /* Filter Bar */
    .filter-bar-sticky {
        padding: 1rem;
        top: 60px;
    }
    
    .filter-container {
        padding: 1.2rem 1rem;
        gap: 0.8rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        display: flex;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        scroll-padding: 1rem;
    }
    
    .filter-container::-webkit-scrollbar {
        display: none;
    }
    
    .filter-chip {
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        border-radius: 25px !important;
        min-height: 40px !important;
        scroll-snap-align: start !important;
    }
    
    .filter-count {
        margin-left: auto;
        padding-left: 1.5rem;
        flex-shrink: 0;
        font-size: 1rem;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    .filter-count span {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    /* Artisans Section - Mobile Optimized */
    /* ARTISAN SECTION - ULTRA COMPACT */
    .artisans-showcase {
        padding: 2rem 1rem 2rem !important;
        background: white !important;
    }
    
    .artisans-showcase-header {
        margin-bottom: 1rem !important;
        padding: 0 !important;
    }
    
    .showcase-label {
        font-size: 0.7rem !important;
        margin-bottom: 0.3rem !important;
        padding: 0.3rem 0.7rem !important;
    }
    
    .showcase-title {
        font-size: 1.6rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.2 !important;
    }
    
    .showcase-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 0 !important;
    }
    
    .artisan-spotlight-container {
        max-width: 100% !important;
        padding: 0 !important;
    }
    
    .artisan-spotlight {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 0 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        opacity: 1 !important;
        transform: translateX(0) !important;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .spotlight-visual {
        height: 220px !important;
        border-radius: 10px !important;
        overflow: hidden !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }
    
    .spotlight-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .spotlight-details {
        padding: 0.8rem 0.3rem !important;
        background: transparent !important;
    }
    
    .spotlight-craft-label {
        font-size: 0.7rem !important;
        padding: 0.3rem 0.7rem !important;
        margin-bottom: 0.5rem !important;
        display: inline-block !important;
    }
    
    .spotlight-name {
        font-size: 1.5rem !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.2 !important;
    }
    
    .spotlight-name-jp {
        font-size: 0.8rem !important;
        margin-bottom: 0.6rem !important;
        opacity: 0.8;
    }
    
    .spotlight-bio {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 0.7rem !important;
        color: #555 !important;
    }
    
    .spotlight-meta {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.6rem !important;
        margin-bottom: 0.9rem !important;
    }
    
    .meta-item {
        background: rgba(80, 200, 120, 0.05) !important;
        padding: 0.5rem !important;
        border-radius: 6px !important;
    }
    
    .meta-label {
        font-size: 0.65rem !important;
        display: block !important;
        margin-bottom: 0.1rem !important;
        opacity: 0.7 !important;
        text-transform: uppercase !important;
    }
    
    .meta-value {
        font-size: 0.85rem !important;
        font-weight: 600;
    }
    
    /* HIDE products grid on mobile for performance */
    /* FEATURED WORKS - COMPACT VERSION */
    .artisan-products-preview.mobile-products {
        display: block !important;
        margin: 1rem 0 !important;
        padding: 0.9rem !important;
        background: rgba(80, 200, 120, 0.05) !important;
        border-radius: 10px !important;
        border: 1px solid rgba(80, 200, 120, 0.2) !important;
    }
    
    .artisan-products-preview.mobile-products h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.7rem !important;
        color: #000 !important;
        font-weight: 600 !important;
    }
    
    .artisan-products-grid.mobile-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.7rem !important;
    }
    
    .artisan-product-mini {
        background: white !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        border: 2px solid rgba(0, 0, 0, 0.1) !important;
        display: flex !important;
        align-items: center !important;
        min-height: 80px !important;
    }
    
    .artisan-product-mini img {
        width: 90px !important;
        height: 80px !important;
        object-fit: cover !important;
        flex-shrink: 0 !important;
    }
    
    .product-mini-info {
        padding: 0.7rem !important;
        flex: 1 !important;
    }
    
    .product-mini-name {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.3rem !important;
        color: #333 !important;
    }
    
    .product-mini-price {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: var(--tiffany-blue) !important;
    }
    
    .spotlight-cta {
        font-size: 1rem !important;
        padding: 1.1rem 1.8rem !important;
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 0.8rem;
    }
    
    .spotlight-cta-secondary {
        display: none; /* Hide secondary button on mobile */
    }
    
    /* NAVIGATION - COMPACT & ERGONOMIC - ONLY IN ARTISAN SECTION */
    .artisan-navigation {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 10 !important;
        margin-top: 2rem !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.5rem !important;
        padding: 0.9rem 1.8rem !important;
        background: rgba(255, 255, 255, 0.4) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 50px !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        width: fit-content !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .artisan-nav-btn {
        width: 52px !important;
        height: 52px !important;
        font-size: 1.3rem !important;
        border-radius: 50% !important;
        background: #000000 !important;
        color: white !important;
        border: 2px solid #000000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        flex-shrink: 0 !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    }
    
    .artisan-nav-btn:active {
        transform: scale(0.92) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    }
    
    .artisan-counter {
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        min-width: 65px !important;
        text-align: center !important;
        color: #2a2a2a !important;
    }
    
    .craftsman-card {
        margin-bottom: 0;
        border-radius: 16px;
    }
    
    .craftsman-card-image {
        height: 280px;
        border-radius: 16px 16px 0 0;
    }
    
    .craftsman-card-info {
        padding: 2rem 1.5rem;
    }
    
    /* Video Section */
    .video-section-cinematic {
        padding: 4rem 1rem;
    }
    
    .video-grid-cinematic {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .video-card-cinematic {
        margin-bottom: 0;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .craft-video {
        height: 240px;
        width: 100%;
        border-radius: 0;
        object-fit: cover;
    }
    
    .video-wrapper-cinematic {
        border-radius: 0;
        overflow: hidden;
        padding-bottom: 0 !important;
        height: 240px;
    }
    
    .video-info-cinematic {
        padding: 1.2rem 1rem;
    }
    
    .video-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }
    
    .video-card-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .video-card-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    /* Partner Section */
    .partner-section {
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    
    .partner-content {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        padding: 0;
    }
    
    .partner-left,
    .partner-right {
        width: 100%;
    }
    
    .partner-left::before {
        display: none;
    }
    
    .partner-section .section-label {
        font-size: 0.65rem;
        padding: 0.5rem 1.2rem;
        margin-bottom: 1rem;
    }
    
    .partner-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .partner-title-jp {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .partner-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    .partner-benefits {
        margin-bottom: 1.5rem;
    }
    
    .partner-benefits li {
        font-size: 0.9rem;
        padding: 0.9rem 0;
        display: flex;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .partner-benefits i {
        font-size: 1.1rem;
        width: 26px;
        height: 26px;
        margin-top: 0.1rem;
    }
    
    /* PARTNER FORM - LARGE AND USABLE */
    .partner-section {
        padding: 3rem 1.5rem !important;
    }
    
    .partner-content {
        padding: 0 !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 3rem !important;
    }
    
    .partner-left,
    .partner-right {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .partner-form {
        width: 100% !important;
        padding: 2.5rem 2rem !important;
        background: white !important;
        border-radius: 16px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        box-sizing: border-box !important;
    }
    
    .partner-form h3 {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
    }
    
    .partner-form .form-group {
        margin-bottom: 1.8rem !important;
    }
    
    .partner-form input,
    .partner-form select,
    .partner-form textarea {
        padding: 1.4rem 1.3rem !important;
        font-size: 1.05rem !important;
        border-radius: 12px !important;
        min-height: 54px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border: 2px solid rgba(80, 200, 120, 0.3) !important;
    }
    
    .partner-form textarea {
        min-height: 140px !important;
    }
    
    .partner-submit-btn {
        padding: 1.5rem 2rem !important;
        font-size: 1.1rem !important;
        min-height: 60px !important;
        width: 100% !important;
    }
    
    /* Better form inputs for mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 1.2rem 1rem;
        font-size: 16px;
        border-radius: 12px;
        border: 2px solid rgba(80, 200, 120, 0.2);
        background: white;
        transition: all 0.3s ease;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        touch-action: manipulation;
        min-height: 54px;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--tiffany-blue);
        box-shadow: 0 0 0 4px rgba(80, 200, 120, 0.15);
        transform: scale(1.01);
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
        color: var(--charcoal);
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    /* Better button sizing for mobile */
    .partner-submit-btn,
    .contact-submit-btn,
    .checkout-btn,
    .pay-btn {
        padding: 1.2rem 2rem;
        font-size: 16px;
        border-radius: 8px;
        width: 100%;
        min-height: 54px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Footer */
    .footer-content {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    /* Modals - Full screen on mobile */
    .product-modal-content,
    /* CRAFTSMAN MODAL - COMPLETELY RE-ENGINEERED FOR MOBILE */
    .craftsman-modal-content {
        width: 100% !important;
        max-width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        margin: 0 !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 0 !important;
    }
    
    .cart-content,
    .checkout-content {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-inner {
        padding: 1rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Fix product modal close button on mobile */
    .product-modal .close-modal {
        position: fixed !important;
        top: 1rem !important;
        right: 1rem !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 1.4rem !important;
        background: rgba(0, 0, 0, 0.8) !important;
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        z-index: 9999 !important;
        padding: 0 !important;
    }
    
    .craftsman-modal-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .checkout-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    /* CLOSE BUTTON - LARGE AND EASY TO TAP */
    .close-modal {
        position: sticky !important;
        top: 0 !important;
        right: 0 !important;
        z-index: 1000 !important;
        background: white !important;
        width: 100% !important;
        height: 70px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        padding: 0 1.5rem !important;
        font-size: 2.5rem !important;
        color: #333 !important;
        cursor: pointer !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
        border-bottom: 1px solid #eee !important;
    }
    
    .craftsman-modal-left {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
    }
    
    .craftsman-modal-image {
        height: 350px !important;
        border-radius: 0 !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    
    .craftsman-modal-video {
        height: 300px !important;
        border-radius: 0 !important;
        width: 100% !important;
        padding-bottom: 0 !important;
        position: relative !important;
    }
    
    .craftsman-modal-video iframe,
    .craftsman-modal-video video {
        width: 100% !important;
        height: 300px !important;
        position: relative !important;
    }
    
    .craftsman-modal-right {
        padding: 2rem 1.5rem 3rem !important;
        width: 100% !important;
    }
    
    .craftsman-modal-label {
        font-size: 0.85rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .craftsman-modal-name {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.8rem !important;
    }
    
    .craftsman-modal-name-jp {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .craftsman-modal-meta {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        margin-bottom: 1.5rem !important;
        padding-bottom: 1.5rem !important;
        font-size: 1rem !important;
    }
    
    .craftsman-modal-meta span {
        display: block !important;
        font-size: 1rem !important;
    }
    
    .craftsman-modal-story {
        margin-bottom: 2rem !important;
    }
    
    .craftsman-modal-story h3 {
        font-size: 1.8rem !important;
        margin-bottom: 1rem !important;
    }
    
    .craftsman-modal-story p {
        font-size: 1.1rem !important;
        line-height: 1.8 !important;
    }
    
    .craftsman-modal-quote {
        padding: 1.8rem 1.5rem !important;
        margin-bottom: 2rem !important;
        border-radius: 12px !important;
    }
    
    .craftsman-modal-quote i {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .craftsman-modal-quote p {
        font-size: 1.2rem !important;
        line-height: 1.7 !important;
    }
    
    .craftsman-modal-browse {
        width: 100% !important;
        padding: 1.5rem 2rem !important;
        font-size: 1.1rem !important;
        border-radius: 12px !important;
        min-height: 60px !important;
    }
    
    /* Better modal headers - sticky */
    .cart-header,
    .checkout-header {
        padding: 1.5rem;
        position: sticky;
        top: 0;
        z-index: 100;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cart-title,
    .checkout-title {
        font-size: 1.6rem;
    }
    
    /* Scrollable modal content */
    .cart-items,
    .checkout-body {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: calc(100vh - 180px);
        padding: 1.5rem;
    }
    
    .cart-footer {
        position: sticky;
        bottom: 0;
        background: rgba(0, 0, 0, 0.03);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    /* Close buttons compact for mobile */
    .close-modal,
    .close-cart,
    .close-checkout {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Map - full width below products - matches mobile styling */
    .bento-map {
        position: relative;
        top: 0;
        padding: 1.5rem;
        height: auto;
        max-height: none;
        min-height: auto;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .bento-map-header {
        margin-bottom: 1rem;
    }
    
    .bento-map-header h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    
    .bento-map-header p {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        opacity: 0.8;
    }
    
    .map-expand-btn {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        border-radius: 8px;
    }
    
    #japanMap {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
        border-radius: 12px;
        width: 100% !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .map-legend-bento {
        gap: 0.8rem;
        flex-wrap: wrap;
        margin-top: 1rem;
        font-size: 0.75rem;
        justify-content: center;
    }
    
    .legend-bento {
        background: rgba(0, 0, 0, 0.03);
        padding: 0.4rem 0.8rem;
        border-radius: 20px;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    /* Small mobile screens */
    .hero-main {
        padding: 1.5rem 0.75rem;
        padding-bottom: 10rem;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-layout {
        flex-direction: column;
        gap: 0;
        padding: 0;
        align-items: center;
        justify-content: center;
    }
    
    .hero-logo-container {
        flex: 0 1 auto;
        max-width: 100%;
        margin-bottom: 0;
        margin-top: 0;
    }
    
    .hero-logo {
        height: 180px;
        max-width: 90%;
        margin-top: 0;
        margin-bottom: 8rem;
    }
    
    /* Partner Section - Extra compact */
    .partner-section {
        padding: 2.5rem 1rem;
    }
    
    .partner-title {
        font-size: 1.6rem;
    }
    
    .partner-title-jp {
        font-size: 0.9rem;
    }
    
    .partner-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .partner-benefits li {
        font-size: 0.85rem;
        padding: 0.8rem 0;
    }
    
    /* PARTNER FORM - COMPLETELY RE-ENGINEERED FOR MOBILE */
    .partner-section {
        padding: 3rem 1.5rem !important;
    }
    
    .partner-content {
        padding: 0 !important;
        width: 100% !important;
    }
    
    .partner-left,
    .partner-right {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .partner-form {
        padding: 2.5rem 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .partner-form h3 {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
        line-height: 1.3 !important;
    }
    
    .form-construction-notice {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
        text-align: center;
    }
    
    .form-construction-notice i {
        font-size: 0.8rem;
    }
    
    .construction-jp {
        margin-left: 0;
        font-size: 0.7rem;
    }
    
    .partner-form .form-group {
        margin-bottom: 1.8rem !important;
    }
    
    .partner-form input,
    .partner-form select,
    .partner-form textarea {
        padding: 1.4rem 1.3rem !important;
        font-size: 1.05rem !important;
        min-height: 54px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 12px !important;
        border: 2px solid rgba(80, 200, 120, 0.3) !important;
    }
    
    .partner-form textarea {
        min-height: 140px !important;
        padding: 1.4rem 1.3rem !important;
    }
    
    .partner-submit-btn {
        padding: 1.5rem 2rem !important;
        font-size: 1.1rem !important;
        min-height: 60px !important;
        width: 100% !important;
        border-radius: 12px !important;
    }
    
    /* CONTACT SECTION - COMPLETELY RE-ENGINEERED FOR MOBILE */
    .contact-section {
        padding: 3rem 1rem !important;
        width: 100vw !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .section-header {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 auto 2rem !important;
    }
    
    .section-title {
        font-size: 1.8rem;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .section-label,
    .section-title-jp {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 2rem 0 0 0 !important;
        box-sizing: border-box !important;
    }
    
    .contact-info {
        width: 100% !important;
        max-width: 100% !important;
        gap: 0.8rem !important;
        padding: 0 !important;
    }
    
    .contact-item {
        padding: 1rem !important;
        gap: 0.8rem !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-item i {
        font-size: 1.2rem !important;
        width: 32px !important;
        height: 32px !important;
    }
    
    .contact-item h4 {
        font-size: 0.95rem !important;
    }
    
    .contact-item p,
    .contact-item a {
        font-size: 0.85rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .contact-form {
        padding: 1.5rem 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.2rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 1rem 0.9rem !important;
        font-size: 0.95rem !important;
        min-height: 48px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
        border: 2px solid rgba(80, 200, 120, 0.3) !important;
    }
    
    .contact-form textarea {
        min-height: 130px !important;
        padding: 1rem 0.9rem !important;
        resize: vertical !important;
    }
    
    .contact-submit-btn {
        padding: 1.2rem 1rem !important;
        font-size: 0.95rem !important;
        min-height: 50px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
    }
    
    /* MOBILE: Horizontal scroll grid like Instagram Stories */
    .bento-products {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(220px, 220px)) !important;
        grid-auto-flow: column !important;
        gap: 0.9rem !important;
        padding: 1.5rem 1rem !important;
        height: auto !important;
        max-height: none !important;
        overflow-y: hidden !important;
        overflow-x: auto !important;
        scroll-behavior: smooth !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .bento-products.collapsed {
        display: none !important;
    }
    
    .bento-products .product-card {
        width: 220px !important;
        height: auto !important;
        min-height: 320px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        box-sizing: border-box !important;
    }
    
    .bento-products .product-info {
        padding: 0.8rem 0.7rem 0.9rem !important;
    }
    
    .bento-products .product-image {
        height: 150px !important;
        object-fit: cover !important;
    }
    
    .bento-products .product-name {
        font-size: 0.9rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.3 !important;
    }
    
    .bento-products .product-artisan {
        font-size: 0.7rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .bento-products .product-location {
        font-size: 0.65rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .bento-products .product-price-large {
        font-size: 1rem !important;
        margin-bottom: 0.6rem !important;
        font-weight: 700 !important;
    }
    
    .bento-products .product-actions {
        display: flex !important;
        gap: 0.5rem !important;
        width: 100% !important;
        margin-top: 0.5rem !important;
    }
    
    .bento-products .product-stripe-btn,
    .bento-products .product-cart-btn {
        flex: 1 !important;
        padding: 0.7rem 0.7rem !important;
        font-size: 0.75rem !important;
        min-height: 42px !important;
        border-radius: 8px !important;
    }
}

/* Contact Section Mobile */
@media (max-width: 968px) {
    .contact-section {
        padding: 3rem 1.2rem;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
    
    .section-label {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .section-title-jp {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .contact-info {
        gap: 1.2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-item {
        padding: 1.3rem;
        border-radius: 10px;
        border-width: 2px;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .contact-item i {
        font-size: 1.3rem;
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }
    
    .contact-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-item p,
    .contact-item a {
        font-size: 0.85rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* CONTACT FORM - LARGE AND USABLE */
    .contact-section {
        padding: 3rem 0.8rem !important;
        width: 100vw !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    
    .section-header {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
        margin: 0 auto 2rem !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 1.5rem 0 0 0 !important;
        padding: 0 0.5rem !important;
        box-sizing: border-box !important;
    }
    
    .contact-info {
        width: 100% !important;
        max-width: 100% !important;
        gap: 0.8rem !important;
        padding: 0 !important;
    }
    
    .contact-item {
        padding: 0.9rem !important;
        gap: 0.8rem !important;
        min-height: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-item i {
        font-size: 1.1rem !important;
        width: 30px !important;
        height: 30px !important;
    }
    
    .contact-item h4 {
        font-size: 0.9rem !important;
    }
    
    .contact-item p,
    .contact-item a {
        font-size: 0.8rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    
    .contact-form {
        padding: 1.5rem 1rem !important;
        border-radius: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.2rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-form .form-group input,
    .contact-form .form-group textarea,
    .contact-form .form-group select {
        padding: 1rem 0.8rem !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
        min-height: 48px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border: 2px solid rgba(80, 200, 120, 0.3) !important;
    }
    
    .contact-form textarea {
        min-height: 130px !important;
        resize: vertical !important;
    }
    
    .contact-submit-btn {
        padding: 1.2rem 1rem !important;
        font-size: 0.95rem !important;
        min-height: 50px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 8px !important;
    }
}

/* 480px media query moved and consolidated with other small screen styles */

/* ===== BENTO BOX MARKETPLACE ===== */
.marketplace-bento {
    padding: 0;
    margin-top: 0;
    background: linear-gradient(
        135deg,
        #4A90E2 0%,
        #50C878 25%,
        #4A90E2 50%,
        #50C878 75%,
        #4A90E2 100%
    );
    background-size: 400% 400%;
    animation: gradientMove 20s ease infinite;
    position: relative;
}

/* Hide old sticky filter bar - now using filter-bar-attached */
.filter-bar-sticky {
    display: none;
}

.filter-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 0.6rem 1.5rem;
    background: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #2a2a2a;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.filter-chip:hover {
    background: #2a2a2a;
    color: #ffffff;
    border-color: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.filter-chip.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.filter-count {
    margin-left: auto;
    font-weight: 600;
    color: #2a2a2a;
    font-size: 1rem;
}

/* Toggle Products Button */
.toggle-products-btn {
    margin-left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--tiffany-blue);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: none;
}

.toggle-products-btn:hover {
    background: var(--tiffany-blue-dark);
    transform: translateY(-2px);
}

.toggle-products-btn i {
    transition: transform 0.3s ease;
}

.toggle-products-btn.collapsed i {
    transform: rotate(180deg);
}

/* Hide toggle button on mobile - no collapse feature */
@media (max-width: 768px) {
    .toggle-products-btn {
        display: none !important;
    }
}

.filter-count span {
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
}

.bento-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 3rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Products first, map below */
.bento-products {
    order: 1;
}

.bento-map {
    order: 2;
}

@media (max-width: 968px) {
    .bento-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 1.5rem;
        padding: 1rem;
    }
    
    /* Products first, map second */
    .bento-products {
        order: 1;
    }
    
    .bento-map {
        order: 2;
    }
    
    /* Hide arrows on mobile/tablet */
    .bento-products::before,
    .bento-products::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .bento-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0.8rem;
    }
}

.bento-map {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    height: auto;
    max-height: none;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

#japanMap {
    height: 380px !important;
    min-height: 380px !important;
    max-height: 380px !important;
}

@media (max-width: 968px) {
    #japanMap {
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
    }
}

.bento-map-header {
    margin-bottom: 1rem;
    flex-shrink: 0;
    text-align: center;
}

.bento-map-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.bento-map-header p {
    font-size: 0.9rem;
    color: rgba(42, 42, 42, 0.75);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

#japanMap {
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-legend-bento {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
    padding-top: 0.8rem;
    justify-content: center;
}

.legend-bento {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2a2a2a;
    background: rgba(255, 255, 255, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legend-bento.clickable {
    cursor: pointer;
    transition: all 0.2s ease;
}

.legend-bento.clickable:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.15);
}

.legend-bento.clickable:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.legend-bento .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.pottery { background: var(--warm-brown); }
.dot.kimono { background: var(--tiffany-blue-light); }
.dot.cutlery { background: var(--charcoal); }
.dot.textiles { background: var(--tiffany-blue); }

/* Products Section Header with Enhanced Styling */
.products-section-intro {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 2rem 0.5rem;
    text-align: center;
    position: relative;
}

.products-main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    margin: 0 0 1rem 0;
    letter-spacing: 0.02em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}

.products-description {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.15rem;
    color: rgba(42, 42, 42, 0.75);
    margin: 0 auto 0;
    max-width: 650px;
    line-height: 1.7;
    font-weight: 400;
}

/* Marketplace Disclaimer */
.marketplace-disclaimer {
    max-width: 800px;
    margin: 1.5rem auto 1rem;
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(42, 42, 42, 0.1);
    border-left: 2px solid rgba(42, 42, 42, 0.25);
    border-radius: 6px;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    box-shadow: none;
}

.disclaimer-icon {
    flex-shrink: 0;
    font-size: 1rem;
    color: rgba(42, 42, 42, 0.6);
    margin-top: 0.1rem;
}

.disclaimer-content {
    flex: 1;
    text-align: left;
}

.disclaimer-content p {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: rgba(42, 42, 42, 0.7);
}

.disclaimer-en {
    margin-bottom: 0.5rem !important;
    font-family: 'Cinzel', serif;
}

.disclaimer-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.7rem !important;
    opacity: 0.75;
}

.disclaimer-content strong {
    color: rgba(42, 42, 42, 0.8);
    font-weight: 600;
}

/* Artisan Section Disclaimer */
.artisan-disclaimer {
    max-width: 800px;
    margin: 1.5rem auto 0;
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: 1px solid rgba(42, 42, 42, 0.1);
    border-left: 2px solid rgba(42, 42, 42, 0.25);
    border-radius: 6px;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    box-shadow: none;
}

/* Filter Bar Attached to Products Section */
.filter-bar-attached {
    max-width: 1600px;
    margin: 1.5rem auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 50;
    display: flex;
    justify-content: center;
}

.filter-bar-attached .filter-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.15);
    width: fit-content;
}

@media (max-width: 768px) {
    .products-section-intro {
        padding: 2rem 1.5rem 0.5rem;
    }
    
    .products-main-title {
        font-size: clamp(2rem, 7vw, 2.5rem);
        letter-spacing: 1px;
    }
    
    .products-description {
        font-size: 1rem;
        margin-bottom: 0;
        line-height: 1.6;
    }
    
    .marketplace-disclaimer {
        margin: 1rem 1rem 0.8rem;
        padding: 0.6rem 1rem;
        gap: 0.6rem;
        flex-direction: row;
        text-align: left;
    }
    
    .disclaimer-icon {
        font-size: 0.85rem;
        margin: 0;
    }
    
    .disclaimer-content {
        text-align: left;
    }
    
    .disclaimer-content p {
        font-size: 0.65rem;
        line-height: 1.4;
    }
    
    .disclaimer-jp {
        font-size: 0.6rem !important;
    }
    
    .artisan-disclaimer {
        margin: 1rem 1rem 0;
        padding: 0.6rem 1rem;
        gap: 0.6rem;
        flex-direction: row;
        text-align: left;
    }
    
    .filter-bar-attached {
        padding: 0 1rem;
        margin: 1.5rem auto 1rem;
        justify-content: center;
    }
    
    .filter-bar-attached .filter-container {
        padding: 0.6rem 1rem;
        border-radius: 30px;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .filter-bar-attached .filter-container::-webkit-scrollbar {
        display: none;
    }
    
    .filter-chip {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        border-radius: 20px !important;
        min-height: 38px !important;
        font-weight: 600 !important;
        transition: all 0.2s ease !important;
    }
    
    .filter-chip.active {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
    }
    
    .filter-count {
        font-size: 0.85rem !important;
        padding: 0.6rem 1rem !important;
        background: rgba(0, 0, 0, 0.08);
        border-radius: 20px;
        flex-shrink: 0;
        margin-left: 0;
        font-weight: 600;
    }
}

.bento-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-height: none;
    overflow-x: visible;
    overflow-y: visible;
    scrollbar-width: auto;
    scrollbar-color: #2a2a2a rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Desktop: 2-row horizontal scroll grid */
@media (min-width: 1024px) {
    .bento-products {
        display: grid;
        grid-template-rows: repeat(2, 1fr);
        grid-auto-flow: column;
        grid-auto-columns: 280px;
        gap: 1rem;
        padding: 1.5rem 2rem;
        height: 950px;
        max-height: 950px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        position: relative;
    }
}

/* Custom scrollbar - vertical on desktop, horizontal on mobile */
.bento-products::-webkit-scrollbar {
    width: 10px;
    height: 12px;
}

.bento-products::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.bento-products::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.bento-products::-webkit-scrollbar-thumb:hover {
    background: #000000;
}

/* Scroll indicators - only show on desktop for products section */
@media (min-width: 1024px) {
    .marketplace-bento {
        position: relative;
    }
}

/* Auto-scrolling products - smooth continuous scroll */
@media (min-width: 1024px) {
    .bento-products {
        scroll-behavior: auto !important;
    }
    
    .bento-products.auto-scrolling {
        pointer-events: none;
    }
    
    .bento-products:hover {
        scroll-behavior: smooth !important;
    }
}

/* Price fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Partner language toggle and ASCII removed per user request */


.product-price-large {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.01em;
    display: none; /* Hidden by default, shown when card is clicked */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-price-large.visible {
    display: block;
    opacity: 1;
    animation: fadeInPrice 0.4s ease;
}

@keyframes fadeInPrice {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.product-actions {
    display: flex;
    gap: 0.6rem;
    width: 100%;
    margin-top: auto;
}

.product-stripe-btn {
    flex: 1;
    padding: 0.75rem 0.7rem;
    background: #1a1a1a;
    color: white;
    border: none;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-stripe-btn:hover {
    background: #000000;
    transform: translateY(-1px);
}

.product-stripe-btn i {
    font-size: 0.75rem;
}

.product-cart-btn {
    flex: 1;
    padding: 0.75rem 0.7rem;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #e0e0e0;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-cart-btn:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

.product-cart-btn i {
    font-size: 0.8rem;
}

/* Legacy marketplace and redesign styles removed */

.section-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, rgba(80, 200, 120, 0.15), rgba(80, 200, 120, 0.08));
    border: 1px solid var(--accent-teal);
    border-radius: 25px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent-teal);
    margin-bottom: 1.8rem;
    backdrop-filter: blur(12px);
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 12px rgba(80, 200, 120, 0.2);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(80, 200, 120, 0.4);
    border-color: var(--accent-teal-light);
    background: rgba(80, 200, 120, 0.2);
}

/* section-title-luxury, title-main, title-jp, section-description-luxury removed */

/* map-container, map-overlay, map-title, map-subtitle removed (using bento-map) */

/* map-legend-luxury and legend-icon removed */

.marketplace-products-luxury {
    min-height: 600px;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* products-header-luxury and count styles removed */

/* Old products grid layouts removed */

/* ===== ARTISANS SECTION (One at a Time) ===== */
.artisans-showcase {
    padding: 8rem 2rem 6rem;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.artisans-showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.showcase-label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    margin-bottom: 1rem;
}

.showcase-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.showcase-subtitle {
    font-size: 1rem;
    color: #2a2a2a;
    font-family: 'Noto Serif JP', serif;
}

.artisan-spotlight-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.artisan-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spotlight-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--light-gray);
}

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

/* spotlight-portrait and spotlight-work removed */

.spotlight-details {
    padding: 3rem;
}

.spotlight-craft-label {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
    margin-bottom: 1rem;
}

.spotlight-name {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.spotlight-name-jp {
    font-size: 1.1rem;
    color: #2a2a2a;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 2rem;
}

.spotlight-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

.spotlight-meta {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.meta-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666666;
}

.meta-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
}

.spotlight-cta {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 8px;
    font-family: 'Cinzel', serif;
}

.spotlight-cta:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #000000;
}

.artisan-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.artisan-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.artisan-nav-btn:hover {
    background: #ffffff;
    border-color: var(--tiffany-blue);
    color: var(--tiffany-blue);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(80, 200, 120, 0.3);
}

.artisan-counter {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

.artisan-counter .current {
    color: #000000;
    font-size: 2.2rem;
    font-weight: 700;
}

/* Old artisan layouts removed (artisans-masonry-grid) */

.craftsman-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.craftsman-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--tiffany-blue);
}

.craftsman-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s ease;
}

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

.craftsman-card-info {
    padding: 1.2rem;
    text-align: center;
}

.craftsman-craft-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tiffany-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.craftsman-card-name {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--charcoal);
}

.craftsman-card-name-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.8rem;
}

/* craftsman-card-location removed */

.craftsman-card-years {
    font-size: 0.75rem;
    color: var(--tiffany-blue);
    margin-bottom: 1rem;
    font-weight: 500;
}

.craftsman-card-btn {
    padding: 0.5rem 1.2rem;
    background: var(--tiffany-blue);
    color: #2a2a2a;
    border: none;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
}

.craftsman-card-btn:hover {
    background: var(--tiffany-blue);
}

/* ===== CRAFTSMAN MODAL ===== */
.craftsman-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 2rem;
}

.craftsman-modal.active {
    display: flex;
}

.craftsman-modal-content {
    background: white;
    width: 95%;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 80px rgba(0,0,0,0.4);
    margin: auto;
}

.craftsman-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.craftsman-modal-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.craftsman-modal-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.craftsman-modal-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.craftsman-modal-video iframe,
.craftsman-modal-video .craftsman-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.craftsman-modal-label {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--tiffany-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.craftsman-modal-name {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.craftsman-modal-name-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.craftsman-modal-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--cream);
    font-size: 0.95rem;
    color: #666;
}

.craftsman-modal-story {
    margin-bottom: 2rem;
}

.craftsman-modal-story h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.craftsman-modal-story p {
    line-height: 1.9;
    color: #555;
    font-size: 1.05rem;
}

.craftsman-modal-quote {
    background: var(--cream);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    margin-bottom: 2rem;
    position: relative;
}

.craftsman-modal-quote i {
    color: var(--tiffany-blue);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.craftsman-modal-quote p {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--charcoal);
    line-height: 1.8;
}

.craftsman-modal-browse {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--tiffany-blue), var(--tiffany-blue-dark));
    color: #2a2a2a;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 600;
}

.craftsman-modal-browse:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(199,62,58,0.4);
}

/* ===== PARTNER SECTION WITH ASCII BACKGROUND ===== */
.partner-section {
    padding: 6rem 3rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    color: #2a2a2a;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    width: 100%;
}

/* ASCII background removed - using emerald gradient */

.partner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 144, 226, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(80, 200, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(80, 200, 120, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.partner-section .section-label {
    color: var(--tiffany-blue) !important;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(80, 200, 120, 0.1));
    padding: 0.6rem 1.8rem;
    border-radius: 25px;
    border: 2px solid var(--tiffany-blue);
    display: inline-block;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.2);
    transition: all 0.3s ease;
}

.partner-section .section-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(80, 200, 120, 0.3);
}

.partner-left {
    position: relative;
}

.partner-left::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        #4A90E2 25%,
        #50C878 50%,
        #4A90E2 75%,
        transparent 100%
    );
    border-radius: 10px;
}

.partner-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.partner-title-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    color: #2a2a2a;
}

.partner-description {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #2a2a2a;
}

.partner-benefits {
    list-style: none;
    padding: 0;
}

.partner-benefits li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
    color: #2a2a2a;
}

.partner-benefits li i {
    color: var(--accent-teal);
    margin-right: 1rem;
}

.partner-benefits li:hover {
    padding-left: 0.5rem;
}

.partner-benefits i {
    color: var(--tiffany-blue);
    font-size: 1.4rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(80, 200, 120, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.partner-benefits li:hover i {
    transform: scale(1.15) rotate(10deg);
    background: var(--tiffany-blue);
    color: #ffffff;
}

/* Form Construction Notice */
.form-construction-notice {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
    background: rgba(42, 42, 42, 0.04);
    border: 1px solid rgba(42, 42, 42, 0.1);
    border-left: 2px solid rgba(42, 42, 42, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    color: rgba(42, 42, 42, 0.7);
    font-family: 'Cinzel', serif;
}

.form-construction-notice i {
    font-size: 0.9rem;
    color: rgba(42, 42, 42, 0.5);
}

.construction-jp {
    margin-left: 0.3rem;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.8rem;
    opacity: 0.8;
}

.partner-form {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(80, 200, 120, 0.2);
    position: relative;
    overflow: hidden;
}

.partner-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg, 
        #4A90E2 0%,
        #50C878 25%,
        #4A90E2 50%,
        #50C878 75%,
        #4A90E2 100%
    );
    background-size: 200% 100%;
    animation: gradientSlide 3s ease infinite;
}

@keyframes gradientSlide {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.partner-form h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--charcoal);
    text-align: center;
    position: relative;
    font-weight: 700;
}

.partner-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tiffany-blue), transparent);
}

.partner-form .form-group {
    margin-bottom: 1.5rem;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    width: 100%;
    padding: 1.1rem 1.3rem;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(250, 249, 244, 0.5);
}

.partner-form input::placeholder,
.partner-form textarea::placeholder {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
}

.partner-form select {
    font-weight: 600;
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
    outline: none;
    border-color: var(--tiffany-blue);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
    background: white;
}

.partner-submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--tiffany-blue), var(--tiffany-blue-light));
    color: #2a2a2a;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.partner-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: linear-gradient(135deg, #e5c158, var(--gold));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.partner-submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.partner-submit-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.partner-submit-btn span {
    position: relative;
    z-index: 1;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 6rem 3rem;
    background: linear-gradient(
        135deg,
        #4A90E2 0%,
        #50C878 25%,
        #4A90E2 50%,
        #50C878 75%,
        #4A90E2 100%
    );
    background-size: 400% 400%;
    animation: gradientMove 20s ease infinite;
    position: relative;
    overflow-x: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tiffany-blue), transparent);
    box-shadow: 0 0 15px rgba(80, 200, 120, 0.4);
}

.contact-section .section-label {
    color: #000000;
}

.contact-section .section-title {
    color: #000000;
}

.contact-section .section-title-jp {
    color: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 4rem auto 0;
    width: 100%;
    box-sizing: border-box;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.8rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.6);
}

.contact-item i {
    font-size: 2rem;
    color: #000000;
    margin-top: 0.3rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    background: rgba(0, 0, 0, 0.1);
    color: var(--tiffany-blue);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(80, 200, 120, 0.4);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 700;
}

.contact-item p {
    color: #000000;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contact-item a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contact-item a:hover {
    color: var(--tiffany-blue);
    text-decoration: underline;
}

.contact-form {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tiffany-blue), var(--tiffany-blue-light));
    border-radius: 16px 16px 0 0;
    box-shadow: 0 2px 10px var(--shadow-tiffany);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.1rem 1.3rem;
    border: 2px solid rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    max-width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.contact-submit-btn {
    width: 100%;
    padding: 1.3rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    max-width: 100%;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.contact-submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.contact-submit-btn:hover {
    transform: translateY(-4px);
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.contact-submit-btn span {
    position: relative;
    z-index: 1;
}

/* ===== FOOTER ENHANCEMENTS ===== */
.footer-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: 0.05em;
    padding: 0.3rem 0;
    font-weight: 700;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--tiffany-blue);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--tiffany-blue);
    transform: translateY(-2px);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a::after {
    background: var(--tiffany-blue-light);
    box-shadow: 0 0 8px rgba(80, 200, 120, 0.5);
}

