/* Main Variables */
:root {
    --primary-color: #6a2c91;
    --primary-light: #8a42b8;
    --primary-dark: #50195e;
    --secondary-color: #ffb626;
    --secondary-light: #ffc953;
    --secondary-dark: #e69900;
    --accent-color: #3bb4c1;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #e9ecef;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease-in-out;
    --border-radius: 6px;
    --border-radius-lg: 12px;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --header-height: 80px;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

ul {
    list-style: none;
}

button, .btn-primary, .btn-secondary {
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    border-radius: var(--border-radius);
    padding: 10px 24px;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

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

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

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

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

section {
    padding: 60px 0;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 10px 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 img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    object-fit: cover;
}

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

nav ul li a {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
}

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

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

nav ul li a.cart-icon {
    position: relative;
    font-size: 1.1rem;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    clip-path: polygon(0 0, 100% 50%, 100% 100%, 0% 100%);
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits {
    background-color: var(--bg-light);
    text-align: center;
    position: relative;
    padding: 80px 0;
}

.benefits h2 {
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

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

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

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

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

.cta {
    margin-top: 40px;
}

/* About Products Section */
.about-products {
    background-color: white;
    padding: 80px 0;
}

.about-products h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    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: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

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

.quality-guarantee, .heritage {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

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

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.certifications span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-light);
}

.certifications span i {
    color: var(--primary-color);
}

/* Products Section */
.products {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.products h2 {
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

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

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

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

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

.product-card a {
    display: block;
    color: var(--text-color);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 0 15px;
    margin-top: 15px;
    font-size: 1.2rem;
}

.product-card .price {
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 15px;
}

.product-card .status {
    font-size: 0.9rem;
    color: var(--text-lighter);
    padding: 0 15px 15px;
}

.product-actions {
    display: flex;
    padding: 15px;
    gap: 10px;
    border-top: 1px solid var(--border-color);
}

.add-to-cart {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.view-details {
    flex: 1;
    background-color: var(--bg-light);
    color: var(--text-color);
    border: none;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

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

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

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

.newsletter p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.newsletter input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.newsletter button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 24px;
}

/* Contact CTA Section */
.contact-cta {
    padding: 40px 0;
    background-color: white;
}

.contact-cta-content {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.contact-cta-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-cta h2 {
    margin-bottom: 0.5rem;
}

.contact-cta p {
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.footer-col p, .footer-col address p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

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

.social-icons a:hover {
    background-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);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.cookie-content p {
    margin: 0;
}

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

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

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

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

.btn-cookie.decline {
    background-color: var(--danger-color);
    color: white;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 9999;
    transform: translateX(200%);
    transition: transform 0.3s ease-in-out;
}

.notification.show {
    transform: translateX(0);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease-in-out;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-lighter);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--text-color);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

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

.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-lighter);
}

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

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

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

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

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

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    color: var(--text-lighter);
}

.product-meta .in-stock {
    color: var(--success-color);
}

.product-meta .exclusive {
    color: var(--secondary-color);
}

.product-meta .best-seller {
    color: var(--primary-color);
}

.product-meta .new-release {
    color: var(--info-color);
}

.product-meta .last-items {
    color: var(--danger-color);
}

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

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

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

.product-description p {
    margin-bottom: 1rem;
}

.product-description h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

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

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

.quantity {
    margin-bottom: 1.5rem;
}

.quantity label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
}

.quantity-decrease, .quantity-increase {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    font-size: 1.2rem;
    cursor: pointer;
}

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

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

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

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.action-buttons button {
    flex: 1;
    height: 50px;
}

.product-meta-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.product-meta-info div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-meta-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-meta-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

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

.tab-btn {
    padding: 15px 30px;
    background-color: transparent;
    border: none;
    font-weight: 600;
    color: var(--text-lighter);
    cursor: pointer;
    position: relative;
}

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

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

.tab-pane {
    display: none;
}

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

.tab-pane h3 {
    margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.empty-cart i {
    font-size: 3rem;
    color: var(--text-lighter);
    margin-bottom: 1rem;
}

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

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

.cart-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.item-price {
    color: var(--text-light);
    margin-bottom: 10px;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-quantity button {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
}

.item-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

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

.item-total p {
    font-weight: 700;
    color: var(--primary-color);
}

.remove-item {
    background-color: transparent;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    font-size: 1.1rem;
}

.cart-summary {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    height: fit-content;
}

.cart-summary h2 {
    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 {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    border-bottom: none;
    margin-top: 20px;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 20px;
}

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

.continue-shopping {
    text-align: center;
    margin-bottom: 30px;
}

.continue-shopping a {
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.secure-checkout i {
    color: var(--success-color);
}

.payment-methods {
    text-align: center;
}

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

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: var(--text-lighter);
    font-size: 1.5rem;
}

.cart-help {
    margin-top: 50px;
    text-align: center;
}

.cart-help h3 {
    margin-bottom: 10px;
}

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

.help-options {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.help-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
}

.help-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.featured-products {
    background-color: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

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

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

.quick-add {
    width: 100%;
    border-radius: 0;
}

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

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

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-lighter);
}

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

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--bg-light);
    font-weight: 700;
    margin-bottom: 8px;
}

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

.step-connector {
    width: 100px;
    height: 3px;
    background-color: var(--bg-light);
    margin: 0 15px;
}

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

.checkout-container {
    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: 20px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
}

.checkout-buttons {
    display: flex;
    gap: 20px;
}

.checkout-summary {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    height: fit-content;
}

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

.checkout-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item:last-of-type {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 20px;
}

.checkout-item .item-image img {
    width: 60px;
    height: 60px;
}

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

.checkout-item .item-quantity, .checkout-item .item-price {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.satisfaction-guarantee {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.satisfaction-guarantee i {
    font-size: 2rem;
    color: var(--success-color);
}

.satisfaction-guarantee h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

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

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

.success-container {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 60px 30px;
    text-align: center;
    margin-bottom: 50px;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

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

.success-message {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.email-confirmation {
    color: var(--text-light);
    margin-bottom: 40px;
}

.next-steps h2 {
    margin-bottom: 30px;
}

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

.step-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.recommended-products {
    text-align: center;
}

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

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

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

.page-header h1 {
    color: white;
    margin-bottom: 10px;
}

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

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

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card .icon {
    font-size: 2rem;
    color: var(--primary-color);
}

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

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

.info-card .hours {
    font-size: 0.9rem;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    color: var(--primary-color);
}

.company-details {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
}

.company-details h3 {
    margin-bottom: 10px;
}

.company-details p {
    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: 10px;
}

.contact-form-container > p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.form-success i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.faq-section {
    background-color: var(--bg-light);
    padding: 60px 30px;
    border-radius: var(--border-radius-lg);
}

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

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

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

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

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

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

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

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

.about-mission {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.about-mission h2 {
    margin-bottom: 40px;
}

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

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

.mission-card .icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.mission-statement {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
}

.about-process {
    padding: 80px 0;
}

.about-process h2 {
    text-align: center;
    margin-bottom: 50px;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background-color: var(--primary-color);
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    z-index: 1;
}

.step-content {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
}

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

.about-team {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.about-team h2 {
    margin-bottom: 10px;
}

.team-intro {
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

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

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

.about-achievements {
    padding: 80px 0;
    text-align: center;
}

.about-achievements h2 {
    margin-bottom: 50px;
}

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

.achievement-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.achievement-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.achievement-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-banner {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-banner h2 {
    color: white;
    margin-bottom: 10px;
}

.cta-banner p {
    margin-bottom: 30px;
}

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

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

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 0 24px;
}

.social-cta p {
    margin-bottom: 15px;
}

.social-cta .social-icons {
    justify-content: center;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --container-width: 960px;
    }
}

@media (max-width: 992px) {
    :root {
        --container-width: 720px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-detail-grid,
    .cart-container,
    .checkout-container,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .step-connector {
        width: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-width: 540px;
    }
    
    header {
        height: auto;
        padding: 15px 0;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 30px 30px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }
    
    nav.open {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .benefits-grid,
    .product-grid,
    .featured-grid,
    .recommended-grid,
    .team-grid,
    .mission-grid,
    .faq-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    :root {
        --container-width: 100%;
    }
    
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter form,
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter input,
    .newsletter-form input,
    .newsletter button,
    .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius);
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .checkout-steps {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }
    
    .help-options {
        flex-direction: column;
        gap: 20px;
    }
}
