/* Base Styles */
:root {
    --primary-color: #6a1b9a;
    --primary-light: #9c4dcc;
    --primary-dark: #38006b;
    --secondary-color: #ffc107;
    --secondary-light: #fff350;
    --secondary-dark: #c79100;
    --text-color: #333333;
    --text-light: #757575;
    --background-color: #ffffff;
    --background-light: #f9f9f9;
    --background-dark: #eeeeee;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
    --border-color: #e0e0e0;
    --border-radius: 4px;
    --box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

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

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5em;
    color: var(--primary-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-add-to-cart, .btn-buy-now {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

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

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

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

.btn-add-to-cart, .btn-buy-now {
    width: 100%;
    margin-top: 10px;
}

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

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

.btn-buy-now {
    background-color: var(--secondary-color);
    color: var(--text-color);
    display: block;
    text-align: center;
}

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

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

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

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

.logo img {
    max-height: 60px;
}

nav ul {
    display: flex;
}

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

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

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

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

/* Hero Section */
.hero {
    background-color: var(--primary-light);
    color: white;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
}

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

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

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--background-light);
}

.advantages h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.icon {
    margin-bottom: 20px;
}

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

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

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

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

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

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

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

.about-products p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    text-align: justify;
}

.quality-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge {
    display: flex;
    align-items: center;
    background-color: var(--background-light);
    padding: 10px 20px;
    border-radius: 30px;
    margin: 10px;
}

.badge svg {
    margin-right: 10px;
}

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

