/* ============================================
   ATELIER BROS - MODERN RUSTIC STYLES
   ============================================ */

/* CSS Variables - Color System */
:root {
    /* Primary Colors - Warm Leather Tones */
    --color-leather-dark: #2C1810;
    --color-leather: #3D2817;
    --color-leather-light: #5C3D2E;
    --color-tan: #8B5A3C;
    --color-cognac: #A67B5B;
    --color-warm: #D4A574;
    
    /* Accent - Brass/Copper */
    --color-brass: #B87333;
    --color-brass-light: #CD7F32;
    --color-gold: #C9A961;
    
    /* Neutrals */
    --color-cream: #F5F0E6;
    --color-cream-dark: #E8D5B5;
    --color-stone: #C4B9AC;
    --color-gray: #6B5B4F;
    --color-gray-light: #9A8B7A;
    
    /* Backgrounds */
    --bg-primary: #FDFBF7;
    --bg-secondary: #F5F0E6;
    --bg-dark: #2C1810;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(44, 24, 16, 0.05);
    --shadow-md: 0 4px 12px rgba(44, 24, 16, 0.1);
    --shadow-lg: 0 8px 30px rgba(44, 24, 16, 0.15);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-leather);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-leather-dark);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
    margin-bottom: var(--space-sm);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
    background: rgba(253, 251, 247, 0.98);
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.08);
}

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 24, 16, 0.1);
    padding: var(--space-sm) 0;
}

/* Hero section needs padding for fixed header */
.hero {
    padding-top: calc(100px + var(--space-xl));
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-leather-dark);
    letter-spacing: 0.5px;
}

.navbar.scrolled .logo-text {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-leather);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-brass);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-brass);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-leather-dark);
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-xl);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    padding-right: var(--space-xl);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-brass);
    margin-bottom: var(--space-md);
}

.hero-title {
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-title em {
    font-style: italic;
    color: var(--color-brass);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leather-texture {
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(44, 24, 16, 0.03) 2px,
            rgba(44, 24, 16, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(44, 24, 16, 0.02) 2px,
            rgba(44, 24, 16, 0.02) 4px
        );
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gray-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-brass), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    cursor: pointer;
}

.btn-primary {
    background: var(--color-leather);
    color: var(--color-cream);
    border: 2px solid var(--color-leather);
}

.btn-primary:hover {
    background: var(--color-leather-dark);
    border-color: var(--color-leather-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: var(--color-leather);
    color: var(--color-cream);
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */

section {
    padding: var(--space-2xl) 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
}

.section-header.light {
    color: var(--color-cream);
}

.section-header.light .section-title,
.section-header.light .section-description {
    color: var(--color-cream);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-brass);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-gray);
}

/* ============================================
   COLLECTION SECTION
   ============================================ */

.collection {
    background: var(--bg-primary);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.collection-item {
    position: relative;
    cursor: pointer;
}

.collection-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--color-cream-dark) 0%, var(--color-cognac) 100%);
    position: relative;
}

.image-placeholder.large {
    aspect-ratio: 1;
}

