/* ===================================
   ENZO-M - Luxury Footwear Website
   Custom CSS Stylesheet
   =================================== */

/* === CSS VARIABLES === */
:root {
    /* Colors */
    --primary-color: #2c2c2c;
    --secondary-color: #c9a961;
    --accent-color: #8b7355;
    --light-bg: #fafafa;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-light: #e5e5e5;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

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

address {
    font-style: normal;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

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

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

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

.container-fluid {
    width: 100%;
    padding: 0;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.logo img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-switcher select {
    padding: 6px 10px;
    border: 1px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Screen-reader only */
.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;
}

/* Remove underline animation for brand dropdown toggles (DI CHENZŌ & CAGIVA) */
.nav-link.dropdown-toggle::after {
    display: none;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    padding: 10px 0;
    margin-top: 20px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background-color: var(--light-bg);
    color: var(--secondary-color);
    padding-left: 30px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-description {
    margin-bottom: 40px;
}

.hero-description p {
    color: var(--white);
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 10px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll indicator removed */

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-white {
    background-color: var(--white);
    color: var(--text-dark);
    border-color: var(--white);
}

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

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

/* === SECTIONS === */
section {
    padding: var(--section-padding) 0;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-label.light {
    color: var(--secondary-color);
}

.section-title {
    margin-bottom: 30px;
}

.section-title.light {
    color: var(--white);
}

.decorative-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    margin-bottom: 30px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.section-header {
    margin-bottom: 60px;
}

/* === BRAND STORY SECTION === */
.brand-story {
    background-color: var(--light-bg);
}

.brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-story-content {
    padding-right: 20px;
}

.brand-story-text {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.brand-story-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.brand-story-image {
    position: relative;
}

.brand-story-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    z-index: -1;
}

/* === COLLECTIONS PREVIEW === */
.collections-preview {
    padding: var(--section-padding) 0 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.collection-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.collection-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 60px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.collection-info {
    color: var(--white);
}

.collection-info h3 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.collection-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.collection-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.collection-link {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.collection-link:hover {
    background-color: var(--white);
    color: var(--text-dark);
}

/* === CRAFTSMANSHIP SECTION === */
.craftsmanship {
    position: relative;
    background-color: var(--primary-color);
    color: var(--white);
    overflow: hidden;
}

.craftsmanship-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 0;
}

.craftsmanship-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craftsmanship-content {
    position: relative;
    z-index: 1;
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.craftsmanship-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.craftsmanship-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.craft-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.craft-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--secondary-color);
}

.craftsmanship-item h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.craftsmanship-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* === GALLERY SECTION === */
.gallery {
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* === CTA SECTION === */
.cta-section {
    background-color: var(--light-bg);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--secondary-color) 50%, transparent 100%);
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.cta-badge {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-content h2 {
    color: var(--text-dark);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 25px;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    transition: var(--transition-smooth);
}

.cta-feature:hover {
    transform: translateY(-5px);
}

.cta-feature svg {
    width: 40px;
    height: 40px;
    stroke: var(--secondary-color);
    transition: var(--transition-smooth);
}

.cta-feature:hover svg {
    stroke: var(--accent-color);
    transform: scale(1.1);
}

.cta-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === PAGE HEADER === */
.page-header {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 90px;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-header-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.page-header-content p {
    color: var(--white);
    font-size: 1.3rem;
    font-family: var(--font-serif);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

/* === ABOUT PAGE === */
.about-content {
    padding: 80px 0;
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-text p {
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
}

.about-image img {
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* === VALUES SECTION === */
.values-section {
    background-color: var(--light-bg);
    padding: var(--section-padding) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--secondary-color);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
}

/* === BRANDS SECTION === */
.brands-section {
    padding: var(--section-padding) 0;
}

.brand-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.brand-feature:last-child {
    margin-bottom: 0;
}

.brand-feature.reverse {
    direction: rtl;
}

.brand-feature.reverse > * {
    direction: ltr;
}

.brand-image img {
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.brand-content h2 {
    margin-bottom: 25px;
}

.brand-content p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.brand-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* === PROCESS SECTION === */
.process-section {
    background-color: var(--light-bg);
    padding: var(--section-padding) 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

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

.process-step::after {
    content: '';
    /* Hide connector line on desktop */
    display: none;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.process-step p {
    font-size: 0.95rem;
}

/* === CONTACT PAGE === */
.contact-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-intro-text {
    font-size: 1.1rem;
    margin-top: 30px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--light-bg);
    padding: 40px;
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--secondary-color);
}

.contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p,
.contact-card address p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* === CONTACT FORM === */
.contact-form-wrapper {
    background: var(--light-bg);
    padding: 50px;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-light);
    background: var(--white);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

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

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* === MAP SECTION === */
.map-section {
    margin-top: 60px;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* === FIND RETAILER PAGE === */
.find-retailer-section {
    padding: 80px 0;
}

.retailer-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.retailer-intro-text {
    font-size: 1.1rem;
    margin-top: 30px;
}

.retailer-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.retailer-info-card {
    background: var(--light-bg);
    padding: 60px;
    text-align: center;
    margin-bottom: 60px;
}

.retailer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.retailer-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--secondary-color);
}

.retailer-info-card h3 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.retailer-info-card p {
    font-size: 1.1rem;
}

.become-retailer-card {
    background: var(--white);
    padding: 60px;
    border: 2px solid var(--border-light);
}

.become-retailer-card h2 {
    margin-bottom: 25px;
}

.become-retailer-card > p {
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.retailer-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.retailer-benefits ul {
    margin-bottom: 40px;
}

.retailer-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.retailer-benefits li svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.retailer-cta {
    text-align: center;
}

.retailer-contact-section {
    max-width: 1000px;
    margin: 60px auto 0;
}

.retailer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.retailer-contact-card {
    background: var(--light-bg);
    padding: 50px 40px;
    text-align: center;
}

.retailer-contact-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.retailer-contact-card p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* === BRANDS SHOWCASE === */
.brands-showcase {
    background-color: var(--light-bg);
    padding: var(--section-padding) 0;
}

.brands-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.brand-showcase-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

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

.brand-showcase-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.brand-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-showcase-card:hover .brand-showcase-image img {
    transform: scale(1.1);
}

.brand-showcase-content {
    padding: 40px;
    text-align: center;
}

.brand-showcase-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.brand-showcase-content p {
    font-size: 1.05rem;
}

/* === COLLECTION PAGES === */
.collection-header {
    height: 500px;
}

.collection-coming-soon {
    padding: var(--section-padding) 0;
    text-align: center;
}

.coming-soon-content {
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.coming-soon-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === COLLECTION SHOWCASE === */
.collection-intro {
    padding: 80px 0 60px;
    background-color: var(--light-bg);
}

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

.collection-intro-text {
    font-size: 1.1rem;
    margin-top: 30px;
    line-height: 1.9;
}

/* Product Grid Section */
.product-collection-section {
    padding: 80px 0;
    background-color: var(--white);
}

.product-collection-section:nth-child(even) {
    background-color: var(--white);
}

.product-collection-header {
    text-align: center;
    margin-bottom: 60px;
}

.product-collection-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.product-collection-description {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 20px auto 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: transparent;
}

.product-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Image Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: zoomIn 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}

.lightbox-cta {
    margin-top: 0;
    animation: fadeIn 0.5s ease 0.2s backwards;
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.lightbox-close:hover {
    background-color: var(--secondary-color);
    transform: rotate(90deg);
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

.lightbox-close:hover::before,
.lightbox-close:hover::after {
    background-color: var(--white);
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-info {
    padding: 15px 10px 0;
    text-align: center;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-collection-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Model Showcase Section */
.model-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdfcfb 0%, #ffffff 25%, #f8f7f5 50%, #ffffff 75%, #fdfcfb 100%);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.model-showcase:nth-of-type(odd) {
    background: linear-gradient(225deg, #f9f8f6 0%, #ffffff 25%, #fdfcfb 50%, #ffffff 75%, #f9f8f6 100%);
}

.model-showcase .container {
    position: relative;
    z-index: 4;
}

.model-showcase-content {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.model-showcase-content h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    text-shadow: none;
    letter-spacing: 1px;
}

.model-showcase-content p {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: none;
    line-height: 1.9;
}

.model-showcase-content .decorative-line {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(201, 169, 97, 0.3) 20%,
        var(--secondary-color) 50%,
        rgba(201, 169, 97, 0.3) 80%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.15);
}

.model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.model-showcase-cta {
    text-align: center;
    margin-top: 50px;
}

.model-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(201, 169, 97, 0.1) inset;
    transition: var(--transition-smooth);
    background: var(--white);
}

.model-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(201, 169, 97, 0.03) 0%,
        transparent 50%,
        rgba(44, 44, 44, 0.05) 100%
    );
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.model-item:hover {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(201, 169, 97, 0.25) inset,
        0 0 30px rgba(201, 169, 97, 0.08);
    transform: translateY(-5px);
}

.model-item:hover::after {
    opacity: 0.2;
}

.model-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Collection Features */
.collection-features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-bg);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--secondary-color);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 0.95rem;
}

/* === FOOTER === */
.footer {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 25px;
}

.footer-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-column h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--text-dark);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-credit a {
    color: inherit;
    transition: var(--transition-fast);
}

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

/* Desktop-only: place season on a new line for Explore links */
@media (min-width: 1025px) {
    .footer-links a .season {
        display: block;
    }
}

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

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 1s ease 0.9s forwards;
}

/* === RESPONSIVE DESIGN === */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .brand-story-grid,
    .about-grid,
    .contact-grid,
    .brand-feature {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .brand-feature.reverse {
        direction: ltr;
    }
    
    .image-accent {
        top: -15px;
        right: -15px;
    }
    
    .craftsmanship-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step::after {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .model-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* Collections: auto show overlay on in-view (mobile/tablet) */
    .collection-card.in-view .collection-overlay {
        opacity: 1;
    }
    .collection-card.in-view .collection-image-wrapper img {
        transform: scale(1.08);
    }

    /* Ensure hero fills full viewport height on tablets */
    .hero {
        height: 100vh;
        min-height: 100vh;
        height: 100svh;
        min-height: 100svh;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px 20px;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .lang-switcher {
        width: 100%;
    }

    .lang-switcher select {
        width: 100%;
        padding: 12px 14px;
        font-size: 1rem;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Hero */
    .hero {
        /* Fill full viewport height on mobile */
        height: 100vh;
        min-height: 100vh;
        /* Use stable viewport units where supported to avoid browser UI chrome issues */
        height: 100svh;
        min-height: 100svh;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Collections */
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-overlay {
        padding: 40px 30px;
    }
    
    .collection-info h3 {
        font-size: 2rem;
    }
    
    /* Craftsmanship */
    .craftsmanship-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    /* Process */
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-form-wrapper {
        padding: 30px;
    }
    
    /* Retailer */
    .retailer-info-card,
    .become-retailer-card {
        padding: 40px 30px;
    }
    
    .retailer-contact-grid {
        grid-template-columns: 1fr;
    }
    
    /* Brands Showcase */
    .brands-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .model-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Lightbox on Mobile */
    .lightbox-content {
        max-width: 95%;
        max-height: 90vh;
        gap: 20px;
    }
    
    .lightbox-image {
        max-height: 65vh;
    }
    
    .lightbox-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
    }
    
    .lightbox-cta {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    /* Page Header */
    .page-header {
        height: 300px;
    }
    
    /* Buttons */
    .btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-features {
        gap: 30px;
    }

    .cta-feature {
        min-width: 120px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Brand Links */
    .brand-links {
        flex-direction: column;
    }
    
    .brand-links .btn {
        width: 100%;
        text-align: center;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }
    
    /* Ensure mobile menu sits flush under shorter header on small phones */
    .nav-menu {
        top: 70px;
        height: calc(100svh - 70px);
    }
    
    .nav-container {
        padding: 15px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .collection-overlay {
        padding: 30px 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .retailer-info-card,
    .become-retailer-card {
        padding: 30px 20px;
    }
    
    .value-card,
    .craftsmanship-item {
        padding: 30px 20px;
    }

    /* CTA Section */
    .cta-section {
        padding: 40px 0;
    }

    .cta-features {
        flex-direction: column;
        gap: 20px;
    }

    .cta-feature {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px;
    }

    .cta-feature svg {
        width: 32px;
        height: 32px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .scroll-indicator,
    .btn,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    h1 {
        font-size: 24pt;
    }
    
    h2 {
        font-size: 20pt;
    }
    
    h3 {
        font-size: 16pt;
    }
}

