/* Base Styles */
:root {
    --primary-color: #3a86ff;
    --primary-dark: #0057dc;
    --primary-light: #6ea8fe;
    --secondary-color: #6c757d;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --text-light: #6c757d;
    --text-dark: #212529;
    --light-bg: #f8f9fa;
    --white: #fff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --border-radius: 4px;
    --border-radius-lg: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --content-width: 1200px;
}

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

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

.container {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 15px;
}

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    background-color: var(--primary-color);
    color: var(--white);
}

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

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

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

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

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

.btn-secondary:hover {
    background-color: #5a6268;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

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

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

nav ul {
    display: flex;
    align-items: center;
}

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

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem;
    border-bottom: 2px solid transparent;
}

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

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

.cart-link i {
    margin-right: 0.5rem;
}

#cart-count {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    text-align: center;
    line-height: 20px;
    margin-left: 0.25rem;
}

/* Welcome Message */
.welcome-message {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 0;
    text-align: center;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

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

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

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

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

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

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

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

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

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

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

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

/* Stats Graph Section */
.stats-graph {
    padding: 3rem 0;
    background-color: var(--white);
}

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

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

.graph-container svg {
    width: 100%;
    height: auto;
}

.graph-caption {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

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

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

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

.about-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.certification-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.badge {
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin: 0.5rem;
}

.badge i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

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

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

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

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

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

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
}

.product-card .author {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.product-card .price {
    padding: 0 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.product-card .description {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
}

.product-actions .btn {
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Product Detail Page */
.product-detail {
    padding: 3rem 0 5rem;
}

.breadcrumb {
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.product-info h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.product-info .author {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

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

.product-meta .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.product-rating i {
    color: #ffc107;
    margin-right: 0.25rem;
}

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

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.quantity-selector label {
    margin-right: 1rem;
}

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

.quantity-btn {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-100);
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
}

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

.quantity-controls input {
    width: 3rem;
    height: 2.5rem;
    text-align: center;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.product-summary h3 {
    margin-bottom: 0.75rem;
}

.product-features ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
}

.product-tabs {
    margin-bottom: 4rem;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
}

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

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

.tab-content {
    display: none;
}

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

.specs-table {
    margin-top: 2rem;
}

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

.specs-table th {
    text-align: left;
    padding: 0.75rem;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    width: 30%;
}

.specs-table td {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
}

.toc {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.toc ol {
    list-style-type: lower-alpha;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.toc .chapter {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.author-profile {
    line-height: 1.8;
}

.reviews-summary {
    display: flex;
    margin-bottom: 2rem;
    gap: 3rem;
}

.average-rating {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    flex: 0 0 200px;
}

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

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.rating-breakdown {
    flex: 1;
}

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

.rating-level {
    flex: 0 0 80px;
}

.progress-bar {
    flex: 1;
    height: 12px;
    background-color: var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 1rem;
}

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

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

.review-list {
    border-top: 1px solid var(--gray-300);
    padding-top: 2rem;
}

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

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

.reviewer .name {
    font-weight: 600;
    margin-right: 1rem;
}

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

.review-item h4 {
    margin-bottom: 0.75rem;
}

.related-products h3 {
    margin-bottom: 2rem;
}

/* Cart Page */
.cart-section {
    padding: 3rem 0 5rem;
}

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

.empty-cart-message {
    max-width: 500px;
    margin: 0 auto;
}

.empty-cart-message i {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

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

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

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cart-table th {
    text-align: left;
    padding: 1rem;
    background-color: var(--light-bg);
    border-bottom: 2px solid var(--gray-300);
}

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

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

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

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

.product-remove button {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
}

.product-remove button:hover {
    color: #bd2130;
}

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

.cart-summary {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

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

.summary-row.total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    border-bottom: none;
    margin-bottom: 2rem;
}

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

/* Checkout Page */
.checkout-section {
    padding: 3rem 0 5rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

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

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: inherit;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.form-checkbox input {
    width: auto;
    margin-right: 0.75rem;
}

.form-checkbox label {
    margin-bottom: 0;
}

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

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

.order-summary {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
}

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

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-300);
}

.item-name {
    display: flex;
    flex-direction: column;
}

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

.order-totals {
    border-top: 2px solid var(--gray-400);
    padding-top: 1rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.grand-total {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    padding-top: 1rem;
    border-top: 1px solid var(--gray-300);
}

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

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

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

.success-message h1 {
    margin-bottom: 1.5rem;
}

.success-message p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.what-happens-next {
    max-width: 900px;
    margin: 0 auto;
}

.what-happens-next h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step h3 {
    margin-bottom: 1rem;
}

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

/* Contact Page */
.page-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-banner p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2, 
.contact-form-container h2 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
}

.info-icon i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

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

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

.social-links h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

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

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

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

.contact-form {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

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

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

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

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

.faq-item {
    margin-bottom: 1.5rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* About Us Page */
.about-intro {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

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

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

.about-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.about-process {
    padding: 5rem 0;
}

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

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.process-step {
    flex: 0 0 calc(20% - 1.5rem);
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

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

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

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

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

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

.team-member h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    margin-bottom: 0;
}

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

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

.team-member p:nth-of-type(2) {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.team-member .social-icons {
    padding: 0 1.5rem 1.5rem;
}

.partnerships-section {
    padding: 5rem 0;
}

.partnerships-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

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

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

.partner-item h3 {
    margin-bottom: 1rem;
}

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

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

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

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author .name {
    font-weight: 600;
    display: block;
}

.testimonial-author .title {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--gray-800);
    color: var(--white);
    padding: 5rem 0 2rem;
}

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

.footer-about {
    grid-column: span 2;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: var(--gray-400);
    max-width: 400px;
}

.company-info {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links h3, 
.footer-contact h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

.footer-links ul li a {
    color: var(--gray-400);
}

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

.footer-contact p {
    color: var(--gray-400);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 0.75rem;
    width: 20px;
}

.footer-contact .social-icons {
    margin-top: 1.5rem;
}

.footer-contact .social-icons a {
    background-color: var(--gray-700);
}

.footer-contact .social-icons a i {
    color: var(--white);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-700);
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.cookie-more-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

/* Recommended Products */
.recommended-products {
    padding: 5rem 0;
    background-color: var(--white);
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 2rem;
    }
    
    .average-rating {
        flex: 0 0 auto;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 0.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .cart-totals {
        justify-content: center;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-about {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
