/* Base Styles */
:root {
    --primary-color: #e87d98;
    --primary-light: #ffc0cb;
    --primary-dark: #d15a77;
    --secondary-color: #82c7d0;
    --secondary-light: #a7dde5;
    --secondary-dark: #5ba5b0;
    --accent-color: #9370db;
    --text-color: #333;
    --text-light: #666;
    --text-dark: #111;
    --bg-color: #fff;
    --bg-light: #f8f9fa;
    --bg-dark: #e9ecef;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --max-width: 1200px;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-heading: 'Noto Serif JP', serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style-type: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

section {
    padding: 4rem 0;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

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

/* Header Styles */
header {
    background-color: white;
    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;
    padding: 1rem 0;
}

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

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

.nav-links li {
    margin-left: 2rem;
}

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

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.6)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 8rem 0;
    color: var(--text-dark);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-color);
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

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

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

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

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

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 4rem;
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    font-weight: 500;
}

/* About Products Section */
.about-products {
    background-color: var(--bg-light);
}

.product-info {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-products h3 {
    margin: 1.5rem 0 1rem;
}

.about-products p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Did You Know Section */
.did-you-know {
    background-color: var(--bg-color);
    padding: 5rem 0;
}

.did-you-know h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.fact {
    background: linear-gradient(to right, var(--primary-light), var(--secondary-light));
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.fact i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.fact h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.fact p {
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    height: 3rem;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-actions {
    display: flex;
    justify-content: center;
}

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

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

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin: 0 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

/* Footer Styles */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    margin-bottom: 2rem;
    max-width: 150px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
}

footer address p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem;
}

.cookie-content p {
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
}

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

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

.decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-policy-link {
    margin-left: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* Product Detail Page */
.product-detail {
    padding: 4rem 0;
}

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

.breadcrumb a {
    color: var(--text-light);
}

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

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-image-large {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.product-image-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.stars {
    color: var(--warning-color);
    margin-right: 0.5rem;
}

.product-price-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 1rem;
}

.availability {
    color: var(--success-color);
    font-weight: 600;
}

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

.product-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.product-description ul, 
.product-description ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-description ul li, 
.product-description ol li {
    margin-bottom: 0.5rem;
}

.product-description ul li {
    list-style-type: none;
    position: relative;
}

.product-description ul li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}

.product-specs {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.product-specs p {
    margin-bottom: 0.5rem;
}

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

.quantity-selector label {
    margin-right: 1rem;
    font-weight: 600;
}

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

.quantity-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-light);
    border: none;
    cursor: pointer;
}

.quantity-controls input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
}

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

.add-to-cart, .buy-now {
    flex: 1;
}

/* Product Additional Information Tabs */
.product-additional {
    margin-bottom: 4rem;
}

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

