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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo .logo-svg {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
}

.nav-logo .logo-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(201, 169, 110, 0.3));
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a1a1a;
}

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

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #c9a96e;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #c9a96e;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    background-image: 
        url('hero-pattern.svg'),
        radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
    background-size: 400px 400px, cover, cover;
    background-repeat: repeat, no-repeat, no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #555;
    font-weight: 300;
    line-height: 1.8;
}

.cta-button {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.cta-button:hover {
    background: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: #1a1a1a;
    position: relative;
    animation: scroll 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    transform: rotate(45deg);
}

@keyframes scroll {
    0%, 20% { opacity: 0; transform: translateY(-10px); }
    50% { opacity: 1; transform: translateY(0); }
    80%, 100% { opacity: 0; transform: translateY(10px); }
}

/* Sections */
section {
    padding: 6rem 0;
}

/* New Arrivals */
.new-arrivals {
    background: white;
}

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

.arrival-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.arrival-item:hover {
    transform: translateY(-10px);
}

.item-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.arrival-item:hover .product-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.item-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.item-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c9a96e;
}

/* Collections */
.collections {
    background: #f8f8f8;
}

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

.collection-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: scale(1.02);
}

.collection-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.collection-card:hover .collection-bg-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

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

.collection-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.collection-overlay p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.collection-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.collection-btn:hover {
    background: white;
    color: #1a1a1a;
}

/* About Section */
.about {
    background: white;
}

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

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.brand-values {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #c9a96e;
}

.value-item p {
    color: #666;
    font-size: 0.95rem;
}

.about-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

/* Shop Section */
.shop {
    background: #f8f8f8;
}

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

.category-card {
    background: white;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-image {
    margin-bottom: 2rem;
}

.category-card .image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    margin-bottom: 1.5rem;
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.category-card p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.shop-btn {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: #1a1a1a;
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #c9a96e;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #c9a96e;
}

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

.social-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #c9a96e;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: #333;
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    background: #c9a96e;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #b8956a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

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

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

    .section-title {
        font-size: 2.5rem;
    }

    .arrivals-grid,
    .collections-grid,
    .shop-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text .section-title {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

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

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

    .arrivals-grid,
    .collections-grid,
    .shop-categories {
        grid-template-columns: 1fr;
    }

    .collection-card {
        height: 400px;
    }
}

/* Sustainability Section */
.sustainability-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-section::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="leaves" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23c9a96e" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.sustainability-section .container {
    position: relative;
    z-index: 2;
}

.sustainability-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.sustainability-section .section-header h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 300;
}

.sustainability-section .section-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Impact Tracker */
.impact-tracker {
    margin-bottom: 80px;
    text-align: center;
}

.impact-tracker h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 300;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.stat-circle {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-progress {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: conic-gradient(#c9a96e 0deg, #c9a96e var(--progress, 0deg), #e9ecef var(--progress, 0deg));
    transition: all 2s ease;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    z-index: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 500;
    text-align: center;
}

/* Sustainability Initiatives */
.sustainability-initiatives {
    margin-bottom: 80px;
}

.sustainability-initiatives h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 300;
}

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

.initiative-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c9a96e, #8b7355);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.initiative-card:hover::before {
    transform: scaleX(1);
}

.initiative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.initiative-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.initiative-card h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.initiative-progress {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #c9a96e, #8b7355);
    width: var(--progress, 0%);
    transition: width 2s ease;
    border-radius: 4px;
}

.progress-text {
    font-size: 0.9rem;
    color: #c9a96e;
    font-weight: 600;
    min-width: 80px;
}

/* Carbon Calculator */
.carbon-calculator {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
}

.carbon-calculator h3 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 300;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.input-group select,
.input-group input {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.input-group select:focus,
.input-group input:focus {
    outline: none;
    border-color: #c9a96e;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.calculate-btn {
    background: linear-gradient(135deg, #c9a96e, #8b7355);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 169, 110, 0.3);
}

.calculator-result {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.result-display {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.carbon-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.carbon-amount .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #c9a96e;
}

.carbon-amount .unit {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 500;
}

.comparison {
    color: #7f8c8d;
    font-size: 1rem;
}

.comparison .miles {
    color: #c9a96e;
    font-weight: 600;
}

.eco-tips {
    background: #e8f5e8;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
}

.eco-tips h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.eco-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eco-tips li {
    color: #7f8c8d;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.eco-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

/* Sustainability Pledge */
.sustainability-pledge {
    text-align: center;
}

.sustainability-pledge h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    font-weight: 300;
}

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

.pledge-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pledge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pledge-year {
    font-size: 2rem;
    font-weight: 700;
    color: #c9a96e;
    margin-bottom: 20px;
}

.pledge-content h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.pledge-content p {
    color: #7f8c8d;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sustainability-section {
        padding: 60px 0;
    }
    
    .sustainability-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .impact-tracker h3,
    .sustainability-initiatives h3,
    .sustainability-pledge h3 {
        font-size: 2rem;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .stat-progress {
        width: 110px;
        height: 110px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .initiatives-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .initiative-card {
        padding: 30px 25px;
    }
    
    .carbon-calculator {
        padding: 30px 25px;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pledge-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carbon-amount .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-circle {
        width: 80px;
        height: 80px;
    }
    
    .stat-progress {
        width: 90px;
        height: 90px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .carbon-calculator {
        padding: 25px 20px;
    }
    
    .initiative-card {
        padding: 25px 20px;
    }
}

/* ... existing code ... */