/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B4513; /* Saddle Brown - clay color */
    --secondary-color: #D2B48C; /* Tan */
    --accent-color: #A0522D; /* Sienna */
    --light-color: #FAF3E0; /* Cream */
    --dark-color: #5C4033; /* Dark Brown */
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Georgia', serif;
    font-weight: normal;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

p.dark-text {
    color: var(--dark-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* ===== LAYOUT ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER AND NAVIGATION ===== */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.logo span {
    color: var(--accent-color);
}

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

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a.active {
    color: var(--accent-color);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
}

/* Mobile header icons: hamburger + cart */
.mobile-header-icons {
    display: none;
    align-items: flex-end;
    gap: 1.5rem;
}

.hamburger {
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--dark-color);
    align-items: flex-start;
}

.cart-icon {
    position: relative;
    font-size: 1.6rem;
    color: var(--dark-color);
    cursor: pointer;
}

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

/* ===== HERO SECTIONS ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1574732011388-8e9d1ef55d93?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 8rem 1rem;
    margin-bottom: 4rem;
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--light-color);
}

/* Shop Hero */
.shop-hero {
    background: linear-gradient(rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.9)), 
                url('https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?ixlib=rb-4.0.3&auto=format&fit=crop&w=2067&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 5rem 1rem;
    margin-bottom: 3rem;
}

.shop-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.shop-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--light-color);
}

/* Alternative shop hero background */
.shop-hero[style*="background-image: url('')"] {
    background-image: linear-gradient(rgba(139, 69, 19, 0.8), rgba(139, 69, 19, 0.9)), 
                      url('https://images.unsplash.com/photo-1551489186-cf8726f514f8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') !important;
}

/* Success Hero */
.success-hero {
    background: linear-gradient(rgba(143, 94, 74, 0.9), rgba(143, 94, 74, 0.9)), url('') center/cover no-repeat;
    color: white;
    padding: 6rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1574732011388-8e9d1ef55d93?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 6rem 1rem;
    margin-bottom: 3rem;
}

.contact-hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--light-color);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    margin-left: 1rem;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Additional button styles */
.btn-next {
    margin-left: auto;
}

.get-directions,
.view-all-workshops {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: white;
}

