/* Base Styles */
:root {
    --primary-color: #1e9638;
    --primary-dark: #156e28;
    --primary-light: #69d47e;
    --secondary-color: #333;
    --accent-color: #b5ff12;
    --text-color: #333;
    --text-light: #666;
    --background-color: #fff;
    --background-alt: #f7f9fa;
    --background-dark: #e9f0e9;
    --border-color: #ddd;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

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

button {
    cursor: pointer;
    font-family: inherit;
}

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

ul {
    list-style: none;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

.btn-secondary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background-color: #a3eb00;
    transform: translateY(-2px);
}

.btn-view {
    display: inline-block;
    background-color: var(--background-alt);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

nav ul {
    display: flex;
    gap: 30px;
}

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

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

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

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/logo.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.multilingual-greeting {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    display: inline-block;
}

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

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-item p {
    color: var(--text-light);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 60px 0;
    text-align: center;
}

.stat {
    padding: 20px;
}

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

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

.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-container h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.about-products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.about-products p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quality-info, .company-story {
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: var(--box-shadow);
}

.quality-info h3, .company-story h3 {
    color: var(--primary-dark);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

/* Daily Inspiration Section */
.daily-inspiration {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.daily-inspiration h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

.quote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.author {
    font-weight: 600;
}

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

.products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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

.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: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

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

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-column p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul li {
    margin-bottom: 10px;
}

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

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

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

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

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

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

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

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

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.btn-cookie.customize {
    background-color: var(--background-alt);
    color: var(--text-color);
}

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

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

.btn-cookie.decline:hover {
    background-color: var(--background-alt);
}

.cookie-policy-link {
    margin-left: 10px;
    color: var(--primary-color);
    text-decoration: underline;
}

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

.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-light);
}

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

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

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

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

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

.product-info-detailed h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.product-meta {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-meta > * {
    margin-right: 20px;
}

.product-rating {
    display: inline-flex;
    align-items: center;
    color: #f39c12;
}

.product-rating span {
    color: var(--text-light);
    margin-left: 5px;
}

.product-price-large {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-description-full {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description-full p {
    margin-bottom: 15px;
}

.product-description-full ul {
    margin-bottom: 15px;
    padding-left: 20px;
    list-style-type: disc;
}

.product-description-full ul li {
    margin-bottom: 8px;
}

.product-features {
    margin-bottom: 30px;
    background-color: var(--background-alt);
    padding: 20px;
    border-radius: var(--border-radius);
}

.product-features h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.product-features ul {
    list-style: none;
}

.product-features ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-features ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.product-variations {
    margin-bottom: 30px;
}

.variation-group {
    margin-bottom: 20px;
}

.variation-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.variation-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: white;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.color-option.selected {
    border-color: var(--primary-color);
}

.size-guide-link {
    margin-bottom: 20px;
}

.size-guide-link a {
    color: var(--primary-color);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
}

.size-guide-link a i {
    margin-right: 5px;
}

.quantity-selector {
    margin-bottom: 20px;
}

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

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

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

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

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    font-size: 1rem;
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-add-to-cart, .btn-buy-now {
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
}

.btn-add-to-cart {
    background-color: var(--background-alt);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

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

.product-shipping-info {
    background-color: var(--background-alt);
    padding: 15px;
    border-radius: var(--border-radius);
}

.product-shipping-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.product-shipping-info p:last-child {
    margin-bottom: 0;
}

.product-shipping-info p i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

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

.tab-btn {
    padding: 12px 24px;
    background-color: var(--background-alt);
    border: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background-color: white;
    color: var(--primary-color);
    position: relative;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-content {
    background-color: white;
    padding: 30px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--box-shadow);
}

.tab-pane {
    display: none;
}

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

.tab-pane h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-pane p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table th, .specs-table td {
    padding: 12px 15px;
    text-align: left;
}

.specs-table th {
    width: 30%;
    font-weight: 600;
    color: var(--secondary-color);
    background-color: var(--background-alt);
}

.review-summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.stars {
    color: #f39c12;
    margin: 10px 0;
}

.rating-breakdown {
    flex: 1;
    min-width: 300px;
}

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

.rating-level {
    width: 80px;
}

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

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: var(--background-alt);
    border-radius: 4px;
    margin: 0 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #f39c12;
}

.review-list {
    margin-bottom: 30px;
}

.review-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

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

.reviewer-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

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

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

.review-rating {
    margin-bottom: 10px;
    color: #f39c12;
}

.review-item h4 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.review-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.review-pagination a {
    display: inline-block;
    padding: 8px 12px;
    background-color: var(--background-alt);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.review-pagination a.active {
    background-color: var(--primary-color);
    color: white;
}

.review-pagination a:hover {
    background-color: var(--primary-light);
    color: white;
}

.review-pagination a.next {
    margin-left: 10px;
}

.related-products {
    margin-top: 60px;
}

.related-products h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

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

.related-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
    background-color: white;
}

.related-item:hover {
    transform: translateY(-10px);
}

.related-item a {
    display: block;
    color: var(--text-color);
}

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

.related-item h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
}

.related-price {
    padding: 0 15px 15px;
    font-weight: bold;
    color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.size-table th, .size-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.size-table th {
    background-color: var(--background-alt);
    font-weight: 600;
}

.size-table.full-width {
    width: 100%;
}

.measuring-tips {
    margin: 30px 0;
}

.measuring-tips h3 {
    margin-bottom: 15px;
}

.measuring-tips p {
    margin-bottom: 10px;
}

.sizing-note {
    font-style: italic;
    color: var(--text-light);
}

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

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

/* About Page Styles */
.page-header {
    background-color: var(--background-alt);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.about-story {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

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

.about-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text h3 {
    font-size: 1.4rem;
    margin: 30px 0 20px;
    color: var(--secondary-color);
}

.about-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.about-text ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.company-values {
    padding: 80px 0;
    background-color: var(--background-alt);
}

.company-values h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

.value-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-item p {
    color: var(--text-light);
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

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

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

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

.team-member h3 {
    padding: 20px 20px 5px;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.team-member p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.team-member p:first-of-type {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-member .social-icons {
    padding: 0 20px 20px;
}

.team-member .social-icons a {
    background-color: var(--background-alt);
    color: var(--primary-color);
}

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

.team-member .social-icons svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

.milestones {
    padding: 80px 0;
    background-color: var(--background-alt);
}

.milestones h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

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

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid white;
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(30, 150, 56, 0.9), rgba(30, 150, 56, 0.9)), url(images/logo.jpg);
    background-size: cover;
    background-position: center;
    color: white;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

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

.newsletter-form-large input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter-form-large button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 25px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form-large button:hover {
    background-color: #a3eb00;
}

.social-follow p {
    margin-bottom: 15px;
}

.social-icons.large a {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
}

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

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

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

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

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-social {
    justify-content: center;
    margin: 15px 0;
}

.contact-form-section {
    padding: 60px 0;
    background-color: var(--background-alt);
}

.contact-form-section .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

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

.form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.form-container p {
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.form-group {
    margin-bottom: 10px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox-group input {
    width: auto;
}

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

.form-submit {
    grid-column: 1 / -1;
    margin-top: 20px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.contact-method h4 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-method p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.faq-link h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.map-section {
    padding: 60px 0;
}

.map-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.map-container {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.office-hours {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.office-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hours-table {
    width: 100%;
    margin-bottom: 20px;
}

.hours-table tr td {
    padding: 10px;
}

.hours-table tr td:first-child {
    font-weight: 600;
    text-align: right;
}

.hours-table tr td:last-child {
    text-align: left;
}

.note {
    font-style: italic;
    color: var(--text-light);
}

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

.cart-empty {
    text-align: center;
    padding: 50px 0;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

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

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

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

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

.product-info h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.cart-price {
    font-weight: 600;
}

.cart-quantity-controls {
    max-width: 120px;
}

.cart-subtotal {
    font-weight: 600;
    color: var(--primary-color);
}

.btn-remove {
    background-color: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.cart-coupon {
    display: flex;
}

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

.btn-apply-coupon {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    transition: var(--transition);
}

.btn-apply-coupon:hover {
    background-color: var(--text-color);
}

.btn-update-cart {
    background-color: var(--background-alt);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-update-cart:hover {
    background-color: var(--background-dark);
}

.cart-totals {
    max-width: 500px;
    margin-left: auto;
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
}

.cart-totals h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.totals-table {
    width: 100%;
    margin-bottom: 30px;
}

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

.totals-row.total-row {
    border-bottom: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.shipping-options {
    margin-top: 10px;
}

.shipping-option {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shipping-option:last-child {
    margin-bottom: 0;
}

.btn-checkout {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-checkout.disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
}

.recommended-products {
    padding: 60px 0;
    background-color: var(--background-alt);
}

.recommended-products h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

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

.recommended-item {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.recommended-item:hover {
    transform: translateY(-10px);
}

.recommended-item a {
    display: block;
    color: inherit;
}

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

.recommended-item h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
}

.recommended-price {
    padding: 0 15px 15px;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-quick-add {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: var(--transition);
}

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

.cart-features {
    padding: 60px 0;
}

/* Checkout Page Styles */
.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

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

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

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

.step-connector {
    width: 60px;
    height: 2px;
    background-color: var(--background-alt);
}

.step-connector.active {
    background-color: var(--primary-color);
}

.checkout-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

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

.checkout-form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order-summary {
    background-color: var(--background-alt);
    padding: 30px;
    border-radius: var(--border-radius);
    align-self: start;
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.checkout-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 30px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.checkout-item-details {
    flex: 1;
    padding: 0 15px;
}

.checkout-item-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

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

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

.checkout-totals {
    margin-bottom: 30px;
}

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.secure-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.secure-checkout p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.checkout-help {
    background-color: white;
    padding: 15px;
    border-radius: var(--border-radius);
}

.checkout-help h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.checkout-help p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.checkout-help p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.btn-place-order {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 30px;
}

.success-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.success-message {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.confirmation-details {
    background-color: var(--background-alt);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
}

.confirmation-details p {
    margin-bottom: 10px;
}

.confirmation-details p:last-child {
    margin-bottom: 0;
}

.what-happens-next {
    text-align: left;
    margin-bottom: 40px;
}

.what-happens-next h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.what-happens-next ol {
    padding-left: 20px;
}

.what-happens-next ol li {
    margin-bottom: 10px;
}

.contact-support {
    margin-bottom: 40px;
}

.contact-support h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-support p {
    margin-bottom: 10px;
}

.contact-support p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.success-actions {
    margin-top: 30px;
}

.btn-continue-shopping {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

.success-recommended {
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-form-section .container {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-header .price-col, .cart-price,
    .cart-header .remove-col {
        display: none;
    }
    
    .cart-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .cart-header, .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-product {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-product img {
        width: 100%;
        height: auto;
    }
    
    .checkout-form {
        grid-template-columns: 1fr;
    }
    
    .product-tabs {
        overflow-x: auto;
    }
    
    .tab-buttons {
        width: max-content;
    }
}

/* Animation and Effects */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e0e0e0;
        --text-light: #a0a0a0;
        --background-color: #121212;
        --background-alt: #1e1e1e;
        --background-dark: #262626;
        --border-color: #333;
        --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    body {
        background-color: var(--background-color);
        color: var(--text-color);
    }
    
    header, 
    .feature-item, 
    .product-card, 
    .footer-container, 
    .value-item, 
    .team-member, 
    .timeline-content, 
    .contact-card, 
    .form-container, 
    .contact-info, 
    .recommended-item, 
    .success-content {
        background-color: var(--background-alt);
    }
    
    .footer-column ul li a, 
    .footer-column p {
        color: var(--text-light);
    }
    
    .social-icons a {
        background-color: rgba(255, 255, 255, 0.2);
    }
}
