/* Base Styles and Variables */
:root {
    --primary-color: #6c4ad0;
    --primary-dark: #543aa8;
    --primary-light: #8a6ddd;
    --secondary-color: #ff6b6b;
    --accent-color: #32e0c4;
    --dark-color: #222831;
    --gray-color: #393e46;
    --light-gray: #e0e0e0;
    --white-color: #ffffff;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f9f9f9;
}

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

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

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

ul {
    list-style: none;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

button, .btn, .btn-primary, .btn-secondary {
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1rem;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    padding: 0.75rem 1.5rem;
    display: inline-block;
    text-align: center;
}

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

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

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

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

input, select, textarea {
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 74, 208, 0.2);
}

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

section {
    padding: 5rem 0;
}

/* Header Styles */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

nav a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

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

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

nav a:hover::after {
    width: 100%;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

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

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

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

/* Advantages Section */
.advantages {
    text-align: center;
    background-color: var(--white-color);
    padding: 5rem 5%;
}

.advantages h2 {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.advantages h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

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

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

.icon {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(108, 74, 208, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

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

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

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    font-weight: 500;
}

.cta {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* About Products Section */
.about-products {
    background-color: #f8f9fa;
    padding: 5rem 5%;
}

.about-products h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.about-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.about-products h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.about-products p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

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

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 1px solid var(--light-gray);
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.25rem;
    transition: var(--transition);
}

.product-card:hover h3 {
    color: var(--primary-color);
}

.product-card .price {
    padding: 0 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.product-card p:not(.price) {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.product-actions {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 1rem;
}

.product-actions a, .product-actions button {
    flex: 1;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 4rem 5%;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

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

.newsletter p {
    margin-bottom: 2rem;
}

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

.newsletter input {
    flex: 1;
    min-width: 200px;
    border: none;
}

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

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

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

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

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--light-gray);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

/* Product Detail Page */
.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 5%;
    background-color: var(--white-color);
}

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

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

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

.product-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-meta .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #ffc107;
}

.product-description h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.product-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-description h3 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

.product-description ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.product-actions {
    margin-top: 2.5rem;
}

.product-details .product-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1rem;
}

.quantity select {
    width: 70px;
}

/* Product Tabs */
.product-tabs {
    padding: 0 5% 5rem;
    background-color: var(--white-color);
}

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

.tab-btn {
    padding: 1rem 2rem;
    background-color: transparent;
    border: none;
    font-weight: 600;
    color: var(--gray-color);
    position: relative;
}

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

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

.tab-content {
    display: none;
    line-height: 1.8;
}

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

.tab-content h3 {
    margin-bottom: 1.5rem;
}

.review {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.review:last-child {
    border-bottom: none;
}

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

.reviewer {
    font-weight: 600;
}

.review-rating {
    color: #ffc107;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h4 {
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

/* Related Products */
.related-products {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.related-products h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.related-products h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.about-hero p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-content {
    padding: 5rem 5%;
    background-color: var(--white-color);
}

.about-story {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-story h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

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

.about-story ul {
    margin-left: 1.5rem;
    list-style: disc;
}

.about-story li {
    margin-bottom: 0.5rem;
}

.team-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

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

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

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

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

.team-member p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

.achievements {
    padding: 5rem 5%;
    background-color: var(--white-color);
    text-align: center;
}

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

.achievement {
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    background-color: #f8f9fa;
}

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

.achievement-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(108, 74, 208, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.join-us {
    padding: 5rem 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/5.jpg') no-repeat center center/cover;
    color: var(--white-color);
    text-align: center;
}

.join-us h2 {
    margin-bottom: 1.5rem;
}

.join-us p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

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

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.contact-hero p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-content {
    padding: 5rem 5%;
    background-color: var(--white-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2, .contact-form-container h2 {
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.contact-info h2::after, .contact-form-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-details {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.contact-text h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-text p {
    margin-bottom: 0.5rem;
    color: var(--gray-color);
}

.social-connect h3 {
    margin-bottom: 1.5rem;
}

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

.social-connect .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(108, 74, 208, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: var(--primary-color);
}

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

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.checkbox-group label {
    font-weight: normal;
}

.contact-form button {
    margin-top: 1rem;
}

.faq-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: left;
}

.faq-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.map-section {
    padding: 5rem 5% 0;
    text-align: center;
    background-color: var(--white-color);
}

.map-container {
    max-width: 1200px;
    margin: 3rem auto 0;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-placeholder {
    height: 100%;
    background-color: #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
}

/* Cart Page */
.cart-section {
    padding: 5rem 5%;
    background-color: var(--white-color);
}

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

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cart-items {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-color);
}

.empty-cart svg {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.empty-cart p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

.cart-item-price {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.cart-item-quantity button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f1f1;
    border-radius: 4px;
    font-weight: 600;
}

.cart-item-quantity input {
    width: 60px;
    text-align: center;
}

.cart-item-actions {
    display: flex;
    align-items: flex-start;
}

.remove-item {
    color: var(--gray-color);
    background: none;
    padding: 0;
    transition: var(--transition);
}

.remove-item:hover {
    color: var(--secondary-color);
}

.cart-summary {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    align-self: start;
}

.cart-summary h2 {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.cart-summary h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

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

.summary-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

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

.continue-shopping {
    display: block;
    text-align: center;
    color: var(--primary-color);
    margin-top: 1rem;
}

.continue-shopping:hover {
    text-decoration: underline;
}

.recommended-products {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.cart-features {
    padding: 5rem 5% 0;
    background-color: var(--white-color);
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(108, 74, 208, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.feature h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

/* Checkout Page */
.checkout-section {
    padding: 5rem 5%;
    background-color: var(--white-color);
}

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

.checkout-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.checkout-form h2 {
    margin: 2rem 0 1.5rem;
    color: var(--primary-dark);
}

.checkout-form h2:first-child {
    margin-top: 0;
}

.digital-note {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

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

.order-summary {
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    align-self: start;
}

.order-summary h2 {
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.order-summary h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

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

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

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.checkout-item-details h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

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

.summary-calculations {
    margin-top: 2rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--light-gray);
    color: var(--primary-dark);
    font-weight: 600;
}

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

.checkout-features {
    padding: 5rem 5% 0;
    background-color: var(--white-color);
}

/* Success Page */
.success-section {
    padding: 5rem 5%;
    background-color: var(--white-color);
}

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

.success-icon {
    color: #4CAF50;
    margin-bottom: 2rem;
}

.success-message {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.success-details {
    margin-bottom: 3rem;
    color: var(--gray-color);
}

.success-next-steps {
    margin: 3rem 0;
}

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

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

.step-icon {
    margin: 0 auto 1rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(108, 74, 208, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .product-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .cart-container, .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .advantages-container, .products-container, .team-container, .achievements-container, .features-container, .steps-container {
        grid-template-columns: 1fr;
    }
    
    .tabs {
        flex-direction: column;
        gap: 0;
    }
    
    .tab-btn {
        width: 100%;
        text-align: left;
        padding: 1rem;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .tab-btn.active::after {
        display: none;
    }
    
    .tab-btn.active {
        background-color: rgba(108, 74, 208, 0.1);
    }
    
    .success-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
