/* Japanese Typography */
body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #333;
    background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
}

/* Header Styling */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #E50000 !important;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.navbar-brand:hover {
    background: rgba(229, 0, 0, 0.1);
    transform: translateY(-2px);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    border-radius: 20px;
    padding-right: 40px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #E50000;
    box-shadow: 0 0 0 0.2rem rgba(229, 0, 0, 0.15);
}

.search-box button {
    position: absolute;
    right: 5px;
    border: none;
    background: none;
    color: #E50000;
    padding: 0.375rem 0.75rem;
}

.search-box button:hover {
    color: #cc0000;
}

.navbar-brand:hover {
    opacity: 0.8;
}

/* Navigation Links */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #E50000;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Cart and User Icons */
.btn-link {
    color: #E50000;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    transform: scale(1.1);
    color: #cc0000;
}

/* Breadcrumb Styling */
.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item a {
    color: #E50000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #cc0000;
}

.breadcrumb-item.active {
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-link::after {
        display: none;
    }
}
/* Hero Section */
.hero-section {
    margin-top: -1rem;
}

.carousel-item {
    height: 500px;
    overflow: hidden;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 10px;
}

/* Category Cards */
.category-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.category-card img {
    height: 300px;
    object-fit: cover;
}

/* Product Cards */
.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.product-card .card-title {
    font-size: 1.1rem;
}

.product-card .price {
    color: #E50000;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 1rem 0;
}

/* Newsletter Form */
.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

/* Footer Styling */
.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.footer-heading {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    color: #E50000;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #E50000;
}

.footer-description {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.site-footer a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #E50000;
}
/* Contact Page Specific Styles */
.contact-info-section .card {
    border: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.3s ease;
}

.contact-info-section .card:hover {
    transform: translateY(-5px);
}

.contact-info-section .fas {
    background: linear-gradient(45deg, #E50000 0%, #ff1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.contact-form-section .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus {
    border-color: #E50000;
    box-shadow: 0 0 0 0.2rem rgba(229, 0, 0, 0.15);
}

.contact-form-section .form-select {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    background-image: linear-gradient(45deg, #E50000 0%, #ff1a1a 100%);
    background-clip: padding-box;
    transition: all 0.3s ease;
}

.faq-section .accordion-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    padding: 1rem;
    font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #E50000;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
}

.faq-section .accordion-button:focus {
    border-color: #E50000;
    box-shadow: 0 0 0 0.2rem rgba(229, 0, 0, 0.15);
}