/* Base Styles and Variables */
:root {
    --primary-color: #6c5ce7;
    --primary-light: #8178e0;
    --primary-dark: #5549d1;
    --secondary-color: #00b894;
    --accent-color: #ff7675;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-color: #ffffff;
    --bg-light: #f5f6fa;
    --bg-dark: #dfe6e9;
    --success-color: #00b894;
    --error-color: #d63031;
    --warning-color: #fdcb6e;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --header-height: 80px;
    --container-width: 1200px;
    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

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

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

button {
    cursor: pointer;
    font-family: var(--font-main);
}

ul {
    list-style: none;
}

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

/* Header & Navigation */
header {
    background-color: var(--bg-color);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

.cart-link {
    position: relative;
}

.cart-link svg {
    margin-right: 0.3rem;
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px;
    transition: var(--transition);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,202.7C384,192,480,160,576,170.7C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.cta-button:hover {
    background-color: #00a382;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
    color: white;
}

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

.advantages h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.advantages-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.advantage-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    flex: 1 1 250px;
    max-width: 300px;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 4rem auto 2rem;
}

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

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

.stat p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.cta-container {
    margin-top: 3rem;
}

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

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-products h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-products h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin: 2rem 0 1rem;
}

.about-products p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Unknown Facts Section */
.unknown-facts {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(85, 73, 209, 0.1) 100%);
}

.facts-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.unknown-facts h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.facts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fact {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.fact:hover {
    transform: translateX(5px);
    background-color: white;
}

.fact-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.7;
    min-width: 60px;
    text-align: center;
}

.fact p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
}

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

.products h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.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(0, 0, 0, 0.15);
}

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

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.product-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    display: block;
}

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

