/* Base Styles */
:root {
    --primary-color: #1a5f7a;
    --primary-dark: #124456;
    --primary-light: #86c3d7;
    --secondary-color: #e9b949;
    --secondary-dark: #c79a22;
    --secondary-light: #f5d688;
    --accent-color: #d64933;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --background-dark: #2c3e50;
    --border-color: #e1e1e1;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --border-radius-lg: 8px;
    --font-family-sans: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-serif: Georgia, 'Times New Roman', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

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

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style-type: none;
}

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

ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

button {
    cursor: pointer;
    font-family: var(--font-family-sans);
}

input, textarea, select {
    font-family: var(--font-family-sans);
}

section {
    padding: 60px 0;
}

/* Typography */
.text-center {
    text-align: center;
}

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

.text-bold {
    font-weight: 700;
}

.text-primary {
    color: var(--primary-color);
}

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

.text-accent {
    color: var(--accent-color);
}

.text-success {
    color: var(--success-color);
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-view, .btn-add, .btn-add-to-cart, .btn-buy-now {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

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

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

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

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

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

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

.btn-add, .btn-add-to-cart {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

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

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

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

.btn-cookie {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
}

.btn-cookie-secondary {
    background-color: transparent;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    font-weight: 600;
}

.full-width {
    width: 100%;
}

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

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

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

nav ul {
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

#cart-count {
    background-color: var(--accent-color);
    color: var(--background-white);
    font-size: 0.75rem;
    padding: 0.1rem 0.4rem;
    border-radius: 50%;
    font-weight: 600;
}

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

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

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

/* Advantages Section */
.advantages {
    background-color: var(--background-white);
    padding: 70px 0;
    text-align: center;
}

.advantages h2 {
    margin-bottom: 2.5rem;
}

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

.feature {
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    background-color: var(--background-light);
    transition: var(--transition);
}

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

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

.feature h3 {
    margin-bottom: 0.75rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

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

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

.call-to-action {
    margin-top: 2rem;
}

.call-to-action h3 {
    margin-bottom: 1.5rem;
}

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

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

.about-products p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: justify;
}

.product-quality {
    margin: 2rem 0;
}

.product-quality h3 {
    margin-top: 1.5rem;
    color: var(--primary-color);
}

.chart-container {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.chart-container h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.chart {
    width: 100%;
    height: 300px;
}

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

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

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

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

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

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

.product h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.2rem;
}

.product .price {
    padding: 0 1rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.product p:not(.price) {
    padding: 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product .buttons {
    display: flex;
    gap: 0.5rem;
    padding: 0 1rem 1rem;
}

.product .buttons a, .product .buttons button {
    flex: 1;
    padding: 0.6rem;
    font-size: 0.9rem;
}

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

.newsletter h2 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

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

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.form-success {
    color: var(--background-white);
    margin-top: 1rem;
    display: none;
}

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

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

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #b8c2cc;
    font-size: 0.9rem;
}

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

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #b8c2cc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b8c2cc;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

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

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

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

.footer-bottom p {
    color: #b8c2cc;
    font-size: 0.9rem;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

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

.cookie-more a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: var(--background-white);
    padding: 1rem 1.5rem;
    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);
}

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

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

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

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

.product-info h1 {
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.product-description ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style-type: disc;
}

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

.quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--background-white);
}

.product-meta-info {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

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

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

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

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

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

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

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

.tab-content {
    display: none;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

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

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

.review-summary {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

.average-rating {
    text-align: center;
    min-width: 150px;
}

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

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

.rating-breakdown {
    flex: 1;
}

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

.rating-label {
    width: 60px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background-color: #e1e1e1;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background-color: var(--secondary-color);
}

.rating-count {
    width: 30px;
    text-align: right;
    color: var(--text-light);
}

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

.review {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

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

.reviewer h4 {
    margin-bottom: 0.25rem;
}

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

.review-text {
    font-style: italic;
    color: var(--text-dark);
}

.related-products h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.page-header h1 {
    color: var(--background-white);
    margin-bottom: 0.5rem;
}

.about-story {
    padding: 70px 0;
    background-color: var(--background-white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.story-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.story-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

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

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

.vision, .mission, .values {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    text-align: center;
}

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

.team {
    padding: 70px 0;
    background-color: var(--background-white);
}

.team h2, .team-intro {
    text-align: center;
}

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

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

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

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

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

.team-member h3, .team-member p {
    padding: 0 1rem;
}

.team-member h3 {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

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

.social-links {
    display: flex;
    gap: 0.75rem;
    padding: 0 1rem 1.5rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

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

.certifications {
    background-color: var(--primary-light);
    padding: 70px 0;
}

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

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

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

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

.testimonials {
    padding: 70px 0;
    background-color: var(--background-white);
}

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

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

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

.quote {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial p {
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Page */
.contact-info {
    padding: 70px 0;
    background-color: var(--background-white);
}

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

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

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

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

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

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

.form-container {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    margin-bottom: 3rem;
}

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

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group label {
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
}

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

.form-success h3 {
    color: var(--success-color);
}

.newsletter-subscription {
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.newsletter-subscription h3 {
    color: var(--background-white);
    margin-bottom: 0.5rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 1.5rem auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-success {
    display: none;
    color: var(--background-white);
    margin-top: 1rem;
}

.faq {
    padding: 70px 0;
    background-color: var(--background-white);
}

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

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

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.25rem;
    background-color: var(--background-white);
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}

/* Cart Page */
.cart-section {
    padding: 70px 0;
    background-color: var(--background-white);
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    margin: 0 auto;
}

.empty-cart-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.cart-content {
    display: none;
}

.cart-table-container {
    overflow-x: auto;
    margin-bottom: 2rem;
}

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

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

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

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

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

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

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-quantity input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

.cart-quantity button {
    background-color: var(--background-light);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-remove {
    background-color: transparent;
    border: none;
    color: var(--error-color);
    cursor: pointer;
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
}

.cart-update {
    display: flex;
    gap: 1rem;
}

.cart-summary {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    max-width: 400px;
    margin-left: auto;
}

.cart-summary h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

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

.checkout-btn {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
}

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

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

/* Checkout Page */
.checkout-section {
    padding: 70px 0;
    background-color: var(--background-white);
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

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

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

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

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

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

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

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

.checkout-item-info h4 {
    margin-bottom: 0.25rem;
}

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

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

.checkout-totals {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

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

.total-row.grand-total {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.checkout-security {
    margin-top: 2rem;
    text-align: center;
}

.security-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--success-color);
}

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

/* Success Page */
.success-section {
    padding: 70px 0;
    background-color: var(--background-white);
}

.success-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius-lg);
}

.success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

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

.order-details, .next-steps {
    margin-bottom: 2rem;
}

.next-steps h3 {
    margin-bottom: 1rem;
}

.next-steps ul {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    list-style-type: disc;
    padding-left: 1.5rem;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-content {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        order: -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features, .story-stats, .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats {
        flex-wrap: wrap;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .review-summary {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
}