.bag-1 { background: linear-gradient(145deg, #8B6914 0%, #5C4A1F 100%); }
.wallet-1 { background: linear-gradient(145deg, #3D2817 0%, #2C1810 100%); }
.belt-1 { background: linear-gradient(145deg, #A67B5B 0%, #8B5A3C 100%); }
.bag-2 { background: linear-gradient(145deg, #5C3D2E 0%, #3D2817 100%); }
.accessory-1 { background: linear-gradient(145deg, #D4A574 0%, #A67B5B 100%); }
.wallet-2 { background: linear-gradient(145deg, #4A3728 0%, #2C1810 100%); }
.artisan { background: linear-gradient(145deg, var(--color-stone) 0%, var(--color-cognac) 100%); }

.craft-icon {
    font-size: 4rem;
    opacity: 0.7;
    filter: grayscale(0.3);
}

.craft-icon-large {
    font-size: 8rem;
    opacity: 0.6;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.btn-view {
    padding: 0.75rem 1.5rem;
    background: var(--color-cream);
    color: var(--color-leather);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.collection-item:hover .btn-view {
    transform: translateY(0);
}

.collection-info h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.collection-category {
    font-size: 0.875rem;
    color: var(--color-gray-light);
    margin-bottom: var(--space-xs);
}

.collection-price {
    font-weight: 500;
    color: var(--color-brass);
}

.collection-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-cream-dark);
    color: var(--color-gray);
}

.collection-note a {
    color: var(--color-brass);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
    background: var(--bg-dark);
    color: var(--color-cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.process-step {
    text-align: center;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-brass);
    margin-bottom: var(--space-md);
    opacity: 0.8;
}

.process-step h3 {
    color: var(--color-cream);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.process-step p {
    color: var(--color-gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   SHOP / CUSTOM ORDER SECTION
   ============================================ */

.shop {
    background: var(--bg-secondary);
}

.shop-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.shop-info {
    padding-right: var(--space-xl);
}

.shop-description {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
}

.shop-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brass);
    color: var(--color-cream);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
}

.shop-form-wrapper {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.order-form h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    text-align: center;
}

/* Price Estimate */
.price-estimate {
    background: linear-gradient(135deg, var(--color-leather) 0%, var(--color-leather-light) 100%);
    color: var(--color-cream);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: var(--space-md);
}

.price-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: var(--space-xs);
}

.price-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.price-note {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.checkmark::after {
    content: '✓';
    color: var(--color-cream);
    font-size: 0.75rem;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-fast);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--color-brass);
    border-color: var(--color-brass);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--color-leather);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-leather);
    margin-bottom: var(--space-xs);
}

input,
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    color: var(--color-leather);
    background: var(--bg-primary);
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-brass);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--color-gray-light);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B5B4F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-light);
    margin-top: var(--space-md);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    background: var(--bg-primary);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--color-brass);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-image-frame img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/5;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--space-md);
}

.about-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-cream-dark);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-brass);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CARE GUIDE
   ============================================ */

.care {
    background: var(--bg-secondary);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.care-card {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.care-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.care-card.care-highlight {
    background: var(--color-leather);
    color: var(--color-cream);
}

.care-card.care-highlight h3 {
    color: var(--color-cream);
}

.care-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream-dark);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.care-card.care-highlight .care-icon {
    background: var(--color-brass);
}

.care-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-leather);
}

.care-card.care-highlight .care-icon svg {
    color: var(--color-cream);
}

.care-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.care-card p {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: var(--space-md);
}

.care-card.care-highlight p {
    color: var(--color-cream);
    opacity: 0.9;
}

.care-tips {
    list-style: disc;
    padding-left: var(--space-md);
}

.care-tips li {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin-bottom: var(--space-xs);
}

.care-card.care-highlight .care-tips li {
    color: var(--color-cream);
    opacity: 0.8;
}

.patina-timeline {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(245, 240, 230, 0.2);
}

.timeline-item {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-sm);
}

.timeline-month {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-brass);
}

.timeline-desc {
    font-size: 0.875rem;
    opacity: 0.8;
}

.care-cta {
    text-align: center;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-cream-dark);
}

.care-cta p {
    font-size: 1.125rem;
    color: var(--color-gray);
}

.care-cta a {
    color: var(--color-brass);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    margin-bottom: var(--space-md);
}

.testimonial-content p {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-leather);
    margin: 0;
}

.testimonial-content p::before {
    content: '"';
    font-size: 3rem;
    color: var(--color-brass);
    opacity: 0.3;
    line-height: 0;
    display: block;
    margin-bottom: var(--space-sm);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 500;
    color: var(--color-leather);
}

.author-location {
    font-size: 0.875rem;
    color: var(--color-gray-light);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    background: var(--bg-primary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gray-light);
}

.contact-item a {
    font-size: 1.125rem;
    color: var(--color-leather);
    transition: color var(--transition-fast);
}

.contact-item a:hover {
    color: var(--color-brass);
}

.contact-item span:last-child {
    font-size: 1.125rem;
    color: var(--color-leather);
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
    background: var(--bg-secondary);
    color: var(--color-leather-dark);
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--color-cream-dark);
    border-bottom: 1px solid var(--color-cream-dark);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    margin-bottom: var(--space-md);
}

.newsletter-text h2 {
    color: var(--color-leather);
    margin-bottom: var(--space-sm);
}

.newsletter-text p {
    color: var(--color-gray);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--color-leather-dark);
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: var(--color-gray-light);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-brass);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.12);
}

.newsletter-form .btn {
    white-space: nowrap;
}

.newsletter-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-gray-light);
    margin: 0;
}