.products h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.product-card a {
    display: block;
    padding: 20px;
    color: var(--text-color);
    flex-grow: 1;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.author {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rating {
    color: var(--secondary-color);
}

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

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

.newsletter h2 {
    color: white;
    margin-bottom: 20px;
}

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

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group input[type="email"] {
    flex-grow: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter .form-group button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.subscribe-counter {
    margin-top: 20px;
    font-size: 0.9rem;
}

#subscriber-count {
    font-weight: bold;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background-color: var(--background-light);
}

.reviews h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.review-card .rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
}

.reviewer {
    font-weight: bold;
}

.review-button-container {
    text-align: center;
}

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

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

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p, .footer-column address {
    margin-bottom: 10px;
    font-style: normal;
}

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

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

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

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

.social-icons a {
    color: white;
    font-size: 1.5rem;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.btn-cookie {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.customize {
    background-color: var(--info-color);
    color: white;
}

.reject {
    background-color: var(--error-color);
    color: white;
}

.cookie-policy {
    font-size: 0.8rem;
    margin-top: 10px;
}

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

/* Notification */
.notification {
    position: fixed;
    top: 80px;
    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;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

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

/* Product Details Page */
.breadcrumbs {
    background-color: var(--background-light);
    padding: 10px 0;
}

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

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

.breadcrumbs ul li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: var(--text-light);
}

.breadcrumbs ul li:last-child {
    color: var(--text-light);
}

.product-details {
    padding: 60px 0;
}

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

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

.product-info h1 {
    margin-bottom: 15px;
}

.product-info .author {
    margin-bottom: 15px;
}

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

.product-info .rating .count {
    margin-left: 10px;
}

.product-info .price {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.availability {
    margin-bottom: 20px;
}

.in-stock {
    color: var(--success-color);
    font-weight: bold;
}

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

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

.quantity-selector label {
    display: block;
    margin-bottom: 10px;
}

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

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: var(--background-dark);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    cursor: pointer;
}

input[type="number"] {
    width: 60px;
    height: 40px;
    border: 1px solid var(--border-color);
    text-align: center;
    margin: 0 10px;
    font-size: 1rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.product-additional-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.delivery-info, .return-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.delivery-info svg, .return-info svg {
    margin-right: 15px;
}

.product-description, .product-specifications, .product-reviews {
    margin-bottom: 60px;
}

.product-description h2, .product-specifications h2, .product-reviews h2, .related-products h2 {
    margin-bottom: 30px;
}

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

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

table th, table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--background-light);
    font-weight: 600;
}

.review-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

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

.big-rating {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.rating-average .stars {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 10px 0;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.rating-row .stars {
    width: 100px;
}

.progress-bar {
    flex-grow: 1;
    height: 10px;
    background-color: var(--background-dark);
    border-radius: 5px;
    margin: 0 15px;
}

.progress {
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 5px;
}

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

.reviews-list {
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

.cart-empty svg {
    margin: 0 auto 20px;
}

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

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

.cart-table th, .cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cart-table th {
    background-color: var(--background-light);
}

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

.cart-item-info {
    display: flex;
}

.cart-item-details {
    margin-left: 15px;
}

.cart-item-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.cart-item-author {
    color: var(--text-light);
    font-style: italic;
}

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

.cart-quantity-btn {
    width: 30px;
    height: 30px;
    background-color: var(--background-dark);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
}

.cart-quantity input {
    width: 40px;
    height: 30px;
    border: 1px solid var(--border-color);
    text-align: center;
    margin: 0 5px;
    font-size: 0.9rem;
}

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

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

.cart-totals h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

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

.cart-actions {
    margin-top: 30px;
    display: grid;
    gap: 15px;
}

.recommended-products {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.recommended-products h2 {
    margin-bottom: 30px;
}

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

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

.checkout-form-container {
    padding-right: 40px;
}

.checkout-form-container h2, .checkout-summary h2 {
    margin-bottom: 30px;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

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

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

.required {
    color: var(--error-color);
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

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

.checkout-summary {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    position: sticky;
    top: 100px;
}

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

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

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

.order-item-details {
    margin-left: 15px;
    flex-grow: 1;
}

.order-item-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.order-item-price {
    color: var(--primary-color);
}

.order-item-quantity {
    margin-left: 15px;
    color: var(--text-light);
}

.order-summary {
    margin-top: 30px;
}

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

.summary-row.total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary-color);
}

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

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

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

.success-message h1 {
    margin-bottom: 20px;
}

.success-message p {
    margin-bottom: 10px;
}

.success-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.recommendations {
    padding-top: 60px;
    border-top: 1px solid var(--border-color);
}

.recommendations h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    margin-right: 20px;
}

.contact-text h3 {
    margin-bottom: 10px;
}

.social-icons-large {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
}

.social-icon svg {
    margin-bottom: 8px;
}

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

.contact-form-container h2 {
    margin-bottom: 20px;
}

.contact-form-container p {
    margin-bottom: 30px;
}

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

/* About Page */
.about-hero {
    background-color: var(--primary-light);
    color: white;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
}

.about-hero h1 {
    color: white;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.about-content h2 {
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
}

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

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

.about-mission {
    padding: 80px 0;
    background-color: var(--background-light);
}

.about-mission h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

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

.mission-card h3 {
    margin-bottom: 15px;
}

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

.about-team h2, .about-stats h2, .about-testimonials h2, .about-join h2 {
    text-align: center;
    margin-bottom: 20px;
}

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

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

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

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

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    margin-bottom: 5px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.team-member p:nth-child(3) {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: var(--text-light);
}

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

.about-stats {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
}

.about-stats h2 {
    color: white;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

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

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

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
}

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

.author-location {
    color: var(--text-light);
}

.about-join {
    padding: 80px 0;
    background-color: var(--background-light);
    text-align: center;
}

.about-join p {
    max-width: 700px;
    margin: 0 auto 30px;
}

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

.social-links-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
}

.social-link svg {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-form-container {
        padding-right: 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .advantages-grid, .mission-cards, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input[type="email"] {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .newsletter .form-group button {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .review-summary {
        grid-template-columns: 1fr;
    }
    
    .checkout-form {
        grid-template-columns: 1fr;
    }
    
    .social-links-large {
        flex-direction: column;
        align-items: center;
    }
}
