/* Base Styles */
:root {
    --primary-color: #2e7d32;
    --primary-hover: #1b5e20;
    --secondary-color: #1a237e;
    --secondary-hover: #0d1355;
    --accent-color: #ff6f00;
    --accent-hover: #e65100;
    --light-green: #c8e6c9;
    --light-blue: #e3f2fd;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #616161;
    --text-color: #212121;
    --white: #ffffff;
    --black: #000000;
    --success-color: #43a047;
    --error-color: #e53935;
    --warning-color: #ffa000;
    --info-color: #1e88e5;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Merriweather', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    position: relative;
}

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

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

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

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Reading Progress Bar */
.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    width: 0%;
    transition: width 0.1s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

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

.primary-btn:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.secondary-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.text-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.text-link svg {
    width: 16px;
    height: 16px;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: var(--heading-font);
}

input, 
textarea, 
select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    background-color: var(--white);
    font-family: var(--body-font);
    font-size: 16px;
    transition: var(--transition);
}

input:focus, 
textarea:focus, 
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

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

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    flex-shrink: 0;
}

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

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

nav a {
    padding: 8px 12px;
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    transition: var(--transition);
}

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

nav a.active:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 12px;
    right: 12px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/random/1920x1080/?finance');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

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

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

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

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

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

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

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

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

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

.stat-item {
    text-align: center;
    padding: 0 15px;
}

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

.cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Products Section */
.about-products {
    padding: 80px 0;
    background-color: var(--white);
}

.about-products h2,
.about-products h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-products p {
    margin-bottom: 1.5rem;
    max-width: 900px;
}

.product-story {
    margin-top: 2rem;
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

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

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

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

.product-image {
    height: 250px;
    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: 20px;
}

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

.product-info p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

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

.product-actions .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 14px;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--light-blue);
    padding: 80px 0;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

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

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    border-radius: var(--border-radius);
}

/* Page Header */
.page-header {
    background-color: var(--light-green);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background-color: var(--light-gray);
}

.breadcrumb ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.breadcrumb li:after {
    content: '/';
    margin: 0 10px;
    color: var(--dark-gray);
}

.breadcrumb li:last-child:after {
    display: none;
}

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

.breadcrumb li:last-child {
    color: var(--dark-gray);
}

/* Product Detail */
.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.product-image-container {
    position: relative;
}

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

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

.product-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.rating-count {
    color: var(--dark-gray);
}

.product-stock {
    color: var(--success-color);
    font-weight: 500;
}

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

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

