/* Base Styles */
:root {
    --primary-color: #4a5568;
    --secondary-color: #805ad5;
    --accent-color: #6b46c1;
    --background-color: #ffffff;
    --light-background: #f7fafc;
    --text-color: #2d3748;
    --light-text-color: #718096;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --error-color: #e53e3e;
    --neon-glow: 0 0 10px rgba(123, 90, 213, 0.8), 0 0 20px rgba(123, 90, 213, 0.6), 0 0 30px rgba(123, 90, 213, 0.4);
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --container-max-width: 1200px;
    --header-height: 80px;
}

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

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

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Header */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

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

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

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

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

.nav-links a.active {
    color: var(--secondary-color);
}

.header-icons {
    display: flex;
    align-items: center;
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--primary-color);
}

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

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

/* Hero Section */
.hero {
    background-color: var(--light-background);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 90, 213, 0.1) 0%, rgba(74, 85, 104, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero p {
    font-size: 1.25rem;
    color: var(--light-text-color);
    margin-bottom: 30px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(128, 90, 213, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
}

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

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

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

.stat-item {
    text-align: center;
}

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

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

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

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(107, 70, 193, 0.2);
}

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

.about-books h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.about-content p {
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: justify;
}

.quality-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.badge {
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.badge svg {
    color: var(--secondary-color);
    margin-right: 10px;
}

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

/* Featured Products */
.featured-products {
    padding: 80px 0;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.new-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: var(--neon-glow);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    min-height: 2.4em;
}

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

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

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

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

.product-actions {
    display: flex;
    justify-content: center;
}

.view-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    width: 100%;
}

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

/* Newsletter */
.newsletter {
    background-color: var(--light-background);
    padding: 80px 0;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 20px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--light-text-color);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Footer */
footer {
    background-color: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

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

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

.footer-column p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

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

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

.footer-column ul li a:hover {
    color: white;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #a0aec0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 100%;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

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

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

.cookie-btn.customize:hover {
    background-color: #cbd5e0;
}

.cookie-btn.decline {
    background-color: transparent;
    color: var(--light-text-color);
    border: 1px solid var(--border-color);
}

.cookie-btn.decline:hover {
    background-color: #f7fafc;
}

.cookie-more-info {
    font-size: 0.85rem;
    color: var(--light-text-color);
}

.cookie-more-info a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Neon Button */
.neon-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--neon-glow);
}

.neon-button:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(123, 90, 213, 0.8), 0 0 30px rgba(123, 90, 213, 0.6), 0 0 45px rgba(123, 90, 213, 0.4);
}

.neon-button:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.neon-button:hover:after {
    left: 100%;
}

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

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

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

.breadcrumb span {
    color: var(--text-color);
    margin: 0 10px;
}

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

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

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

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

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

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

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

.in-stock {
    display: inline-block;
    color: var(--success-color);
    font-weight: 600;
    background-color: rgba(72, 187, 120, 0.1);
    padding: 5px 12px;
    border-radius: var(--border-radius);
}

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

.product-description p {
    margin-bottom: 15px;
    color: var(--text-color);
}

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

.product-features li {
    margin-bottom: 10px;
    color: var(--text-color);
    position: relative;
    padding-left: 15px;
}

.product-features li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

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

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

.quantity-selector label {
    margin-right: 15px;
    font-weight: 600;
}

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

