:root {
    --primary-color: #6a3de8;
    --primary-dark: #5731c4;
    --primary-light: #8f6ef2;
    --secondary-color: #ff7b54;
    --secondary-dark: #e66b45;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --background-color: #ffffff;
    --background-light: #f9f9ff;
    --background-dark: #f1f1f9;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-sm: 4px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

ul {
    list-style: none;
}

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

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

section {
    padding: 4rem 0;
}

/* Header */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.25rem;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

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

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

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

.cart-btn {
    position: relative;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-btn:hover, .cart-btn.active {
    background-color: var(--background-light);
    color: var(--primary-color);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
    font-family: 'Poppins', sans-serif;
}

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

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

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

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

.tertiary-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--border-color);
}

.tertiary-btn:hover {
    background-color: var(--background-light);
    border-color: var(--text-light);
}

.view-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    text-align: center;
    padding: 5rem 0;
    margin-bottom: 2rem;
}

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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 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;
}

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

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

.advantage-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.advantage-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.stats {
    display: flex;
    justify-content: space-around;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

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

/* About Products Section */
.about-products {
    padding: 5rem 0;
}

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

.about-products p {
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quality-guarantee, .brand-story {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.quality-guarantee h3, .brand-story h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

/* 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-fill, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

.product-image {
    height: 250px;
    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-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

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

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Products Slider */
.products-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

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

.testimonials-slider {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    flex: 1 1 300px;
    position: relative;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
    position: relative;
}

.testimonial-content p::before, .testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--primary-light);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.review-btn-container {
    text-align: center;
    margin-top: 2.5rem;
}

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

.newsletter h3 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

/* Footer */
footer {
    background-color: var(--background-dark);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    flex: 1 1 200px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-links {
    display: flex;
    flex: 2 1 400px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-column {
    flex: 1 1 150px;
}

.footer-column h4 {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

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

.footer-column a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.footer-social {
    flex: 1 1 200px;
}

.footer-social h4 {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

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

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

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

.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

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

address {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-lighter);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--background-color);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    z-index: 1000;
    max-width: 500px;
    margin: 0 auto;
    display: none;
}

.cookie-content p {
    margin-bottom: 1.25rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.cookie-buttons button {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.cookie-more-info {
    font-size: 0.875rem;
    display: block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    background-color: var(--background-color);
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.75rem;
    cursor: pointer;
}

/* Review Modal */
#reviewModal h3 {
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--background-light);
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
}

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

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin: 0 0.5rem;
    color: var(--text-lighter);
}

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

.breadcrumbs li:last-child {
    color: var(--primary-color);
    font-weight: 500;
}

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

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

.product-detail .product-image {
    height: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

.stars {
    display: flex;
    color: var(--warning-color);
}

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

.product-detail .product-description {
    margin-bottom: 1.5rem;
    -webkit-line-clamp: unset;
    font-size: 1rem;
}

.product-features {
    margin-bottom: 1.5rem;
}

.product-features ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1 1 250px;
}

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

.highlight-text h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.highlight-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 1.25rem;
    user-select: none;
}

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

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

.quantity-input {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    font-family: 'Poppins', sans-serif;
}

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

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 3rem;
}

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

.tab-btn {
    padding: 1rem 1.5rem;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    transition: var(--transition);
}

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

.tab-content {
    display: none;
}

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

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

.specs-table th, .specs-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

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

/* Reviews */
.reviews-summary {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.average-rating {
    text-align: center;
    max-width: 300px;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
}

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

.rating-stars {
    margin: 0.5rem 0;
    display: flex;
    justify-content: center;
    color: var(--warning-color);
}

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

.review-list {
    margin-bottom: 2rem;
}

.review-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.review-header {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.review-author {
    font-weight: 600;
}

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

.review-rating {
    color: var(--warning-color);
    margin-left: auto;
}

.review-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

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

/* Related Products */
.related-products h2 {
    margin-bottom: 2rem;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 3.5rem 0;
    margin-bottom: 2rem;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
}

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

.cart-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

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

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

.cart-items-container .cart-header {
    display: grid;
}

.cart-column {
    padding: 0 0.5rem;
}

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

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

.product-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 1.5rem;
}

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

.product-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.product-details p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-lighter);
}

.product-quantity .quantity-selector {
    margin-bottom: 0;
}

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

.remove-item {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.remove-item:hover {
    background-color: rgba(244, 67, 54, 0.1);
}

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

.cart-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.coupon-section {
    flex: 1 1 300px;
}

.coupon-section h3 {
    margin-bottom: 1rem;
}

.coupon-form {
    display: flex;
}

.coupon-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    font-family: 'Poppins', sans-serif;
}

.coupon-form button {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    padding: 0.75rem 1rem;
}

.order-summary {
    flex: 1 1 350px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 2rem;
}

.order-summary h3 {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

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

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

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

.checkout-btn:disabled {
    background-color: var(--text-lighter);
    cursor: not-allowed;
}

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

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

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

.checkout-form-container h2, .order-summary-container h2 {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    cursor: pointer;
    user-select: none;
    padding-left: 2rem;
}

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

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

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

.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: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkout-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.checkout-buttons .btn {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
}

.order-summary-products {
    margin-bottom: 2rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item-details {
    flex: 1;
    padding-right: 1rem;
}

.order-item-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

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

.order-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

.order-totals {
    margin-top: 1.5rem;
}

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

.order-total {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    border-bottom: none;
    margin-top: 0.5rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
    border-radius: var(--border-radius-sm);
}

.secure-checkout p {
    margin-bottom: 0;
    color: var(--success-color);
}

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

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

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

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

.success-details {
    margin-bottom: 2.5rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.success-next-steps {
    background-color: var(--background-color);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.success-next-steps h3 {
    margin-bottom: 1rem;
}

.success-next-steps ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.success-next-steps li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.success-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* About Page */
.about-story {
    padding: 5rem 0;
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.25rem;
}

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

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

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

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

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

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-icon {
    margin-bottom: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.team-section {
    padding: 5rem 0;
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

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

.team-member img {
    width: 100%;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    box-shadow: var(--box-shadow);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.team-member p:last-of-type {
    font-size: 0.95rem;
}

.member-social {
    margin-top: 1.25rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

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

.achievements {
    background-color: var(--primary-color);
    padding: 5rem 0;
    color: white;
}

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

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

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

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.achievement-text {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.join-team {
    background-color: var(--background-light);
    padding: 4rem 0;
    text-align: center;
}

.join-team h2 {
    margin-bottom: 1rem;
}

.join-team p {
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

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

.contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
}

.contact-info h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-text a, .info-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.info-text a:hover {
    color: white;
}

.business-hours, .social-connect {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.business-hours h3, .social-connect h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.business-hours p {
    margin-bottom: 0;
}

.contact-info .social-icons {
    margin-top: 1rem;
}

.contact-info .social-icons a {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

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

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

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 2rem;
}

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

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

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

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

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin-bottom: 0;
}

.map-section {
    padding: 4rem 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.map-placeholder {
    height: 100%;
    background-color: var(--background-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-light);
}

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

#successMessage .modal-content {
    padding: 3rem 2rem;
    text-align: center;
}

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

.success-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.success-content p {
    max-width: 500px;
    margin: 0 auto;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .checkout-main {
        grid-template-columns: 1fr;
    }
    
    .about-columns {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 93.75%;
    }
    
    header {
        position: relative;
    }
    
    .header-container {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        background-color: var(--background-light);
        border-radius: var(--border-radius-sm);
    }
    
    .product-remove {
        text-align: right;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 87.5%;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .success-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .success-buttons .btn {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius-sm);
    }
}
