/* Base Styles */
:root {
    --primary-color: #e94560;
    --secondary-color: #0f3460;
    --accent-color: #ff9e00;
    --background-color: #f9f9f9;
    --text-color: #333;
    --light-text: #666;
    --lighter-text: #999;
    --dark-text: #222;
    --white: #fff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --border-color: #e1e1e1;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
    --header-height: 80px;
    --footer-bg: #1a1a2e;
}

/* Japanese Theme Colors Inspired */
:root {
    --primary-color: #D64161; /* Cherry Blossom Pink */
    --secondary-color: #1A3C5B; /* Deep Indigo */
    --accent-color: #E3A01B; /* Kyoto Gold */
    --background-color: #f7f7f7;
    --card-bg: #ffffff;
    --footer-bg: #16213E; /* Midnight Blue */
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

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

ul {
    list-style: none;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

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

p {
    margin-bottom: 1rem;
}

section {
    padding: 3.5rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

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

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

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

.btn-secondary:hover {
    background-color: #15304a;
    border-color: #15304a;
    color: var(--white);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--gray-700);
    border-color: var(--gray-400);
}

.btn-tertiary:hover {
    background-color: var(--gray-200);
    border-color: var(--gray-500);
    color: var(--gray-900);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 1.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-links li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.header-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cart-icon {
    position: relative;
    color: var(--text-color);
}

.cart-icon.active {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--gray-100);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child):after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--gray-500);
}

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

.breadcrumbs li:last-child {
    color: var(--gray-700);
    font-weight: 500;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5rem 0;
    background-image: linear-gradient(rgba(26, 60, 91, 0.9), rgba(26, 60, 91, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

.feature {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--gray-100);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

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

.feature h3 {
    margin-bottom: 1rem;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

.stat-label {
    color: var(--gray-700);
    font-size: 1.1rem;
}

.cta-container {
    text-align: center;
}

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

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

.about-products-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-products-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.quality-guarantees {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    box-shadow: var(--box-shadow);
}

.quality-guarantees h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.quality-guarantees ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}

.quality-guarantees li {
    margin-bottom: 0.75rem;
}

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

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

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

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

.product-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.product-description {
    margin-bottom: 1rem;
    color: var(--light-text);
    flex-grow: 1;
}

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

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

/* Calculator Section */
.japan-trip-calculator {
    background-color: var(--gray-100);
    padding: 4rem 0;
}

.japan-trip-calculator h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.japan-trip-calculator > .container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.calculator {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.calculator-form, 
.calculator-result {
    padding: 2rem;
}

.calculator-form {
    flex: 1;
    min-width: 300px;
    border-right: 1px solid var(--gray-200);
}

.calculator-result {
    flex: 1;
    min-width: 300px;
    background-color: var(--gray-100);
}

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

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

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

.calculator-result h3 {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-300);
    padding-bottom: 0.75rem;
}

.result-details p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--gray-300);
}

.result-details p span:first-child {
    font-weight: 500;
}

.result-details .total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid var(--gray-300);
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 0.75rem;
}

.calculator .disclaimer {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 1.5rem;
    font-style: italic;
}

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

.product-detail-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-detail-image {
    flex: 1;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-detail-content {
    flex: 1;
}

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

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

.stars {
    color: var(--warning-color);
    display: flex;
    margin-right: 0.75rem;
}

.rating-count {
    color: var(--gray-600);
    font-size: 0.95rem;
}

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

.product-detail .product-description h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.2rem;
}

.product-detail .product-description ul {
    padding-left: 1.25rem;
    margin-bottom: 1.5rem;
}

.product-detail .product-description li {
    margin-bottom: 0.5rem;
    position: relative;
    list-style-type: disc;
}

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

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

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

.quantity-controls button {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

.quantity-controls button:hover {
    background-color: var(--gray-200);
}

.quantity-controls input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
    font-size: 1rem;
    -moz-appearance: textfield;
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 150px;
}

.product-meta {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-300);
}

.product-meta p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 3rem;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 1.5rem;
}

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

.tab-btn:hover {
    color: var(--primary-color);
}

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

.tab-content {
    display: none;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.specs-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.specs-table td:first-child {
    width: 35%;
    font-weight: 500;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-300);
}

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

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

.stars-large {
    color: var(--warning-color);
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.review-count {
    font-size: 0.9rem;
    color: var(--gray-600);
}

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

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

.review-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 500;
}

.review-date {
    color: var(--gray-600);
    font-size: 0.9rem;
}

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

