/* Base Styles and Variables */
:root {
    --primary-color: #4CAF50;
    --primary-color-dark: #388E3C;
    --primary-color-light: #A5D6A7;
    --secondary-color: #2196F3;
    --secondary-color-dark: #1976D2;
    --accent-color: #FFC107;
    --text-color: #333333;
    --text-color-light: #666666;
    --background-color: #FFFFFF;
    --background-color-light: #F9F9F9;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FF9800;
    --info-color: #2196F3;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
    --transition-speed: 0.3s;
    --font-family-primary: 'Noto Sans JP', sans-serif;
    --font-family-secondary: 'M PLUS Rounded 1c', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

p {
    margin-bottom: 1rem;
}

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

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-color-dark);
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: var(--background-color-light);
}

.btn-3d {
    position: relative;
    box-shadow: 0 4px 0 var(--primary-color-dark);
    transform: translateY(-2px);
}

.btn-3d:active {
    box-shadow: 0 1px 0 var(--primary-color-dark);
    transform: translateY(1px);
}

.btn-secondary.btn-3d {
    box-shadow: 0 4px 0 var(--secondary-color-dark);
}

.btn-secondary.btn-3d:active {
    box-shadow: 0 1px 0 var(--secondary-color-dark);
}

/* Header */
header {
    background-color: var(--background-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    max-height: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: 0.4s;
}

/* Hero Section */
.hero {
    background-color: #e8f5e9;
    padding: 5rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><circle cx="2" cy="2" r="1" fill="%234CAF50" fill-opacity="0.3"/></svg>');
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color-dark);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-color-light);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background-color: var(--background-color-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--transition-speed);
}

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

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

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color-light);
}

.cta-box {
    background-color: var(--primary-color-light);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Products Section */
.about-products {
    padding: 5rem 0;
    background-color: var(--background-color-light);
}

.about-products p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-certifications {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

.product-certifications h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.product-certifications ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product-certifications li {
    margin-bottom: 0.75rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.product-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition-speed);
}

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

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.product-info h3 a {
    color: var(--text-color);
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

.product-description {
    margin-bottom: 1rem;
    color: var(--text-color-light);
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color-dark);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--background-color-light);
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    padding: 2rem;
    margin: 1rem;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 500;
    color: var(--primary-color-dark);
}

/* Footer */
footer {
    background-color: #263238;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    max-height: 80px;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-speed);
}

.footer-column a:hover {
    color: white;
}