.product-options {
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector label {
    margin-bottom: 0;
    flex-shrink: 0;
}

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

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

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

.quantity-controls input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--medium-gray);
    border-right: 1px solid var(--medium-gray);
    padding: 0;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.product-guarantee {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.product-tabs {
    margin-bottom: 60px;
}

.tabs-header {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

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

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

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-panel h2 {
    margin-bottom: 1.5rem;
}

.tab-panel h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

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

.spec-row {
    display: flex;
    border-bottom: 1px solid var(--medium-gray);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-name, .spec-value {
    padding: 12px 15px;
}

.spec-name {
    flex: 0 0 30%;
    background-color: var(--light-gray);
    font-weight: 500;
}

.spec-value {
    flex: 1;
}

.review-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.review-average {
    text-align: center;
    padding-right: 40px;
    border-right: 1px solid var(--medium-gray);
}

.review-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.review-stars {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.review-breakdown {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.rating-label {
    flex: 0 0 60px;
}

.rating-progress {
    flex: 1;
    height: 8px;
    background-color: var(--light-gray);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 15px;
}

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

.rating-percent {
    flex: 0 0 40px;
    text-align: right;
}

.customer-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    padding: 20px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

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

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

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

.reviewer-rating {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background-color: var(--light-gray);
}

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

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

/* About Us Page */
.about-intro {
    padding: 60px 0;
}

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

.about-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 60px 0;
    background-color: var(--light-green);
}

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

.team-section > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

.team-member h3 {
    margin-top: 1rem;
    padding: 0 20px;
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
}

.team-member .social-icons {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.values {
    padding: 60px 0;
}

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

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

.value-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

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

.testimonials {
    padding: 60px 0;
    background-color: var(--light-blue);
}

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

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

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-quote {
    color: var(--light-green);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-author {
    margin-top: 1.5rem;
    text-align: right;
    font-style: italic;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1920x1080/?finance');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    margin-bottom: 2rem;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

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

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

.business-hours h3 {
    margin-bottom: 1rem;
}

.business-hours p {
    margin-bottom: 0.5rem;
}

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

.contact-form {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
}

.faq-section {
    padding: 60px 0;
    background-color: var(--light-green);
}

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

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

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

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

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

.cart-container {
    margin-bottom: 60px;
}

.cart-empty, .checkout-empty {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

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

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

.cart-empty p, .checkout-empty p {
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cart-items-container {
    margin-bottom: 30px;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
    font-weight: 500;
    font-family: var(--heading-font);
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--medium-gray);
    align-items: center;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-details h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.cart-price, .cart-subtotal {
    font-family: var(--heading-font);
    font-weight: 500;
}

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

.cart-quantity input {
    width: 60px;
    text-align: center;
}

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

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

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.cart-summary {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-weight: 500;
}

.total-row {
    padding-top: 20px;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.15rem;
}

.checkout-button {
    margin-top: 20px;
    margin-bottom: 20px;
}

.checkout-button .btn {
    width: 100%;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

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

.secure-checkout-text {
    font-weight: 500;
    font-size: 0.95rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0.7;
}

.cart-suggestions {
    margin-top: 60px;
}

.cart-suggestions h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.cart-help {
    padding: 60px 0;
    background-color: var(--light-blue);
}

.cart-help h3 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.help-option {
    display: flex;
    gap: 15px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.help-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.help-content h4 {
    margin-bottom: 0.5rem;
}

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

/* Checkout Page */
.checkout-section {
    padding: 60px 0;
}

.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 120px;
}

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

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

.step-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition);
}

.progress-step.active .step-name {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 2px;
    background-color: var(--light-gray);
    margin: 0 10px;
    position: relative;
    top: -20px;
    transition: var(--transition);
}

.progress-line.active {
    background-color: var(--primary-color);
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.checkout-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

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

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

.checkout-sidebar {
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 30px;
    height: fit-content;
}

.checkout-sidebar h3 {
    margin-bottom: 1.5rem;
}

.order-items {
    margin-bottom: 30px;
}

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

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.order-item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

.order-item-details .item-quantity {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.secure-checkout-info {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
    margin-top: 20px;
}

.secure-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.secure-text p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.secure-text p:first-child {
    font-weight: 500;
}

/* Success Page */
.success-section {
    padding: 80px 0;
}

.success-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.success-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
}

.success-info {
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.next-steps h3 {
    margin-bottom: 1rem;
}

.next-steps ul {
    margin-bottom: 1.5rem;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 3rem;
}

.additional-resources {
    margin-top: 60px;
    text-align: center;
}

.additional-resources h3 {
    margin-bottom: 1rem;
}

.additional-resources > p {
    margin-bottom: 2rem;
}

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

.resource-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.resource-icon {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-card h4 {
    margin-bottom: 0.5rem;
}

.resource-card p {
    margin-bottom: 1rem;
}

.follow-section {
    padding: 60px 0;
    background-color: var(--light-green);
    text-align: center;
}

.follow-section h3 {
    margin-bottom: 1rem;
}

.follow-section > .container > p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    color: var(--primary-color);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-column p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 999;
    display: none;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        margin-bottom: 15px;
        border: 1px solid var(--medium-gray);
        border-radius: var(--border-radius);
    }
    
    .cart-product {
        grid-column: 1;
    }
    
    .cart-price, .cart-quantity, .cart-subtotal, .cart-remove {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .cart-price:before {
        content: 'Price: ';
        font-weight: 500;
    }
    
    .cart-quantity:before {
        content: 'Quantity: ';
        font-weight: 500;
    }
    
    .cart-subtotal:before {
        content: 'Subtotal: ';
        font-weight: 500;
    }
}

@media (max-width: 600px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .features-grid, .products-grid, .team-grid, .values-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .success-actions {
        flex-direction: column;
    }
}
