/* Global Styles */
:root {
    --primary-color: #6243ff;
    --primary-dark: #5030e5;
    --primary-light: #7a62ff;
    --secondary-color: #21d07c;
    --dark-color: #2c2851;
    --light-color: #f8f9fa;
    --grey-color: #8490a3;
    --grey-light: #eaecef;
    --danger-color: #ff4757;
    --warning-color: #ffa502;
    --box-shadow: 0 4px 20px rgba(44, 40, 81, 0.08);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1280px;
}

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

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

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

p {
    margin-bottom: 1rem;
}

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

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

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

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

/* Button Styles */
.cta-button,
.view-button,
.submit-button,
.checkout-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

.cta-button:hover,
.view-button:hover,
.submit-button:hover,
.checkout-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(98, 67, 255, 0.2);
    color: white;
}

.secondary-button,
.continue-shopping {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
}

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

.view-button {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.spell-check-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.spell-check-btn:hover {
    background-color: #1ab369;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 15px 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;
}

.logo {
    max-width: 150px;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

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

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

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin-bottom: 4px;
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6243ff 0%, #904fff 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: white;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(44, 40, 81, 0.1);
}

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

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

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

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

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

.stat-item p {
    font-size: 1.1rem;
    color: var(--grey-color);
}

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

.about-products h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content h3 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: white;
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.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(-10px);
    box-shadow: 0 15px 30px rgba(44, 40, 81, 0.15);
}

.product-image {
    height: 220px;
    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.4rem;
    margin-bottom: 0.5rem;
}

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

.product-info .description {
    color: var(--grey-color);
    margin-bottom: 1.5rem;
    height: 3em;
    overflow: hidden;
}

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

.add-to-cart {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: #1ab369;
}

/* Product Detail Page */
.product-detail {
    padding: 5rem 0;
    background-color: white;
}

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

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

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

.product-detail-info {
    text-align: left;
}

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

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--warning-color);
}

.product-rating .stars {
    display: flex;
    margin-right: 0.5rem;
}

.product-rating .reviews {
    color: var(--grey-color);
    font-size: 0.9rem;
}

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

.product-availability {
    display: inline-block;
    background-color: rgba(33, 208, 124, 0.1);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

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

.product-description h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
}

.product-description ul {
    list-style-position: inside;
    margin-bottom: 1.5rem;
}

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

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

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

.quantity-selector label {
    margin-right: 1rem;
    font-weight: 600;
}

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

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

.quantity-btn:hover {
    background-color: #dce0e5;
}

#quantity {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.add-to-cart-btn,
.buy-now-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.add-to-cart-btn {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    margin-right: 1rem;
}

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

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

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

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

.tab-buttons {
    display: flex;
    border-bottom: 1px solid var(--grey-light);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--grey-color);
    cursor: pointer;
    transition: var(--transition);
    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;
    text-align: left;
}

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

.tab-pane h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.tab-pane p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.requirements-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.requirements-column ul {
    list-style-position: inside;
}

.requirements-column ul li {
    margin-bottom: 0.5rem;
}

/* Review Styles */
.review-summary {
    display: flex;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--grey-light);
    padding-bottom: 2rem;
}

.average-rating {
    flex: 0 0 200px;
    text-align: center;
    padding-right: 2rem;
    border-right: 1px solid var(--grey-light);
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.5rem;
}

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

.review-count {
    color: var(--grey-color);
}

.rating-breakdown {
    flex: 1;
    padding-left: 2rem;
}

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

.rating-level {
    flex: 0 0 70px;
    font-size: 0.9rem;
}

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

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

.percentage {
    flex: 0 0 40px;
    font-size: 0.9rem;
    text-align: right;
}

.reviews-list {
    text-align: left;
}

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

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

.reviewer {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

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

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

.review-content p {
    line-height: 1.7;
}

/* Related Products */
.related-products,
.recommended-products {
    padding: 4rem 0;
    background-color: #f8f9fc;
}

.related-products h3,
.recommended-products h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.related-product,
.recommended-product {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    padding-bottom: 1.5rem;
}

.related-product:hover,
.recommended-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(44, 40, 81, 0.1);
}

.related-product img,
.recommended-product img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-product h4,
.recommended-product h3 {
    font-size: 1.2rem;
    padding: 0 1rem;
    margin: 1rem 0 0.5rem;
}

.related-product .price,
.recommended-product .price {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

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

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-light);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

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

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

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

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

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

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

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Notification */
.notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: bottom 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.notification.show {
    bottom: 30px;
    opacity: 1;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1.5rem;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-buttons button {
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

#accept-cookies {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

#accept-cookies:hover {
    background-color: var(--primary-dark);
}

#customize-cookies {
    background-color: white;
    color: var(--dark-color);
    border: 1px solid var(--grey-light);
}

#customize-cookies:hover {
    background-color: var(--grey-light);
}

#decline-cookies {
    background-color: white;
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

#decline-cookies:hover {
    background-color: var(--danger-color);
    color: white;
}

