* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #7d6e58;
    --accent-color: #a67c52;
    --accent-dark: #8b6914;
    --light-color: #faf9f7;
    --cream-color: #f5f2ed;
    --warm-white: #fdfcfb;
    --dark-color: #1a1a1a;
    --text-color: #333333;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --text-muted: #8e8e8e;
    --border-color: #e8e4de;
    --border-light: #f0ede8;
    --success-color: #4a7c59;
    --warning-color: #c9953c;
    --error-color: #b85450;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.15);
    --gradient-cream: linear-gradient(135deg, var(--cream-color) 0%, var(--warm-white) 100%);
    --gradient-light: linear-gradient(180deg, var(--light-color) 0%, var(--warm-white) 100%);
    --gradient-warm: linear-gradient(135deg, var(--light-color) 0%, #fff 100%);
    --gradient-hero: linear-gradient(135deg, var(--cream-color) 0%, var(--warm-white) 50%, #f8f6f3 100%);
    --gradient-dark: linear-gradient(180deg, var(--primary-color) 0%, var(--dark-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.5rem;
    letter-spacing: 0;
}

h4 {
    font-size: 1.25rem;
    letter-spacing: 0;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

input,
select,
textarea {
    font-family: inherit;
}

.text-center {
    text-align: center;
}

.navbar {
    background: var(--gradient-dark);
    color: white;
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: white;
    transition: all var(--transition-normal);
    text-transform: uppercase;
}

.nav-brand a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    transition: all var(--transition-normal);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: white;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icons a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    position: relative;
    transition: all var(--transition-normal);
}

.nav-icons a:hover {
    color: white;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-toggle {
    background: none;
    color: white;
    font-size: 1.5rem;
    display: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    padding: 0.5rem;
    border-radius: 8px;
}

.mobile-menu-toggle:hover {
    color: var(--accent-color);
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle.active {
    color: var(--accent-color);
    transform: rotate(90deg);
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--gradient-dark);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 5px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 350px;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}


.hero {
    padding: 10rem 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, rgba(166, 124, 82, 0.08) 0%, transparent 100%);
    border-radius: 50% 0 0 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(166, 124, 82, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background: var(--gradient-accent);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-dark);
}

.hero-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.hero-placeholder {
    background: linear-gradient(135deg, var(--cream-color) 0%, var(--light-color) 100%);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 8rem;
    color: var(--accent-color);
    opacity: 0.9;
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.1) 0%, transparent 100%);
}

.hero:hover .hero-placeholder {
    transform: scale(1.02);
}

.categories {
    padding: 8rem 0;
    background: var(--warm-white);
}

.categories h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.category-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 12px;
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 249, 247, 0.95) 0%, rgba(253, 252, 251, 0.9) 100%);
    z-index: 0;
    transition: all var(--transition-normal);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    z-index: 2;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover .category-overlay {
    background: linear-gradient(135deg, rgba(250, 249, 247, 0.85) 0%, rgba(253, 252, 251, 0.8) 100%);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    transition: all var(--transition-normal);
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    color: var(--accent-dark);
}

.category-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-normal);
    position: relative;
    z-index: 1;
}

.category-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    transition: color var(--transition-normal);
    position: relative;
    z-index: 1;
}

.category-card:hover h3 {
    color: var(--text-dark);
}

.category-card:hover p {
    color: var(--text-muted);
}





.featured-products {
    padding: 8rem 0;
    background: var(--gradient-light);
}

.featured-products h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--warm-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 320px;
    background: var(--gradient-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    border-radius: 12px 12px 0 0;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.05) 0%, transparent 100%);
    transition: opacity var(--transition-normal);
}

.product-card:hover .product-image {
    transform: scale(1.02);
}

.product-image-placeholder {
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.8;
    transition: transform var(--transition-slow);
    position: relative;
    z-index: 1;
}

.product-card:hover .product-image-placeholder {
    transform: scale(1.1);
}

.product-info {
    padding: 2.5rem;
}

.product-category {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.product-info h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    transition: color var(--transition-normal);
}

.product-card:hover .product-info h3 {
    color: var(--secondary-color);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: color var(--transition-normal);
}

.product-card:hover .product-price {
    color: var(--accent-color);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.btn-view {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-normal);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.btn-view:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: var(--accent-dark);
}

.btn-add {
    padding: 1rem 1.5rem;
    background: var(--cream-color);
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
}

.btn-add:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.craftsmanship-preview {
    padding: 8rem 0;
    background: var(--gradient-cream);
}