/* ============================================
   BACK TO TOP
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-leather);
    color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-brass);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   LOADING ANIMATION
   ============================================ */

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-leather);
    margin-bottom: var(--space-md);
    animation: pulse 2s ease-in-out infinite;
}

.loader-line {
    width: 100px;
    height: 2px;
    background: var(--color-cream-dark);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-line::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--color-brass);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(250%); }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-dark);
    color: var(--color-cream);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
    color: var(--color-cream);
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: var(--color-gray-light);
    margin-bottom: var(--space-md);
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    font-size: 1.25rem;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.social-links a:hover {
    opacity: 1;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.footer-column h4 {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.footer-column li {
    margin-bottom: var(--space-xs);
}

.footer-column a {
    color: var(--color-gray-light);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(196, 185, 172, 0.2);
    font-size: 0.875rem;
    color: var(--color-gray-light);
}

/* ============================================
   CART
   ============================================ */

.cart-trigger {
    font-weight: 600;
    color: var(--color-brass) !important;
}

.cart-modal .modal-content {
    max-width: 500px;
}

.cart-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--color-cream-dark);
}

.cart-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.cart-items {
    padding: var(--space-md);
    max-height: 400px;
    overflow-y: auto;
}

.cart-empty {
    text-align: center;
    color: var(--color-gray-light);
    padding: var(--space-xl) 0;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-sm);
}

.cart-item-info h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.cart-item-info p {
    font-size: 0.875rem;
    color: var(--color-gray-light);
    margin: 0;
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.cart-item-price span {
    font-weight: 600;
    color: var(--color-brass);
}

.cart-remove {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream-dark);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--color-gray);
    transition: all var(--transition-fast);
}

.cart-remove:hover {
    background: var(--color-leather);
    color: var(--color-cream);
}

.cart-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--color-cream-dark);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-cream-dark);
}

.cart-total span:last-child {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-brass);
}

/* ============================================
   MODAL
   ============================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 24, 16, 0.8);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: transform var(--transition-base);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-gray);
    background: var(--bg-secondary);
    border-radius: 50%;
    z-index: 10;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--color-leather);
    color: var(--color-cream);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-image {
    aspect-ratio: 1;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: var(--space-xl);
}

.modal-info h3 {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.modal-category {
    font-size: 0.875rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.modal-price {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-brass);
    margin-bottom: var(--space-lg);
}

.modal-description {
    margin-bottom: var(--space-lg);
}

.modal-description p {
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.modal-description ul {
    padding-left: var(--space-md);
}

.modal-description li {
    list-style: disc;
    margin-bottom: var(--space-xs);
    color: var(--color-gray);
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    padding: calc(120px + var(--space-xl)) 0 var(--space-xl);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
}

.page-description {
    font-size: 1.25rem;
    color: var(--color-gray);
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    background: var(--color-leather);
    color: var(--color-cream);
    padding: var(--space-2xl) 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--color-cream);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.cta .btn-secondary {
    border-color: var(--color-cream);
    color: var(--color-cream);
}

.cta .btn-secondary:hover {
    background: var(--color-cream);
    color: var(--color-leather);
}

/* ============================================
   COLLECTION PAGE
   ============================================ */

.collection-filters {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    padding: 0 var(--space-md);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-leather);
    background: transparent;
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-leather);
    color: var(--color-cream);
    border-color: var(--color-leather);
}

.collection-cta {
    text-align: center;
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-cream-dark);
}

.collection-cta h3 {
    margin-bottom: var(--space-sm);
}

.collection-cta p {
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
}

/* ============================================
   SHOP PAGE
   ============================================ */

.shop-full {
    padding-top: var(--space-xl);
}

.shop-features .feature {
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

.shop-features .feature-icon {
    width: 32px;
    height: 32px;
    background: var(--color-brass);
    color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.shop-features .feature strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--color-leather-dark);
}

.shop-features .feature p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
}

.shop-guarantees {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-cream-dark);
}

.shop-guarantees h3 {
    margin-bottom: var(--space-md);
}

.shop-guarantees ul {
    list-style: disc;
    padding-left: var(--space-md);
}

.shop-guarantees li {
    margin-bottom: var(--space-xs);
    color: var(--color-gray);
}

/* ============================================
   CARE PAGE
   ============================================ */