/* Page Banner */
.page-banner {
    background: linear-gradient(135deg, #6243ff 0%, #904fff 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    color: var(--grey-color);
}

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

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

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

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

.cart-items {
    text-align: left;
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 0.5fr;
    align-items: center;
    padding: 1.5rem;
    background-color: #f8f9fc;
    font-weight: 600;
    border-bottom: 1px solid var(--grey-light);
}

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

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

.item-image {
    flex: 0 0 80px;
    margin-right: 1.5rem;
}

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

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

.item-details p {
    color: var(--grey-color);
    font-size: 0.9rem;
}

.item-price,
.item-total {
    font-weight: 600;
}

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

.item-quantity button {
    width: 30px;
    height: 30px;
    background-color: var(--grey-light);
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.item-quantity button:hover {
    background-color: #dce0e5;
}

.item-quantity span {
    margin: 0 1rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.item-remove button {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    transition: var(--transition);
}

.item-remove button:hover {
    color: #ff2336;
    transform: scale(1.1);
}

.cart-summary {
    padding: 2rem;
    border-top: 1px solid var(--grey-light);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cart-totals {
    flex: 1;
    min-width: 300px;
    margin-right: 2rem;
}

.cart-subtotal,
.cart-tax,
.cart-shipping,
.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cart-total {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px solid var(--grey-light);
    padding-top: 1rem;
    margin-top: 1rem;
}

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

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

.checkout-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    color: var(--grey-color);
}

.checkout-empty svg {
    color: var(--grey-color);
    margin-bottom: 2rem;
}

.checkout-empty h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.checkout-empty p {
    margin-bottom: 2rem;
}

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

.checkout-form-container {
    text-align: left;
}

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

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

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

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

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

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

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(98, 67, 255, 0.1);
}

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

.checkbox-group input {
    width: auto;
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
}

.order-summary {
    text-align: left;
}

.order-summary h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.order-items {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    margin-bottom: 2rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--grey-light);
}

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

.item-info {
    display: flex;
    flex-direction: column;
}

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

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

.order-totals {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
}

.order-subtotal,
.order-tax,
.order-shipping,
.order-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.order-total {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px solid var(--grey-light);
    padding-top: 1rem;
    margin-top: 1rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-color);
    margin-top: 2rem;
}

.secure-checkout svg {
    margin-right: 0.5rem;
}

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

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

.success-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.success-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.success-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.next-steps {
    padding: 5rem 0;
    background-color: #f8f9fc;
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

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

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 40, 81, 0.15);
}

.step-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

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

.about-content {
    text-align: left;
}

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

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-content h3 {
    font-size: 1.8rem;
    margin: 3rem 0 2rem;
}

.values-list {
    list-style: none;
}

.values-list li {
    display: flex;
    margin-bottom: 2rem;
}

.value-icon {
    flex: 0 0 60px;
    margin-right: 1.5rem;
    color: var(--primary-color);
}

.value-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    height: fit-content;
}

.about-stats .stat-item {
    background-color: #f8f9fc;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.about-stats .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(44, 40, 81, 0.15);
}

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

.about-stats .stat-label {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.team-section {
    padding: 5rem 0;
    background-color: #f8f9fc;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

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

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

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

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

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

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid var(--grey-light);
    margin-top: 1rem;
}

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

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

.partners-section {
    padding: 5rem 0;
    background-color: white;
}

.partners-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.partners-section p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--grey-color);
    transition: var(--transition);
}

.partner-logo:hover {
    color: var(--primary-color);
    transform: translateY(-5px);
}

.partner-logo svg {
    margin-bottom: 1rem;
}

.join-team {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6243ff 0%, #904fff 100%);
    color: white;
    text-align: center;
}

.join-team h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.join-team p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.join-team .cta-button:hover {
    background-color: var(--light-color);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

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

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

.contact-info {
    text-align: left;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    margin-bottom: 2.5rem;
}

.info-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(98, 67, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
}

.info-content {
    flex: 1;
}

.info-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.info-content p {
    margin-bottom: 0.5rem;
}

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

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    background-color: #f8f9fc;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
}

.social-link svg {
    margin-right: 0.8rem;
}

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

.contact-form-container {
    text-align: left;
}

.contact-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form-container > p {
    margin-bottom: 2rem;
}

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

.submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

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

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 0;
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-header, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .header-quantity, .header-action, .item-quantity, .item-remove {
        display: none;
    }
    
    .review-summary {
        flex-direction: column;
    }
    
    .average-rating {
        border-right: none;
        border-bottom: 1px solid var(--grey-light);
        padding-right: 0;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .rating-breakdown {
        padding-left: 0;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        z-index: 1000;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin-left: 0;
        margin-bottom: 1.5rem;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .cart-summary {
        flex-direction: column;
    }
    
    .cart-totals {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .cart-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .continue-shopping {
        margin-bottom: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partners-logos {
        gap: 2rem;
    }
}
