/* Global Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-color: #f1faee;
    --dark-color: #0d1b2a;
    --gray-color: #6c757d;
    --light-gray-color: #e9ecef;
    --success-color: #2a9d8f;
    --warning-color: #e9c46a;
    --error-color: #e76f51;
    --border-radius: 5px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

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

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

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

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 10px 22px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
}

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

.btn-large {
    padding: 14px 30px;
    font-size: 1.1rem;
}

section {
    padding: 60px 0;
}

/* 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;
}

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

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 600;
    position: relative;
}

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

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(29, 53, 87, 0.8), rgba(29, 53, 87, 0.8)), url('images/logo.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.hero .btn {
    margin-top: 30px;
}

/* Benefits Section */
.benefits {
    background-color: var(--light-color);
    text-align: center;
}

.benefits h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.benefit-item svg {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-item h3 {
    margin-bottom: 15px;
}

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

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

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

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

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

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

.product-info p {
    margin-bottom: 20px;
    text-align: justify;
}

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

.product-features h3 {
    margin-bottom: 15px;
}

.product-features ul {
    list-style: disc;
    padding-left: 20px;
}

.product-features li {
    margin-bottom: 10px;
}

/* Terminology Section */
.terminology {
    background-color: var(--light-color);
}

.terminology h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

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

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

.terminology-list ul {
    list-style: none;
}

.terminology-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.terminology-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.terminology-list li strong {
    color: var(--secondary-color);
    display: inline-block;
    margin-right: 5px;
}

/* Products Section */
.products {
    padding: 60px 0;
}

.products h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

.product-card h3 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
}

.product-card .price {
    padding: 0 15px 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-card .description {
    padding: 0 15px 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

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

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

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

.btn-add-to-cart:hover {
    background-color: #152944;
}

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

.btn-buy-now:hover {
    background-color: #d32f3a;
    color: white;
}

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

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

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

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

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

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

.product-info h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

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

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    margin-right: 10px;
}

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

.product-summary {
    margin-bottom: 25px;
    line-height: 1.7;
}

.product-variants, .product-quantity {
    margin-bottom: 25px;
}

.product-variants h3, .product-quantity h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

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

.variant-option {
    padding: 8px 16px;
    border: 2px solid var(--light-gray-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    background-color: white;
}

.variant-option:hover, .variant-option.active {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    max-width: 150px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-gray-color);
    background-color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-btn:hover {
    background-color: var(--light-gray-color);
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: 1px solid var(--light-gray-color);
    text-align: center;
    font-size: 1rem;
    -moz-appearance: textfield;
}

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

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

.product-actions .btn-add-to-cart,
.product-actions .btn-buy-now {
    padding: 12px 24px;
    font-size: 1rem;
}

.product-delivery {
    background-color: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
}

.product-delivery p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

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

.product-delivery svg {
    margin-right: 10px;
    color: var(--secondary-color);
}

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

.tabs {
    display: flex;
    border-bottom: 2px solid var(--light-gray-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

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

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

.tab-content h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

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

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

.specs-table td {
    padding: 12px;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 40%;
}

.rating-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
}

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

.rating-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.rating-average .stars {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

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

.rating-label {
    width: 80px;
}

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

.rating-fill {
    height: 100%;
    background-color: #ffc107;
}

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

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

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

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

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

.review-stars {
    margin-bottom: 10px;
}

.related-products h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.cart-section h1 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.cart-empty svg {
    margin: 0 auto 20px;
    color: var(--gray-color);
}

.cart-empty p {
    margin-bottom: 30px;
    color: var(--gray-color);
    font-size: 1.2rem;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid var(--light-gray-color);
    font-weight: 600;
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid var(--light-gray-color);
    vertical-align: middle;
}

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

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

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

.cart-quantity {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.cart-quantity .quantity-btn {
    width: 30px;
    height: 30px;
}

.cart-quantity .quantity-input {
    width: 50px;
    height: 30px;
}

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

.cart-remove:hover {
    color: #d32f3a;
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.cart-summary {
    width: 350px;
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
}

.cart-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.btn-checkout {
    width: 100%;
    margin-bottom: 10px;
    background-color: var(--success-color);
}

.btn-checkout:hover {
    background-color: #238b7e;
}

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

.cart-recommendations h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.checkout-section h1 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

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

.checkout-form h2, .checkout-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray-color);
}

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

.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(--light-gray-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.checkout-summary {
    background-color: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    align-self: start;
}

.checkout-items {
    margin-bottom: 25px;
}

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

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

.checkout-item-info {
    display: flex;
    align-items: center;
}

.checkout-item-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-right: 15px;
}

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

.checkout-item-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.checkout-item-price {
    font-weight: 600;
}

.checkout-security {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray-color);
}

.checkout-security h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.checkout-security p {
    margin-bottom: 15px;
    color: var(--gray-color);
}

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

.security-icons svg {
    color: var(--secondary-color);
}

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

.success-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.success-icon {
    margin-bottom: 30px;
}

.success-icon svg {
    color: var(--success-color);
}

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

.success-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.success-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Contact Page */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

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

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

.contact-info h2, .contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray-color);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item svg {
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.social-media {
    margin-top: 40px;
}

.social-media h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

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

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

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

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

.map-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    color: var(--gray-color);
}

.map-placeholder svg {
    margin-bottom: 20px;
}

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

.faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
}

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

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

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

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

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: var(--light-color);
}

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

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

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

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

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

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

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

