/* Global Styles */
:root {
    --primary-color: #6200ea;
    --primary-light: #9d46ff;
    --primary-dark: #0a00b6;
    --secondary-color: #00e5ff;
    --secondary-light: #6effff;
    --secondary-dark: #00b2cc;
    --text-color: #212121;
    --text-light: #757575;
    --background-color: #f8f9fa;
    --background-light: #ffffff;
    --background-dark: #e9ecef;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --border-color: #dfe0e1;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

ul, ol {
    list-style-type: none;
}

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

button, .cta-button, .submit-btn {
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 500;
    transition: var(--transition);
}

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

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

section {
    padding: 4rem 0;
}

.required {
    color: var(--error-color);
}

/* Header Styles */
header {
    background-color: var(--background-light);
    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 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section & Slider */
.hero {
    padding: 0;
    background: linear-gradient(135deg, #1a237e, #7b1fa2);
    color: white;
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.slider {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    flex: 1 0 33.33%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) {
    background: linear-gradient(135deg, rgba(26,35,126,0.9), rgba(123,31,162,0.9)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, rgba(123,31,162,0.9), rgba(0,150,136,0.9)), url('images/2.jpg');
    background-size: cover;
    background-position: center;
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, rgba(0,150,136,0.9), rgba(26,35,126,0.9)), url('images/3.jpg');
    background-size: cover;
    background-position: center;
}

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

.slide-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: white;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--text-color);
}

.cta-button.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Advantages Section */
.advantages {
    background-color: var(--background-light);
    padding: 5rem 0;
}

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

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

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.advantage-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background-color: rgba(98, 0, 234, 0.1);
    color: var(--primary-color);
}

