/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #7289da;
    --primary-dark: #5b6eae;
    --secondary-color: #43b581;
    --accent-color: #ff9944;
    --text-color: #333;
    --text-light: #777;
    --bg-color: #f8f9fa;
    --bg-dark: #eaecf0;
    --white: #fff;
    --black: #000;
    --gray-light: #e9e9e9;
    --gray: #ccc;
    --border-radius: 6px;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

ul {
    list-style-type: none;
}

button, .btn-primary, .btn-secondary {
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

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

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

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

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

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

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

.logo img {
    height: 50px;
    width: auto;
    box-shadow: none;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    font-weight: 600;
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

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

.cart-icon svg {
    margin-right: 6px;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

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

.hero .slogan {
    font-size: 20px;
    margin-bottom: 32px;
    font-style: italic;
    opacity: 0.9;
}

.hero .btn-primary {
    font-size: 18px;
    padding: 14px 32px;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner .slogan {
    font-size: 18px;
    opacity: 0.9;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--bg-dark);
    padding: 10px 0;
}

.breadcrumbs ul {
    display: flex;
    gap: 10px;
}

.breadcrumbs ul li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: var(--text-light);
}

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

.breadcrumbs ul li span {
    color: var(--text-color);
    font-weight: 600;
}

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

.advantages h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--primary-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(--border-radius);
    background-color: var(--bg-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

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

.advantage-item p {
    color: var(--text-light);
}

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

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    font-size: 16px;
}

.cta {
    text-align: center;
}

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

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

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

.about-products p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

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

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

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

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

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

.product-card {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    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.1);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 0;
    box-shadow: none;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

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

.btn-add-to-cart, .btn-view-details {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
}

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

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

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

.btn-view-details:hover {
    background-color: var(--bg-dark);
}

/* Product Detail Section */
.product-detail {
    padding: 60px 0;
    background-color: var(--white);
}

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

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

.product-info-container h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    display: flex;
    color: #ffc107;
    margin-right: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.current-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    margin-right: 15px;
}

.old-price {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 10px;
}

.discount {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4px 8px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: bold;
}

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

.product-features {
    margin: 20px 0;
    padding-left: 20px;
}

.product-features li {
    list-style-type: disc;
    margin-bottom: 8px;
    color: var(--text-color);
}

.product-availability {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.in-stock {
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 15px;
}

.stock-count {
    color: var(--text-light);
    font-size: 14px;
}

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

.quantity-btn {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-dark);
    border: 1px solid var(--gray);
    font-size: 18px;
    font-weight: bold;
}

.quantity-btn.minus {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.quantity-btn.plus {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

#quantity {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--gray);
    border-left: none;
    border-right: none;
}

.btn-buy-now {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-left: 10px;
}

.btn-buy-now:hover {
    background-color: darken(var(--accent-color), 10%);
}

.product-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.meta-item {
    display: flex;
    margin-bottom: 10px;
}

.meta-label {
    font-weight: bold;
    width: 100px;
}

.product-share {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.product-share span {
    margin-right: 15px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    color: var(--text-color);
    transition: var(--transition);
}

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

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

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 20px;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
}

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

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-color);
}

.tab-pane {
    display: none;
    padding: 20px 0;
}

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

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

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

.specifications-table tr {
    border-bottom: 1px solid var(--gray-light);
}

.specifications-table td {
    padding: 12px;
}

.specifications-table td:first-child {
    font-weight: bold;
    width: 200px;
}

.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
}

.rating-count {
    color: var(--text-light);
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.stars-label {
    width: 60px;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background-color: var(--gray-light);
    border-radius: 5px;
    margin: 0 15px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
}

.percentage {
    width: 40px;
    text-align: right;
}

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

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

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

.reviewer-name {
    font-weight: bold;
}

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

.review-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
    color: var(--primary-color);
}

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

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

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

.recommended-products h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.recommended-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

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

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

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

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

.cart-items-container {
    margin-bottom: 40px;
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-light);
    font-weight: bold;
}

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

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-light);
    align-items: center;
}

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

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

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

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

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

.cart-total-price {
    font-weight: bold;
    color: var(--accent-color);
}

.cart-remove {
    color: var(--text-light);
    cursor: pointer;
}

.cart-remove:hover {
    color: #dc3545;
}

.cart-summary {
    display: flex;
    justify-content: flex-end;
}

.cart-totals {
    width: 400px;
    padding: 20px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.cart-total-row.total {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    border-bottom: none;
}

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

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

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

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

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

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

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
}

.form-group.notes {
    grid-column: span 2;
}

.order-summary {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    align-self: flex-start;
}

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

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

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

.checkout-item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

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

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

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

.checkout-item-quantity {
    color: var(--text-light);
}

.checkout-item-total {
    color: var(--accent-color);
    font-weight: bold;
}

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

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.checkout-total-row.total {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    border-bottom: none;
}

.secure-checkout {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.secure-icon {
    margin-right: 15px;
    color: var(--secondary-color);
}

.secure-checkout p {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Success Page */
.success-section {
    padding: 80px 0;
    background-color: var(--white);
    min-height: 500px;
    display: flex;
    align-items: center;
}

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

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

.success-message h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.success-message p {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-color);
}

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

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

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

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

.contact-info p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.contact-details {
    margin: 30px 0;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

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

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

.social-contact {
    margin-top: 30px;
}

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

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

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

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.faq h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

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

/* About Page */
.about-story {
    padding: 60px 0;
    background-color: var(--white);
}

.about-story h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission, .vision {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.mission h3, .vision h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

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

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.team-member h3 {
    margin: 20px 0 5px;
    color: var(--primary-color);
}

.team-member p {
    margin-bottom: 15px;
    padding: 0 15px;
}

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

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

.values h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

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

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

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

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

.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #2c2f33;
    color: var(--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: 50px;
    width: auto;
    margin-bottom: 15px;
    box-shadow: none;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links h3, .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links ul li a {
    color: #b9bbbe;
    transition: var(--transition);
}

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

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

.footer-contact .social-icons {
    margin-top: 20px;
}

.footer-contact .social-icons a {
    background-color: #23272a;
    color: var(--white);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #40444b;
    font-size: 14px;
    color: #b9bbbe;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

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

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
}

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

.btn-cookie.customize {
    background-color: var(--white);
    color: var(--text-color);
}

.btn-cookie.reject {
    background-color: #dc3545;
    color: var(--white);
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .slogan {
        font-size: 18px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .recommended-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-header .price, .cart-header .action, .cart-item .price, .cart-item .action {
        display: none;
    }
    
    .checkout-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.notes {
        grid-column: span 1;
    }
    
    .cart-summary {
        justify-content: center;
    }
    
    .cart-totals {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero .slogan {
        font-size: 16px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 15px;
    }
}