.quantity-buttons button {
    background-color: #f7fafc;
    color: var(--text-color);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-buttons button:hover {
    background-color: #e2e8f0;
}

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

.quantity-buttons input::-webkit-outer-spin-button,
.quantity-buttons input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.add-to-cart-btn,
.buy-now-btn {
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.add-to-cart-btn {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.add-to-cart-btn:hover {
    background-color: rgba(128, 90, 213, 0.1);
}

.buy-now-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.product-meta {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

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

.meta-label {
    width: 150px;
    font-weight: 600;
    color: var(--text-color);
}

.meta-value {
    color: var(--light-text-color);
}

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

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 25px;
    font-weight: 600;
    color: var(--light-text-color);
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.tab-panel {
    display: none;
}

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

.tab-panel h3 {
    margin-bottom: 20px;
}

.tab-panel p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.tab-panel ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.tab-panel ul li {
    margin-bottom: 10px;
    color: var(--text-color);
    position: relative;
    padding-left: 15px;
}

.tab-panel ul li:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.shipping-details {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.shipping-details li {
    padding-left: 0;
    margin-bottom: 10px;
}

.shipping-details li:before {
    display: none;
}

.related-products h2 {
    margin-bottom: 30px;
}

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

.product-card.small .product-image {
    height: 200px;
}

.product-card.small .product-details h3 {
    font-size: 1rem;
}

/* Review Section */
.review-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
}

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

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

.rating-stars {
    color: #f6ad55;
    margin-bottom: 10px;
}

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

.review {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

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

.review-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
    margin-right: 15px;
}

.review-rating {
    display: flex;
    color: #f6ad55;
    margin-right: 15px;
}

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

.review-content p {
    color: var(--text-color);
}

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

.cart-section h1 {
    margin-bottom: 40px;
    text-align: center;
}

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

.cart-empty {
    text-align: center;
    padding: 50px 0;
    grid-column: 1 / -1;
}

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

.cart-empty h2 {
    margin-bottom: 10px;
}

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

.continue-shopping {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--light-background);
    color: var(--text-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.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: 5px;
    font-size: 1.1rem;
}

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

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

.cart-item-quantity span {
    font-weight: 600;
    margin-right: 10px;
}

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

.quantity-controls button {
    background-color: #f7fafc;
    color: var(--text-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-controls button:hover {
    background-color: #e2e8f0;
}

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

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.remove-item {
    display: flex;
    align-items: center;
    color: var(--light-text-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item svg {
    margin-right: 5px;
}

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

.cart-summary {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}

.cart-summary h3 {
    margin-bottom: 20px;
}

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

.summary-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.checkout-btn {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
}

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

.checkout-section h1 {
    margin-bottom: 40px;
    text-align: center;
}

.checkout-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
}

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

.checkout-form-container h2 {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.2);
}

.form-submit {
    margin-top: 30px;
}

.checkout-submit-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1.1rem;
}

.order-summary {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
    height: fit-content;
}

.order-summary h2 {
    margin-bottom: 20px;
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 10px;
}

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

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

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 15px;
}

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

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

.order-item-details h3 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.order-item-price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.order-totals {
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

.back-to-cart {
    display: flex;
    align-items: center;
    color: var(--light-text-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.back-to-cart svg {
    margin-right: 5px;
}

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

/* Success Page */
.success-section {
    padding: 60px 0;
}

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

.success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

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

.success-content h1 {
    margin-bottom: 20px;
}

.success-content p {
    color: var(--light-text-color);
    margin-bottom: 10px;
}

.success-buttons {
    margin-top: 30px;
}

.what-happens-next {
    max-width: 800px;
    margin: 0 auto 60px;
}

.what-happens-next h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.step {
    text-align: center;
}

.step-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.step h3 {
    margin-bottom: 10px;
}

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

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

.customer-support h2 {
    margin-bottom: 20px;
}

.customer-support p {
    margin-bottom: 20px;
}

.support-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.support-method {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
}

.support-method svg {
    margin-right: 10px;
}

/* Contact Page */
.page-header {
    background-color: var(--light-background);
    padding: 60px 0;
    text-align: center;
}

.contact-section {
    padding: 60px 0;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

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

.info-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
}

.info-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.info-card h3 {
    margin-bottom: 15px;
}

.info-card p {
    color: var(--light-text-color);
    margin-bottom: 5px;
}

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

.contact-form-container h2 {
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-map {
    margin-bottom: 60px;
}

.contact-map h2 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    height: 400px;
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.map-placeholder p {
    color: var(--light-text-color);
    max-width: 500px;
    margin-bottom: 10px;
}

.faq-preview {
    max-width: 800px;
    margin: 0 auto;
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: 30px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.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: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(128, 90, 213, 0.05);
}

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

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--light-text-color);
}

.faq-answer a {
    color: var(--secondary-color);
}

/* About Page */
.about-intro {
    padding: 60px 0;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.about-intro-text h2 {
    margin-bottom: 20px;
}

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

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

.about-mission {
    padding: 60px 0;
    background-color: var(--light-background);
}

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

.mission-content h2 {
    text-align: center;
    margin-bottom: 30px;
}

.mission-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.mission-statement p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-color);
}

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

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

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

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.value-card h3 {
    margin-bottom: 10px;
}

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

.team-section {
    padding: 60px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--light-text-color);
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--light-text-color);
    margin-bottom: 10px;
}

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

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.member-social a {
    color: var(--light-text-color);
    transition: var(--transition);
}

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

.testimonials {
    padding: 60px 0;
    background-color: var(--light-background);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

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

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.author-rating {
    display: flex;
    color: #f6ad55;
    margin-bottom: 5px;
}

.author-name {
    color: var(--light-text-color);
    font-weight: 600;
}

.about-stats {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    background-color: var(--light-background);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

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

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

.join-content h2 {
    margin-bottom: 20px;
}

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

.join-button {
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-detail-image {
        max-height: 500px;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
        margin-top: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-intro-text {
        order: 2;
    }
    
    .about-intro-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        margin-top: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        height: auto;
        padding: 15px 0;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        justify-content: center;
    }
    
    .header-icons {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .product-card .product-image {
        height: 200px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
        grid-row: span 2;
    }
    
    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 15px;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1 0 auto;
        text-align: center;
        padding: 10px 15px;
    }
}
