/* General Styles */
:root {
    --primary-color: #7d4cf4;
    --primary-dark: #6232e4;
    --primary-light: #9f79f5;
    --secondary-color: #2c3e50;
    --accent-color: #ff7e5f;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #f1f1f1;
    --success-color: #28a745;
    --error-color: #dc3545;
    --warning-color: #ffc107;
    --border-color: #e1e1e1;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 6px 12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
    --footer-bg: #1a1a2e;
}

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

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

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

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

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

ul, ol {
    list-style-type: none;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

button, .btn-primary, .btn-secondary, .btn-text {
    cursor: pointer;
    font-family: inherit;
}

.section-divider {
    height: 3px;
    width: 60px;
    background: var(--primary-color);
    margin: 0 auto 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-view {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: bottom 0.5s ease-in-out;
}

.cookie-consent.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

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

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

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

.btn-cookie.customize {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-cookie.customize:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-cookie.decline {
    background-color: transparent;
    color: white;
}

.btn-cookie.decline:hover {
    text-decoration: underline;
}

.cookie-content a {
    color: var(--primary-light);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: white;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: var(--header-height);
}

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

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

nav ul {
    display: flex;
    align-items: center;
}

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

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem;
    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;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
    border-radius: 1.5px;
}

.cart-icon {
    position: relative;
}

.cart-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('images/logo.jpg') center/cover;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

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

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

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

/* Advantages Section */
.advantages {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

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

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

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

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

.advantage-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.stat-item {
    text-align: center;
    min-width: 150px;
}

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

.cta {
    text-align: center;
}

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

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

.about-products p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: justify;
}

.quality-assurance {
    max-width: 800px;
    margin: 2rem auto;
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.quality-assurance h3 {
    margin-bottom: 1rem;
    text-align: center;
}

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

.quality-assurance li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quality-assurance svg {
    color: var(--success-color);
    flex-shrink: 0;
}

/* Products Section */
.products {
    padding: 4rem 0;
}

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

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

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

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

.product-image {
    height: 200px;
    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.5rem;
}

.product-category {
    color: var(--text-lighter);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

.stars {
    color: var(--warning-color);
    margin-right: 0.5rem;
}

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

.product-price {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Game Reviews Section */
.game-reviews {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.game-reviews h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

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

.review-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-rating {
    color: var(--primary-color);
    font-weight: bold;
}

.review-author {
    color: var(--text-lighter);
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('images/logo.jpg') center/cover;
    color: white;
}

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

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

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

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

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

.newsletter-form button {
    padding: 12px 24px;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding-top: 3rem;
}

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

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

.footer-logo p {
    color: #b3b3b3;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-column ul li a {
    color: #b3b3b3;
    transition: var(--transition);
}

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

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

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

.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-color);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: -100px;
    right: 20px;
    background-color: white;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 1rem;
    width: 320px;
    z-index: 1000;
    transition: top 0.5s ease;
}

.cart-notification.show {
    top: 100px;
}

.notification-content {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.notification-content svg {
    color: var(--success-color);
    margin-right: 1rem;
    flex-shrink: 0;
}

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

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

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

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

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

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

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.product-price-container {
    margin-bottom: 2rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.product-availability {
    color: var(--success-color);
    font-weight: 500;
}

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

.quantity-selector {
    margin-bottom: 1rem;
}

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

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

.quantity-btn {
    width: 36px;
    height: 36px;
    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;
    transition: var(--transition);
}

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

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

.quantity-btn:hover {
    background-color: var(--border-color);
}

input[type="number"] {
    width: 60px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    font-size: 1rem;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.subscription-info {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.subscription-info h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

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

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.detail-content h4 {
    margin-bottom: 0.25rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-content p {
    margin: 0;
    font-weight: 500;
}

.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: none;
    border: none;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

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

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

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

.tab-panel {
    display: none;
}

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

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

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

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

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

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

.requirements-column h4 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.requirements-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.req-label {
    font-weight: 600;
    color: var(--text-light);
}

.additional-requirements {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.additional-requirements h4 {
    margin-bottom: 0.5rem;
}

.additional-requirements p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.review-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.review-summary-score {
    text-align: center;
}

.score-display {
    margin-bottom: 1rem;
}

.score-display span:first-child {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.score-stars {
    font-size: 1.5rem;
    color: var(--warning-color);
    margin: 0.5rem 0;
}

.score-display p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.review-summary-breakdown {
    padding-top: 0.5rem;
}

.review-bar {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.review-label {
    width: 80px;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.review-bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.review-count {
    width: 50px;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: right;
}

.expert-review {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.reviewer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.reviewer-meta {
    flex: 1;
}

.reviewer-meta h4 {
    margin-bottom: 0.25rem;
}

.reviewer-meta p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

.expert-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1;
    padding: 0.75rem 1.25rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
}

.expert-score span:last-child {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-light);
}

.expert-review-content p {
    margin-bottom: 1rem;
}

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

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

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

.user-info h4 {
    margin-bottom: 0.25rem;
}

.user-rating {
    color: var(--warning-color);
}

.user-review-item p {
    margin-bottom: 0;
}

.related-products {
    margin-bottom: 4rem;
}

.related-products h3 {
    margin-bottom: 2rem;
    text-align: center;
}

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

.related-product-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.related-product-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin: 0 auto 1rem;
}

.related-product-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.related-product-rating {
    color: var(--warning-color);
    margin-bottom: 0.5rem;
}

.related-product-price {
    font-weight: bold;
    margin-bottom: 1rem;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('images/logo.jpg') center/cover;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.about-hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.our-story, .our-mission, .team-section, .our-values, .testimonials, .join-team {
    padding: 4rem 0;
}

.our-story, .our-values, .join-team {
    background-color: var(--bg-light);
}

.story-content, .mission-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.story-image {
    text-align: center;
}

.story-image img {
    max-width: 300px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}

.story-text p {
    margin-bottom: 1rem;
}

.mission-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

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

.mission-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.mission-item h3 {
    margin-bottom: 1rem;
}

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

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

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

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--bg-light);
}

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

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

.team-member p:nth-of-type(2) {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.team-member .social-icons {
    justify-content: center;
}

.team-member .social-icons a {
    background-color: var(--bg-light);
    color: var(--text-color);
    width: 32px;
    height: 32px;
}

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

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

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

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

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

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

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

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

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

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

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

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

.join-team-content p {
    margin-bottom: 2rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.9)), url('images/logo.jpg') center/cover;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.contact-hero-content h1 {
    color: white;
    margin-bottom: 1rem;
}

.contact-content {
    padding: 4rem 0;
}

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

.contact-form-container h2, .contact-info h2 {
    margin-bottom: 1.5rem;
}

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

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

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

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

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

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(125, 76, 244, 0.1);
}

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

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

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

.field-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.contact-methods {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.contact-details a {
    color: var(--text-color);
    transition: var(--transition);
}

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

.contact-details .social-icons {
    margin-bottom: 0.5rem;
}

.contact-details .social-icons a {
    background-color: var(--bg-light);
    width: 36px;
    height: 36px;
}

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

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

.business-hours h3 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.business-hours ul {
    margin-bottom: 1rem;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.day {
    font-weight: 500;
}

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

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

.faq-container {
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

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

.faq-question:hover {
    background-color: var(--bg-light);
}

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

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

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

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

.form-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.form-success.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

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

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

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

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

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

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    display: none;
}

.cart-empty.active {
    display: block;
}

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

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

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

.cart-items-container {
    display: none;
}

.cart-items-container.active {
    display: block;
}

.cart-header {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
    display: none;
}

.cart-items-container.active .cart-header {
    display: block;
}

.cart-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 50px;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
}

.cart-product-col, .cart-price-col, .cart-quantity-col, .cart-total-col {
    font-weight: 600;
    color: var(--text-light);
}

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

.cart-item:last-child {
    margin-bottom: 0;
}

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

.cart-product-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

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

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

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

.cart-quantity input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

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

.cart-remove button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-lighter);
    transition: var(--transition);
}

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

.cart-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.cart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}

.cart-summary {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

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

.summary-row.shipping {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.checkout-btn {
    width: 100%;
    text-align: center;
}

.recommended-products {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.modal-content h3 {
    margin-bottom: 1rem;
}

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

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

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

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 600px;
    margin: 2rem auto 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

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

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

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

.step.active .step-name, .step.completed .step-name {
    color: var(--primary-color);
    font-weight: 600;
}

.step-divider {
    width: 100px;
    height: 2px;
    background-color: var(--bg-light);
    margin: 0 1rem;
}

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

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

.form-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.form-section:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

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

.form-row:last-child {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.order-summary {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: start;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.summary-header h2 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.checkout-items {
    margin-bottom: 2rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

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

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

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

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

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

.checkout-item-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

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

.checkout-item-price {
    font-weight: 600;
    text-align: right;
    flex-shrink: 0;
}

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

.order-security {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.security-icon {
    color: var(--text-light);
    flex-shrink: 0;
}

.security-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

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

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

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

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

.success-message {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.next-steps {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

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

.step-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

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

.success-recommendations {
    background-color: var(--bg-light);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .cart-footer {
        grid-template-columns: 1fr;
    }
    
    .review-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        order: 2;
    }
    
    .contact-info {
        order: 1;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 1rem 0;
        height: auto;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .advantage-grid, .product-grid, .reviews-grid, .feature-list, .team-grid, .values-content, .testimonial-slider, .requirements-container, .cart-row {
        grid-template-columns: 1fr;
    }
    
    .cart-header {
        display: none !important;
    }
    
    .cart-item .cart-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
        background-color: var(--bg-light);
        border-radius: var(--border-radius);
    }
    
    .cart-product-info {
        flex-direction: column;
        align-items: center;
    }
    
    .cart-quantity {
        justify-content: center;
    }
    
    .checkout-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .checkout-actions a, .checkout-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.35rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .expert-score {
        display: none;
    }
}
