/* Base Styles */
:root {
    --primary: #4a6fdc;
    --primary-dark: #3a5ec5;
    --secondary: #5d45b0;
    --accent: #5ebaa0;
    --dark: #333333;
    --light: #f8f9fa;
    --grey: #d1d1d1;
    --grey-light: #f1f2f4;
    --grey-dark: #666666;
    --text: #333333;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --font-primary: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

/* Button Styles */
.btn-primary, .btn-secondary, .btn-text {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

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

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

.btn-text {
    background: none;
    color: var(--primary);
    padding: 0.5rem 0;
}

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

.btn-view, .btn-add-to-cart, .btn-buy-now {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

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

.btn-view:hover {
    background-color: var(--grey-light);
    color: var(--primary-dark);
}

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

.btn-add-to-cart:hover {
    background-color: var(--primary-dark);
}

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

.btn-buy-now:hover {
    background-color: #4da58f;
}

.btn-add-to-cart-large {
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-to-cart-large:hover {
    background-color: var(--primary-dark);
}

.btn-cookie {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
    margin: 0 0.5rem;
}

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

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

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

.btn-cookie.secondary:hover {
    background-color: var(--grey-light);
}

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

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

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

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

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
    position: relative;
}

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

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

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

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

.cart-link svg {
    margin-right: 4px;
}

#cart-count {
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

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

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

.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-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    background-color: rgba(74, 111, 220, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.cta {
    text-align: center;
    padding: 2rem;
    background-color: var(--grey-light);
    border-radius: var(--border-radius);
}

.cta h3 {
    margin-bottom: 1.5rem;
}

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

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

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

.quality-assurance, .history {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: var(--shadow);
}

.quality-assurance h3, .history h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.quality-assurance ul {
    list-style-type: none;
    padding-left: 0;
}

.quality-assurance ul li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.quality-assurance ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

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

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

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

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

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

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

.product-image {
    height: 200px;
    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.2rem;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    color: var(--grey-dark);
    margin-bottom: 1rem;
    height: 3rem; /* Fixed height for consistent layout */
    overflow: hidden;
}

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

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

/* Article Review Section */
.article-review {
    padding: 4rem 0;
    background-color: var(--light);
}

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

.article-review ul {
    max-width: 800px;
    margin: 0 auto;
    list-style-type: none;
    padding-left: 0;
}

.article-review ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.article-review ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* Summary Section */
.summary {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

.summary h2 {
    margin-bottom: 1.5rem;
}

.summary p {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.footer-logo p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: white;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: white;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    opacity: 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;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: var(--transition);
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--success);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.cookie-buttons {
    margin-bottom: 1rem;
}

.cookie-more {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--grey-dark);
}

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

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

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.product-image-large img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.product-id {
    font-size: 0.9rem;
    color: var(--grey-dark);
}

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

.stars {
    display: flex;
    color: #ffc107;
    margin-right: 0.5rem;
}

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

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

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary);
    margin-right: 1rem;
}

.product-availability {
    background-color: var(--success);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-description {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.product-features h3, .product-tech-specs h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--primary);
}

.product-features ul, .product-tech-specs ul {
    list-style-type: none;
    padding-left: 0;
}

.product-features ul li, .product-tech-specs ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.product-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
}

.product-tech-specs ul li {
    padding-left: 0;
}

.product-actions-detail {
    margin-top: 2rem;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

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

.quantity-selector select {
    padding: 0.75rem;
    border: 1px solid var(--grey);
    border-radius: var(--border-radius);
    width: 100px;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

/* Product Tabs */
.product-details-tabs {
    padding: 4rem 0;
    background-color: var(--light);
}

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

.tab-header {
    display: flex;
    border-bottom: 1px solid var(--grey);
}

.tab-button {
    padding: 1rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--grey-dark);
    transition: var(--transition);
    position: relative;
}

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

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}

.tab-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

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

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

.tab-pane p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tab-pane h4 {
    margin: 2rem 0 1rem;
    font-size: 1.1rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th, .specs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--grey);
}

.specs-table th {
    width: 30%;
    font-weight: 600;
}

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

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

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.stars-large {
    display: flex;
    justify-content: center;
    color: #ffc107;
    margin-bottom: 0.5rem;
}

.review-count-large {
    font-size: 0.9rem;
    color: var(--grey-dark);
}

.rating-breakdown {
    width: 60%;
}

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

.rating-label {
    width: 60px;
    font-size: 0.9rem;
}

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

.progress {
    height: 100%;
    background-color: #ffc107;
    border-radius: 4px;
}

.percentage {
    width: 40px;
    font-size: 0.9rem;
    text-align: right;
}

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

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

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

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

.reviewer-info {
    display: flex;
    flex-direction: column;
}

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

.review-stars {
    display: flex;
    color: #ffc107;
}

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

.review-content {
    line-height: 1.7;
}

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

