/* Global Styles */
:root {
    --primary-color: #44aa33;
    --primary-dark: #307022;
    --primary-light: #59c146;
    --secondary-color: #5b9bd5;
    --accent-color: #f7df1e;
    --text-color: #333333;
    --text-light: #666666;
    --text-dark: #222222;
    --background-color: #ffffff;
    --background-light: #f9f9f9;
    --background-dark: #f0f0f0;
    --border-color: #e0e0e0;
    --border-dark: #cccccc;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;
    --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-body: 'Open Sans', 'Helvetica Neue', sans-serif;
    --border-radius: 4px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

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

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

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

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

.btn:active {
    transform: translateY(0);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

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

.hidden {
    display: none !important;
}

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

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px var(--shadow-color);
    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;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

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

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

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

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

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

.cart-link svg {
    margin-right: 5px;
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

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

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

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

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

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

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

.advantage-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
    transition: transform var(--transition-speed);
}

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

.advantage-card .icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-card .icon svg {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
}

.advantage-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.advantage-card p {
    color: var(--text-light);
}

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

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

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

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

.cta {
    text-align: center;
    margin-top: 30px;
}

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

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

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quality-guarantee, .brand-story {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 30px 0;
}

.quality-guarantee h3, .brand-story h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

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

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

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform var(--transition-speed);
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

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

.product-info h3 a {
    color: var(--text-dark);
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

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

.description {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
    height: 3em;
    overflow: hidden;
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.9rem;
}

/* Daily Tip Section */
.daily-tip {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
}

.daily-tip h2 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.tip-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
}

.time-display {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--text-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 {
    max-width: 120px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: #ccc;
    font-size: 0.9rem;
}

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

.footer-links ul, .footer-policy ul {
    list-style: none;
}

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

.footer-links ul li a, .footer-policy ul li a {
    color: #ccc;
    transition: color var(--transition-speed);
}

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

.footer-contact p {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

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

.social-icons a {
    color: #ccc;
    transition: color var(--transition-speed);
}

.social-icons a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.95);
    color: white;
    padding: 15px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1 1 60%;
    min-width: 280px;
    font-size: 0.9rem;
}

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

.cookie-link {
    color: #ccc;
    margin-left: 10px;
    font-size: 0.9rem;
}

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

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-100px);
    opacity: 0;
    transition: transform var(--transition-speed), opacity var(--transition-speed);
    z-index: 1100;
}

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

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

.breadcrumb {
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

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

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

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

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

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

.product-meta .price {
    font-size: 1.8rem;
    margin: 0;
}

.stock {
    padding: 5px 10px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    font-weight: 600;
}

.in-stock {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
}

.out-of-stock {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
}

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

.product-description h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

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

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

.features li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.quantity {
    margin-bottom: 20px;
}

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

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

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

.quantity input {
    width: 60px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 1rem;
}

.action-buttons {
    display: flex;
    gap: 15px;
}

.action-buttons .btn {
    flex: 1;
}

.product-meta-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-light);
}

.meta-item svg {
    margin-right: 10px;
    color: var(--primary-color);
}

.product-options {
    margin: 20px 0;
}

.product-options h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.option-select, .color-select {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.option, .color-option {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: border-color var(--transition-speed);
}

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

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid var(--border-color);
}

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

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

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

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

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

.tab-content {
    display: none;
}

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

.tab-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tab-content h4 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--text-dark);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.review-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.rating-text {
    font-weight: 600;
    font-size: 1.2rem;
}

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

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

.review-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.review-header .stars {
    font-size: 1.2rem;
}

.reviewer {
    font-weight: 600;
}

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

.review h4 {
    margin: 10px 0;
}

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

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

/* Cart Page */
.page-header {
    background-color: var(--background-light);
    padding: 40px 0;
    text-align: center;
}

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

.cart-section {
    padding: 60px 0;
}

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

.empty-cart-message {
    max-width: 500px;
    margin: 0 auto;
}

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

.empty-cart-message h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

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