.care-full {
    padding-top: var(--space-xl);
}

.care-products {
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-cream-dark);
}

.care-products h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.product-card {
    background: var(--bg-primary);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
}

.product-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
}

.product-card p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-full {
    padding-top: var(--space-xl);
}

.values {
    background: var(--bg-secondary);
    padding: var(--space-2xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.value-card {
    background: var(--bg-primary);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
}

.value-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    color: var(--color-brass);
    opacity: 0.5;
    margin-bottom: var(--space-sm);
}

.value-card h3 {
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--color-gray);
    margin: 0;
}

.stats-section {
    background: var(--color-leather);
    color: var(--color-cream);
    padding: var(--space-2xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    text-align: center;
}

.stat-large .stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.stat-large .stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.process-detail {
    padding: var(--space-2xl) 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.timeline-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.timeline-step.reverse {
    direction: rtl;
}

.timeline-step.reverse > * {
    direction: ltr;
}

.step-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.step-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.step-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-brass);
    margin-bottom: var(--space-sm);
}

.step-content h3 {
    margin-bottom: var(--space-sm);
}

.step-content p {
    color: var(--color-gray);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-full {
    padding-top: var(--space-xl);
}

.contact-block {
    margin-bottom: var(--space-xl);
}

.contact-block h3 {
    margin-bottom: var(--space-md);
    font-size: 1.25rem;
}

.social-large {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-cream-dark);
}

.social-icon {
    font-size: 1.5rem;
}

.social-name {
    font-weight: 500;
}

.social-handle {
    margin-left: auto;
    font-size: 0.875rem;
    color: var(--color-gray-light);
}

.faq-preview .faq-item {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-cream-dark);
}

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

.faq-preview strong {
    display: block;
    margin-bottom: var(--space-xs);
    color: var(--color-leather);
}

.faq-preview p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
}

.map-section {
    background: var(--bg-secondary);
    padding: var(--space-2xl) 0;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-2xl);
    align-items: center;
}

.map-info h3 {
    margin-bottom: var(--space-md);
}

.map-info > p {
    color: var(--color-gray);
    margin-bottom: var(--space-lg);
}

.map-details p {
    margin-bottom: var(--space-sm);
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.8));
    color: var(--color-cream);
}

.map-overlay span {
    font-size: 1.125rem;
    font-weight: 500;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .care-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .modal-image {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        aspect-ratio: 16/9;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: calc(80px + var(--space-xl)) var(--space-lg) var(--space-lg);
        gap: var(--space-md);
        transition: right var(--transition-base);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(100px + var(--space-xl));
    }
    
    .hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: var(--space-xl);
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .shop-layout,
    .about-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-info {
        padding-right: 0;
    }
    
    .about-image {
        order: 2;
    }
    
    .about-content {
        order: 1;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    

}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat {
        text-align: left;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .back-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-step,
    .timeline-step.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

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

    .collection-filters {
        gap: var(--space-xs);
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Product Detail Responsive */
    .product-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .product-images {
        position: relative;
        top: 0;
    }

    .product-title {
        font-size: 1.75rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

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

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

    .tabs-nav {
        gap: var(--space-sm);
    }

    .tab-btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.875rem;
    }

    .breadcrumb {
        padding-top: calc(80px + var(--space-sm));
    }
}

/* ============================================
   ENHANCED HOVER EFFECTS
   ============================================ */

.collection-item {
    transition: transform var(--transition-base);
}

.collection-item:hover {
    transform: translateY(-8px);
}

.collection-item:hover .collection-image img {
    transform: scale(1.08);
}

/* Smooth reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Better focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-brass);
    outline-offset: 2px;
}

/* Smooth transitions for all interactive elements */
a, button, input, select, textarea, .collection-item, .care-card, .value-card {
    transition: all var(--transition-base);
}

/* Better mobile menu animation */
.nav-menu {
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle span {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Improved form styling */
input:focus,
select:focus,
textarea:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(184, 115, 51, 0.15);
}

/* Button hover lift effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* Smooth scroll behavior for whole page */
html {
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
body {
    scrollbar-width: thin;
    scrollbar-color: var(--color-cream-dark) transparent;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: transparent;
}

body::-webkit-scrollbar-thumb {
    background: var(--color-cream-dark);
    border-radius: 4px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--color-stone);
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
    padding: calc(80px + var(--space-md)) 0 var(--space-md);
    background: var(--bg-secondary);
    font-size: 0.875rem;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.breadcrumb a {
    color: var(--color-gray);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-brass);
}

.breadcrumb .current {
    color: var(--color-leather);
    font-weight: 500;
}

.breadcrumb span {
    color: var(--color-gray-light);
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */

.product-detail {
    padding: var(--space-xl) 0;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

/* Product Images */
.product-images {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.product-image-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-md);
    background: var(--bg-secondary);
}

.product-image-main img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.product-image-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.product-image-thumbs .thumb {
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    padding: 0;
    background: none;
}

.product-image-thumbs .thumb.active,
.product-image-thumbs .thumb:hover {
    border-color: var(--color-brass);
}

.product-image-thumbs .thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Product Info */
.product-info {
    padding-top: var(--space-md);
}

.product-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-brass);
    margin-bottom: var(--space-sm);
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.product-price {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--color-brass);
    margin-bottom: var(--space-lg);
}

.product-description {
    margin-bottom: var(--space-xl);
}

.product-description p {
    color: var(--color-gray);
    margin-bottom: var(--space-md);
}

.product-features,
.product-specs {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-cream-dark);
}

.product-features h3,
.product-specs h3,
.product-options h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.product-features ul {
    list-style: disc;
    padding-left: var(--space-md);
}

.product-features li {
    margin-bottom: var(--space-xs);
    color: var(--color-gray);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.spec {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gray-light);
    margin-bottom: var(--space-xs);
}

.spec-value {
    font-weight: 500;
    color: var(--color-leather);
}

/* Product Options */
.product-options {
    margin-bottom: var(--space-xl);
}

.option-group {
    margin-bottom: var(--space-md);
}

.option-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--color-leather);
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.option-btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--color-leather);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.option-btn:hover,
.option-btn.active {
    border-color: var(--color-brass);
    background: rgba(184, 115, 51, 0.05);
}

