* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #f8f1e3;
    color: #3c2f2f;
    line-height: 1.7;
}

/* Navbar */
.navbar {
    background: #3c2f2f;
    color: #f4d9b8;
    padding: 1rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-container img {
    height: 70px;
    width: auto;
}

.site-title {
    color: #f4d9b8;
    font-size: 2.25rem;
    font-weight: bold;
}

.nav-links a {
    color: #f4d9b8;
    margin: 0 1.1rem;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: #f59e0b;
}

.cart-icon {
    font-size: 1.8rem;
    cursor: pointer;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ef4444;
    color: white;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Hero */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)), url('https://picsum.photos/id/1015/2000/1200') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    margin: 10px;
    border: none;
    border-radius: 8px;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s;
}

.primary { background: #d97706; color: white; }
.primary:hover { background: #f59e0b; transform: translateY(-2px); }

.secondary { background: #d97706; color: white; }
.secondary:hover { background: #f59e0b; transform: translateY(-2px); }

/* Page Content */
.page-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 5%;
}

.page-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: #3c2f2f;
}

/* Form Styling */
.form-container {
    max-width: 720px;
    margin: 0 auto;
    background: white;
    padding: 55px 50px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    border: 2px solid #d4c4a8;
    border-radius: 8px;
    font-size: 1.1rem;
}

/* Sliding Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: white;
    box-shadow: -15px 0 40px rgba(0,0,0,0.3);
    transition: right 0.45s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 3000;
    overflow-y: auto;
    padding: 25px;
}

.cart-sidebar.open {
    right: 0;
}

.cart-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    .hero-content p {
        font-size: 1.3rem;
    }
}

/* Craftsmanship Section */
.craft-section {
    padding: 80px 5%;
    background: #f4e9d8;
    text-align: center;
}

.craft-section h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #3c2f2f;
}

.craft-section p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #555;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.craft-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.craft-card i {
    font-size: 2.8rem;
    color: #d97706;
    margin-bottom: 20px;
}

.craft-card h3 {
    margin-bottom: 15px;
    color: #3c2f2f;
}