/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FAF8F3;
}

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

/* Header */
.header {
    background: #FAF8F3;
    padding: 20px 0;
    border-bottom: 2px solid #E6A853;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 28px;
    color: #2C3E50;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.brand-tagline {
    font-size: 14px;
    color: #7F8C8D;
    font-style: italic;
    margin: 0;
}

.order-btn {
    background: #E6A853;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: #D4941A;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: white;
    padding: 60px 0;
    position: relative;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -1px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-btn {
    background: #E6A853;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #D4941A;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2C3E50;
    font-weight: 400;
}

.about p {
    font-size: 18px;
    line-height: 1.7;
    color: #5D6D7E;
}

.image-placeholder {
    background: #ECF0F1;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #7F8C8D;
    font-size: 18px;
    border: 2px dashed #BDC3C7;
}

/* Section Images */
.section-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.story-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Featured Collections */
.featured {
    padding: 80px 0;
    background: #F8F9FA;
}

.featured h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2C3E50;
    font-weight: 400;
}

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

.collection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.collection-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.collection-card h4 {
    font-size: 24px;
    margin: 20px;
    color: #2C3E50;
}

.collection-card p {
    margin: 0 20px 20px;
    color: #7F8C8D;
    line-height: 1.6;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

.products h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2C3E50;
    font-weight: 400;
}

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

.product-card {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 2px solid #ECF0F1;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #E6A853;
    transform: translateY(-3px);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 20px;
    color: #E6A853;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.product-card p {
    color: #7F8C8D;
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-btn {
    background: #2C3E50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.product-btn:hover {
    background: #E6A853;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #F8F9FA;
}

.services h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2C3E50;
    font-weight: 400;
}

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

.service-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C3E50;
}

.service-item p {
    color: #7F8C8D;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
    background: white;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h3 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2C3E50;
    font-weight: 400;
}

.why-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #5D6D7E;
    margin-bottom: 30px;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    padding: 8px 0;
    color: #5D6D7E;
    position: relative;
    padding-left: 20px;
}

.why-list li::before {
    content: '♪';
    color: #E6A853;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Membership Tiers */
.membership {
    padding: 80px 0;
    background: #F8F9FA;
}

.membership h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2C3E50;
    font-weight: 400;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.tier-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #ECF0F1;
    transition: all 0.3s ease;
}

.tier-card.featured {
    border-color: #E6A853;
    transform: scale(1.05);
}

.tier-card:hover {
    transform: translateY(-5px);
    border-color: #E6A853;
}

.tier-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-card h4 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #2C3E50;
}

.tier-price {
    font-size: 18px;
    color: #E6A853;
    font-weight: 600;
    margin-bottom: 30px;
}

.tier-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.tier-features li {
    padding: 8px 0;
    color: #5D6D7E;
    position: relative;
    padding-left: 20px;
}

.tier-features li::before {
    content: '✓';
    color: #E6A853;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tier-btn {
    background: #2C3E50;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.tier-btn:hover {
    background: #E6A853;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2C3E50;
    font-weight: 400;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h4 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.contact-item p {
    color: #7F8C8D;
    line-height: 1.6;
}

.contact-form {
    background: #F8F9FA;
    padding: 40px;
    border-radius: 12px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #2C3E50;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ECF0F1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E6A853;
}

.form-btn {
    background: #E6A853;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-btn:hover {
    background: #D4941A;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 300px;
}

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

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand span {
    font-size: 20px;
    font-weight: 600;
}

.footer-info p {
    color: #BDC3C7;
    line-height: 1.6;
}

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

.footer-column h4 {
    color: #E6A853;
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-column a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #E6A853;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 20px;
    text-align: center;
    color: #BDC3C7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
}

.close:hover {
    color: #E6A853;
}

.modal h3 {
    margin-bottom: 30px;
    color: #2C3E50;
    font-size: 28px;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2C3E50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}


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

.cookie-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #E6A853;
    color: white;
}

.cookie-btn.accept:hover {
    background: #D4941A;
}

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.reject:hover {
    background: white;
    color: #2C3E50;
}

.cookie-btn.customize {
    background: #34495E;
    color: white;
    border: 1px solid #5D6D7E;
}

.cookie-btn.customize:hover {
    background: #5D6D7E;
}

.cookie-link {
    color: #E6A853;
    text-decoration: none;
    font-size: 14px;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.cookie-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #7F8C8D;
}

.cookie-close:hover {
    color: #E6A853;
}

.cookie-modal h3 {
    color: #2C3E50;
    margin-bottom: 30px;
    font-size: 24px;
}

.cookie-categories {
    margin-bottom: 30px;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ECF0F1;
    border-radius: 8px;
}

.cookie-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
}

.cookie-label input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.cookie-category-name {
    font-weight: 600;
    color: #2C3E50;
}

.cookie-description {
    font-size: 14px;
    color: #7F8C8D;
    margin: 0;
    margin-left: 30px;
}

.cookie-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-name {
        font-size: 24px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .about-content,
    .why-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: auto;
    }
    
    .collections-grid,
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-card.featured {
        transform: none;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
    
    .cookie-modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    h3 {
        font-size: 28px !important;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
    }
    
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .section-image {
        height: 250px;
    }
}