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

:root {
    --navy: #2c3e50;
    --muted-navy: #34495e;
    --ivory: #f8f6f0;
    --forest-green: #3d5a40;
    --burgundy: #722f37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --border-color: #d4cfc5;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--ivory);
}

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

.navbar {
    background-color: var(--muted-navy);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ivory);
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--burgundy);
}

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

.nav-menu a {
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    position: relative;
}

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

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

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

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

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

.hero {
    background: linear-gradient(135deg, var(--muted-navy) 0%, var(--navy) 100%);
    color: var(--ivory);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.02) 10px,
        rgba(255,255,255,0.02) 20px
    );
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--burgundy);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: 2px solid var(--burgundy);
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--ivory);
    color: var(--ivory);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 47, 55, 0.3);
}

.features {
    padding: 80px 20px;
    background-color: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
    font-weight: 400;
    letter-spacing: 1px;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    background-color: var(--ivory);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--forest-green);
}

.feature-icon {
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

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

.about-products {
    padding: 80px 20px;
    background-color: var(--ivory);
}

.about-products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--navy);
    font-weight: 400;
}

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

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    text-align: justify;
}

.products {
    padding: 80px 20px;
    background-color: white;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
}

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

.product-card {
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: var(--ivory);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
    background-color: var(--muted-navy);
}

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

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

.product-info {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.product-category {
    color: var(--forest-green);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 1.5rem;
    color: var(--burgundy);
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-link {
    display: inline-block;
    background-color: var(--navy);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.product-link:hover {
    background-color: var(--burgundy);
    transform: translateX(5px);
}

.interesting-facts {
    padding: 80px 20px;
    background-color: var(--ivory);
}

.interesting-facts h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.fact-card {
    background-color: white;
    padding: 2rem;
    border-left: 4px solid var(--burgundy);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.fact-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--burgundy);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.fact-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.fact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.glossary {
    padding: 80px 20px;
    background-color: white;
}

.glossary h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--navy);
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.glossary-item {
    padding: 1.5rem;
    background-color: var(--ivory);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.glossary-item:hover {
    border-color: var(--forest-green);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.glossary-item h3 {
    font-size: 1.2rem;
    color: var(--burgundy);
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.glossary-item p {
    color: var(--text-dark);
    line-height: 1.7;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--muted-navy);
    color: var(--ivory);
    padding: 2rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
}

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

.cookie-btn.accept:hover {
    background-color: #8b3a44;
}

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

.cookie-btn.decline:hover {
    background-color: var(--ivory);
    color: var(--navy);
}

.cookie-link {
    color: var(--ivory);
    text-decoration: underline;
}

.footer {
    background-color: var(--navy);
    color: var(--ivory);
    padding: 60px 20px 20px;
    margin-top: 80px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--burgundy);
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--burgundy);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--ivory);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--burgundy);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(248, 246, 240, 0.1);
}

.product-detail {
    padding: 80px 20px;
    background-color: white;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.product-detail-image {
    width: 100%;
    height: 600px;
    background-color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.product-detail-category {
    color: var(--forest-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.product-detail-price {
    font-size: 2.5rem;
    color: var(--burgundy);
    font-weight: bold;
    margin-bottom: 2rem;
}

.product-description {
    line-height: 1.9;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.product-features {
    background-color: var(--ivory);
    padding: 2rem;
    margin-bottom: 2rem;
}

.product-features h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.product-features ul {
    list-style: none;
    padding-left: 0;
}

.product-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-weight: bold;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #8b3a44;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 47, 55, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--muted-navy);
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background-color: var(--forest-green);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

.notification.show {
    display: block;
    animation: slideIn 0.3s ease;
}

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

.cart-page {
    padding: 80px 20px;
    min-height: 60vh;
}

.cart-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cart-container h1 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 0;
}

.cart-empty p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cart-items {
    background-color: white;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

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

.cart-item-image {
    width: 100px;
    height: 100px;
    overflow: hidden;
    background-color: var(--ivory);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.cart-item-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border-color);
    background-color: white;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--navy);
    color: white;
    border-color: var(--navy);
}

.quantity-display {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.remove-item {
    background-color: transparent;
    border: none;
    color: var(--burgundy);
    cursor: pointer;
    text-decoration: underline;
    margin-top: 0.5rem;
}

.remove-item:hover {
    color: #8b3a44;
}

.cart-item-price {
    text-align: right;
}

.cart-item-price .price {
    font-size: 1.5rem;
    color: var(--burgundy);
    font-weight: bold;
}

.cart-summary {
    background-color: var(--ivory);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.cart-summary h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

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

.summary-row.total {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--navy);
    border-top: 2px solid var(--navy);
    border-bottom: none;
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--burgundy);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
}

.checkout-btn:hover {
    background-color: #8b3a44;
    transform: translateY(-2px);
}

.checkout-page {
    padding: 80px 20px;
    min-height: 60vh;
}

.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
}

.checkout-container h1 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

.checkout-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--navy);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: Georgia, serif;
    background-color: var(--ivory);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.order-summary-checkout {
    background-color: var(--ivory);
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.order-summary-checkout h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.submit-order {
    width: 100%;
    padding: 15px;
    background-color: var(--burgundy);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
}

.submit-order:hover {
    background-color: #8b3a44;
}

.success-page {
    padding: 80px 20px;
    min-height: 60vh;
    text-align: center;
}

.success-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 4rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--forest-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon svg {
    stroke: white;
}

.success-container h1 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.success-container p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-page {
    padding: 80px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h1 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
}

.contact-info p {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-details {
    background-color: var(--ivory);
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.contact-item div h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.contact-item div p {
    color: var(--text-dark);
    margin: 0;
}

.contact-form-section {
    background-color: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.contact-form-section h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.send-message {
    padding: 15px 40px;
    background-color: var(--burgundy);
    color: white;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Georgia, serif;
}

.send-message:hover {
    background-color: #8b3a44;
}

.about-page {
    padding: 80px 20px;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

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

.about-content-section h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.about-content-section p {
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.team-section {
    background-color: white;
    padding: 4rem 0;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background-color: var(--ivory);
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.team-member img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border: 4px solid var(--burgundy);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
    color: var(--burgundy);
    font-weight: bold;
    margin-bottom: 1rem;
}

.team-member p:last-of-type {
    color: var(--text-dark);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .product-detail-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
    }
    
    .cart-item-price {
        grid-column: 2;
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
