/* Base Styles */
:root {
    --primary-color: #1f487e;
    --primary-dark: #163159;
    --primary-light: #4a7eb5;
    --secondary-color: #e63946;
    --secondary-light: #f48c95;
    --accent-color: #f1c40f;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e1e1;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
    --grey-100: #f8f9fa;
    --grey-200: #e9ecef;
    --grey-300: #dee2e6;
    --grey-400: #ced4da;
    --grey-500: #adb5bd;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 4px;
    --radius-lg: 8px;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    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;
}

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

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

/* Header Styles */
header {
    background-color: var(--bg-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;
    list-style: none;
    gap: 30px;
}

nav a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding-bottom: 3px;
}

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

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

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

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

#cart-count {
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
}

/* Buttons */
.btn-primary, 
.btn-secondary,
.btn-outline,
.btn-view,
.btn-add-to-cart,
.btn-buy-now {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    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: white;
}

.btn-secondary:hover {
    background-color: #d63340;
    color: white;
}

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

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

.btn-view {
    background-color: var(--bg-white);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

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

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

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

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
    background-image: linear-gradient(45deg, rgba(31, 72, 126, 0.95), rgba(22, 49, 89, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><rect width="100%" height="100%" fill="none"/><path d="M0,100 L200,0 M0,200 L200,100 M0,300 L200,200" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: cover;
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

.stat-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 150px;
}

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

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

.cta h3 {
    margin-bottom: 20px;
}

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

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

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

.quality-assurance, .why-choose {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--box-shadow);
}

.quality-assurance h3, .why-choose h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.quality-assurance ul {
    margin-left: 20px;
    margin-bottom: 0;
}

.quality-assurance li {
    margin-bottom: 10px;
}

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

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

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

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

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

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.25rem;
}

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

.product-card p:not(.price) {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.product-actions {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-actions .btn-view,
.product-actions .btn-add-to-cart {
    padding: 10px;
    font-size: 0.95rem;
}

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

.daily-inspiration h2 {
    color: white;
    margin-bottom: 30px;
}

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

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    padding: 0 40px;
}

blockquote::before,
blockquote::after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    opacity: 0.3;
    line-height: 1;
}

blockquote::before {
    top: -20px;
    left: 0;
}

blockquote::after {
    bottom: -40px;
    right: 0;
}

/* Feedback Section */
.feedback {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.complaint-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--box-shadow);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(31, 72, 126, 0.2);
}

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

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

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

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

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

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

.btn-cookie.customize {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
}

.btn-cookie.decline {
    background-color: var(--error-color);
    color: white;
}

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

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: var(--radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: none;
}

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

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

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

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

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

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

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

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

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

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

.product-rating .stars {
    color: var(--accent-color);
    margin-right: 8px;
}

.product-price {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-original {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.price-discount {
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.feature-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.feature-list li {
    margin-bottom: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quantity-selector label {
    margin-right: 15px;
    font-weight: 500;
}

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

.quantity-decrease,
.quantity-increase {
    background-color: var(--grey-200);
    border: none;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.quantity-controls input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

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

.action-buttons .btn-add-to-cart,
.action-buttons .btn-buy-now {
    flex: 1;
}

.product-meta-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

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

.tab-navigation {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-light);
}

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

.tab-content {
    display: none;
}

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

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

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

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

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

.related-item {
    text-align: center;
    transition: var(--transition);
}

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

.related-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 15px;
}

.related-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

.page-banner h1 {
    color: white;
    margin-bottom: 10px;
}

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

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

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

.about-mission {
    padding: 80px 0;
    background-color: var(--grey-100);
    text-align: center;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto 50px;
}

.mission-statement p {
    font-size: 1.25rem;
    font-style: italic;
}

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

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

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

.value-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.team-intro {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

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

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

.about-approach {
    padding: 80px 0;
    background-color: var(--grey-100);
}

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

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

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

.approach-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.about-achievements h2 {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

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

.achievement-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-white);
}

.about-cta h2 {
    margin-bottom: 20px;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

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

.contact-item {
    text-align: center;
    padding: 30px;
    background-color: var(--grey-100);
    border-radius: var(--radius);
    box-shadow: var(--box-shadow);
}

.contact-icon {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--box-shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

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

.form-checkbox input {
    width: auto;
    margin-top: 5px;
}

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

.contact-map {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.contact-map h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.contact-faq {
    padding: 60px 0;
    background-color: var(--grey-100);
}

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

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

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

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

.empty-cart-icon {
    color: var(--grey-400);
    margin-bottom: 20px;
}

.cart-empty h2 {
    margin-bottom: 15px;
}

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

.cart-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
}

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

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

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

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

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

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

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

.cart-quantity button {
    background-color: var(--grey-200);
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.cart-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
}

.cart-remove {
    color: var(--error-color);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.cart-update {
    display: flex;
    gap: 15px;
}

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    background-color: var(--grey-100);
    padding: 30px;
    border-radius: var(--radius);
}

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

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

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

.checkout-button {
    margin-top: 30px;
}

.cart-related {
    padding: 60px 0;
    background-color: var(--grey-100);
}

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

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

.checkout-header {
    margin-bottom: 40px;
}

.checkout-header h1 {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 600px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

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

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

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

.step.active .step-name {
    color: var(--primary-color);
    font-weight: 600;
}

.step-divider {
    height: 2px;
    background-color: var(--grey-300);
    flex: 2;
    margin: 0 10px;
    margin-bottom: 20px;
}

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

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

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.order-summary {
    background-color: var(--grey-100);
    padding: 30px;
    border-radius: var(--radius);
    align-self: start;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

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

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

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

.summary-totals {
    margin-top: 20px;
}

.order-security {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 10px;
}

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

/* Success Page Styles */
.success-section {
    padding: 80px 0;
    min-height: 600px;
}

.success-header {
    text-align: center;
    margin-bottom: 50px;
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 20px;
}

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

.next-steps {
    margin: 30px 0;
}

.next-steps ol {
    margin-left: 20px;
}

.next-steps li {
    margin-bottom: 10px;
}

.contact-info h3 {
    margin-top: 30px;
}

.success-actions {
    text-align: center;
}

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

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid,
    .product-content,
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .product-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        gap: 20px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .advantages-grid,
    .stats-container,
    .form-row,
    .values-grid,
    .faq-grid,
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .complaint-form {
        padding: 30px 20px;
    }
    
    .tab-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        min-width: 120px;
        padding: 10px 15px;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .cart-update {
        order: -1;
    }
    
    .cart-summary {
        max-width: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .cart-table th:nth-child(3),
    .cart-table td:nth-child(3) {
        display: none;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-divider {
        width: 2px;
        height: 20px;
        margin: 5px 0;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
