/* Base Styles */
:root {
    --primary-color: #f03737;
    --secondary-color: #1f2937;
    --accent-color: #ffa800;
    --text-color: #333;
    --light-text: #f9f9f9;
    --dark-text: #1a1a1a;
    --bg-color: #f5f5f5;
    --card-bg: #fff;
    --border-color: #e1e1e1;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --hover-transition: all 0.3s ease;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-radius: 8px;
    --button-radius: 4px;
    --max-width: 1200px;
    --header-height: 80px;
}

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

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

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

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

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

ul {
    list-style: none;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--button-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--hover-transition);
    border: none;
    font-size: 16px;
}

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

.primary-btn:hover {
    background-color: #d32f2f;
    color: white;
}

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

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

.view-btn {
    background-color: var(--secondary-color);
    color: white;
    font-size: 14px;
    padding: 8px 16px;
    width: 100%;
}

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

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

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

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

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

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

nav ul li a {
    color: var(--light-text);
    font-weight: 500;
    padding: 10px;
    font-size: 16px;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(31, 41, 55, 0.8), rgba(31, 41, 55, 0.8)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.advantages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.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;
    border-radius: var(--card-radius);
    background-color: var(--card-bg);
    box-shadow: var(--box-shadow);
    transition: var(--hover-transition);
}

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

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

.advantage-item h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 50px 0;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

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

.stat-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

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

.cta-block h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.about-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.about-products p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quality-block, .guarantee-block, .history-block {
    background-color: white;
    border-radius: var(--card-radius);
    padding: 30px;
    margin: 30px 0;
    box-shadow: var(--box-shadow);
}

.quality-block h3, .guarantee-block h3, .history-block h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.quality-block ul {
    margin-left: 20px;
    margin-top: 15px;
    list-style-type: disc;
}

.quality-block ul li {
    margin-bottom: 8px;
}

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

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

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

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.product-image {
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #666;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

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

.product-rating {
    color: var(--accent-color);
}

/* Unique Color Scheme Section */
.unique-color-scheme {
    background-color: #1a1a2e;
    color: white;
    padding: 80px 0;
}

.unique-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.unique-content img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.unique-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.unique-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

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

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

.footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--light-text);
}

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

.footer-links ul li a {
    color: #aaa;
}

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

.footer-contact p {
    margin-bottom: 10px;
    color: #aaa;
}

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

.social-icons a {
    color: #aaa;
    transition: var(--hover-transition);
}

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

.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(--secondary-color);
    color: white;
    padding: 15px;
    z-index: 1001;
    display: none;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-content a {
    color: var(--accent-color);
    margin-left: 20px;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

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

.breadcrumb span {
    color: #666;
}

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

.product-detail-image {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-detail-image img {
    width: 100%;
    height: auto;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.product-detail-info .product-meta {
    margin-bottom: 20px;
}

.product-availability {
    color: var(--success-color);
    font-weight: 600;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

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

.product-description li {
    margin-bottom: 8px;
}

.product-specs {
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.spec-label {
    font-weight: 600;
    color: var(--secondary-color);
}

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

.product-actions .btn {
    flex: 1;
}

.product-additional-info {
    margin-top: 50px;
}

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

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #666;
    transition: var(--hover-transition);
}

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

.tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.tab-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
}

.tab-content li {
    margin-bottom: 8px;
}

.review-summary {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.review-average {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.review-score {
    font-weight: 700;
    font-size: 1.2rem;
}

.review-count {
    color: #666;
}

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

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

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

.review-author {
    font-weight: 600;
}

.review-date {
    color: #666;
    font-size: 0.9rem;
}

.review-rating {
    color: var(--accent-color);
}

.related-products {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.related-products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

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

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

.about-intro, .team-section, .testimonials, .cta-section {
    padding: 80px 0;
}

.about-content h2, .team-section h2, .testimonials h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

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

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

.feature-item h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.company-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--card-radius);
    margin-top: 40px;
}

.team-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.team-member h3 {
    margin-top: 20px;
    color: var(--secondary-color);
}

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

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

.testimonials {
    background-color: #f9f9f9;
}

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

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

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

.testimonial-content p::before {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-color);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.cta-section {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

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

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

/* Contact Page */
.contact-main {
    padding: 80px 0;
    background-color: white;
}

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

.contact-info h2, .contact-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.method-icon {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.method-details h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.method-details p, .method-details a {
    margin-bottom: 5px;
}

.method-details .social-icons {
    margin-top: 10px;
}

.company-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: var(--card-radius);
}

.contact-form, .checkout-form {
    display: grid;
    gap: 20px;
}

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

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

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

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

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

.checkbox-group input {
    margin-top: 5px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success svg {
    color: var(--success-color);
    margin: 0 auto 20px;
}

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

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

.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

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

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

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

.cart-content {
    margin-bottom: 40px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: var(--card-radius);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 20px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

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

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

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

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #f1f1f1;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.quantity-input {
    width: 40px;
    height: 30px;
    border: none;
    text-align: center;
    font-size: 1rem;
}

.remove-item {
    color: var(--error-color);
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.2rem;
}

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

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

.empty-cart h2 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.empty-cart p {
    margin-bottom: 30px;
    color: #666;
}

.cart-summary {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--card-radius);
}

.cart-summary h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.summary-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.summary-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 15px 0;
}

.checkout-btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.secure-checkout, .payment-methods {
    margin-top: 30px;
    text-align: center;
}

.secure-icon, .guarantee-icon {
    color: var(--success-color);
    margin-bottom: 10px;
}

.payment-methods p {
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #666;
}

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

.checkout-steps {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: center;
    margin: 0 20px;
    color: #666;
}

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

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-weight: 600;
}

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

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

.checkout-form-container h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.form-info {
    margin-bottom: 20px;
    color: #666;
}

.order-summary {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--card-radius);
    height: fit-content;
}

.order-summary h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

.checkout-item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
}

.checkout-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-item-details {
    flex: 1;
}

.checkout-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.checkout-item-price {
    display: flex;
    justify-content: space-between;
}

.checkout-item-quantity {
    color: #666;
    font-size: 0.9rem;
}

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

.summary-totals {
    margin-bottom: 30px;
}

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

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

.empty-cart-message {
    text-align: center;
    color: #666;
    padding: 20px 0;
}

/* Success Page */
.success-section {
    padding: 80px 0;
    background-color: white;
}

.success-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

.next-steps, .support-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--card-radius);
    text-align: left;
    margin: 40px 0;
}

.next-steps h2, .support-info h2 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

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

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        order: -1;
    }
    
    .unique-content {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .advantage-item {
        padding: 20px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-image {
        margin-bottom: 15px;
    }
    
    .cart-item-controls {
        margin-top: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .unique-content img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 576px) {
    header .container {
        flex-direction: column;
        padding: 15px;
    }
    
    nav ul {
        margin-top: 15px;
    }
    
    .hero {
        padding: 80px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .products h2, .advantages h2, .about-products h2 {
        font-size: 1.8rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