address {
    font-style: normal;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: background-color var(--transition-speed);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 33, 33, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-content p {
    flex: 1 1 100%;
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-content a {
    color: var(--primary-color-light);
    text-decoration: underline;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: white;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    padding: 1rem;
    border-radius: var(--border-radius);
    z-index: 999;
    display: none;
    animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Product Detail Page */
.breadcrumbs {
    margin-bottom: 2rem;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-color-light);
}

.breadcrumbs a {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--text-color-light);
}

.product-detail {
    padding: 3rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-detail-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-detail-info h1 {
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    display: flex;
    color: var(--accent-color);
}

.half-star {
    position: relative;
    overflow: hidden;
    width: 50%;
}

.rating-count {
    color: var(--text-color-light);
    font-size: 0.875rem;
}

.product-availability {
    color: var(--success-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-short-description {
    margin-bottom: 1.5rem;
}

.product-meta {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.product-meta-item {
    display: flex;
    margin-bottom: 0.5rem;
}

.meta-label {
    font-weight: 500;
    width: 100px;
    flex-shrink: 0;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.quantity-control button {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

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

.product-tabs {
    margin-bottom: 3rem;
}

.tab-headers {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-header {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    position: relative;
}

.tab-header::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -1px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

.tab-header.active::after {
    width: 100%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.ingredients-list {
    list-style: disc;
    padding-left: 1.5rem;
}

.ingredients-list li {
    margin-bottom: 0.5rem;
}

.usage-steps {
    list-style: decimal;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.usage-steps li {
    margin-bottom: 0.75rem;
}

.usage-caution {
    background-color: var(--background-color-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--warning-color);
}

.usage-caution h3 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.usage-caution ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.review-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.review-average {
    text-align: center;
}

.review-stars {
    margin-bottom: 1rem;
}

.average-rating {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.review-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-label {
    width: 50px;
    text-align: right;
}

.rating-bar {
    flex-grow: 1;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background-color: var(--accent-color);
}

.rating-percent {
    width: 40px;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.review {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.review:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.reviewer-name {
    font-weight: 500;
}

.review-date {
    color: var(--text-color-light);
    font-size: 0.875rem;
}

.review-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.related-products {
    margin-top: 4rem;
}

.related-products h2 {
    margin-bottom: 2rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

/* About Page */
.page-header {
    background-color: var(--background-color-light);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.about-intro {
    padding: 3rem 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-intro-content h2 {
    margin-bottom: 2rem;
}

.about-intro-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-intro-image {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-values {
    padding: 5rem 0;
    background-color: var(--background-color-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-sustainability {
    padding: 5rem 0;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.sustainability-item {
    background-color: var(--background-color-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.sustainability-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team {
    padding: 5rem 0;
    background-color: var(--background-color-light);
}

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

.team-member {
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-color-light);
}

.team-member .social-icons {
    justify-content: center;
    margin-top: 1rem;
}

.certifications {
    padding: 5rem 0;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.certification-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-color-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.certification-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--primary-color-light);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-details h2 {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.contact-text h3 {
    margin-bottom: 0.5rem;
}

.small-text {
    font-size: 0.875rem;
    color: var(--text-color-light);
}

.social-connect {
    margin-top: 3rem;
}

.social-connect h3 {
    margin-bottom: 1.5rem;
}

.contact-form h2 {
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-help {
    font-size: 0.875rem;
    color: var(--text-color-light);
    margin-top: 0.5rem;
}

.checkbox-group {
    display: flex;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

.required {
    color: var(--error-color);
}

.map-container {
    height: 450px;
    margin-bottom: 4rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-section {
    padding-bottom: 5rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background-color: var(--background-color);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    transition: transform var(--transition-speed);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

/* Cart Page */
.cart-section {
    padding: 3rem 0;
}

.cart-empty {
    text-align: center;
    padding: 4rem 0;
}

.empty-cart-icon {
    color: var(--text-color-light);
    margin-bottom: 2rem;
}

.cart-content {
    margin-bottom: 4rem;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
}

.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-product-name {
    font-weight: 500;
}

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

.cart-quantity input {
    width: 50px;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.cart-remove {
    color: var(--error-color);
    cursor: pointer;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.cart-coupon {
    display: flex;
    gap: 0.5rem;
}

.cart-coupon input {
    width: 200px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.cart-totals {
    max-width: 400px;
    margin-left: auto;
}

.cart-totals h2 {
    margin-bottom: 1.5rem;
}

.cart-totals-table {
    margin-bottom: 2rem;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-total-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color-dark);
}

.checkout-button {
    width: 100%;
    font-size: 1.1rem;
    padding: 1rem;
}

/* Checkout Page */
.checkout-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.checkout-form-container {
    padding-right: 2rem;
}

.checkout-form-container h2,
.order-summary h2 {
    margin-bottom: 2rem;
}

.checkout-form-container h3 {
    margin: 2rem 0 1.5rem;
}

.order-summary {
    background-color: var(--background-color-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
}

.order-summary-content {
    padding: 2rem;
}

.order-summary-products {
    margin-bottom: 2rem;
}

.order-summary-products h3 {
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item-info {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.checkout-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.checkout-item-name {
    font-weight: 500;
}

.checkout-item-quantity {
    color: var(--text-color-light);
    font-size: 0.875rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color-dark);
}

.secure-checkout {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.secure-icon {
    color: var(--success-color);
}

.secure-checkout p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Success Page */
.success-section {
    padding: 5rem 0;
    text-align: center;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 2rem;
}

.success-content h1 {
    margin-bottom: 1.5rem;
}

.success-info {
    background-color: var(--background-color-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    text-align: left;
}

.success-buttons {
    margin-top: 3rem;
}

.recommended-products {
    padding: 5rem 0;
    background-color: var(--background-color-light);
}

.recommended-products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .product-detail-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .sustainability-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-detail-grid,
    .contact-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-form-container {
        padding-right: 0;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .about-intro-image {
        grid-row: 1;
    }
    
    .nav-links {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .cart-header, 
    .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .price-col, 
    .cart-price {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .review-summary {
        grid-template-columns: 1fr;
    }
}