.mission-vision {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

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

.mission, .vision {
    padding: 40px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission-icon, .vision-icon {
    margin-bottom: 20px;
}

.mission-icon svg, .vision-icon svg {
    color: var(--primary-color);
}

.mission h2, .vision h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.values {
    padding: 60px 0;
    text-align: center;
}

.values h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.value-item {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

.value-icon {
    margin-bottom: 20px;
}

.value-icon svg {
    color: var(--secondary-color);
}

.value-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

.story h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background-color: var(--secondary-color);
}

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

.timeline-dot {
    position: absolute;
    left: 16px;
    top: 0;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-date {
    position: absolute;
    left: 50px;
    top: 0;
    font-weight: 600;
    color: var(--primary-color);
}

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

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.team {
    padding: 60px 0;
}

.team h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

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

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

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

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

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

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

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

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

.team-member .social-icons {
    justify-content: center;
    margin: 20px 0;
}

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

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

.partners p {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.partner-item {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.partner-logo {
    margin-bottom: 15px;
}

.partner-logo svg {
    color: var(--secondary-color);
}

.partner-item h3 {
    font-size: 1.2rem;
}

.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(rgba(29, 53, 87, 0.9), rgba(29, 53, 87, 0.9)), url('images/logo.jpg') no-repeat center center/cover;
    color: white;
}

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

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

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

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

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

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

.footer-info .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-legal h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-legal a {
    color: #a8b2d1;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact svg {
    margin-right: 10px;
}

.footer-social .social-icons {
    margin-top: 15px;
}

.footer-social .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    z-index: 1000;
    display: none; /* Initially hidden, will be shown via JS */
}

.cookie-content {
    padding: 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 15px;
}

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

.btn-cookie {
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie:hover {
    background-color: #d32f3a;
}

.btn-cookie-outline {
    padding: 8px 16px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.cookie-more-info a {
    color: white;
    text-decoration: underline;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .about-content,
    .mission-vision .container,
    .product-container,
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        text-align: center;
    }
    
    .about-image img {
        max-width: 400px;
    }
    
    .mission, .vision {
        padding: 30px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-dot {
        left: 11px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--light-gray-color);
        border-radius: var(--border-radius);
    }
    
    .cart-table td {
        display: block;
        text-align: right;
        padding: 10px;
        position: relative;
        border-bottom: 1px solid var(--light-gray-color);
    }
    
    .cart-table td:last-child {
        border-bottom: none;
    }
    
    .cart-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        top: 10px;
        font-weight: 600;
    }
    
    .cart-product {
        justify-content: flex-end;
    }
    
    .cart-product img {
        margin-left: 15px;
        margin-right: 0;
    }
    
    .cart-actions {
        justify-content: center;
    }
    
    .cart-summary {
        width: 100%;
    }
}
