/* Base styles */
:root {
    --primary-color: #1a2942;
    --secondary-color: #c8a97e;
    --accent-color: #d4af37;
    --text-color: #333;
    --light-text: #f5f5f5;
    --light-bg: #f8f9fa;
    --dark-bg: #121921;
    --border-color: #e1e1e1;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.2rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-view, .btn-add, .btn-buy, .btn-cookie {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-view {
    background-color: var(--primary-color);
    color: var(--light-text);
    width: 100%;
}

.btn-view:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-add, .btn-buy {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-right: 10px;
}

.btn-add {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-add:hover {
    background-color: var(--dark-bg);
}

.btn-buy {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-buy:hover {
    background-color: var(--accent-color);
}

/* Cookie notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0;
    gap: 10px;
}

.btn-cookie {
    padding: 8px 15px;
    font-size: 0.9rem;
    margin: 0 5px;
}

.accept {
    background-color: var(--success-color);
    color: white;
}

.customize {
    background-color: var(--warning-color);
    color: var(--text-color);
}

.reject {
    background-color: var(--error-color);
    color: white;
}

.cookie-more-info {
    font-size: 0.8rem;
    margin-top: 5px;
}

.cookie-more-info a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}

.main-nav {
    display: flex;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: var(--light-text);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 5px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

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

.cart-icon {
    display: flex;
    align-items: center;
}

.cart-icon i {
    font-size: 1.2rem;
    margin-right: 5px;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features section */
.features {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    margin-bottom: 20px;
}

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

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-around;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-text {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.cta {
    text-align: center;
    margin-top: 30px;
}

/* About products section */
.about-products {
    padding: 80px 0;
    background: white;
}

.about-products .container {
    max-width: 900px;
}

.about-products p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.quality-assurance, .history {
    margin-top: 40px;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
}

.quality-assurance h3, .history h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Interview section */
.interview {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-text);
}

.interview h2 {
    color: var(--light-text);
    margin-bottom: 40px;
}

.interview-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.expert-image {
    flex: 0 0 120px;
    text-align: center;
}

.expert-image i {
    color: var(--secondary-color);
}

.expert-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
}

.expert-quote cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    color: var(--secondary-color);
}

/* Daily Selection */
.daily-selection {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.selection-items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.selection-item {
    flex: 1 1 300px;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.selection-item:hover {
    transform: translateY(-5px);
}

.selection-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.selection-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Products section */
.products {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

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

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card h3, .product-card .product-description, .product-card .product-price, .product-card .product-actions {
    padding: 0 20px;
}

.product-card h3 {
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.product-description {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #666;
    height: 60px;
    overflow: hidden;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 10px;
    padding-bottom: 20px;
}

/* Product detail page */
.product-detail {
    padding: 80px 0;
}

.product-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.product-image {
    flex: 1 1 400px;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.product-info {
    flex: 1 1 400px;
}

.product-info h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.product-price-detail {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.product-description-detail {
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.specs-list {
    list-style: none;
}

.specs-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.specs-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    font-size: 1.2rem;
    cursor: pointer;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

/* Cart Page */
.cart-section {
    padding: 80px 0;
}

.cart-items {
    margin-bottom: 40px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 5px;
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cart-item-price {
    color: var(--secondary-color);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.cart-item-quantity input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    font-size: 1rem;
}

.cart-summary {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.cart-summary h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.checkout-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.checkout-button:hover {
    background: var(--primary-color);
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}

.empty-cart i {
    font-size: 3rem;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-cart p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Checkout page */
.checkout-section {
    padding: 80px 0;
}

.checkout-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.checkout-form {
    flex: 1 1 600px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(200, 169, 126, 0.25);
}

.checkout-summary {
    flex: 1 1 300px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

.place-order-button {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.place-order-button:hover {
    background: var(--primary-color);
}

/* Success page */
.success-section {
    padding: 80px 0;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 30px;
}

.success-heading {
    margin-bottom: 20px;
}

.success-message {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.continue-shopping {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.continue-shopping:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* About page */
.about-section {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-section {
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member-info {
    padding: 20px;
}

.team-member-info h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.team-member-info p:first-of-type {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Contact page */
.contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    flex: 1 1 500px;
}

.contact-form h2 {
    text-align: left;
    margin-bottom: 30px;
}

.send-message-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.send-message-button:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1 1 250px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-links {
    flex: 1 1 150px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact {
    flex: 1 1 250px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive styles */
@media (max-width: 991px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .feature-grid, .selection-items, .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .interview-content {
        flex-direction: column;
        text-align: center;
    }
    
    .expert-image {
        margin-bottom: 20px;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .cart-item-quantity {
        margin: 15px 0;
    }
}

@media (max-width: 767px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    .main-nav {
        justify-content: center;
    }
    
    .main-nav li {
        margin: 0 15px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-actions-detail {
        flex-direction: column;
    }
    
    .btn-add, .btn-buy {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-nav li {
        margin: 5px 10px;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
        margin: 5px 0;
    }
}