.craftsmanship-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.craftsmanship-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.craftsmanship-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.craftsmanship-features {
    margin-top: 3rem;
}

.craftsmanship-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--warm-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.craftsmanship-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
}

.craftsmanship-feature-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.craftsmanship-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.craftsmanship-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

.craftsmanship-image {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.craftsmanship-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.craftsmanship-image:hover img {
    transform: scale(1.05);
}

.craftsmanship-placeholder {
    background: var(--gradient-dark);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 8rem;
    color: white;
    opacity: 0.9;
    transition: transform var(--transition-slow);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.craftsmanship-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(166, 124, 82, 0.1) 0%, transparent 100%);
}

.craftsmanship-preview:hover .craftsmanship-placeholder {
    transform: scale(1.02);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header[style*="background-image"] {
    background-blend-mode: overlay;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.products-section {
    padding: 6rem 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.filters-sidebar {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.filter-group {
    margin-bottom: 2.5rem;
}

.filter-group h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.filter-group h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: all var(--transition-normal);
}

.filter-option:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.filter-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.price-range {
    padding: 1rem 0;
}

.price-range input[type="range"] {
    width: 100%;
    margin: 1rem 0;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.apply-filters-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.apply-filters-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: var(--accent-dark);
}

.products-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.search-bar {
    display: flex;
    gap: 1rem;
    background: var(--warm-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.search-bar input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--light-color);
    transition: all var(--transition-normal);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.1);
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--gradient-accent);
    color: white;
    border-radius: 8px;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    background: var(--accent-dark);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--warm-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.sort-options label {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.sort-options select {
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--light-color);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.sort-options select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.1);
}

.product-count {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.filter-active {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-tag:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.clear-filters {
    color: var(--accent-color);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.clear-filters:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.product-detail {
    padding: 4rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--secondary-color);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-image {
    height: 500px;
    background: var(--gradient-cream);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.main-image:hover img {
    transform: scale(1.03);
}

.main-image-placeholder {
    font-size: 6rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.thumbnail-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
    background: var(--border-light);
    border-radius: 3px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    background: var(--gradient-cream);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--transition-normal);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.thumbnail-placeholder {
    font-size: 2rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-category {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warning-color);
}

.product-rating span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.product-specs {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.product-specs h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-specs ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.product-specs li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-quantity label {
    font-weight: 600;
    color: var(--primary-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 5px;
}

.quantity-selector input {
    width: 60px;
    padding: 0.75rem;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
}

.quantity-selector input:focus {
    outline: none;
}

.qty-btn {
    padding: 0.75rem 1rem;
    background-color: var(--light-color);
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background-color: var(--border-color);
}

.product-actions {
    display: flex;
    gap: 1rem;
}

.add-to-cart-btn {
    flex: 1;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.wishlist-btn {
    padding: 1rem 1.5rem;
    background-color: var(--light-color);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background-color: var(--border-color);
    color: var(--error-color);
}

.product-features {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.feature i {
    color: var(--success-color);
}

.product-tabs {
    margin-top: 4rem;
}

.tabs-header {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--secondary-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--secondary-color);
}

.tab-content {
    display: none;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
}

.tab-content.active {
    display: block;
}

.related-products {
    margin-top: 4rem;
}

.related-products h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.cart-section {
    padding: 4rem 0;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.cart-items {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 150px;
    height: 150px;
    background-color: var(--light-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-image-placeholder {
    font-size: 3rem;
    color: var(--accent-color);
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-info h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.cart-item-category {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 5px;
}

.cart-item-quantity input {
    width: 50px;
    padding: 0.5rem;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
}

.cart-item-quantity input:focus {
    outline: none;
}

.cart-item-remove {
    color: var(--error-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    text-decoration: underline;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cart-empty h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cart-summary {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    border-bottom: none;
    margin-top: 1rem;
    padding-top: 1.5rem;
}

.promo-code {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.promo-code input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
}

.promo-code input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.apply-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: var(--secondary-color);
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--success-color);
    font-size: 0.9rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 2rem;
    color: var(--text-light);
}

.checkout-section {
    padding: 4rem 0;
}

.checkout-progress {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.progress-step.active {
    color: var(--secondary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    border: 2px solid var(--border-color);
}

.progress-step.active .step-number {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.checkout-form {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary-color);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method.active {
    border-color: var(--secondary-color);
    background-color: var(--light-color);
}

.payment-method input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary-color);
}

.payment-method i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.checkout-actions {
    display: flex;
    gap: 1rem;
}

.back-btn {
    padding: 1rem 2rem;
    background-color: var(--light-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background-color: var(--border-color);
}

.continue-btn,
.place-order-btn {
    flex: 1;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.continue-btn:hover,
.place-order-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.checkout-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-summary {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.checkout-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item-image {
    width: 80px;
    height: 80px;
    background-color: var(--light-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-item-image-placeholder {
    font-size: 2rem;
    color: var(--accent-color);
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-info h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.checkout-item-qty {
    font-size: 0.875rem;
    color: var(--text-light);
}

.checkout-item-price {
    font-weight: bold;
    color: var(--secondary-color);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 10px;
}

.secure-badge i {
    font-size: 2rem;
    color: var(--success-color);
}

.secure-badge strong {
    display: block;
    color: var(--primary-color);
}

.secure-badge p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.craftsmanship-header,
.about-header,
.contact-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.about-header .header-overlay,
.contact-header .header-overlay,
.page-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.85) 0%, rgba(125, 110, 88, 0.85) 100%);
    z-index: 1;
}

.about-header .container,
.contact-header .container,
.page-header .container {
    position: relative;
    z-index: 2;
}

.craftsmanship-intro {
    padding: 4rem 0;
    background-color: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.craftsmanship-features {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.materials-section {
    padding: 4rem 0;
    background-color: white;
}

.materials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.material-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition-normal);
}

.material-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.material-image {
    height: 200px;
    background-color: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.material-card:hover .material-image img {
    transform: scale(1.1);
}

.material-placeholder {
    font-size: 4rem;
    color: var(--accent-color);
}

.material-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem;
    color: var(--primary-color);
}

.material-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.material-card ul {
    padding: 0 1.5rem 1.5rem;
}

.material-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.material-card li:last-child {
    border-bottom: none;
}

.process-section {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.artisan-section {
    padding: 4rem 0;
    background-color: white;
}

.artisan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.artisan-content {
    max-width: 100%;
    text-align: left;
}

.artisan-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.artisan-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.artisan-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.artisan-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.artisan-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .artisan-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .artisan-content {
        text-align: center;
    }
}

.artisan-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.about-story {
    padding: 4rem 0;
    background-color: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content {
    max-width: 100%;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: left;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.story-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content h2 {
        text-align: center;
    }
}

.mission-values {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.mission-values h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-choose-us {
    padding: 4rem 0;
    background-color: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.choose-item {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.choose-item:hover {
    border-color: var(--secondary-color);
    background-color: var(--light-color);
}

.choose-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.choose-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.choose-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.company-info {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.info-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-light);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.testimonials {
    padding: 4rem 0;
    background-color: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.contact-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.contact-image:hover img {
    transform: scale(1.05);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-content p {
    color: var(--text-light);
}

.contact-content a {
    color: var(--secondary-color);
}

.contact-content a:hover {
    text-decoration: underline;
}

.social-links h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: white;
}

.contact-form-wrapper {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-section {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section p i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .hero .container {
        gap: 3rem;
    }
    
    .craftsmanship-preview .container {
        gap: 3rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content p {
        max-width: 100%;
    }
    
    .hero-placeholder {
        height: 400px;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
        top: auto;
        margin-bottom: 2rem;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .craftsmanship-preview .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gradient-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        animation: slideDown var(--transition-normal);
    }
    
    .hero {
        padding: 8rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .categories h2 {
        font-size: 2.2rem;
    }
    
    .featured-products h2 {
        font-size: 2.2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.5rem;
    }
    
    .cart-item {
        grid-template-columns: 100px 1fr auto;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 6rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero-placeholder {
        height: 300px;
    }
    
    .categories {
        padding: 6rem 0;
    }
    
    .featured-products {
        padding: 6rem 0;
    }
    
    .craftsmanship-preview {
        padding: 6rem 0;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    .category-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-icons {
        gap: 1rem;
    }
    
    .nav-icons a {
        font-size: 1rem;
    }
}

.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gradient-dark);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-normal);
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
    animation: slideInRight var(--transition-normal);
}

.notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    border-radius: 12px 0 0 12px;
}

.notification.success {
    background: linear-gradient(135deg, #4a7c59 0%, #3d6349 100%);
}

.notification.error {
    background: linear-gradient(135deg, #b85450 0%, #9e4541 100%);
}

.notification.warning {
    background: linear-gradient(135deg, #c9953c 0%, #b38432 100%);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}