.review-content h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Related Products Section */
.related-products {
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

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

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

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

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

.about-intro {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.our-values {
    background-color: var(--gray-100);
    padding: 4rem 0;
}

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

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

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

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

.team {
    background-color: var(--white);
    padding: 4rem 0;
}

.team h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

.team-member {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.team-member h3 {
    margin: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

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

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--gray-100);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: var(--transition);
}

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

.testimonials {
    background-color: var(--gray-100);
    padding: 4rem 0;
}

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

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

.testimonial {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
}

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

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.author-name {
    font-weight: 600;
}

.author-location {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.our-commitment {
    background-color: var(--white);
    padding: 4rem 0;
}

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

.commitment-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.commitment-text {
    flex: 2;
}

.commitment-text p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.commitment-image {
    flex: 1;
    max-width: 400px;
}

/* Contact Page */
.contact h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

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

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

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 0.25rem;
}

.contact-info {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--white);
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: var(--white);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    color: var(--accent-color);
    flex-shrink: 0;
}

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

.info-content a {
    color: var(--white);
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--accent-color);
}

.social-contact h3 {
    color: var(--white);
    margin-bottom: 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: var(--white);
    transition: var(--transition);
}

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

.faq-section {
    background-color: var(--gray-100);
    padding: 3rem;
    border-radius: var(--border-radius);
}

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

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

.faq-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-success {
    text-align: center;
    padding: 3rem 0;
}

.form-success svg {
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

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

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

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

.empty-cart {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.empty-cart-icon {
    margin-bottom: 1.5rem;
    color: var(--gray-500);
}

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

.empty-cart p {
    margin-bottom: 2rem;
    color: var(--gray-600);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cart-items-container {
    margin-bottom: 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: auto;
}

.cart-items {
    width: 100%;
    border-collapse: collapse;
}

.cart-items th {
    background-color: var(--gray-100);
    padding: 1.25rem 1rem;
    font-weight: 600;
    text-align: left;
    color: var(--gray-700);
}

.cart-items td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.cart-items tr:last-child td {
    border-bottom: none;
}

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

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

.cart-product-name {
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.product-remove button {
    background: none;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
}

.product-remove button:hover {
    color: var(--error-color);
}

.cart-summary {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.summary-line.total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
    border-top: 1px solid var(--gray-200);
    margin-top: 1rem;
    padding-top: 1rem;
    border-bottom: none;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* Checkout Page */
.checkout-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.checkout-form-container {
    flex: 1;
    min-width: 500px;
}

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

.checkout-form-container h2:first-child {
    margin-top: 0;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group.half {
    flex: 1;
}

.checkout-summary {
    flex: 0 0 350px;
}

.summary-container {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

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

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

.order-item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

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

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

.order-item-name {
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.order-item-price {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.order-item-quantity {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.order-security-note {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    margin-top: 2rem;
    align-items: flex-start;
}

.security-icon {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.order-security-note p {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0;
}

.checkout-help {
    margin-top: 2rem;
    text-align: center;
}

.checkout-help h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.checkout-help p {
    font-size: 0.95rem;
}

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

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

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

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

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

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

.whats-next {
    text-align: left;
    margin-bottom: 2.5rem;
}

.whats-next h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.whats-next ol {
    padding-left: 1.5rem;
}

.whats-next li {
    margin-bottom: 0.75rem;
}

.success-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.order-help {
    border-top: 1px solid var(--gray-200);
    padding-top: 2rem;
}

.order-help h3 {
    margin-bottom: 0.75rem;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--white);
    padding-top: 4rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-links {
    flex: 2 1 600px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 200px;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

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

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

.footer-column address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

.footer-social h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1 1 400px;
    margin-bottom: 0;
}

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

.cookie-content a {
    color: var(--gray-600);
    font-size: 0.9rem;
    text-decoration: underline;
    margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .product-detail-layout {
        flex-direction: column;
    }
    
    .product-detail-image {
        max-width: 100%;
    }
    
    .about-intro, 
    .commitment-content {
        flex-direction: column;
    }
    
    .about-image, 
    .commitment-image {
        max-width: 100%;
    }
    
    .checkout-layout {
        flex-direction: column;
    }
    
    .checkout-form-container, 
    .checkout-summary {
        min-width: auto;
        width: 100%;
    }
    
    .summary-container {
        position: static;
    }
    
    .calculator {
        flex-direction: column;
    }
    
    .calculator-form, 
    .calculator-result {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }
}

@media (max-width: 768px) {
    .nav-links, 
    .header-controls button {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cart-items th:not(:first-child), 
    .cart-items td:not(:first-child) {
        display: none;
    }
    
    .product-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 0.95rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .features-grid, 
    .product-grid, 
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .success-actions {
        flex-direction: column;
    }
}
