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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
nav {
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: normal;
    color: #2c5f4f;
    font-style: italic;
}

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

nav a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

nav a:hover {
    color: #2c5f4f;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #2c5f4f;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-family: sans-serif;
}

/* Page sections */
.page {
    display: none;
}

.page.active {
    display: block;
}

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

/* Hero section */
.hero {
    background: linear-gradient(135deg, #f5f1ed 0%, #e8dfd6 100%);
    padding: 6rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
    font-weight: normal;
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #2c5f4f;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.cta-button:hover {
    background: #234a3d;
}

.cta-button:disabled {
    background: #999;
    cursor: not-allowed;
}

/* Portfolio section */
.portfolio-intro {
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.portfolio-intro h2 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
    font-weight: normal;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.gallery-item {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item-image {
    width: 100%;
    height: 300px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
}

.gallery-item-info {
    padding: 1.5rem;
}

.gallery-item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

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

/* Commission page */
.commission-header {
    background: #f5f1ed;
    padding: 4rem 2rem;
    text-align: center;
}

.commission-header h1 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
    font-weight: normal;
}

.process {
    padding: 3rem 2rem;
}

.process h2 {
    font-size: 2rem;
    color: #2c5f4f;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: normal;
}

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

.step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #2c5f4f;
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.pricing {
    background: #f9f9f9;
    padding: 3rem 2rem;
    margin: 2rem 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2rem;
    color: #2c5f4f;
    margin-bottom: 2rem;
    font-weight: normal;
}

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

.pricing-tier {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pricing-tier h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
    font-weight: normal;
}

.price {
    font-size: 2rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

/* Order form */
.order-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.order-form h2 {
    font-size: 2rem;
    color: #2c5f4f;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: normal;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

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

.file-upload {
    border: 2px dashed #ddd;
    padding: 2rem;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.file-upload:hover {
    border-color: #2c5f4f;
}

.file-upload input[type="file"] {
    display: none;
}

/* Cart page */
.cart-header {
    background: #f5f1ed;
    padding: 4rem 2rem;
    text-align: center;
}

.cart-header h1 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
    font-weight: normal;
}

.cart-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.cart-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-info h3 {
    margin-bottom: 0.5rem;
    color: #2c5f4f;
}

.cart-item-info p {
    color: #666;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.cart-item-remove:hover {
    background: #b71c1c;
}

.cart-summary {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-summary-total {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5f4f;
    border-top: 2px solid #ddd;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* About page */
.about-header {
    background: #f5f1ed;
    padding: 4rem 2rem;
    text-align: center;
}

.about-header h1 {
    font-size: 2.5rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
    font-weight: normal;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 3rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.artist-photo {
    width: 100%;
    height: 400px;
    background: #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
}

.bio {
    font-size: 1.1rem;
    line-height: 1.8;
}

.bio p {
    margin-bottom: 1.5rem;
}

.contact-info {
    background: #f9f9f9;
    padding: 3rem 2rem;
    text-align: center;
}

.contact-info h2 {
    font-size: 2rem;
    color: #2c5f4f;
    margin-bottom: 1rem;
    font-weight: normal;
}

.contact-info a {
    color: #2c5f4f;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2c5f4f;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    nav ul {
        gap: 1rem;
    }

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

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

    .cart-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Success message */
.success-message {
    background: #4caf50;
    color: white;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: center;
}