/* Base Styles & Reset */
:root {
    --primary-color: #7b2cbf;
    --primary-light: #9d4edd;
    --primary-dark: #5a189a;
    --secondary-color: #f72585;
    --accent-color: #4cc9f0;
    --dark-color: #10002b;
    --light-color: #f8f9fa;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --success-color: #38b000;
    --warning-color: #ffaa00;
    --error-color: #d00000;
    --text-color: #333;
    --body-color: #f5f5f5;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.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: white;
}

.btn-secondary:hover {
    background-color: #d91872;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

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

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

.btn-block {
    display: block;
    width: 100%;
}

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

.logo img {
    max-height: 50px;
    width: auto;
}

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

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

nav a {
    color: var(--gray-800);
    font-weight: 600;
    padding: 0.5rem;
    position: relative;
}

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

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

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

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

/* Hero Section */
.hero {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
    background-image: linear-gradient(rgba(16, 0, 43, 0.8), rgba(16, 0, 43, 0.8)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
}

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

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

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

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

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

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

.advantage-card:hover {
    transform: translateY(-5px);
}

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

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

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

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

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.cta {
    text-align: center;
    margin-top: 2rem;
}

/* About Products Section */
.about-products {
    padding: 5rem 0;
    background-color: var(--gray-100);
}

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

.about-products h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

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

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

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

.small-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

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

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

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-details {
    padding: 1.5rem;
}

.product-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-description {
    color: var(--gray-700);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.old-price {
    text-decoration: line-through;
    color: var(--gray-500);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.product-rating span:first-child {
    color: #ffaa00;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
}

.product-actions .btn {
    padding: 0.5rem;
    font-size: 0.875rem;
}

/* Timeline Section */
.timeline {
    padding: 5rem 0;
    background-color: var(--gray-100);
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

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

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

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

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

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius);
}

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

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

.footer-logo img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-links h3, .footer-contact h3 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

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

.footer-links a {
    color: var(--gray-400);
}

.footer-links a:hover {
    color: white;
}

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
}

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

.cookie-content a {
    color: var(--accent-color);
}

.cookie-content a:hover {
    text-decoration: underline;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--success-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    z-index: 1000;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification p {
    margin: 0;
}

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

.breadcrumbs {
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.breadcrumbs a {
    color: var(--gray-600);
}

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

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

.product-detail-image {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.product-detail-info .product-rating {
    margin-bottom: 1.5rem;
}

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

.product-detail-info .current-price {
    font-size: 1.75rem;
    color: var(--primary-dark);
}

.product-detail-info .discount {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 700;
}

.product-availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.product-availability .delivery {
    color: var(--gray-700);
    font-weight: normal;
}

.product-description h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

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

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

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

.quantity-selector {
    display: flex;
    align-items: center;
    max-width: 150px;
    margin-top: 0.5rem;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    background: white;
    font-weight: 700;
    cursor: pointer;
}

.quantity-selector input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--gray-300);
    border-left: none;
    border-right: none;
}

.product-detail-info .product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0;
    margin-top: 2rem;
}

.product-detail-info .product-actions .btn {
    padding: 1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-tabs {
    margin-bottom: 3rem;
}

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

.tab-button {
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    position: relative;
}

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

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

.tab-pane {
    display: none;
}

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

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

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

.specifications-table th {
    font-weight: 600;
    color: var(--gray-800);
    width: 30%;
    background-color: var(--gray-100);
}

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

.review-average {
    text-align: center;
}

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

.review-average .stars {
    color: #ffaa00;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

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

.review-bars {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.review-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-bar .stars {
    width: 100px;
    text-align: right;
    color: #ffaa00;
}

.bar-container {
    flex: 1;
    height: 8px;
    background-color: var(--gray-300);
    border-radius: 4px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background-color: var(--primary-color);
}

.percentage {
    width: 50px;
    text-align: right;
    color: var(--gray-700);
}

.customer-reviews {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review {
    border-bottom: 1px solid var(--gray-300);
    padding-bottom: 1.5rem;
}

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

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

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

.review-date {
    color: var(--gray-600);
}

.review-header .review-rating {
    color: #ffaa00;
}

.warranty-info h3 {
    margin-bottom: 1.5rem;
}

.warranty-info h4 {
    margin: 1.5rem 0 0.75rem;
}

.warranty-info ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.warranty-info ul li {
    margin-bottom: 0.5rem;
}

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

/* Color options */
.product-colors {
    margin-bottom: 1.5rem;
}

.color-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

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

.color-name {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.color-option:hover .color-name {
    opacity: 1;
}

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

.cart-container {
    margin-bottom: 3rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.cart-empty svg {
    margin: 0 auto 1.5rem;
    color: var(--gray-400);
}

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

.cart-empty p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
}

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

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

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-300);
}

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

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

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

.cart-item-details .price {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

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

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--gray-300);
    background: white;
    border-radius: 4px;
    cursor: pointer;
}

.cart-item-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
}

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

.cart-summary h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

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

.summary-row.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-300);
    font-weight: 700;
    font-size: 1.25rem;
}

.cart-summary .btn {
    margin-top: 1.5rem;
}

.recommended-products h3 {
    margin-bottom: 1.5rem;
}

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

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

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

.checkout-form-container h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

.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: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
}