.submit-btn {
    position: relative;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* ===== SHOP LAYOUT ===== */
.shop-container {
    padding: 2rem 0;
    min-height: 60vh;
}

/* Step Indicators */
.step-indicators {
    display: flex;
    justify-content: center;
    margin: 3rem 0 4rem;
    position: relative;
}

.step-indicators::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 200px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    border: 3px solid white;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.step-label {
    font-size: 0.9rem;
    text-align: center;
    color: var(--light-text);
}

.step.active .step-label {
    color: var(--dark-color);
    font-weight: 600;
}

/* Selection Steps */
.selection-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.selection-step.active-step {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.btn-back {
    position: absolute;
    left: 0;
    top: 0;
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-back:hover {
    background-color: rgba(139, 69, 19, 0.1);
}

.step-subtitle {
    color: var(--light-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* ===== PRODUCT GRIDS ===== */
/* Products/Shop Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 0.5rem 0;
}

/* Designs Grid */
.designs-grid, .items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.design-card, .item-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

.design-card.selected, .item-card.selected {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.2);
}

.design-card img, .item-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.design-info, .item-info {
    padding: 1.5rem;
}

.design-info h3, .item-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.design-info p, .item-info p {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.design-price {
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.item-price {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.selected-design-preview {
    background-color: rgba(139, 69, 19, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: inline-block;
}

/* ===== REVIEW & CUSTOMIZATION ===== */
/* Review Container */
.review-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
    align-items: start;
}

.review-preview {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 12px;
    overflow: hidden;
}

.preview-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.design-preview, .item-preview {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
}

.preview-overlay img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.review-details {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.design-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(139, 69, 19, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 1rem 0;
}

.price-display {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.price-label {
    color: var(--light-text);
    margin-right: 0.5rem;
}

.price-amount {
    font-weight: bold;
    color: var(--accent-color);
}

/* Customization */
.customization-options {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 8px;
}

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

.option-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.option-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235C4033' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.total-price {
    font-size: 1.5rem;
    margin: 2rem 0;
    padding: 1rem;
    background-color: rgba(139, 69, 19, 0.05);
    border-radius: 8px;
    text-align: center;
}

/* ===== COLLECTIONS SECTION ===== */
.collections-section {
    padding: 4rem 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    height: auto;
}

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

.collection-image {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    height: 100%;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(1);
}

/* Under Construction Styles */
.under-construction .collection-image img {
    filter: brightness(0.6);
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.construction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.construction-message {
    max-width: 80%;
}

.construction-message i {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.construction-message h2 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
}

.construction-message p {
    font-size: 1.3rem;
    margin: 1rem 0;
}

.construction-note {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.collection-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
}

.collection-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.collection-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    line-height: 1.7;
}

.collection-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.collection-features li {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.collection-features i {
    color: var(--accent-color);
    margin-right: 0.8rem;
}

.collection-info .btn {
    align-self: flex-start;
    margin-top: auto;
}

.construction-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: #999;
    color: white;
    border-radius: 50px;
    font-size: 1rem;
    cursor: not-allowed;
    align-self: flex-start;
    margin-top: auto;
}

/* Disabled link in footer */
.disabled-link {
    color: #aaa;
    pointer-events: none;
    cursor: default;
}

/* ===== SUCCESS PAGE ===== */
.category-selector {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem auto 3rem;
    max-width: 800px;
    box-shadow: var(--shadow);
}

.category-selector h2 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.category-btn {
    padding: 1rem 1.5rem;
    background-color: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-btn:hover {
    background-color: #f0f0f0;
}

.category-btn.active {
    background-color: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.category-btn i {
    font-size: 1.2rem;
}

.product-timeline {
    display: none;
    max-width: 800px;
    margin: 3rem auto 5rem;
}

.product-timeline.active {
    display: block;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
}

.timeline-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 5px solid var(--light-color);
    z-index: 1;
}

.timeline-step-icon {
    position: absolute;
    left: 15px;
    top: -5px;
    background: var(--light-color);
    color: var(--accent-color);
    font-size: 1.5rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.timeline-content .timeframe {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.reference-notice {
    background-color: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
}

.reference-notice h3 {
    color: #0d47a1;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.reference-notice .fa-envelope {
    color: #0d47a1;
}

.shipping-info {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
}

.shipping-info h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-support {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.contact-support .btn {
    margin-top: 1rem;
}

.order-summary {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.order-summary h2 {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.whats-next {
    text-align: center;
    margin: 4rem 0;
}

.total-timeline {
    margin-top: 2rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 4rem 0;
    background-color: var(--white);
}

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

.about-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 4rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form-section h2 {
    margin-bottom: 1rem;
}

.contact-form-section > p {
    margin-bottom: 2rem;
    color: var(--light-text);
}

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

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

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(160, 82, 45, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

/* Contact Info Cards */
.contact-info-section > div {
    margin-bottom: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin: 1.5rem 0;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.info-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-content p {
    margin-bottom: 0;
    color: var(--light-text);
}

/* Map */
.map-container {
    margin-top: 2rem;
}

#map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
    border: 1px solid #ddd;
}

/* Workshops */
.workshop-list {
    margin: 1.5rem 0;
}

.workshop-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
}

.workshop-item h4 {
    margin-bottom: 0.5rem;
}

.workshop-item p {
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.workshop-item i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.workshop-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Team Section */
.team-section {
    background: var(--light-color);
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    text-align: center;
}

.section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

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

.team-member {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-title {
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item h3 i {
    color: var(--accent-color);
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    margin-bottom: 0;
    color: var(--light-text);
}

.faq-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: var(--accent-color);
    color: white;
    padding: 3rem 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text h2 {
    color: white;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 400px;
}

.newsletter-form input[type="email"] {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
}

.newsletter-form .btn {
    position: relative;
    min-height: 44px;
}

#newsletter-email {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-text, .loading-spinner {
    transition: opacity 0.3s ease;
}

/* ===== CUSTOM OPTIONS ===== */
.custom-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 2px solid #eee;
}

.custom-option-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.custom-option-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.custom-option-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.custom-option-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.custom-option-card p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    line-height: 1.6;
}

.custom-option-card .btn {
    margin-top: 1rem;
}

/* ===== FEATURED BANNER ===== */
.featured-banner {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0;
    margin: 4rem 0;
}

.banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.banner-content h2::after {
    background-color: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
}

.banner-content p {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin: 1.5rem 0 2rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-column h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: var(--white);
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none !important;
}

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 4000;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none; /* prevents interaction while hidden */
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.notification.error {
    background-color: #f44336;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #c3e6cb;
}

.success-message i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: #155724;
    margin-bottom: 1rem;
}

/* Error States */
.error-message {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

.form-control.error {
    border-color: #dc3545;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    to { transform: translateX(0); }
}

@keyframes fadeOut {
    to { opacity: 0; transform: translateX(100%); }
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

.spinner {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content,
    .contact-container,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .review-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-preview {
        height: 300px;
    }
    
    .custom-options {
        grid-template-columns: 1fr;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 800px;
    }
    
    .collection-card {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
    }
    
    .collection-image {
        height: 400px;
        min-height: 400px;
    }
    
    .collection-info {
        padding: 2.5rem 2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero {
        padding: 6rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .shop-hero h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .step-indicators {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .step-indicators::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        gap: 1rem;
        max-width: 100%;
    }
    
    .step-number {
        margin-bottom: 0;
    }
    
    .designs-grid, .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .step-header {
        padding-top: 3rem;
    }
    
    .btn-back {
        top: 0;
        left: 0;
        right: 0;
        text-align: center;
        position: relative;
        margin-bottom: 1rem;
    }
    
    .shop-hero h1 {
        font-size: 2.8rem;
    }
    
    .construction-message h2 {
        font-size: 2.2rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-step {
        padding-left: 60px;
    }
    
    .timeline-step::before {
        left: 12px;
    }
    
    .timeline-step-icon {
        left: 5px;
    }
    
    .category-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile menu */
    .mobile-header-icons {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px; /* adjust if header height changes */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 999;
    }

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

    .nav-links li {
        margin: 1.5rem 0;
    }
}

@media (min-width: 769px) {
    .mobile-header-icons {
        display: none;
    }
    
    /* Newsletter form on desktop */
    @media (min-width: 768px) {
        .newsletter-form {
            flex-direction: row;
            align-items: center;
        }
        
        .newsletter-form input[type="email"] {
            width: auto;
            flex-grow: 1;
            margin-right: 10px;
        }
    }
}

@media (max-width: 576px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        display: block;
        margin: 1rem auto;
        width: 80%;
        max-width: 300px;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .shop-hero,
    .contact-hero {
        padding: 3rem 1rem;
    }
    
    .shop-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .shop-hero p,
    .contact-hero p {
        font-size: 1rem;
    }
    
    .designs-grid, .items-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .design-card, .item-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .featured-banner {
        padding: 3rem 1rem;
    }
    
    .custom-option-card {
        padding: 1.5rem;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-navigation .btn {
        width: 100%;
    }
    
    .shop-hero h1 {
        font-size: 2.3rem;
    }
    
    .collection-image {
        height: 300px;
        min-height: 300px;
    }
    
    .construction-message h2 {
        font-size: 1.8rem;
    }
    
    .construction-message p {
        font-size: 1.1rem;
    }
    
    .contact-form-section {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    #newsletter-email {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .collection-image {
        height: 250px;
        min-height: 250px;
    }
}