/* Global Styles - Japanese-inspired Theme */
:root {
    --primary-color: #9A3B3B;  /* Traditional Japanese red */
    --primary-dark: #6D2E46;   /* Deeper shade of red */
    --secondary-color: #594F4F; /* Japanese charcoal gray */
    --light-color: #F7F3E9;    /* Light washi paper color */
    --dark-color: #2D232E;     /* Deep Japanese purple-black */
    --gray-color: #837A75;     /* Neutral clay color */
    --light-gray: #F7F3E9;     /* Washi paper color */
    --bg-color: #FFFBF0;       /* Light cream paper color */
    --section-bg-light: #F7F3E9; /* Light washi paper */
    --section-bg-dark: #EFE6D5;  /* Darker washi paper */
    --card-bg: #FFFBF0;        /* Light cream background */
    --text-color: #474747;     /* Refined dark gray */
    --text-light: #837A75;     /* Neutral clay color */
    --accent-color: #D4AF37;   /* Japanese gold */
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%239A3B3B' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-attachment: fixed;
    line-height: 1.6;
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

/* Japanese-inspired design element - Horizontal line decoration */
.japanese-divider {
    height: 1px;
    background-color: var(--border-color);
    position: relative;
    margin: 2rem 0;
    width: 100%;
}

.japanese-divider::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 7px;
    background-color: var(--primary-color);
    border-radius: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

section {
    padding: 5rem 0;
}

/* Navigation */
.navbar {
    background-color: var(--light-color);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand .logo {
    height: 90px;
}

/* Hero Section */
.hero {
    background-color: var(--section-bg-light);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(154, 59, 59, 0.1) 0%, rgba(109, 46, 70, 0.1) 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239A3B3B' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-color);
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.hero .lead {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* Features Section */
.features {
    background-color: var(--bg-color);
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.feature-box {
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.feature-box i {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Cookware Section */
.cookware-section {
    background-color: var(--section-bg-dark);
    position: relative;
}

.cookware-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Seigaiha (wave) pattern - traditional Japanese */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 80 80'%3E%3Cg fill='%239A3B3B' fill-opacity='0.1'%3E%3Cpath d='M0 0c34.758 0 64 29.242 64 64h16c0-42.976-35.024-78-78-78v14zm16 0c26.156 0 48 21.844 48 48h16c0-34.338-28.662-63-63-63v15zm16 0c17.663 0 32 14.337 32 32h16c0-25.883-21.117-47-47-47v15zm16 0c9.025 0 16 6.975 16 16h16c0-17.673-14.327-32-32-32v16zM0 80h80v-16H0v16z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 40px 40px;
    opacity: 0.4;
}

.product-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 0;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    /* Asymmetrical design - Japanese wabi-sabi aesthetic */
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 4px;
    background: var(--primary-color);
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 4px;
    background: var(--accent-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-card h4 {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: var(--dark-color);
}

/* Prestige Section */
.prestige-section {
    background-color: var(--bg-color);
    position: relative;
}

.prestige-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, var(--section-bg-dark) 25%, transparent 25%) -10px 0,
                linear-gradient(225deg, var(--section-bg-dark) 25%, transparent 25%) -10px 0,
                linear-gradient(315deg, var(--section-bg-dark) 25%, transparent 25%),
                linear-gradient(45deg, var(--section-bg-dark) 25%, transparent 25%);
    background-size: 20px 20px;
}

.divider {
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--section-bg-light));
    width: 100%;
    border-radius: 3px;
}

/* Essentials Section */
.essentials-section {
    background-color: var(--section-bg-light);
    position: relative;
}

.essential-card {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.essential-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.essential-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.essential-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Secret Weapon Section */
.secret-weapon {
    background-color: var(--bg-color);
    position: relative;
}

.secret-weapon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(56, 142, 60, 0.05) 100%);
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.check-list li {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.check-list li:hover {
    background-color: rgba(76, 175, 80, 0.2);
    transform: translateX(5px);
}

.check-list i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Japanese-specific styling elements */
.japanese-callout {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3.5rem;
    color: var(--primary-color);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
}

.hero-image-container {
    position: relative;
    border: 1px solid var(--border-color);
    padding: 10px;
    background-color: var(--card-bg);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    bottom: -10px;
    left: -10px;
    border: 1px solid var(--border-color);
    z-index: -1;
}

/* Testimonials */
.testimonials {
    background-color: var(--section-bg-dark);
    position: relative;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Newsletter */
.newsletter {
    background-color: var(--bg-color);
    background-image: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(56, 142, 60, 0.1) 100%);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    position: relative;
    padding-top: 3rem;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
}

footer h5 {
    color: #fff;
    margin-bottom: 1.25rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

footer a:hover {
    color: var(--primary-color);
    text-decoration: none;
    transform: translateX(5px);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.warranty-info {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.japanese-text {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.japanese-small {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.8rem;
    display: inline-block;
    color: var(--primary-color);
    opacity: 0.8;
    vertical-align: middle;
    margin-left: 5px;
}

.japanese-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.2rem;
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
}

.decorative-subtitle {
    height: 2px;
    width: 60px;
    background-color: var(--primary-color);
    display: block;
    margin: 0 auto 1rem;
    position: relative;
}

.decorative-subtitle::before {
    content: '';
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: var(--primary-color);
    top: -6px;
    left: 15px;
    opacity: 0.6;
}

.decorative-subtitle::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 30px;
    background-color: var(--primary-color);
    bottom: -6px;
    left: 15px;
    opacity: 0.6;
}

.decorative-element {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    position: relative;
    margin-bottom: 1rem;
}

.decorative-element::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.japanese-pattern {
    height: 20px;
    width: 100px;
    margin: 0 auto;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 C30,20 70,0 100,10' stroke='%239A3B3B' fill='none' stroke-width='1'/%3E%3Cpath d='M0,10 C30,0 70,20 100,10' stroke='%239A3B3B' fill='none' stroke-width='1'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
}

.card-image-wrapper img {
    transition: all 0.5s ease;
    margin-bottom: 0 !important;
}

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

.japanese-product-desc {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-desc {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(154, 59, 59, 0.2);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.translation {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    opacity: 0.8;
    font-size: 0.8rem;
    font-weight: 400;
}

/* Hero Section Japanese Elements */
.japanese-callout {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    display: inline-block;
    padding: 3px 8px;
    border: 1px solid var(--primary-color);
    position: relative;
}

.japanese-callout::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: 3px;
    bottom: 3px;
    border: 1px solid var(--primary-color);
    opacity: 0.3;
    z-index: -1;
}

.hero .btn-lg {
    margin-top: 1rem;
    padding: 0.7rem 2rem;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-image-container {
    position: relative;
    border: 1px solid rgba(154, 59, 59, 0.3);
    padding: 10px;
    background-color: var(--card-bg);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' fill='%23F7F3E9'/%3E%3Cpath d='M0,10 L20,10 M10,0 L10,20' stroke='%239A3B3B' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    z-index: -1;
    opacity: 0.3;
}

.japanese-pattern-large {
    height: 30px;
    width: 150px;
    margin: 0 0 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg width='150' height='30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,15 C45,30 105,0 150,15' stroke='%239A3B3B' fill='none' stroke-width='1.5'/%3E%3Cpath d='M0,15 C45,0 105,30 150,15' stroke='%239A3B3B' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left;
    opacity: 0.6;
}

/* Essential Card Styles */
.essential-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary-color);
    padding: 5px;
    background-color: #F7F3E9;
    transition: all 0.3s ease;
}

.essential-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 L20,10 M10,0 L10,20' stroke='%239A3B3B' stroke-width='0.3' opacity='0.2'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    opacity: 0.15;
}

.essential-card:hover .essential-image-wrapper {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(154, 59, 59, 0.1);
}

.japanese-product-name {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-name {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-style: italic;
    border-bottom: 1px dotted rgba(154, 59, 59, 0.3);
    padding-bottom: 0.25rem;
    display: inline-block;
}

.price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

/* Chef Section Styles */
.chef-image-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-color);
    padding: 10px;
}

.japanese-symbol-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 8rem;
    color: rgba(154, 59, 59, 0.15);
    z-index: 1;
    font-weight: 700;
    pointer-events: none;
}

.japanese-highlight {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.translation-block {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.4rem; 
    font-weight: 500;
    border-bottom: 1px solid rgba(154, 59, 59, 0.2);
    padding-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.feature-list-japanese {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.feature-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(154, 59, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.feature-text h5 {
    font-family: 'Noto Sans JP', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.translation-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 3px;
    letter-spacing: 0.5px;
}

/* Testimonial Section Styles */
.testimonial-image-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    padding: 5px;
    background-color: white;
    overflow: hidden;
}

.testimonial-image-wrapper img {
    border-radius: 50%;
    margin-bottom: 0 !important;
    transition: all 0.3s ease;
}

.testimonial-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    border: 1px solid rgba(154, 59, 59, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(154, 59, 59, 0.1);
}

.testimonial-card:hover .testimonial-image-wrapper img {
    transform: scale(1.1);
}

.quote-mark {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    opacity: 0.1;
}

/* Newsletter Styles */
.newsletter {
    background-color: var(--section-bg-light);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,100 L100,0 M20,100 L100,20 M0,80 L80,0 M0,60 L60,0 M0,40 L40,0 M0,20 L20,0' stroke='%239A3B3B' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 100px 100px;
    opacity: 0.3;
}

.newsletter-container {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.japanese-symbol {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.15;
    margin-bottom: 1rem;
    font-weight: 700;
}

.location-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-color);
    background-color: rgba(154, 59, 59, 0.1);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 5px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
    border: 1px solid rgba(154, 59, 59, 0.2);
}

.newsletter-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(154, 59, 59, 0.1);
}

.contact-info-footer {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-footer p {
    margin-bottom: 0.5rem;
}

.contact-info-footer i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
}

/* Page Hero (About, Contact, Privacy) */
.page-hero {
    background-color: var(--section-bg-light);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(56, 142, 60, 0.1) 100%);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.page-hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* About Page */
.about-content {
    background-color: var(--bg-color);
    padding: 4rem 0;
}

.value-box {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.value-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-box i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* Contact Page */
.contact-content {
    background-color: var(--bg-color);
    padding: 4rem 0;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info h5 i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.faq-section {
    background-color: var(--section-bg-light);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="3" cy="3" r="1.5" fill="%234CAF50" opacity="0.1"/></svg>');
    background-size: 20px 20px;
    opacity: 0.5;
}

.accordion-item {
    background-color: var(--card-bg);
    border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--card-bg);
    color: var(--dark-color);
    font-weight: 500;
    box-shadow: none;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}

.accordion-body {
    background-color: var(--card-bg);
    color: var(--text-color);
    padding: 1.25rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Privacy Policy Page */
.privacy-content {
    background-color: var(--bg-color);
    padding: 4rem 0;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--dark-color);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.policy-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.policy-section ul {
    padding-left: 1.5rem;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero {
        padding: 4rem 0;
        text-align: center;
    }
    
    .hero img {
        margin-top: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature-box, .product-card, .essential-card, .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
}

/* Decorative element that replaces Japanese text */
.decorative-element {
    height: 2px;
    width: 60px;
    background-color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.decorative-element::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.7;
}

.decorative-element::after {
    content: '';
    position: absolute;
    top: -4px;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.7;
}