.view-button {
    display: block;
    width: 100%;
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

/* Product Detail Page */
.product-detail {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

.product-detail-info {
    flex: 1 1 400px;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.product-detail-meta {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-detail-meta p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-detail-meta span {
    color: var(--secondary-color);
    font-weight: 600;
}

.product-detail-info .product-price {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.product-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.product-features {
    background-color: rgba(108, 92, 231, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.product-features h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-features ul {
    padding-left: 1.2rem;
}

.product-features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 0.8rem;
}

.product-features li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: -1rem;
    font-size: 1.2rem;
}

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

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

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

.quantity-controls {
    display: flex;
    align-items: center;
    width: max-content;
    border: 1px solid var(--bg-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

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

/* Remove spinner buttons from number input */
#quantity::-webkit-inner-spin-button, 
#quantity::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
}

#quantity {
    -moz-appearance: textfield;
}

.add-to-cart-button, .buy-now-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    font-size: 1rem;
}

.add-to-cart-button {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-right: 1rem;
}

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

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

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

/* Product Details Tabs */
.product-details-tabs {
    padding: 3rem 0;
    background-color: white;
}

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

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

.tab-button {
    padding: 1rem 2rem;
    background-color: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

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

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

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

.tab-content {
    padding: 1rem 0;
}

.tab-pane {
    display: none;
}

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

.tab-pane h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

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

.specs-table tr {
    border-bottom: 1px solid var(--bg-dark);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 1rem;
    line-height: 1.6;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 30%;
    color: var(--text-color);
}

.specs-table td:last-child {
    color: var(--text-light);
}

/* Related Products */
.related-products {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.related-products h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.related-products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.related-product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    flex: 1 1 250px;
    max-width: 300px;
    transition: var(--transition);
}

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

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

.related-product-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
}

.related-price {
    padding: 0 1rem 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.related-product-card .view-button {
    margin: 0 1rem 1rem;
    width: calc(100% - 2rem);
}

/* Footer */
footer {
    background-color: #2d3436;
    color: white;
    padding: 5rem 0 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

.footer-logo p {
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

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

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

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

.footer-contact {
    flex: 1 1 250px;
}

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

.footer-contact p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.footer-contact svg {
    margin-right: 0.5rem;
}

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

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

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

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: 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: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(45, 52, 54, 0.95);
    color: white;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.cookie-button {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

.cookie-button.decline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-button.decline:hover {
    color: white;
}

.cookie-policy-link {
    color: var(--primary-light);
    font-size: 0.9rem;
}

.cookie-policy-link:hover {
    color: white;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,202.7C384,192,480,160,576,170.7C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-hero p {
    font-size: 1.5rem;
    font-weight: 300;
}

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

.about-story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.about-story-image {
    flex: 1 1 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-story-image img {
    width: 100%;
    height: auto;
}

.about-story-text {
    flex: 1 1 400px;
}

.about-story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.value-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    flex: 1 1 250px;
    max-width: 280px;
    transition: var(--transition);
}

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

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

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

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

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

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.team-member {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    flex: 1 1 250px;
    max-width: 300px;
    transition: var(--transition);
    padding-bottom: 1.5rem;
    text-align: center;
}

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

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

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

.team-member p {
    color: var(--text-light);
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

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

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

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

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

.achievements-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
    position: relative;
}

.achievements-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.achievement {
    margin-bottom: 3rem;
    position: relative;
}

.achievement:last-child {
    margin-bottom: 0;
}

.achievement-year {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

.achievement-year::before {
    content: attr(data-year);
    position: absolute;
    left: -4.5rem;
    top: -3px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.achievement-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
}

.achievement-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,192L48,197.3C96,203,192,213,288,202.7C384,192,480,160,576,170.7C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-hero p {
    font-size: 1.5rem;
    font-weight: 300;
}

.contact-main {
    padding: 5rem 0;
    background-color: white;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-info {
    flex: 1 1 350px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

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

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.contact-form-container {
    flex: 1 1 450px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--bg-dark);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.2);
}

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

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

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

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    flex: 1;
    padding-right: 1rem;
}

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

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

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

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

.faq-answer p {
    line-height: 1.8;
    color: var(--text-light);
}

/* Cart Page Styles */
.cart-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.cart-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.cart-empty svg {
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

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

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

.continue-shopping {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

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

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

.cart-item-image {
    flex: 0 0 150px;
    height: 150px;
}

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

.cart-item-details {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.cart-item-price {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

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

.cart-item-quantity label {
    margin-right: 0.8rem;
    font-weight: 600;
}

.cart-item-quantity .quantity-controls {
    margin-right: 1.5rem;
}

.remove-item {
    color: var(--error-color);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item svg {
    margin-right: 0.5rem;
}

.remove-item:hover {
    color: #b71c1c;
}

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

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

.cart-total h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-dark);
}

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

.summary-row span:first-child {
    color: var(--text-light);
}

.summary-row span:last-child {
    font-weight: 600;
}

.total-row {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-dark);
    font-size: 1.3rem;
}

.total-row span:first-child {
    color: var(--text-color);
    font-weight: 600;
}

.total-row span:last-child {
    color: var(--primary-color);
    font-weight: 700;
}

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

.checkout-button {
    flex: 1;
    display: block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

.continue-shopping {
    flex: 1;
    display: block;
    padding: 0.8rem 1.5rem;
    background-color: var(--bg-light);
    color: var(--text-color);
    text-align: center;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid var(--bg-dark);
}

.continue-shopping:hover {
    background-color: var(--bg-dark);
    color: var(--text-color);
}

.cart-recommendations {
    padding: 5rem 0;
    background-color: white;
}

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

.cart-recommendations h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.recommendations-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.recommendation-item {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    flex: 1 1 250px;
    max-width: 300px;
    transition: var(--transition);
}

.recommendation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.recommendation-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.recommendation-item h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.1rem;
}

.recommendation-price {
    padding: 0 1rem 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.recommendation-item .view-button {
    margin: 0 1rem 1rem;
    width: calc(100% - 2rem);
}

/* Checkout Page Styles */
.checkout-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

.checkout-container h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.checkout-form-container {
    flex: 1 1 600px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
}

.checkout-form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

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

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.form-row .form-group {
    flex: 1 1 250px;
}

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

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--bg-dark);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: var(--transition);
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(108, 92, 231, 0.2);
}

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

.checkout-form .checkbox-group input {
    width: auto;
    margin: 0.3rem 0.8rem 0 0;
}

.checkout-form .checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.4;
}

.checkout-form .checkbox-group label a {
    text-decoration: underline;
}

.complete-order-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 2rem;
}

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

.order-summary {
    flex: 1 1 400px;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--box-shadow);
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

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

.checkout-item {
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-dark);
}

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

.checkout-item-image {
    flex: 0 0 80px;
    height: 80px;
    margin-right: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

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

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

.checkout-item-price {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-light);
}

.checkout-item-price span:last-child {
    font-weight: 600;
    color: var(--text-color);
}

.summary-totals {
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-dark);
    margin-bottom: 2rem;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: rgba(0, 184, 148, 0.1);
    color: var(--success-color);
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.secure-icon {
    margin-right: 0.8rem;
}

.secure-checkout p {
    font-weight: 600;
}

.order-policies {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.order-policies p {
    margin-bottom: 1rem;
}

.order-policies a {
    text-decoration: underline;
}

/* Success Page Styles */
.success-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

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

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

.success-container h1 {
    font-size: 2.5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

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

.success-info {
    margin-bottom: 2.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.success-info p {
    margin-bottom: 1rem;
}

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

.post-purchase {
    padding: 5rem 0;
    background-color: white;
}

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

.post-purchase h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.next-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.step {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .nav-links {
        width: 60%;
    }
}

@media screen and (max-width: 768px) {
    .burger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        right: 0;
        height: 92vh;
        top: var(--header-height);
        background-color: var(--bg-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 10;
    }
    
    .nav-links li {
        opacity: 0;
        margin: 1.5rem 0;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .advantages h2,
    .about-products h2,
    .unknown-facts h2,
    .products h2 {
        font-size: 2rem;
    }
    
    .product-detail-container {
        gap: 2rem;
    }
    
    .product-detail-info h1 {
        font-size: 2rem;
    }
    
    .product-detail-info .product-price {
        font-size: 1.8rem;
    }
    
    .tab-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p,
    .contact-hero p {
        font-size: 1.2rem;
    }
    
    .team-member {
        max-width: 100%;
    }
    
    .cart-container h1,
    .checkout-container h1 {
        font-size: 2rem;
    }
    
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        height: 200px;
        flex: auto;
    }
    
    .success-container h1 {
        font-size: 2rem;
    }
    
    .success-message {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .nav-links {
        width: 70%;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .advantages h2,
    .about-products h2,
    .unknown-facts h2,
    .products h2 {
        font-size: 1.8rem;
    }
    
    .advantage-card,
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .fact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .fact-number {
        margin: 0 auto;
    }
    
    .product-detail-info h1 {
        font-size: 1.8rem;
    }
    
    .product-detail-info .product-price {
        font-size: 1.5rem;
    }
    
    .tab-button {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .about-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p,
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .contact-form-container,
    .checkout-form-container,
    .order-summary {
        padding: 1.5rem;
    }
    
    .cart-container h1,
    .checkout-container h1 {
        font-size: 1.8rem;
    }
    
    .success-container h1 {
        font-size: 1.8rem;
    }
    
    .success-message {
        font-size: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cart-actions,
    .cookie-buttons {
        flex-direction: column;
    }
}

/* Animation for fade-in elements */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Animation for nav links */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