.form-group textarea {
    resize: vertical;
}

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

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

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

.checkout-summary {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 2rem;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.checkout-summary h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

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

.checkout-item:last-of-type {
    border-bottom: none;
}

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

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

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

.checkout-item-price {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-700);
}

.summary-totals {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-300);
}

.security-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    color: var(--gray-700);
}

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

.security-note p {
    margin: 0;
    font-size: 0.875rem;
}

.help-section {
    margin-top: 2rem;
    font-size: 0.875rem;
}

.help-section h4 {
    margin-bottom: 0.5rem;
}

.help-section p {
    margin-bottom: 0.25rem;
    color: var(--gray-700);
}

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

.success-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    text-align: center;
}

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

.success-container h1 {
    margin-bottom: 1rem;
}

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

.success-info {
    text-align: left;
    margin: 2rem 0;
}

.what-next {
    margin-top: 2rem;
}

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

.what-next li {
    margin-bottom: 0.5rem;
}

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

/* About Page */
.page-header {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

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

.about-story {
    padding: 5rem 0;
}

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

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

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

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

.mission-content {
    text-align: center;
}

.mission-content h2 {
    margin-bottom: 3rem;
}

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

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

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

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

.mission-card p {
    color: var(--gray-700);
}

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

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

.team-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.25rem;
    color: var(--gray-700);
}

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

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

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

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

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

.team-member p:nth-child(4) {
    color: var(--gray-700);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

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

.team-member .social-icons a {
    background-color: var(--gray-200);
    color: var(--gray-700);
}

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

.testimonials {
    padding: 5rem 0;
    background-color: var(--gray-100);
}

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

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
}

.testimonial {
    min-width: 100%;
    scroll-snap-align: start;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    margin-bottom: 2rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.author-info p {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.our-location {
    padding: 5rem 0;
}

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

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

.location-details {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.location-item {
    display: flex;
    gap: 1rem;
}

.location-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.location-item h4 {
    margin-bottom: 0.5rem;
}

.location-item p {
    color: var(--gray-700);
}

.map-placeholder {
    height: 100%;
    min-height: 300px;
    background-color: var(--gray-200);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    text-align: center;
}

.map-placeholder svg {
    margin-bottom: 1rem;
}

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

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

.contact-info h2 {
    margin-bottom: 1rem;
}

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

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

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

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

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

.contact-details p {
    color: var(--gray-700);
    margin-bottom: 0.25rem;
}

.company-info, .social-connect {
    margin-top: 2.5rem;
}

.company-info h3, .social-connect h3 {
    margin-bottom: 1.25rem;
}

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

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

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

.form-success {
    text-align: center;
    display: none;
}

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

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

.form-success p {
    margin-bottom: 2rem;
    color: var(--gray-700);
}

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

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

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

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

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

.faq-question:hover {
    background-color: var(--gray-100);
}

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

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--gray-700);
}

.faq-item.active .faq-question {
    background-color: var(--gray-100);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid, .location-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        position: static;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    header .container {
        flex-direction: column;
        padding: 1rem;
    }
    
    header {
        height: auto;
        position: sticky;
    }
    
    .logo {
        margin-bottom: 1rem;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-summary {
        position: static;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .review-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .product-actions {
        grid-template-columns: 1fr;
    }
    
    nav ul {
        gap: 0.5rem;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
    }
    
    .cart-item-details {
        grid-column: 2;
        grid-row: 1;
    }
    
    .cart-item-quantity {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
    
    .cart-item-remove {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        align-self: start;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .cookie-content {
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