.tab-btn {
    padding: 1rem 1.5rem;
    background: transparent;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.tab-btn.active, 
.tab-btn:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.tab-pane {
    display: none;
}

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

.tab-pane h3 {
    margin-bottom: 1.5rem;
}

.certification-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.certification {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.certification i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.ingredient h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Reviews */
.review-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

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

.rating-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stars-large {
    font-size: 1.5rem;
    color: var(--warning-color);
    margin: 1rem 0;
}

.rating-breakdown {
    width: 60%;
}

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

.rating-bar span:first-child {
    width: 60px;
}

.bar-container {
    flex: 1;
    height: 8px;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin: 0 1rem;
}

.bar {
    height: 100%;
    background-color: var(--warning-color);
    border-radius: 4px;
}

.rating-bar span:last-child {
    width: 40px;
    text-align: right;
}

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

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

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

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

.reviewer-info h4 {
    margin-bottom: 0.5rem;
}

.review-date {
    color: var(--text-light);
}

.review-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Related Products */
.related-products {
    margin-top: 4rem;
}

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

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

.related-product {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.related-product h4, .related-product p {
    padding: 0 1rem;
}

.related-product h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}

.related-product p {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* About Page */
.about-hero {
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.6)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 5rem 0;
    color: var(--text-dark);
}

.about-hero h1 {
    margin-bottom: 3rem;
}

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

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-text {
    text-align: left;
}

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

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

.our-values, 
.certifications {
    background-color: var(--bg-color);
    text-align: center;
}

.value-card, 
.certification-card {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-card:hover, 
.certification-card:hover {
    transform: translateY(-5px);
}

.value-card i, 
.certification-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.manufacturing {
    background-color: var(--bg-light);
}

.manufacturing-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.manufacturing-image {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.manufacturing-text h3 {
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
}

.team-section {
    text-align: center;
    background-color: var(--bg-light);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.team-member {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    padding-bottom: 1.5rem;
}

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

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

.team-member p {
    padding: 0 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
}

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

.awards {
    background-color: var(--bg-color);
}

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

.awards-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.awards-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50px;
    width: 4px;
    background-color: var(--primary-color);
}

.award {
    display: flex;
    margin-bottom: 3rem;
}

.award-year {
    background-color: var(--primary-color);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 2rem;
    z-index: 1;
}

.award-content {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
}

.award-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(255,255,255,0.6)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 5rem 0;
    color: var(--text-dark);
}

.contact-hero h1 {
    margin-bottom: 1.5rem;
}

.contact-hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.contact-info {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

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

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

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

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

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

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

.social-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

.contact-form-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.form-group textarea {
    resize: vertical;
}

.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox input {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
}

.form-success {
    text-align: center;
}

.form-success i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.form-success h3 {
    margin-bottom: 1rem;
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--bg-color);
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

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

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

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.empty-cart h2 {
    margin-bottom: 1rem;
}

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

.cart-list {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 1.5rem;
    background-color: var(--bg-light);
    font-weight: 600;
}

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

.product-col {
    display: flex;
    align-items: center;
}

.product-col img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    margin-right: 1rem;
    object-fit: cover;
}

.item-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.remove-item {
    color: var(--danger-color);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.remove-item:hover {
    color: var(--primary-color);
}

.cart-summary {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.cart-actions {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}

.checkout-btn, .continue-shopping {
    display: block;
    text-align: center;
}

.cart-recommendations {
    margin-top: 5rem;
}

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

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

.recommendation-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    padding-bottom: 1.5rem;
    text-align: center;
}

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

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

.recommendation-card h3 {
    margin: 1rem 0 0.5rem;
}

.recommendation-card .price {
    display: block;
    margin-bottom: 1rem;
}

.recommendation-card button {
    width: 80%;
}

/* Checkout Page */
.checkout-section {
    padding: 5rem 0;
}

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

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.checkout-step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step-divider {
    width: 100px;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 1rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.checkout-form-container {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.checkout-form {
    display: grid;
    gap: 1.5rem;
}

.terms-checkbox label a {
    color: var(--primary-color);
}

.checkout-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.order-summary {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.checkout-item {
    display: flex;
    align-items: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item-image {
    position: relative;
    margin-right: 1rem;
}

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

.checkout-item-quantity {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

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

.secure-checkout-notice i {
    margin-right: 1rem;
    color: var(--success-color);
    font-size: 1.5rem;
}

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

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

.success-container {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 5rem;
    color: var(--success-color);
}

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

.success-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.success-details {
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.recommended-section {
    margin-top: 5rem;
}

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

/* Responsive Media Queries */
@media screen and (max-width: 1200px) {
    :root {
        --max-width: 92%;
    }
}

@media screen and (max-width: 992px) {
    .about-intro, 
    .manufacturing-content {
        grid-template-columns: 1fr;
    }
    
    .about-image, 
    .manufacturing-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .product-container {
        grid-template-columns: 1fr;
    }
    
    .awards-timeline::before {
        left: 25px;
    }
    
    .award-year {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-right: 1.5rem;
    }
    
    .cart-container,
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .cart-header, 
    .cart-item {
        grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid, 
    .facts-container {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .review-summary {
        flex-direction: column;
        gap: 2rem;
    }
    
    .rating-breakdown {
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .cart-header, 
    .cart-item {
        grid-template-columns: 3fr 1fr 1fr;
    }
    
    .price-col, 
    .remove-col {
        display: none;
    }
    
    .checkout-buttons {
        flex-direction: column-reverse;
        gap: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links li {
        margin-left: 1rem;
    }
    
    .nav-links li:first-child {
        margin-left: 0;
    }
    
    .product-grid, 
    .recommendations-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-policy-link {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .cart-header, 
    .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .quantity-col {
        display: none;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-divider {
        width: 2px;
        height: 20px;
        margin: 0;
    }
    
    .checkout-item {
        flex-direction: column;
        text-align: center;
    }
    
    .checkout-item-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