.cart-table th {
    text-align: left;
    padding: 15px;
    background-color: var(--background-light);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.product-col {
    width: 50%;
}

.product-info {
    display: flex;
    align-items: center;
}

.product-info .product-image {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    flex-shrink: 0;
}

.product-info .product-details h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.item-variant {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

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

.quantity-col .quantity-controls {
    margin: 0;
}

.action-col {
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color var(--transition-speed);
}

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

.cart-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.coupon {
    display: flex;
    gap: 10px;
}

.coupon input {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    width: 200px;
}

.cart-summary {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    margin-left: auto;
}

.cart-summary h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

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

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

.summary-row:last-child {
    border-bottom: none;
}

.discount-row {
    color: var(--success-color);
}

.total-row {
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 2px solid var(--border-dark);
    margin-top: 10px;
    padding-top: 20px;
}

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

.continue-shopping {
    text-align: center;
}

.continue-shopping a {
    display: inline-flex;
    align-items: center;
    color: var(--text-light);
    transition: color var(--transition-speed);
}

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

.continue-shopping svg {
    margin-right: 10px;
}

.cart-related {
    background-color: white;
}

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

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

.checkout-details h2, .order-summary h2 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

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

.terms-agreement input, .checkbox-group input {
    width: auto;
    margin-top: 5px;
}

.checkout-actions {
    margin-top: 30px;
}

.checkout-actions .btn {
    margin-bottom: 15px;
}

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

.order-items {
    margin-bottom: 30px;
}

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

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

.item-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.item-image {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.item-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.item-meta {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: var(--text-light);
}

.item-price {
    font-weight: 600;
    margin-left: 15px;
}

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

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.security-badge {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.security-badge svg {
    margin-right: 10px;
    color: var(--primary-color);
}

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

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

.success-icon {
    margin-bottom: 30px;
}

.success-icon svg {
    color: var(--success-color);
    width: 80px;
    height: 80px;
}

.success-message h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--success-color);
}

.success-message p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.success-details {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0;
    text-align: left;
}

.order-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
}

.order-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

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

.step-icon {
    width: 50px;
    height: 50px;
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.timeline-step.active .step-icon {
    background-color: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.step-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-step.active .step-label {
    color: var(--success-color);
}

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

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

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

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

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

.contact-info h2, .contact-form h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(68, 170, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.social-connect {
    margin-top: 40px;
}

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

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

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

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

.contact-form {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.form-actions {
    margin-top: 20px;
}

.faq-section {
    margin-top: 60px;
}

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

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

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

.faq-toggle {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed);
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer ul li {
    margin-bottom: 8px;
}

.faq-item.active .faq-answer {
    padding: 20px;
}

/* About Page */
.about-story {
    padding: 60px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.story-text p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

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

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

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

.mission-statement p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
}

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

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    text-align: center;
}

.value-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

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

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-team {
    padding: 60px 0;
}

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

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

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.team-member {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform var(--transition-speed);
}

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

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

.team-member h3 {
    margin: 20px 20px 5px;
    font-size: 1.3rem;
}

.team-member p {
    margin: 0 20px 15px;
    line-height: 1.6;
}

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

.member-social {
    display: flex;
    gap: 10px;
    margin: 0 20px 20px;
}

.member-social a {
    color: var(--text-light);
    transition: color var(--transition-speed);
}

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

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

.about-achievements h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

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

.achievement-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    align-items: center;
}

.achievement-icon {
    margin-right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgba(68, 170, 51, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.achievement-content h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.about-testimonials {
    padding: 60px 0;
}

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

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow-color);
    margin: 0 auto;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    text-align: right;
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/logo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

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

.newsletter-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .story-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: left var(--transition-speed);
        z-index: 1000;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 20px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .advantage-grid, .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .coupon {
        width: 100%;
    }
    
    .coupon input {
        flex: 1;
    }
    
    .product-col {
        width: auto;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .order-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .order-timeline::before {
        top: 25px;
        bottom: 25px;
        left: 25px;
        right: auto;
        width: 2px;
        height: auto;
    }
    
    .timeline-step {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input, .newsletter-form button {
        width: 100%;
        border-radius: var(--border-radius);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .achievement-card {
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-icon {
        margin: 0 0 15px;
    }
}
