@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Noto+Serif+JP:wght@300;400;500&family=Noto+Sans+JP:wght@300;400;500&display=swap');

:root {
    --primary: #2d1b4d;
    --primary-dark: #1a0f2e;
    --primary-light: #4c3a75;
    --secondary: #c5a059;
    --secondary-dark: #a08040;
    --accent: #e5d3b3;
    --accent-light: #f4ece0;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #8e8e8e;
    --bg: #fbf9f7;
    --bg-alt: #f4f1ed;
    --bg-gradient: linear-gradient(135deg, #fbf9f7 0%, #f4f1ed 100%);
    --white: #ffffff;
    --shadow: rgba(45, 27, 77, 0.1);
    --shadow-light: rgba(45, 27, 77, 0.05);
    --shadow-dark: rgba(26, 26, 40, 0.2);
    --glass: rgba(255, 255, 255, 0.7);
    --border: rgba(45, 27, 77, 0.1);
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #e5d3b3 50%, #a08040 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 2;
    background: var(--bg);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.scrolled header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    transition: padding 0.4s ease;
}

body.scrolled .header-inner {
    padding: 15px 0;
}

.logo a {
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-toggle {
    display: none;
}

nav li {
    display: flex;
    align-items: center;
}

nav a {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    padding: 8px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
    left: 0;
}

.lang-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid var(--border);
    font-size: 11px;
    line-height: 1;
}

.lang-switch a {
    font-size: 11px;
    letter-spacing: 1px;
    line-height: 1;
}

.lang-switch span {
    color: var(--text-muted);
    font-size: 10px;
    line-height: 1;
}

.lang-switch a {
    font-size: 11px;
    letter-spacing: 1px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(45, 27, 77, 0.03) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 30px;
    letter-spacing: 0.15em;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 14px;
    color: var(--secondary);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 20px 50px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-5px);
}

.section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.section-title .subtitle {
    color: var(--secondary);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.divider {
    width: 60px;
    height: 1px;
    background: var(--secondary);
    margin: 30px auto 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 50px 30px;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    background: #fff;
    overflow: hidden;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-info h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: 1px;
}

.product-info .category {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.product-info .price {
    font-size: 15px;
    color: var(--secondary-dark);
    font-weight: 600;
    letter-spacing: 1px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    padding: 100px 0;
    align-items: flex-start;
}

.product-detail-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    background: #fff;
}

.product-detail h1 {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.product-detail .price {
    font-size: 24px;
    color: var(--secondary-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.product-detail .description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 2;
}

footer {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0 50px;
    text-align: center;
}

footer .logo a {
    color: var(--white);
    font-size: 24px;
    letter-spacing: 6px;
}

footer p {
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 40px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        padding: 15px 0;
    }
    nav ul {
        display: flex;
        gap: 15px;
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .lang-switch {
        margin-left: 0;
        padding-left: 15px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .section {
        padding: 60px 0;
    }
    .product-detail {
        padding: 40px 0;
    }
    .about-content, .contact-form {
        padding: 40px 20px !important;
    }
}


* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    line-height: 1.8;
    background: var(--bg);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo a {
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--primary);
}

.logo span {
    color: var(--secondary);
    font-weight: 300;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--border);
}

.lang-switch a {
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}

.lang-switch span {
    color: var(--text-muted);
    font-size: 11px;
}

.hero {
    background: linear-gradient(180deg, #fff5f8 0%, #fff8fa 30%, #fffbfd 60%, #ffffff 100%);
    padding: 140px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Crystal sparkles */
.hero-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 3s ease-in-out infinite;
}

.hero-sparkle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    10% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
    90% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

/* Shining crystal effect */
.crystal-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: shine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Subtle noise texture overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 15% 25%, rgba(212, 165, 185, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 75%, rgba(155, 141, 199, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(232, 213, 183, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* Decorative border frame */
.hero::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    border: 1px solid var(--border);
    pointer-events: none;
    opacity: 0.5;
}

/* Floating crystal shapes */
.hero .floating-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.hero .floating-shape.shape-1 {
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(155, 141, 199, 0.08) 0%, rgba(212, 165, 185, 0.05) 100%);
}

.hero .floating-shape.shape-2 {
    top: 60%;
    right: 8%;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 165, 185, 0.06) 0%, rgba(232, 213, 183, 0.04) 100%);
    animation-delay: -5s;
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.hero .floating-shape.shape-3 {
    bottom: 15%;
    left: 15%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(232, 213, 183, 0.08) 0%, rgba(155, 141, 199, 0.05) 100%);
    animation-delay: -10s;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-10px, 20px) rotate(-3deg); }
    75% { transform: translate(30px, 10px) rotate(8deg); }
}

