/* Global Styles */
:root {
    --primary-color: #ff5500;
    --primary-dark: #e64d00;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f9f9f9;
    --dark-bg: #1a1a1a;
    --border-color: #ddd;
    --success-color: #27ae60;
    --error-color: #e74c3c;
    --warning-color: #f39c12;
    --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-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(--light-bg);
    padding-top: 0;
    position: relative;
}

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

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

ul {
    list-style: none;
}

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

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Progress Bar */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: var(--primary-color);
    width: 0;
    z-index: 9999;
    transition: width 0.2s ease;
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

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

nav li {
    margin-left: 1.5rem;
    position: relative;
}

nav a {
    color: var(--light-text);
    font-weight: 500;
    padding: 0.5rem;
    display: inline-block;
}

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

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

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* This Day in History */
.this-day-history {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 0.75rem 0;
}

.this-day-history h2 {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 0.25rem;
}

.history-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-weight: 500;
    text-align: center;
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

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

.btn-view {
    background-color: var(--secondary-color);
    margin-right: 0.5rem;
}

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

.btn-add {
    flex: 1;
}

.btn-add-large {
    background-color: var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    margin-right: 1rem;
}

.btn-buy-now {
    background-color: var(--accent-color);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

.btn-checkout {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.btn-checkout:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-checkout:disabled:hover {
    transform: none;
}

.btn-place-order {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    background-color: var(--success-color);
}

.btn-place-order:hover {
    background-color: #219653;
}

.btn-cookie {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin: 0 0.25rem;
}

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

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

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

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

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

.advantage-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.advantage-item h3 {
    margin-bottom: 0.5rem;
}

/* Stats */
.stats-container {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

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

.stat-text {
    font-size: 1.1rem;
}

.cta-container {
    text-align: center;
    margin-top: 2rem;
}

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

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

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

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

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

.about-content ul li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

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

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

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

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

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

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

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

.product-actions {
    display: flex;
}

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

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

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

.breadcrumb span {
    color: #666;
}

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

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

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

.product-detail-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-detail-meta span {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.product-detail-meta svg {
    margin-right: 0.5rem;
}

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

.product-detail-description ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.product-detail-description li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.product-specs h2 {
    margin-bottom: 1.5rem;
}

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

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

.product-specs th {
    width: 30%;
    color: #666;
}

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

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

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

/* About Page */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/3.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

.about-hero h1 {
    color: white;
}

.about-story {
    padding: 4rem 0;
    background-color: white;
}

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

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

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

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

.about-content li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

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

/* Team Section */
.team {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

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

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

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

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.team-member h3 {
    margin: 1rem 0 0.25rem;
    padding: 0 1rem;
}

.team-member p {
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.team-member .social-icons {
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-member .social-icons a {
    color: var(--secondary-color);
}

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

/* Values Section */
.values {
    padding: 4rem 0;
    background-color: white;
}

.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 {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--light-bg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

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

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

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

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content:before {
    content: """;
    font-size: 4rem;
    position: absolute;
    top: -2rem;
    left: -1rem;
    color: #eee;
    z-index: 0;
}

.testimonial-content p {
    position: relative;
    z-index: 1;
}

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

.testimonial-author p {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/4.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

.contact-hero h1 {
    color: white;
}

.contact-details {
    padding: 4rem 0;
    background-color: white;
}

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

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    margin-right: 1rem;
    color: var(--primary-color);
}

.contact-text h3 {
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.business-hours h3 {
    margin-bottom: 0.5rem;
}

.business-hours ul {
    padding-left: 1.5rem;
}

.business-hours li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

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

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

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

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

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

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

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

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

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

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

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

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

.faq-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Cart Page */
.cart {
    padding: 4rem 0;
    background-color: white;
}

.cart h1 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.cart-empty svg {
    color: #ccc;
    margin: 0 auto 1rem;
}

.cart-empty p {
    margin-bottom: 1.5rem;
    color: #666;
}

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

.cart-item-image {
    width: 100px;
    margin-right: 1.5rem;
}

.cart-item-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

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

.cart-item-title {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cart-item-quantity button {
    background-color: var(--light-bg);
    border: 1px solid var(--border-color);
    width: 30px;
    height: 30px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-item-quantity span {
    width: 40px;
    text-align: center;
}

.cart-item-remove {
    color: var(--error-color);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.cart-item-remove svg {
    margin-right: 0.5rem;
}

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

.cart-summary h2 {
    margin-bottom: 1.5rem;
}

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

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

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.secure-checkout svg {
    margin-right: 0.5rem;
}

.payment-methods {
    margin-top: 2rem;
    text-align: center;
}

.payment-methods p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.payment-icon {
    background-color: #fff;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.8rem;
}

.continue-shopping {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

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

/* Checkout Page */
.checkout {
    padding: 4rem 0;
    background-color: white;
}

.checkout h1 {
    margin-bottom: 3rem;
}

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

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

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

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

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

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

.checkout-form small {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

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

.order-summary h2 {
    margin-bottom: 1.5rem;
}

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

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

.checkout-item-image {
    width: 60px;
    margin-right: 1rem;
}

.checkout-item-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

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

.checkout-item-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.checkout-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

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

.summary-totals {
    margin-bottom: 1.5rem;
}

.order-guarantees {
    margin-top: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.guarantee-item svg {
    margin-right: 0.5rem;
    color: var(--success-color);
}

/* Success Page */
.success {
    padding: 6rem 0;
    background-color: white;
}

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

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

.success-content h1 {
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

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

.success-next-steps {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
    text-align: left;
}

.success-next-steps h2 {
    margin-bottom: 1.5rem;
}

.success-next-steps ol {
    padding-left: 1.5rem;
}

.success-next-steps li {
    margin-bottom: 0.75rem;
}

.success-help {
    margin-bottom: 2rem;
}

.success-buttons {
    margin-top: 2rem;
}

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

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

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

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 1rem;
    text-align: center;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cookie-link {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 4rem 0 2rem;
}

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

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

.footer-column p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #aaa;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .about-grid,
    .cart-content,
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav li {
        margin: 0.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .advantages-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .product-detail-actions {
        flex-direction: column;
    }
    
    .btn-add-large,
    .btn-buy-now {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
    }
    
    .product-detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}