.faq-item {
    border-bottom: 1px solid var(--grey);
    padding-bottom: 2rem;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

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

/* Related Products */
.related-products {
    padding: 4rem 0;
    background-color: white;
}

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

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

.related-product-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    padding: 1.5rem;
}

.related-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.related-product-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.related-product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.about-story {
    padding: 5rem 0;
    background-color: white;
}

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

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

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

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

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

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

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.value-icon {
    background-color: rgba(74, 111, 220, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.team-section {
    padding: 5rem 0;
    background-color: white;
}

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

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

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

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

.team-member p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

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

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

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

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

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

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 120px;
    width: 2px;
    background-color: var(--grey);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 160px;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    text-align: right;
    font-weight: bold;
    color: var(--primary);
}

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

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

.testimonials {
    padding: 5rem 0;
    background-color: white;
}

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

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

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

.testimonial-content {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--grey-dark);
}

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

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

.join-team > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

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

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.job-card p {
    margin-bottom: 1.5rem;
}

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

.careers-cta p {
    margin-bottom: 1.5rem;
}

/* Contact Page Styles */
.contact-info {
    padding: 5rem 0;
    background-color: white;
}

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

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

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.info-icon {
    background-color: rgba(74, 111, 220, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

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

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

.info-card a {
    color: var(--primary);
    font-weight: 500;
}

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

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

.contact-form-section > .container > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-form {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(74, 111, 220, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

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

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

.form-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.faq-section {
    padding: 5rem 0;
    background-color: white;
}

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

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

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

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

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

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

.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 100%;
    background-color: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-content svg {
    color: var(--primary);
    margin-bottom: 1rem;
}

.follow-us {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.follow-us h2 {
    margin-bottom: 1rem;
}

.follow-us p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.social-links-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    background-color: var(--light);
    color: var(--dark);
    transition: var(--transition);
}

.social-link svg {
    margin-right: 0.5rem;
}

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

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

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

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

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

.empty-cart-message svg {
    color: var(--grey);
    margin-bottom: 1.5rem;
}

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

.empty-cart-message p {
    margin-bottom: 2rem;
    color: var(--grey-dark);
}

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

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 1.5rem;
}

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

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

.cart-item-details h3 {
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-weight: bold;
    color: var(--primary);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: none;
    background-color: var(--grey-light);
    color: var(--dark);
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-quantity input {
    width: 40px;
    height: 30px;
    border: 1px solid var(--grey);
    text-align: center;
    margin: 0 0.5rem;
}

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

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

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

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

.summary-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: none;
    margin-bottom: 2rem;
}

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

.checkout-btn {
    width: 100%;
}

.continue-shopping {
    width: 100%;
    text-align: center;
}

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

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

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

.cart-help {
    padding: 5rem 0;
    background-color: white;
}

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

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

.help-card {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.help-icon {
    background-color: rgba(74, 111, 220, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.help-card h3 {
    margin-bottom: 1.5rem;
}

.help-card ul {
    margin-bottom: 1.5rem;
}

.help-card li {
    margin-bottom: 0.5rem;
}

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

.checkout-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2rem;
}

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

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

.checkout-form-container > p {
    margin-bottom: 2rem;
    color: var(--grey-dark);
}

.checkout-form h3 {
    margin: 2rem 0 1rem;
    font-size: 1.2rem;
}

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

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

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

.checkout-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid var(--grey);
}

.checkout-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 1rem;
}

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

.checkout-item-info {
    flex-grow: 1;
}

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

.checkout-item-price {
    color: var(--primary);
    font-weight: bold;
}

.checkout-item-quantity {
    font-size: 0.9rem;
    color: var(--grey-dark);
}

.summary-calculations {
    margin-bottom: 2rem;
}

.checkout-secure {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
}

.secure-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.secure-info svg {
    margin-right: 0.5rem;
    color: var(--success);
}

.secure-info p {
    font-weight: 600;
    margin-bottom: 0;
}

.secure-text {
    font-size: 0.9rem;
    color: var(--grey-dark);
    margin-bottom: 0;
}

.checkout-help {
    padding: 5rem 0;
    background-color: var(--light);
    text-align: center;
}

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

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

.help-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.help-method {
    display: flex;
    align-items: center;
}

.help-method svg {
    margin-right: 0.5rem;
    color: var(--primary);
}

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

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

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

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

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

.success-email {
    margin-bottom: 3rem;
    color: var(--grey-dark);
}

.success-next {
    background-color: var(--light);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
}

.success-next h2 {
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.step-icon {
    margin-right: 1.5rem;
    color: var(--primary);
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }
    
    .product-content {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        margin-bottom: 2rem;
    }
    
    .cart-container,
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .cart-summary,
    .order-summary {
        position: static;
        margin-top: 2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-date {
        width: auto;
        text-align: left;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 0.75rem 0.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .help-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .product-grid,
    .recommended-grid,
    .values-grid,
    .team-grid,
    .info-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 2rem;
    }
    
    .rating-breakdown {
        width: 100%;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
