/* Base Styles */
:root {
    --primary-color: #3e64ff;
    --secondary-color: #2d4cc8;
    --accent-color: #ff6b6b;
    --text-color: #333333;
    --text-light: #6e7c90;
    --bg-color: #f9f9f9;
    --bg-dark: #343a40;
    --bg-light: #ffffff;
    --border-color: #e1e5ea;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --transition: all 0.3s ease;
}

* {
    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;
    font-size: 16px;
}

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

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

a:hover {
    color: var(--secondary-color);
}

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

ul {
    list-style: none;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Header Styles */
header {
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

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

.main-nav a:hover:after, .main-nav a.active:after {
    width: 100%;
}

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

.header-cart {
    position: relative;
}

.cart-icon {
    display: flex;
    color: var(--text-color);
    position: relative;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    padding: 100px 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" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.05)" width="50" height="50" x="0" y="0" /><rect fill="rgba(255,255,255,0.05)" width="50" height="50" x="50" y="50" /></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.hero .btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

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

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

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

.advantage-item {
    text-align: center;
    padding: 30px;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.advantage-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.advantage-item h3 {
    margin-bottom: 15px;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 60px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

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

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

.cta-block {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    border-radius: var(--radius-lg);
    color: white;
}

.cta-block h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.75rem;
}

.cta-block .btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: none;
}

.cta-block .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* About Products Section */
.about-products {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

.about-products p {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: justify;
}

.quality-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.badge svg {
    color: var(--primary-color);
}

.badge span {
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

.testimonial-item {
    background-color: var(--bg-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-content h4 {
    margin-bottom: 5px;
}

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

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

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

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

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

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

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
}

.product-actions button {
    flex: 1;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: none;
}

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

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

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

.btn-buy-now:hover {
    opacity: 0.9;
}

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

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

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.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 p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

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

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

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

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    color: white;
    padding: 15px;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.btn-cookie-accept, .btn-cookie-customize, .btn-cookie-decline {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

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

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

.cookie-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-link a {
    color: white;
    text-decoration: underline;
}

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

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

/* Product Detail Page */
.breadcrumb {
    background-color: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    position: relative;
    padding-right: 25px;
    margin-right: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: 0;
    color: var(--text-light);
}

.breadcrumb-list li:last-child {
    color: var(--text-color);
    font-weight: 600;
}

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

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

.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-image-container {
    position: sticky;
    top: 100px;
}

.product-detail-image {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

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

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 10px;
}

.stars {
    display: flex;
    color: #ffc107;
}

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

.product-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.product-description {
    margin-bottom: 30px;
}

.product-features {
    margin: 20px 0;
    padding-left: 20px;
}

.product-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.product-quantity {
    margin-bottom: 25px;
}

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

.quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.quantity-selector input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.switch-options, .size-options {
    margin-bottom: 25px;
}

.switch-options h4, .size-options h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

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

.option-btn {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.option-btn:hover, .option-btn.active {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions button {
    flex: 1;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.btn-buy-now:hover {
    opacity: 0.9;
}

.product-meta {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.product-sku, .product-category, .product-tags {
    margin-bottom: 5px;
}

.product-sku span, .product-category span, .product-tags span {
    font-weight: 600;
    margin-right: 5px;
}

.product-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-share span {
    font-weight: 600;
}

/* Product Tabs */
.product-tabs {
    padding: 60px 0;
    background-color: var(--bg-color);
}

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

.tab-btn {
    padding: 15px 30px;
    font-weight: 600;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.tab-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

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

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.specs-table tr:nth-child(odd) {
    background-color: var(--bg-light);
}

.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.specs-table td:first-child {
    font-weight: 600;
    width: 30%;
}

.review-summary {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

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

.big-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.review-breakdown {
    flex: 1;
}

.breakdown-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.breakdown-row .stars {
    width: 80px;
    font-size: 0.9rem;
}

.bar-container {
    flex: 1;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 5px;
    margin: 0 15px;
    overflow: hidden;
}

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

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

.user-reviews {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review {
    padding: 25px;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    box-shadow: var(--shadow-sm);
}

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

.reviewer {
    font-weight: 600;
}

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

.review-title {
    font-size: 1.1rem;
    margin: 10px 0;
}

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

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

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

/* About Page */
.page-header {
    background: linear-gradient(135deg, #3a7bd5, #00d2ff);
    color: white;
    text-align: center;
    padding: 60px 0;
    position: relative;
}

.page-header::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" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.05)" width="50" height="50" x="0" y="0" /><rect fill="rgba(255,255,255,0.05)" width="50" height="50" x="50" y="50" /></svg>');
    background-size: 100px 100px;
    opacity: 0.5;
}

.page-header h1 {
    color: white;
    position: relative;
}

.page-header p {
    position: relative;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

.about-content h3 {
    margin: 30px 0 15px;
}

.our-values {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.our-values h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.value-item {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.value-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

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

.team-member p {
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

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

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

.partners-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

.partners-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: 50px;
}

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

.partner-item svg {
    margin-bottom: 15px;
    color: var(--text-light);
}

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

.testimonials-about {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

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

.testimonial-item {
    padding: 30px;
    background-color: var(--bg-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

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

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

.social-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--bg-color);
    border-radius: var(--radius-md);
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
}

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

/* Contact Page */
.contact-grid {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.contact-info > p {
    margin-bottom: 40px;
    color: var(--text-light);
}

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

.info-icon {
    color: var(--primary-color);
}

.info-text h4 {
    margin-bottom: 5px;
}

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

.contact-form h2 {
    margin-bottom: 25px;
}

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

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

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

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    font-family: var(--font-main);
    font-size: 1rem;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

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

.checkbox-group input[type="checkbox"] {
    margin-top: 3px;
}

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

.faq-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

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

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

.faq-item h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

.social-icons-large {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.social-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.social-icon-item:hover {
    transform: translateY(-5px);
}

.social-icon-item svg {
    color: var(--primary-color);
}

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

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

.success-content {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.success-content svg {
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-content h3 {
    margin-bottom: 15px;
}

.success-content p {
    margin-bottom: 25px;
}

/* Cart Page */
.cart-section {
    padding: 80px 0;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

.empty-cart h2 {
    margin-bottom: 15px;
}

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

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

.cart-items {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

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

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

.cart-item-details {
    flex: 1;
    padding: 0 20px;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.cart-item-actions {
    display: flex;
    gap: 10px;
}

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

.cart-item-remove:hover {
    opacity: 0.8;
}

.cart-summary {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.recommended-products {
    padding: 80px 0;
    background-color: var(--bg-color);
}

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

/* Checkout Page */
.checkout-section {
    padding: 80px 0;
}

.checkout-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

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

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

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

.progress-step.completed .step-number {
    background-color: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

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

.progress-step.active .step-text, .progress-step.completed .step-text {
    color: var(--text-color);
}

.progress-connector {
    flex: 1;
    height: 2px;
    background-color: var(--border-color);
    margin: 0 15px;
    position: relative;
    top: -15px;
}

.progress-connector.active, .progress-connector.completed {
    background-color: var(--primary-color);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
}

.checkout-form {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

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

.order-summary {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    margin-bottom: 25px;
}

.order-items {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.order-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

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

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

.order-item-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.order-item-quantity-price {
    font-size: 0.9rem;
    color: var(--text-light);
}

.summary-details {
    margin-bottom: 30px;
}

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-color);
    border-radius: var(--radius-sm);
}

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

.secure-checkout p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.btn-place-order {
    width: 100%;
    margin-bottom: 15px;
}

/* Success Page */
.success-section {
    padding: 80px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-container {
    max-width: 800px;
    margin: 0 auto;
}

.success-content {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.success-icon {
    color: var(--success-color);
    margin-bottom: 25px;
}

.success-message {
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.email-confirmation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
    background-color: var(--bg-color);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.email-confirmation svg {
    color: var(--primary-color);
}

.email-confirmation p {
    margin-bottom: 0;
}

.what-next {
    margin-bottom: 40px;
}

.what-next h3 {
    margin-bottom: 25px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
    padding: 15px;
    background-color: var(--bg-color);
    border-radius: var(--radius-sm);
}

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

.step-details h4 {
    margin-bottom: 5px;
}

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

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-image-container {
        position: static;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .advantages-grid, .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .advantages-grid {
        gap: 20px;
    }
    
    .stats-row {
        gap: 30px;
    }
    
    .about-grid, .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonial-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .advantages-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .success-content {
        padding: 30px 20px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cart-item {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
}
