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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7B32B;
    --text-color: #333;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --gray: #6C757D;
    --success: #4CAF50;
    --border-radius: 8px;
}

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

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

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

.hero p {
    font-size: 20px;
    opacity: 0.9;
}

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

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.stat-item h3 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--gray);
}

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

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

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

/* Products Section */
.featured-products,
.daily-pick {
    padding: 80px 0;
}

.featured-products h2,
.daily-pick h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

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

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-info h3 a {
    text-decoration: none;
    color: var(--secondary-color);
}

.product-description {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 14px;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background-color: #003A6B;
}

.btn-large {
    width: 100%;
    padding: 15px;
}

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

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

.product-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-content h1 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-price-large {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 30px;
}

.product-description-full {
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-description-full h3 {
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

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

.product-description-full li {
    margin-bottom: 8px;
}

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

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

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

.quantity-selector input {
    width: 80px;
    padding: 10px;
    border: 2px solid #DDD;
    border-radius: var(--border-radius);
    font-size: 16px;
}

/* Cart Page */
.cart-page {
    padding: 60px 0;
    min-height: 60vh;
}

.cart-page h1 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

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

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

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

.cart-item-details h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

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

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

.cart-item-actions button {
    padding: 8px 15px;
    border: none;
    background-color: var(--gray);
    color: var(--white);
    border-radius: var(--border-radius);
    cursor: pointer;
}

.cart-item-actions button:hover {
    background-color: #5A6268;
}

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

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

.empty-cart h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.cart-summary {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #DDD;
}

.summary-row.total {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    border-bottom: none;
    padding-top: 20px;
}

.cart-summary .btn-primary {
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.checkout-page h1 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

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

.checkout-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #DDD;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.order-summary h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #DDD;
}

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

/* Success Page */
.success-page {
    padding: 80px 0;
    min-height: 60vh;
}

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

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

.success-content h1 {
    font-size: 42px;
    color: var(--success);
    margin-bottom: 20px;
}

.success-message {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.success-info {
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

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

.contact-page h1 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
}

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

.contact-info h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

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

.contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 8px;
}

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

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-form-container h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

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

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

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}

.about-intro h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray);
}

.about-story,
.about-values,
.team-section,
.about-cta {
    margin-bottom: 80px;
}

.about-story h2,
.about-values h2,
.team-section h2,
.about-cta h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

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

.value-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.team-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray);
}

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

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

.team-member img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member h3 {
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-size: 24px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--gray);
    line-height: 1.6;
}

.about-cta {
    background-color: var(--light-bg);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.about-cta p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

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

/* Blog Page */
.blog-page {
    padding: 60px 0;
}

.blog-hero {
    text-align: center;
    margin-bottom: 60px;
}

.blog-hero h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.blog-hero p {
    font-size: 18px;
    color: var(--gray);
}

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

.blog-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card a {
    text-decoration: none;
    color: inherit;
}

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

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-date,
.blog-category {
    color: var(--gray);
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-content h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.blog-content p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
}

/* Blog Post Page */
.blog-post {
    padding: 60px 0;
}

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

.post-header {
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: var(--gray);
    font-size: 14px;
}

.post-author,
.post-category {
    font-weight: 600;
}

.post-category {
    color: var(--primary-color);
}

.post-image {
    margin-bottom: 40px;
}

.post-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.post-body {
    line-height: 1.8;
}

.post-body .lead {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
    font-weight: 500;
}

.post-body h2 {
    color: var(--secondary-color);
    margin: 40px 0 20px;
    font-size: 32px;
}

.post-body h3 {
    color: var(--secondary-color);
    margin: 30px 0 15px;
    font-size: 24px;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul,
.post-body ol {
    margin: 20px 0 20px 30px;
}

.post-body li {
    margin-bottom: 10px;
}

.post-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
}

.post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.tag {
    background-color: var(--light-bg);
    color: var(--text-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
}

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

.share-btn {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 14px;
}

.related-posts {
    max-width: 900px;
    margin: 0 auto;
}

.related-posts h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

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

.related-card {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    transition: transform 0.3s;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card a {
    text-decoration: none;
    color: inherit;
}

.related-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.vat-number {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

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

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

.cookie-consent.show {
    display: block;
}

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

.cookie-content h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

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

.cookie-content a {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-accept,
.btn-decline {
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background-color: #3D8B40;
}

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

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

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: var(--success);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9998;
    display: none;
    animation: slideIn 0.3s ease-out;
}

.notification.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Pagination */
.pagination {
    text-align: center;
    padding: 40px 0;
}

.page-number {
    color: var(--gray);
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .features-grid,
    .products-grid,
    .daily-pick-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .cart-content,
    .checkout-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .success-actions,
    .cta-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .post-header h1 {
        font-size: 28px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}