.hero .crystal-orb {
    position: absolute;
    border-radius: 50%;
    animation: shimmer 8s ease-in-out infinite;
}

.hero .crystal-orb:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 10%;
    background: linear-gradient(135deg, rgba(212, 165, 185, 0.12) 0%, transparent 70%);
    animation-delay: 0s;
}

.hero .crystal-orb:nth-child(2) {
    width: 50px;
    height: 50px;
    bottom: 20%;
    left: 15%;
    background: linear-gradient(135deg, rgba(155, 141, 199, 0.1) 0%, transparent 70%);
    animation-delay: -2s;
}

.hero .crystal-orb:nth-child(3) {
    width: 30px;
    height: 30px;
    top: 40%;
    left: 25%;
    background: linear-gradient(135deg, rgba(232, 213, 183, 0.15) 0%, transparent 70%);
    animation-delay: -4s;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* Hero text animation */
.hero h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: 56px;
    font-weight: 400;
    color: #3d2570;
    margin-bottom: 20px;
    letter-spacing: 12px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 20px rgba(107, 79, 179, 0.15);
}

.hero h1::before,
.hero h1::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--secondary);
    opacity: 0.6;
}

.hero h1::before {
    left: -35px;
}

.hero h1::after {
    right: -35px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero p {
    font-size: 15px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 35px;
    line-height: 2;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 8px 25px var(--shadow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(155, 141, 199, 0.35);
}

.btn-primary:hover::before {
    left: 100%;
}

.section {
    padding: 80px 0;
}

.section.bg-alt {
    background: var(--bg-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 15px;
    letter-spacing: 6px;
}

.section-title .subtitle {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}

.divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    margin: 20px auto 0;
    position: relative;
}

.divider::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 6px;
    color: var(--secondary);
    background: var(--bg);
    padding: 0 8px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 35px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(155, 141, 199, 0.2) 0%, rgba(212, 165, 185, 0.1) 50%, rgba(232, 213, 183, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f8f5f0 0%, #f5f0f5 50%, #f0e8e8 100%);
}

.product-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.product-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155, 141, 199, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card-image .crystal-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(155, 141, 199, 0.08) 0%, 
        rgba(212, 165, 185, 0.05) 50%,
        rgba(232, 213, 183, 0.08) 100%);
}

.product-card-image .crystal-placeholder svg {
    opacity: 0.4;
    transition: all 0.4s ease;
}

.product-card:hover .crystal-placeholder svg {
    opacity: 0.6;
    transform: scale(1.1);
}

.product-card:hover .product-card-image::after {
    opacity: 1;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 22px;
    text-align: center;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: 1px;
}

.product-info .category {
    font-size: 11px;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.product-info .price {
    font-size: 17px;
    color: var(--primary);
    font-weight: 500;
    font-family: "Noto Serif JP", serif;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
    align-items: center;
}

.product-detail-image {
    position: relative;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

.product-detail-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--secondary);
    border-radius: 20px;
    opacity: 0.3;
}

.product-detail img {
    border-radius: 16px;
    box-shadow: 0 20px 50px var(--shadow);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
}

.product-thumbnails {
    position: relative;
    z-index: 2;
}

.product-thumbnails .thumbnail {
    flex-shrink: 0;
}

.product-thumbnails img {
    box-shadow: none;
    border-radius: 0;
    aspect-ratio: 1 / 1;
}

