:root {
    --deep-olive: #3d4438;
    --terracotta: #d4816d;
    --warm-cream: #f5f1e8;
    --brushed-copper: #b87333;
    --dark-bg: #2a2d28;
    --light-text: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--deep-olive);
    background-color: var(--warm-cream);
}

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

.navbar {
    background: linear-gradient(135deg, var(--deep-olive) 0%, var(--dark-bg) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.logo img {
    border-radius: 50%;
    border: 3px solid var(--brushed-copper);
    box-shadow: 0 0 15px rgba(184, 115, 51, 0.4);
}

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

.nav-menu a {
    color: var(--warm-cream);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brushed-copper);
    background: rgba(184, 115, 51, 0.1);
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--brushed-copper);
    border-radius: 2px;
    transition: var(--transition);
}

.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-olive) 0%, var(--dark-bg) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(212,129,109,0.1)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--light-text);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--warm-cream);
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.cta-button-3d {
    background: linear-gradient(145deg, var(--brushed-copper), var(--terracotta));
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.4),
                inset 0 -3px 0 rgba(0, 0, 0, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: perspective(1000px) translateZ(0);
}

.cta-button-3d:hover {
    transform: perspective(1000px) translateZ(10px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(184, 115, 51, 0.6),
                inset 0 -3px 0 rgba(0, 0, 0, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

.cta-button-3d:active {
    transform: perspective(1000px) translateZ(5px) translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 115, 51, 0.4),
                inset 0 -2px 0 rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.history-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(212,129,109,0.1) 0%, rgba(184,115,51,0.1) 100%);
}

.history-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid var(--brushed-copper);
}

.history-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.history-card h3 {
    color: var(--deep-olive);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.history-date {
    color: var(--terracotta);
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.history-event {
    color: var(--deep-olive);
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--deep-olive);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--brushed-copper));
    border-radius: 2px;
}

.features {
    padding: 5rem 0;
    background: white;
}

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

.feature-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--warm-cream);
    border-radius: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--brushed-copper);
}

.feature-icon {
    color: var(--brushed-copper);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--deep-olive);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--deep-olive);
    font-size: 1rem;
    line-height: 1.6;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--deep-olive) 0%, var(--dark-bg) 100%);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--brushed-copper);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--warm-cream);
    letter-spacing: 1px;
}

.about-products {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(212,129,109,0.05) 0%, rgba(184,115,51,0.05) 100%);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--deep-olive);
    text-indent: 2rem;
}

.products {
    padding: 5rem 0;
    background: white;
}

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

.product-card {
    background: var(--warm-cream);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--brushed-copper);
}

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

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(61, 68, 56, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: var(--brushed-copper);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: var(--transition);
}

.quick-view:hover {
    background: var(--terracotta);
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    color: var(--deep-olive);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.product-description {
    color: var(--deep-olive);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    min-height: 60px;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    flex: 1;
    min-width: 140px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brushed-copper), var(--terracotta));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 115, 51, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--deep-olive);
    border: 2px solid var(--deep-olive);
}

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

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, var(--brushed-copper), var(--terracotta));
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(400px);
    transition: var(--transition);
    z-index: 10000;
    max-width: 300px;
}

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

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--deep-olive) 0%, var(--dark-bg) 100%);
    color: white;
    padding: 2rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: var(--transition);
}

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

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

.cookie-text h3 {
    color: var(--brushed-copper);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

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

.footer {
    background: linear-gradient(135deg, var(--deep-olive) 0%, var(--dark-bg) 100%);
    color: var(--warm-cream);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brushed-copper);
    margin-bottom: 1rem;
}

.footer-logo img {
    border-radius: 50%;
    border: 2px solid var(--brushed-copper);
}

.footer-col h4 {
    color: var(--brushed-copper);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

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

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

.footer-col ul li a {
    color: var(--warm-cream);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--brushed-copper);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 3px;
}

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

.social-links a {
    color: var(--warm-cream);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--brushed-copper);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, 0.2);
    color: var(--warm-cream);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--deep-olive);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

.product-detail {
    padding: 4rem 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-detail-info h1 {
    color: var(--deep-olive);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

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

.product-detail-description {
    color: var(--deep-olive);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features {
    background: var(--warm-cream);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.product-features h3 {
    color: var(--deep-olive);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.product-features ul li {
    padding: 0.5rem 0;
    color: var(--deep-olive);
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-features ul li::before {
    content: '✓';
    color: var(--brushed-copper);
    font-weight: bold;
    font-size: 1.2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector label {
    font-weight: bold;
    color: var(--deep-olive);
}

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

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--deep-olive);
    background: white;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--deep-olive);
    color: white;
}

.quantity-input {
    width: 60px;
    text-align: center;
    font-size: 1.2rem;
    padding: 8px;
    border: 2px solid var(--deep-olive);
    border-radius: 5px;
}

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

.cart-container {
    padding: 4rem 0;
    min-height: 60vh;
}

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

.cart-empty h2 {
    color: var(--deep-olive);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cart-items {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 2px solid var(--warm-cream);
    align-items: center;
}

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

.cart-item-image {
    border-radius: 10px;
    overflow: hidden;
}

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

.cart-item-details h3 {
    color: var(--deep-olive);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

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

.remove-item {
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    background: var(--deep-olive);
}

.cart-summary {
    background: var(--warm-cream);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cart-summary h3 {
    color: var(--deep-olive);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 2px solid var(--brushed-copper);
    margin-top: 1rem;
}

.cart-total span:first-child {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--deep-olive);
}

.cart-total span:last-child {
    font-size: 2rem;
    font-weight: bold;
    color: var(--terracotta);
}

.checkout-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--warm-cream);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

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

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

.success-message {
    text-align: center;
    padding: 4rem 2rem;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.success-message h1 {
    color: var(--deep-olive);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--deep-olive);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-page {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-box {
    background: var(--warm-cream);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-info-box h3 {
    color: var(--deep-olive);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-box p {
    color: var(--deep-olive);
    line-height: 1.8;
}

.about-page {
    padding: 4rem 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--deep-olive);
}

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

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.team-info {
    padding: 2rem;
}

.team-info h3 {
    color: var(--deep-olive);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--terracotta);
    font-weight: bold;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--deep-olive);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

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