/* Base Styles */
:root {
    --primary-color: #f44336;
    --primary-dark: #d32f2f;
    --primary-light: #ffcdd2;
    --secondary-color: #2c3e50;
    --text-color: #333;
    --text-light: #777;
    --background: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f2f2f2;
    --gray: #e0e0e0;
    --gray-dark: #9e9e9e;
    --success: #4CAF50;
    --warning: #FFC107;
    --error: #FF5722;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    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(--background);
}

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

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

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

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

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

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

.cart-icon {
    position: relative;
    display: inline-flex;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-icon:hover {
    background-color: var(--gray-light);
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x800') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

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

.advantages h2 {
    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 {
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background-color: var(--gray-light);
    transition: var(--transition);
}

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

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

.stat-item {
    padding: 20px;
    text-align: center;
}

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

.cta-container {
    margin-top: 40px;
}

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

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

.about-products p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quality-guarantee {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.quality-guarantee h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

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

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

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

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

.product-image {
    height: 200px;
    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.1);
}

.product-info {
    padding: 20px;
}

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

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.view-details {
    flex: 1;
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.view-details:hover {
    background-color: #1a2530;
    color: var(--white);
}

.add-to-cart {
    flex: 1;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Poll Section */
.poll-section {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.poll-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.poll-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.poll-container > p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.poll-form h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.poll-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.poll-option:hover {
    background-color: var(--gray);
}

.poll-option input[type="radio"] {
    margin-right: 10px;
}

.poll-submit {
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

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

.poll-results {
    text-align: center;
}

.poll-results h3 {
    margin-bottom: 15px;
    color: var(--success);
}

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

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column p {
    margin-bottom: 15px;
    color: var(--gray-dark);
}

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

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

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

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

.footer-column ul li a {
    color: var(--gray-dark);
    transition: var(--transition);
}

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

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-buttons button {
    padding: 8px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

#accept-cookies {
    background-color: var(--primary-color);
    color: var(--white);
}

#accept-cookies:hover {
    background-color: var(--primary-dark);
}

#customize-cookies, #reject-cookies {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

#customize-cookies:hover, #reject-cookies:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.cookie-content a:hover {
    color: var(--white);
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    transform: translateX(150%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--success);
    color: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Product Detail Page */
.breadcrumb {
    background-color: var(--gray-light);
    padding: 15px 0;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: var(--gray-dark);
}

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

.breadcrumb span {
    color: var(--text-color);
    font-weight: 500;
}

.product-detail {
    padding: 60px 0;
}

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

.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.product-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

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

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-meta div {
    padding: 5px 10px;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
}

.product-meta span {
    font-weight: 500;
    color: var(--secondary-color);
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-stock {
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.in-stock {
    color: var(--success);
    font-weight: 600;
}

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

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

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

.product-features ul {
    list-style: disc;
    margin-left: 20px;
}

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

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

.add-to-cart-button, .buy-now-button {
    flex: 1;
    padding: 12px 0;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.add-to-cart-button {
    background-color: var(--secondary-color);
    color: var(--white);
}

.add-to-cart-button:hover {
    background-color: #1a2530;
}

.buy-now-button {
    background-color: var(--primary-color);
    color: var(--white);
}

.buy-now-button:hover {
    background-color: var(--primary-dark);
}

.product-guarantee {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

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

.product-tabs {
    display: flex;
    border-bottom: 2px solid var(--gray);
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

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

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

.tab-pane {
    display: none;
}

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

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

.tab-pane p {
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.specs-table th, .specs-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray);
}

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

.related-products h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

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

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

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

.related-product h3 {
    padding: 15px 15px 5px;
    font-size: 1rem;
}

.related-price {
    padding: 0 15px 10px;
    font-weight: bold;
    color: var(--primary-color);
}

.view-product {
    display: block;
    padding: 10px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    transition: var(--transition);
}

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

/* Cart Page */
.cart-page {
    padding: 60px 0;
}

.cart-page h1 {
    margin-bottom: 40px;
    text-align: center;
    color: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cart-empty svg {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

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

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

.continue-shopping {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

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

.cart-items {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 15px 20px;
    background-color: var(--gray-light);
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-product {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 20px;
    align-items: center;
    border-bottom: 1px solid var(--gray);
}

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

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

.cart-product-title {
    font-weight: 500;
}

.cart-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cart-quantity button {
    width: 30px;
    height: 30px;
    border: none;
    background-color: var(--gray-light);
    font-weight: bold;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-quantity button:hover {
    background-color: var(--gray);
}

.cart-quantity input {
    width: 50px;
    text-align: center;
    padding: 5px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
}

.cart-product-total {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-remove {
    color: var(--error);
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    transform: scale(1.1);
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 20px;
    background-color: var(--gray-light);
    flex-wrap: wrap;
    gap: 20px;
}

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

.clear-cart {
    padding: 10px 25px;
    background-color: transparent;
    color: var(--error);
    border: 1px solid var(--error);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.clear-cart:hover {
    background-color: var(--error);
    color: var(--white);
}

.cart-summary {
    width: 300px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.checkout-button {
    display: block;
    width: 100%;
    padding: 12px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

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

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

.checkout-page h1 {
    margin-bottom: 40px;
    text-align: center;
    color: var(--secondary-color);
}

.checkout-empty {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

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

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

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.checkbox-group {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.place-order-button {
    grid-column: 1 / -1;
    padding: 15px 0;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.place-order-button:hover {
    background-color: var(--primary-dark);
}

.order-summary {
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.checkout-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--gray);
}

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

.checkout-item-info {
    flex-grow: 1;
}

.checkout-item-title {
    font-weight: 500;
    margin-bottom: 5px;
}

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

.checkout-item-quantity {
    background-color: var(--gray-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

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

.secure-checkout {
    margin-top: 40px;
    text-align: center;
}

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

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

/* Success Page */
.success-page {
    padding: 80px 0;
}

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

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

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

.success-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.next-steps, .support-info {
    text-align: left;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
}

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

.next-steps ol {
    list-style-type: decimal;
    margin-left: 20px;
}

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

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

.contact-support {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.contact-support:hover {
    background-color: #1a2530;
    color: var(--white);
}

/* About Page */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content {
    padding: 80px 0;
}

.about-story, .about-mission, .about-values, .team-section {
    margin-bottom: 60px;
}

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

.about-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.value-item {
    padding: 20px;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

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

.team-section p {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

.team-member h3, .team-member p {
    padding: 0 20px;
    margin: 15px 0;
    text-align: center;
}

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

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

.team-member .social-icons {
    justify-content: center;
    margin: 15px 0 20px;
}

.team-member .social-icons a {
    width: 35px;
    height: 35px;
    background-color: var(--gray-light);
    color: var(--text-color);
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x600') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-content {
    padding: 80px 0;
}

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

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

.contact-info > p {
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

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

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

.hours {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

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

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

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

.contact-form .form-group:last-of-type, 
.contact-form .checkbox-group,
.contact-form .submit-button {
    grid-column: 1 / -1;
}

.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    resize: vertical;
    font-family: inherit;
    font-size: 1rem;
    min-height: 150px;
}

.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.submit-button {
    padding: 12px 0;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

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

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

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .cart-header {
        display: none;
    }

    .cart-product {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cart-product-info {
        grid-column: 1;
    }

    .cart-quantity, .cart-product-total, .cart-remove {
        grid-column: 1;
        justify-content: flex-start;
    }

    .cart-actions {
        flex-direction: column;
    }

    .cart-summary {
        width: 100%;
    }

    .checkout-form {
        grid-template-columns: 1fr;
    }

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

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .poll-container {
        padding: 20px;
    }

    .cookie-content {
        flex-direction: column;
    }
}