.product-detail h1 {
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.product-detail .price {
    font-size: 28px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 25px;
    font-family: "Noto Serif JP", serif;
}

.product-detail .category {
    display: inline-block;
    background: linear-gradient(135deg, #fdf5f8 0%, #f8f0f5 100%);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.product-detail .description {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 2.2;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.contact-info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow-light);
}

.contact-info-card h3 {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.info-item {
    display: flex;
    margin-bottom: 15px;
}

.info-label {
    width: 80px;
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 1px;
}

.info-value {
    flex: 1;
    color: var(--text);
    font-size: 14px;
    line-height: 1.8;
}

.contact-notice {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #fdfbf9 0%, #f8f5f8 100%);
    border-radius: 16px;
}

.contact-notice p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 10px;
}

.contact-notice .notice-note {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s;
    background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(155, 141, 199, 0.1);
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.alert {
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 14px;
}

.alert-success {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
    color: #2d5a2d;
    border: 1px solid #c8e6c9;
}

.alert-error {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 10px 40px var(--shadow);
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.about-content h2 {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.about-content h3 {
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-content p {
    margin-bottom: 24px;
    color: var(--text-light);
    line-height: 2.4;
}

.about-content h2:not(:first-child) {
    margin-top: 40px;
}

footer {
    background: linear-gradient(135deg, #2d2d3d 0%, #1d1d2d 50%, #2d2d3d 100%);
    color: white;
    padding: 60px 0 35px;
    text-align: center;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 141, 199, 0.3), transparent);
}

footer .logo {
    margin-bottom: 25px;
}

footer .logo a {
    color: white;
    font-size: 22px;
    letter-spacing: 3px;
}

footer p {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    letter-spacing: 1px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 141, 199, 0.4), transparent);
    margin: 30px auto;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-filter a {
    padding: 10px 24px;
    border: 1px solid #eee;
    border-radius: 25px;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s;
    background: var(--white);
}

.category-filter a:hover,
.category-filter a.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.breadcrumb {
    padding: 20px 0;
    color: var(--text-light);
    font-size: 13px;
}

.breadcrumb a {
    color: var(--primary);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
    }
    
    nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .about-content {
        padding: 35px 25px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-light);
    text-align: center;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f5fc 0%, #f5f0f8 100%);
    border-radius: 50%;
    color: var(--primary);
}

.service-card h3 {
    font-family: "Cormorant Garamond", "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--primary-dark);
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.service-card p {
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-price {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #f8f5fc 0%, #f0ebf5 100%);
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1px;
}

.service-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #fdfbf9 0%, #f8f5f8 100%);
    border-radius: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cta p {
    color: var(--text-light);
    line-height: 2.2;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--primary);
        padding: 5px 10px;
    }
    
    header nav {
        display: none;
        width: 100%;
    }
    
    header nav.active {
        display: block;
    }
    
    header .header-inner {
        flex-wrap: wrap;
    }
    
    header nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0 !important;
        margin-top: 15px;
        border-top: 1px solid var(--border);
        padding-top: 15px;
    }
    
    header nav ul li {
        width: 100%;
    }
    
    header nav ul li a {
        display: block;
        padding: 12px 0 !important;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }
    
    header nav ul li a::after {
        display: none !important;
    }
    
    .lang-switch {
        justify-content: center;
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header .header-inner {
        flex-direction: column;
        gap: 10px;
        padding: 12px 0;
    }
    
    header nav ul {
        display: flex !important;
        gap: 4px !important;
        margin-top: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    header nav ul li a {
        padding: 4px 5px;
        font-size: 10px;
    }
    
    .logo a {
        font-size: 16px;
    }
    
    .hero h1 {
        font-size: 20px !important;
        letter-spacing: 1px !important;
    }
    
    .hero-subtitle {
        font-size: 9px !important;
        letter-spacing: 1px !important;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 25px 15px;
    }
    
    .product-card {
        font-size: 12px;
    }
    
    .product-info h3 {
        font-size: 13px;
    }
    
    .about-content, .contact-form {
        padding: 20px 12px !important;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .section-title .subtitle {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .divider {
        width: 30px;
    }
    
    footer {
        padding: 25px 0;
    }
    
    footer .container {
        text-align: center;
    }
}
}

/* Mobile responsive styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header-inner {
        flex-direction: column;
        gap: 10px;
        padding: 12px 0;
    }
    
    nav ul {
        display: flex;
        gap: 8px !important;
        margin-top: 10px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 11px;
    }
    
    nav ul li a {
        padding: 5px 6px;
        font-size: 11px;
    }
    
    .logo a {
        font-size: 18px;
    }
    
    .hero h1 {
        font-size: 22px !important;
        letter-spacing: 2px !important;
    }
    
    .hero-subtitle {
        font-size: 10px !important;
        letter-spacing: 1px !important;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 30px 20px;
    }
    
    .product-card {
        font-size: 14px;
    }
    
    .product-info h3 {
        font-size: 14px;
    }
    
    .about-content, .contact-form {
        padding: 25px 15px !important;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .section-title .subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    .divider {
        width: 40px;
    }
    
    footer {
        padding: 30px 0;
    }
    
    footer .container {
        text-align: center;
    }
}