.advantage-item h3 {
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.advantage-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

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

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

.cta-container {
    text-align: center;
}

/* Product Info Section */
.product-info {
    background-color: #f0f2f5;
    padding: 5rem 0;
}

.product-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.product-info p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.quality-section, .technology-section {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.quality-section h3, .technology-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.quality-section p, .technology-section p {
    text-align: left;
    margin-bottom: 0;
}

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

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

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

.product-card {
    background-color: white;
    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: 250px;
    overflow: hidden;
    position: relative;
}

.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-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-details {
    padding: 1.5rem;
}

.product-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

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

.view-product {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Daily Picks Section */
.daily-picks {
    background-color: #f0f2f5;
    padding: 4rem 0;
}

.daily-picks h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.picks-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: none;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
}

.newsletter-form .submit-btn {
    padding: 1rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form .submit-btn:hover {
    background-color: var(--secondary-light);
}

/* Footer */
footer {
    background-color: #212331;
    color: white;
    padding: 4rem 0 0;
}

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

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

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

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

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-section address {
    font-style: normal;
    color: #b0b0b0;
}

.contact-section address p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.contact-section address p a {
    color: #b0b0b0;
}

.contact-section address p a:hover {
    color: white;
}

.footer-bottom {
    background-color: #1a1c27;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

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

.accept-all:hover {
    background-color: var(--primary-light);
}

.customize, .decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.customize:hover, .decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-policy-link {
    color: var(--secondary-color);
    margin-left: auto;
}

.cookie-policy-link:hover {
    color: var(--secondary-light);
}

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

.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

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

.product-info h1 {
    margin-bottom: 1rem;
    font-size: 2rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    color: #ffc107;
}

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

.product-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount {
    background-color: #e53935;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-features h3 {
    margin-bottom: 1rem;
}

.product-features ul {
    list-style-type: disc;
    padding-left: 1.2rem;
    margin-bottom: 2rem;
}

.product-features ul li {
    margin-bottom: 0.5rem;
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--background-light);
    font-size: 1.2rem;
    cursor: pointer;
}

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

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

.quantity-input:focus {
    outline: none;
}

.add-to-cart, .buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    height: 40px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

.buy-now {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.buy-now:hover {
    background-color: var(--secondary-light);
}

.product-meta {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-tabs {
    margin-bottom: 4rem;
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
    overflow-x: auto;
}

.tab-btn {
    padding: 1rem 2rem;
    background-color: transparent;
    border: none;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

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

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

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

.tab-panel {
    display: none;
}

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

.tab-panel h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.tab-panel p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.spec-table tr:nth-child(odd) {
    background-color: var(--background-light);
}

.spec-table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
}

.spec-table td:first-child {
    font-weight: 600;
    width: 40%;
}

.review-summary {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.overall-rating {
    text-align: center;
    min-width: 150px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.overall-rating .stars {
    justify-content: center;
    margin-bottom: 0.5rem;
}

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

.rating-distribution {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.rating-label {
    width: 60px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.progress {
    flex: 1;
    background-color: var(--background-dark);
    height: 8px;
    border-radius: 4px;
    margin: 0 1rem;
    overflow: hidden;
}

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

.rating-percent {
    width: 40px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.reviewer-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

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

.review-rating .stars {
    font-size: 0.9rem;
}

.review-content h5 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.review-content p {
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.related-products {
    background-color: var(--background-color);
    padding: 4rem 0;
}

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

/* Cart Page */
.cart-section {
    padding: 4rem 0;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.empty-cart-icon {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.cart-empty h2 {
    margin-bottom: 1rem;
}

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

.cart-items {
    margin-bottom: 2rem;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

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

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

.cart-product-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-price, .cart-subtotal {
    font-weight: 600;
}

.cart-quantity {
    display: flex;
    align-items: center;
    max-width: 120px;
}

.cart-quantity .quantity-selector {
    width: 100%;
}

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

.cart-remove:hover {
    color: var(--error-color);
}

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

.continue-shopping a, .clear-cart button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

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

.clear-cart button:hover {
    background-color: #ffebee;
    border-color: var(--error-color);
    color: var(--error-color);
}

.cart-summary {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

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

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 0;
    margin-top: 1rem;
    border-bottom: none;
    color: var(--primary-color);
}

.checkout-action {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

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

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.might-like-section {
    padding: 4rem 0;
    background-color: var(--background-light);
}

.might-like-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

/* Checkout Page */
.checkout-section {
    padding: 4rem 0;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

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

.step-title {
    font-weight: 600;
    color: var(--text-light);
}

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

.step-line {
    flex: 1;
    height: 2px;
    background-color: var(--background-dark);
    margin: 0 1.5rem;
    max-width: 100px;
}

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

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

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    position: relative;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    line-height: 1.5;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    top: 2px;
    height: 18px;
    width: 18px;
    min-width: 18px;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.checkbox-container:hover .checkmark {
    background-color: var(--background-dark);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.back-to-cart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.back-to-cart:hover {
    color: var(--primary-color);
}

.place-order-btn {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.place-order-btn:hover {
    background-color: var(--primary-light);
}

.checkout-summary {
    align-self: start;
}

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

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

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

.checkout-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

.checkout-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

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

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

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-radius: var(--border-radius);
}

.secure-icon {
    color: #0066cc;
}

.secure-text p:first-child {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.secure-text p:last-child {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Success Page */
.success-section {
    padding: 5rem 0;
    text-align: center;
}

.success-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.success-container p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
}

.success-info {
    margin: 3rem 0;
    text-align: left;
    padding: 2rem;
    background-color: #f5f5f5;
    border-radius: var(--border-radius);
}

.info-block h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.info-block ul {
    list-style-type: disc;
    padding-left: 1.2rem;
}

.info-block ul li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.primary-button, .secondary-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

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

.secondary-button {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

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

.recommendations {
    background-color: var(--background-color);
    padding: 4rem 0;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a237e, #7b1fa2);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page Styles */
.about-story {
    padding: 5rem 0;
    background-color: var(--background-light);
}

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

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

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.mission-values {
    padding: 5rem 0;
    background-color: #f0f2f5;
}

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

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

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

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

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

.value-item h3 {
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.mission-statement {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.mission-statement h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-statement p {
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1.1rem;
}

.team-section {
    padding: 5rem 0;
    background-color: var(--background-light);
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

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

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

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

.team-member img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-member h3 {
    margin: 1.5rem 0 0.5rem;
    padding: 0 1.5rem;
    font-size: 1.2rem;
}

.team-member p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.member-social {
    display: flex;
    padding: 0 1.5rem 1.5rem;
    gap: 0.75rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: var(--text-color);
    transition: var(--transition);
}

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

.achievements {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a237e, #7b1fa2);
    color: white;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.achievement-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.achievement-item p {
    font-size: 1.1rem;
}

.cta-section {
    padding: 5rem 0;
    background-color: var(--background-light);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

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

.contact-info > p {
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(98, 0, 234, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-content p.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

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

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

.contact-form-container h2 {
    margin-bottom: 2.5rem;
    text-align: center;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.contact-form .submit-btn {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    width: 100%;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.contact-form .submit-btn:hover {
    background-color: var(--primary-light);
}

.faq-section {
    padding: 5rem 0;
    background-color: #f0f2f5;
}

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

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.more-questions {
    text-align: center;
    margin-top: 3rem;
}

.more-questions p {
    font-size: 1.1rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification-content svg {
    color: var(--success-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .about-grid,
    .contact-grid,
    .product-detail-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .hero .slide-content h1 {
        font-size: 2rem;
    }
    
    .cart-header,
    .cart-item {
        grid-template-columns: 2fr 1fr 1fr 1fr 0.5fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1.5rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slide {
        height: 400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .cart-header,
    .cart-item {
        grid-template-columns: 2fr 1fr 0.5fr;
    }
    
    .cart-header .price-col,
    .cart-header .subtotal-col,
    .cart-item .cart-price,
    .cart-item .cart-subtotal {
        display: none;
    }
    
    .cart-product {
        gap: 0.75rem;
    }
    
    .cart-product img {
        width: 60px;
        height: 60px;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .logo img {
        max-height: 40px;
    }
    
    .hero .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .hero .slide-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .stats-container {
        gap: 1.5rem;
    }
    
    .product-card {
        margin-left: auto;
        margin-right: auto;
        max-width: 300px;
    }
    
    .cart-header,
    .cart-item {
        grid-template-columns: 2fr 0.5fr;
    }
    
    .cart-header .quantity-col,
    .cart-item .cart-quantity {
        display: none;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .quantity-selector {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .back-to-cart {
        justify-content: center;
    }
    
    .place-order-btn {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form .submit-btn {
        width: 100%;
        padding: 0.75rem;
    }
    
    .newsletter-form .submit-btn {
        margin-top: 1rem;
        border-radius: var(--border-radius);
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn,
    .cookie-policy-link {
        width: 100%;
        text-align: center;
    }
}
