/* Base Styles */
:root {
    --primary-color: #ff6b35;
    --secondary-color: #2b50aa;
    --dark-color: #1e2a45;
    --light-color: #f8f9fa;
    --accent-color: #61d4b3;
    --text-color: #333;
    --border-color: #e1e1e1;
    --error-color: #dc3545;
    --success-color: #28a745;
    --border-radius: 5px;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

button, .btn-primary, .btn-secondary {
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #e05a28;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #234191;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-view {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: var(--border-radius);
    display: inline-block;
}

.btn-view:hover {
    background-color: #234191;
    color: white;
}

.btn-add-to-cart {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--border-radius);
}

.btn-add-to-cart:hover {
    background-color: #e05a28;
}

.btn-buy-now {
    background-color: var(--success-color);
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--border-radius);
}

.btn-buy-now:hover {
    background-color: #218838;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.main-nav {
    display: flex;
}

.main-nav li {
    margin: 0 15px;
}

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

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

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

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

.header-actions {
    display: flex;
    align-items: center;
}

.cart-icon {
    position: relative;
    margin-left: 20px;
    color: var(--dark-color);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

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

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
}

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

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin: 0 10px;
    color: #aaa;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #111827 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Advantages Section */
.advantages {
    padding: 60px 0;
    background-color: white;
    text-align: center;
    margin-bottom: 60px;
}

.advantages h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

.advantage-item {
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: #f8f9fa;
    transition: var(--transition);
}

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

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

.advantage-item .icon svg {
    color: white;
}

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

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

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

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

.stat-label {
    font-size: 16px;
    color: var(--dark-color);
}

.cta-container {
    margin-top: 30px;
}

/* About Products Section */
.about-products {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-bottom: 60px;
}

.about-products h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.about-products p {
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.7;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.highlight-item {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.highlight-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

/* Daily Content Section */
.daily-content {
    padding: 40px 0;
    background-color: white;
    margin-bottom: 60px;
}

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

.tip-of-day, .this-day-history {
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.tip-of-day {
    background-color: #f0f8ff;
    border-left: 4px solid var(--secondary-color);
}

.this-day-history {
    background-color: #fff8f0;
    border-left: 4px solid var(--primary-color);
}

.tip-of-day h3, .this-day-history h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Products Section */
.products {
    padding: 60px 0;
}

.products h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

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

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

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

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-description {
    color: #666;
    margin-bottom: 15px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-actions {
    display: flex;
    justify-content: space-between;
}

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

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-image-large {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.product-image-large img {
    width: 100%;
    height: auto;
}

.product-info h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-meta div {
    background-color: #f0f4f8;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

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

.product-features h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

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

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

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

.quantity-selector label {
    margin-right: 10px;
}

.quantity-selector select {
    padding: 8px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.product-guarantee {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 10px;
}

.guarantee-item svg {
    color: var(--success-color);
    margin-right: 5px;
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

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

.cart-section h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

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

.cart-empty svg {
    color: #aaa;
    margin-bottom: 20px;
}

.cart-empty p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

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

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

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.cart-item-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

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

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

.cart-item-quantity button {
    background-color: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    font-size: 16px;
    cursor: pointer;
}

.cart-item-quantity input {
    width: 40px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 5px;
}

.cart-item-remove {
    background-color: #f8f9fa;
    border: none;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    color: var(--error-color);
}

.cart-item-remove:hover {
    background-color: #fee2e2;
}

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

.cart-totals {
    margin-bottom: 20px;
}

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

.cart-total-row.total {
    font-weight: 700;
    font-size: 20px;
    border-bottom: none;
    margin-top: 10px;
    color: var(--dark-color);
}

.cart-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

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

.checkout-section h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

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

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

.checkout-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 14px;
}

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

.terms-checkbox input {
    width: auto;
    margin-right: 10px;
}

.terms-checkbox label {
    margin-bottom: 0;
}

.checkout-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

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

.order-summary h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.checkout-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item-image {
    width: 80px;
    margin-right: 15px;
}

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

.checkout-item-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.checkout-item-price {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.checkout-totals {
    margin-top: 20px;
}

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

.checkout-total-row.total {
    font-weight: 700;
    font-size: 20px;
    border-bottom: none;
    margin-top: 10px;
    color: var(--dark-color);
}

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

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

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

.secure-checkout p {
    font-size: 14px;
    color: #666;
}

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

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

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

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

.success-message p {
    font-size: 18px;
    margin-bottom: 30px;
}

.next-steps {
    text-align: left;
    margin: 30px 0;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: var(--border-radius);
}

.next-steps h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.next-steps ol {
    padding-left: 20px;
}

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

.contact-info {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: left;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

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

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

.contact-section h1 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

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

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

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-card {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

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

.contact-icon svg {
    color: white;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

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

.contact-form-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.faq-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    border-radius: var(--border-radius);
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
}

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

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

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #111827 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-hero .subtitle {
    font-size: 18px;
}

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

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

.about-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

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

.about-features {
    margin: 30px 0;
}

.about-features li {
    display: flex;
    margin-bottom: 20px;
}

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

.feature-icon svg {
    color: white;
    width: 20px;
    height: 20px;
}

.feature-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.stat-title {
    font-size: 16px;
    color: var(--dark-color);
}

.team-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

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

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

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

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

.team-member p {
    padding: 0 20px;
    margin-bottom: 10px;
}

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

.social-links {
    display: flex;
    padding: 0 20px 20px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: var(--dark-color);
    transition: var(--transition);
}

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

.testimonials {
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

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

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    line-height: 1;
    color: rgba(0, 0, 0, 0.05);
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-color);
}

.author-title {
    font-size: 14px;
    color: #666;
}

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

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

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

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

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

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

.social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

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

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

.copyright {
    font-size: 14px;
    color: #aaa;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 15px;
    display: none;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    text-align: center;
}

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

.cookie-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    gap: 10px;
}

.btn-accept {
    background-color: var(--success-color);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

.btn-customize {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

.btn-decline {
    background-color: #f0f0f0;
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

.cookie-content a {
    font-size: 14px;
    text-decoration: underline;
}

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

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-nav {
        justify-content: center;
    }
    
    .header-actions {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-item {
        margin-bottom: 20px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .checkout-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-view, .btn-add-to-cart {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}