.option-btn.active {
    font-weight: 500;
}

.color-swatches {
    display: flex;
    gap: var(--space-sm);
}

.swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.swatch:hover,
.swatch.active {
    border-color: var(--color-leather);
    transform: scale(1.1);
}

/* Product Total */
.product-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-top: 2px solid var(--color-leather);
    margin-bottom: var(--space-md);
}

.total-label {
    font-size: 1rem;
    font-weight: 500;
}

.total-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-brass);
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.product-actions .btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* Product Guarantees */
.product-guarantees {
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.guarantee {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--color-gray);
}

.guarantee:last-child {
    margin-bottom: 0;
}

.guarantee-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brass);
    color: var(--color-cream);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
}

/* ============================================
   PRODUCT TABS
   ============================================ */

.product-tabs {
    padding: var(--space-2xl) 0;
    background: var(--bg-secondary);
}

.tabs-nav {
    display: flex;
    gap: var(--space-md);
    border-bottom: 1px solid var(--color-cream-dark);
    margin-bottom: var(--space-xl);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab-btn {
    padding: var(--space-md) var(--space-lg);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-gray);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    color: var(--color-leather);
}

.tab-btn.active {
    color: var(--color-leather);
    border-bottom-color: var(--color-brass);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
    margin-bottom: var(--space-md);
}

.tab-content h4 {
    font-size: 1.125rem;
    margin: var(--space-lg) 0 var(--space-md);
}

.tab-content p,
.tab-content li {
    color: var(--color-gray);
    margin-bottom: var(--space-sm);
}

.tab-content ol,
.tab-content ul {
    padding-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.tab-content li {
    margin-bottom: var(--space-xs);
}

.tab-content ol li {
    list-style: decimal;
}

.tab-content ul li {
    list-style: disc;
}

/* ============================================
   RELATED PRODUCTS
   ============================================ */

.related-products {
    padding: var(--space-2xl) 0;
}

.related-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   NOTIFICATION TOAST
   Notification is fully styled via JS inline styles.
   This rule only adds a hover effect on the close button
   for browsers that support :has(), as a progressive enhancement.
   ============================================ */
.ab-notif button:hover { opacity: 1 !important; }

/* ============================================
   SCROLL ANIMATIONS
   (CSS classes applied by JS — keeps inline style injection out of JS)
   ============================================ */
.fade-in-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.reveal-init {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-init,
    .reveal-init {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
