/* Base Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #f1c40f;
    --text-color: #333;
    --light-color: #f1faee;
    --dark-color: #1d3557;
    --gray-color: #ddd;
    --success-color: #2ecc71;
    --error-color: #e74c3c;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

/* Dark Theme Variables */
body.dark-theme {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --text-color: #f1faee;
    --light-color: #292f36;
    --dark-color: #1a1e23;
    --gray-color: #3a3f44;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

/* Theme Toggle */
#theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

#theme-toggle button {
    background-color: var(--secondary-color);
    color: var(--light-color);
    border: none;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

#theme-toggle button:hover {
    background-color: var(--primary-color);
}

/* Header */
header {
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.logo img {
    height: 60px;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 600;
    color: var(--text-color);
    padding: 10px 0;
    position: relative;
}

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

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

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

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

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

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

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

.primary-btn:hover {
    background-color: #d32f2f;
    color: white;
}

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

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

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: white;
    padding: 100px 0;
    text-align: center;
    background-image: linear-gradient(rgba(29, 53, 87, 0.9), rgba(29, 53, 87, 0.9)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--light-color);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

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

body.dark-theme .benefit-item {
    background-color: var(--gray-color);
}

.benefit-item:hover {
    transform: translateY(-10px);
}

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

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

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

.stat-item {
    text-align: center;
    padding: 20px;
}

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

.cta {
    text-align: center;
}

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

body.dark-theme .about-products {
    background-color: var(--dark-color);
}

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

.about-products p {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.quality-assurance {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid var(--primary-color);
}

body.dark-theme .quality-assurance {
    background-color: var(--gray-color);
}

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

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

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

body.dark-theme .product-card {
    background-color: var(--gray-color);
}

.product-card:hover {
    transform: translateY(-10px);
}

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

.product-card h3 {
    padding: 20px 20px 10px;
}

.product-card .price {
    color: var(--primary-color);
    font-weight: bold;
    padding: 0 20px 10px;
}

.product-card .description {
    padding: 0 20px 20px;
    color: #666;
}

body.dark-theme .product-card .description {
    color: #ddd;
}

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

.product-card .buttons .btn {
    flex: 1;
    padding: 10px;
}

/* Poll Section */
.poll-section {
    background-color: white;
    padding: 80px 0;
}

body.dark-theme .poll-section {
    background-color: var(--dark-color);
}

.poll-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.poll {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

body.dark-theme .poll {
    background-color: var(--gray-color);
}

.poll h3 {
    margin-bottom: 20px;
    text-align: center;
}

.poll-option {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.poll-option input {
    margin-right: 10px;
}

#poll-results {
    margin-top: 30px;
}

.result-bar {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.result-bar span {
    width: 120px;
}

.result-bar span:last-child {
    width: 50px;
    text-align: right;
}

.bar {
    flex: 1;
    height: 20px;
    background-color: #eee;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 0 10px;
}

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

#poll-results p {
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

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

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

.footer-logo {
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-contact h3, .footer-links h3, .footer-legal h3, .footer-social h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-links ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a, .footer-legal a {
    color: #ddd;
}

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

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

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

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

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 15px;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
}

.cookie-link {
    margin-left: 15px;
    text-decoration: underline;
}

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

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

/* Product Detail Page */
.product-detail {
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 30px;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

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

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-color);
}

.stock {
    color: var(--success-color);
    font-weight: bold;
}

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

.product-description p {
    margin-bottom: 15px;
}

.product-description h3 {
    margin: 20px 0 10px;
}

.product-description ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.product-description ul li {
    margin-bottom: 5px;
    list-style-type: disc;
}

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

.quantity-selector {
    display: flex;
    align-items: center;
    width: 120px;
    margin-top: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: var(--light-color);
    border: 1px solid var(--gray-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

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

.product-meta-info {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 8px;
}

body.dark-theme .product-meta-info {
    background-color: var(--gray-color);
}

.product-meta-info p {
    margin-bottom: 10px;
}

.product-tabs {
    margin-bottom: 60px;
}

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

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

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

.tab-pane {
    display: none;
}

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

.review {
    border-bottom: 1px solid var(--gray-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

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

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

.reviewer {
    font-weight: bold;
}

.review-date {
    color: #777;
}

body.dark-theme .review-date {
    color: #aaa;
}

.related-products h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}

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

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

.empty-cart {
    text-align: center;
    padding: 60px 0;
}

.empty-cart svg {
    color: var(--gray-color);
    margin: 0 auto 30px;
}

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

.empty-cart p {
    margin-bottom: 30px;
    color: #777;
}

body.dark-theme .empty-cart p {
    color: #aaa;
}

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

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

.cart-table th, .cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-color);
}

.cart-table th {
    background-color: var(--light-color);
}

body.dark-theme .cart-table th {
    background-color: var(--gray-color);
}

.cart-table img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

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

.cart-product-info h3 {
    margin-bottom: 5px;
}

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

.cart-quantity input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid var(--gray-color);
    margin: 0 5px;
}

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

.summary-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

body.dark-theme .summary-box {
    background-color: var(--gray-color);
}

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

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

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

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.continue-shopping {
    padding: 60px 0;
    background-color: var(--light-color);
}

.continue-shopping h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

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

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

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

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

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

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

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    background-color: white;
}

body.dark-theme .form-group input,
body.dark-theme .form-group select,
body.dark-theme .form-group textarea {
    background-color: var(--dark-color);
    color: var(--light-color);
    border-color: #444;
}

.form-group textarea {
    resize: vertical;
}

.checkout-items {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-color);
}

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

.secure-checkout {
    margin-top: 20px;
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

body.dark-theme .secure-checkout {
    background-color: var(--gray-color);
}

.secure-checkout p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.secure-checkout p:first-child {
    font-weight: bold;
}

/* Success Page */
.success-section {
    padding: 80px 0;
    text-align: center;
}

.success-message {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

body.dark-theme .success-message {
    background-color: var(--gray-color);
}

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

.success-message h1 {
    margin-bottom: 20px;
}

.success-message p {
    margin-bottom: 15px;
}

.success-next-steps {
    margin: 40px 0;
    text-align: left;
}

.success-next-steps h2 {
    margin-bottom: 15px;
}

.success-next-steps ul {
    list-style-type: disc;
    margin-left: 20px;
}

.success-next-steps li {
    margin-bottom: 10px;
}

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

.recommendations {
    padding: 60px 0;
    background-color: var(--light-color);
}

.recommendations h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* About Us Page */
.page-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
}

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

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.about-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-content li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-stats .stat {
    background-color: var(--light-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

body.dark-theme .about-stats .stat {
    background-color: var(--gray-color);
}

.about-stats .stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 0 10px;
}

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

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

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

body.dark-theme .team-member {
    background-color: var(--gray-color);
}

.team-member:hover {
    transform: translateY(-10px);
}

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

.team-member h3 {
    padding: 20px 20px 5px;
}

.team-member p {
    padding: 0 20px 5px;
}

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

.social-links {
    display: flex;
    padding: 15px 20px 20px;
    gap: 10px;
}

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

body.dark-theme .social-links a {
    background-color: var(--dark-color);
}

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

.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.testimonial {
    min-width: 300px;
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    position: relative;
}

body.dark-theme .testimonial {
    background-color: var(--gray-color);
}

.quote {
    margin-bottom: 20px;
}

.testimonial p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn:hover {
    background-color: var(--light-color);
}

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

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

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-item .icon {
    background-color: var(--light-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

body.dark-theme .contact-item .icon {
    background-color: var(--gray-color);
}

.contact-item h3 {
    margin-bottom: 5px;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

body.dark-theme .contact-form {
    background-color: var(--gray-color);
}

.form-success {
    text-align: center;
    padding: 40px;
}

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

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

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

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

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

.faq-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

body.dark-theme .faq-item {
    background-color: var(--gray-color);
}

.faq-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .product-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .benefits h2, .products h2, .team-section h2, .testimonials h2, .faq-section h2 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .tab-header {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 10px;
    }
}

@media screen and (max-width: 576px) {
    header .container {
        flex-direction: column;
        padding: 10px;
    }
    
    header {
        height: auto;
        position: relative;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }
    
    .checkout-form {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .cart-table, .cart-table thead, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
        display: block;
    }
    
    .cart-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .cart-table tr {
        margin-bottom: 20px;
        border: 1px solid var(--gray-color);
        border-radius: 8px;
    }
    
    .cart-table td {
        border: none;
        border-bottom: 1px solid var(--gray-color);
        position: relative;
        padding-left: 50%;
    }
    
    .cart-table td:before {
        position: absolute;
        top: 15px;
        left: 15px;
        width: 45%;
        white-space: nowrap;
        font-weight: bold;
    }
    
    .cart-table td:nth-of-type(1):before { content: "Product"; }
    .cart-table td:nth-of-type(2):before { content: "Price"; }
    .cart-table td:nth-of-type(3):before { content: "Quantity"; }
    .cart-table td:nth-of-type(4):before { content: "Total"; }
    .cart-table td:nth-of-type(5):before { content: "Actions"; }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
