/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0a;
    color: #e8e3d3;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 40px; */
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(232, 227, 211, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #c9a876;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #e8e3d3;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #c9a876;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #c9a876;
}

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

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.current-lang {
    color: #c9a876;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid rgba(201, 168, 118, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    background-color: rgba(201, 168, 118, 0.1);
}

.current-lang:hover {
    background-color: rgba(201, 168, 118, 0.2);
    border-color: rgba(201, 168, 118, 0.5);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 227, 211, 0.1);
    border-radius: 4px;
    min-width: 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 10px 15px;
    font-size: 14px;
    color: #e8e3d3;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.lang-option:hover {
    background: rgba(201, 168, 118, 0.1);
    color: #c9a876;
}

.lang-option.active {
    color: #c9a876;
    background-color: rgba(201, 168, 118, 0.1);
}



/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #e8e3d3;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: #c9a876;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    border: 1px solid #c9a876;
    color: #c9a876;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #c9a876;
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: #0a0a0a;
}

.cta-button.secondary {
    border-color: #666;
    color: #e8e3d3;
}

.cta-button.secondary::before {
    background-color: #e8e3d3;
}

.hero-image {
    position: relative;
    /* height: 500px; */
    animation: fadeInRight 1s ease-out 0.3s both;
    object-fit: cover;
}

.product-showcase {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 500px;
    /* height: auto; */
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 8px;
}

.product-image::before {
    display: none;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #666;
    font-size: 12px;
    letter-spacing: 1px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: #666;
    margin: 10px auto 0;
    animation: scrollBounce 2s infinite;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: #0f0f0f;
}

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

.about-text h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #e8e3d3;
}

.about-lead {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #c9a876;
    line-height: 1.7;
}

.about-text p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #b8b5a8;
    line-height: 1.8;
}

.about-visual {
    position: relative;
}

.craft-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.craft-image::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201, 168, 118, 0.3);
    border-radius: 4px;
}

/* Collection Section */
.collection {
    padding: 120px 0;
    background-color: #0a0a0a;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 80px;
    color: #e8e3d3;
}

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

.shoe-item {
    position: relative;
    transition: transform 0.4s ease;
}

.shoe-item:hover {
    transform: translateY(-10px);
}

.shoe-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.shoe-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(201, 168, 118, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.shoe-item:hover .shoe-image::before {
    opacity: 1;
}

.shoe-info h4 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #e8e3d3;
}

.shoe-info p {
    font-size: 14px;
    color: #999;
    font-weight: 300;
}

/* Different shoe types styling */
.oxford::after {
    content: 'Oxford';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #c9a876;
    opacity: 0.7;
}

.loafer::after {
    content: 'Loafer';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #c9a876;
    opacity: 0.7;
}

.boot::after {
    content: 'Boot';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #c9a876;
    opacity: 0.7;
}

.brogue::after {
    content: 'Brogue';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #c9a876;
    opacity: 0.7;
}

/* Modern Collection Grid */
.collection-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.collection-item {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    cursor: pointer;
}

.collection-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.collection-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    transition: all 0.6s ease;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.collection-img[src=""], .collection-img:not([src]) {
    display: none;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 1;
    transition: all 0.6s ease;
}

.collection-content {
    color: white;
    transform: translateY(0);
    transition: transform 0.6s ease;
}

.collection-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #c9a876;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.collection-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.collection-arrow {
    font-size: 1.5rem;
    color: #c9a876;
    display: none;
    transform: translateX(-10px);
    transition: transform 0.3s ease;
}

/* Modern Collection Hover Effects */
.collection-item:hover .collection-image {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(201, 168, 118, 0.15);
}

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

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

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

.collection-item:hover .collection-arrow {
    transform: translateX(0);
}

/* Bespoke Section */
.bespoke {
    padding: 120px 0;
    background-color: #0f0f0f;
}

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

.bespoke-text h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #e8e3d3;
}

.bespoke-lead {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #c9a876;
    line-height: 1.7;
}

.bespoke-text p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #b8b5a8;
    line-height: 1.8;
}

.bespoke-cta {
    margin-top: 40px;
}

.craft-process {

    
}

.process-image {
    height: 600px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.measuring::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #c9a876;
}

.crafting::before {
    content: 'Crafting';
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #c9a876;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background-color: #0a0a0a;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
}

.testimonial {
    text-align: center;
    padding: 40px 20px;
}

.testimonial p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    color: #e8e3d3;
    line-height: 1.6;
}

.client-name {
    font-size: 12px;
    color: #999;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Boutique Section */
.boutique {
    padding: 120px 0;
    background-color: #0f0f0f;
}

.boutique-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.boutique-text h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #e8e3d3;
}

.boutique-lead {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #c9a876;
    line-height: 1.7;
}

.boutique-details {
    display: grid;
    gap: 30px;
}

.detail h5 {
    font-size: 14px;
    color: #c9a876;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.detail p {
    font-size: 16px;
    color: #b8b5a8;
    font-weight: 300;
    line-height: 1.6;
}

.boutique-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.boutique-image {
    height: 250px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.interior img, .exterior img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.interior::before {
    content: 'Interior';
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #c9a876;
    
}

.exterior::before {
    content: 'Exterior';
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: #c9a876;
}

/* Instagram Section */
.instagram {
    padding: 120px 0;
    background-color: #0a0a0a;
}

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

.instagram-embed-item {
    display: flex;
    justify-content: center;
}

.instagram-media {
    background: #FFF !important;
    border: 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    margin: 0 !important;
    max-width: 540px !important;
    min-width: 326px !important;
    padding: 0 !important;
    width: 100% !important;
}

/* Dark theme adjustments for Instagram embeds */
.instagram-media > div {
    background: #1a1a1a !important;
    border-radius: 8px !important;
}

.instagram-media a {
    background: #1a1a1a !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .instagram-embed-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .instagram-media {
        min-width: 280px !important;
    }
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(232, 227, 211, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-logo h2 {
    font-size: 24px;
    color: #c9a876;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    color: #999;
    font-weight: 300;
}

.footer-contact p {
    font-size: 14px;
    color: #b8b5a8;
    font-weight: 300;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-social a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #c9a876;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(232, 227, 211, 0.1);
}

.footer-bottom p {
    font-size: 12px;
    color: #666;
    font-weight: 300;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 15px 30px;
    }
    
    .hero-content,
    .about-content,
    .bespoke-content,
    .boutique-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-image {
      
    }
    
    .product-image {
        width: auto;
        height: 250px;
    }
    
    .product-image .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-tagline {
        font-size: 40px;
    }
    
    .collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .language-switcher {
        margin-left: 10px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    .language-switcher {
        margin-left: 15px;
    }
    
    .current-lang {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .hero-tagline {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-text h3,
    .bespoke-text h3,
    .boutique-text h3 {
        font-size: 28px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
        height: auto;
    }
    
    .hero-tagline {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
    }
    
    .craft-process {
        grid-template-columns: 1fr;
    }
    
    .boutique-images {
        grid-template-columns: 1fr;
    }
}

/* Smooth scrolling and performance optimizations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High-end browser optimizations */
.hero-image,
.craft-image,
.shoe-image,
.process-image,
.boutique-image,
.instagram-post {
    will-change: transform;
}

.cta-button {
    will-change: transform, background-color;
}

/* History Timeline Section */
.history {
    padding: 120px 0;
    /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
    overflow: hidden;
}

.history .section-title {
    color: #e8e3d3;
    margin-bottom: 3rem;
    font-family: 'Cormorant Garamond', serif;
}

.timeline {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
    width: 100%;
    overflow: hidden;
}

.timeline-slider {
    display: flex !important;
    gap: 2rem;
    padding: 2rem 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 3rem;
    flex-wrap: nowrap;
    width: 100%;
}

.timeline-slider::-webkit-scrollbar {
    height: 8px;
}

.timeline-slider::-webkit-scrollbar-track {
    background: rgba(201, 168, 118, 0.1);
    border-radius: 4px;
}

.timeline-slider::-webkit-scrollbar-thumb {
    background: #c9a876;
    border-radius: 4px;
}

.timeline-slider::-webkit-scrollbar-thumb:hover {
    background: #b8956a;
}

.timeline-item {
    flex: 0 0 350px !important;
    min-width: 350px;
    /* background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); */
    border-radius: 16px;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4); */
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    scroll-snap-align: center;
    position: relative;
    display: block;
    border: 1px solid rgba(201, 168, 118, 0.2);
}

.timeline-item:hover {
    transform: translateY(-10px);
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-color: rgba(201, 168, 118, 0.4); */
}

.timeline-item.active {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(201, 168, 118, 0.3);
    border: 2px solid #c9a876;
}

.timeline-year {
    background: linear-gradient(135deg, #c9a876, #b8956a);
    color: #0a0a0a;
    padding: 1.5rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.timeline-year::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.timeline-item:hover .timeline-year::before {
    left: 100%;
}

.timeline-content {
    padding: 2rem;
    text-align: center;
    background: #1a1a1a;
}

.timeline-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: #e8e3d3;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.timeline-content p {
    font-family: 'Inter', sans-serif;
    color: #b8b5a8;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.timeline-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-arrow {
    background: linear-gradient(135deg, #c9a876, #b8956a);
    color: #0a0a0a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 118, 0.3);
}

.nav-arrow:hover {
    background: linear-gradient(135deg, #b8956a, #a6834f);
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 168, 118, 0.5);
}

.nav-arrow:active {
    transform: translateY(0) scale(1.05);
}

.timeline-dots {
    display: flex;
    gap: 0.5rem;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 168, 118, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-dot:hover {
    background: rgba(201, 168, 118, 0.6);
    transform: scale(1.1);
}

.timeline-dot.active {
    background: #c9a876;
    transform: scale(1.3);
    border-color: rgba(201, 168, 118, 0.3);
    box-shadow: 0 0 10px rgba(201, 168, 118, 0.4);
}

@media (max-width: 768px) {
    .timeline-item {
        flex: 0 0 300px !important;
        min-width: 300px;
    }
    
    .timeline-year {
        font-size: 1.6rem;
        padding: 1.2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h4 {
        font-size: 1.2rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Clickable Links Styling */
.location-link, .phone-link, .email-link {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.location-link:hover, .phone-link:hover, .email-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.phone-link {
    font-weight: 500;
}

.email-link {
    font-style: italic;
}

/* Fixed Social Buttons */
.fixed-social-buttons {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.instagram-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(240, 148, 51, 0.4);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.social-btn svg {
    width: 28px;
    height: 28px;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    max-width: 300px;
    width: 100%;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-nav-link {
    color: #e8e3d3;
    text-decoration: none;
    font-size: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-link:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-link:hover {
    color: var(--color-primary);
    transform: translateY(-5px);
}

.mobile-language-switcher {
    border-top: 1px solid rgba(201, 168, 118, 0.3);
    padding-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease 0.6s;
}

.mobile-menu-overlay.active .mobile-language-switcher {
    opacity: 1;
    transform: translateY(0);
}

.mobile-lang-title {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-lang-options {
   width: 80%;
   margin: 0 auto;
}

.mobile-lang-option {
    color: #b8b5a8;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid transparent;
}

.mobile-lang-option:hover,
.mobile-lang-option.active {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(201, 168, 118, 0.1);
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    .desktop-nav,
    .desktop-lang {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-container {
        justify-content: space-between;
    }
}

/* Mobile Hero Section Improvements */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 80px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
    }
    
    .hero-text {
        order: 2;
        max-width: 100%;
    }
    
    .hero-image {
        order: 1;
        /* max-width: 280px; */
        margin: 0 auto;
    }
    
    .hero-tagline {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        opacity: 0.9;
    }
    
    .hero-scroll-indicator {
        margin-top: 2rem;
        display: none;
    }
}

/* Mobile About Section */
@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-visual {
        order: 1;
        /* max-width: 280px; */
        margin: 0 auto;
    }
    
    .about-text h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .about-lead {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}

/* Mobile Collection Section */
@media (max-width: 768px) {
    .collection {
        padding: 80px 0;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 20px;
    }

    .collection-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
        padding: 0 20px;
    }

    .collection-item {
        margin-bottom: 1rem;
    }

    .collection-image {
        height: 220px;
        border-radius: 8px;
    }

    .collection-overlay {
        padding: 1.2rem;
    }

    .collection-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .collection-content p {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.4;
    }

    .collection-arrow {
        font-size: 1.1rem;
    }

    /* Touch-friendly hover effects for mobile */
    .collection-item:active .collection-overlay {
        opacity: 1;
    }

    .collection-item:active .collection-content {
        transform: translateY(0);
    }
    
    .shoe-item {
        text-align: center;
    }
    
    .shoe-info h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .shoe-info p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Mobile Bespoke Section */
@media (max-width: 768px) {
    .bespoke {
        padding: 80px 0;
    }
    
    .bespoke-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
    }
    
    .bespoke-text h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .bespoke-lead {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .bespoke-text p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .craft-process {
        /* max-width: 280px; */
        margin: 0 auto;
    }
}

/* Mobile Boutique Section */
@media (max-width: 768px) {
    .boutique {
        padding: 80px 0;
    }
    
    .boutique-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding: 0 20px;
    }
    
    .boutique-text h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .boutique-lead {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .boutique-details {
        gap: 2rem;
        text-align: center;
    }
    
    .detail h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        color: var(--color-primary);
    }
    
    .detail p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .boutique-images {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .footer-logo h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .footer-social {
        gap: 1.5rem;
    }
    
    .footer-social a {
        font-size: 0.9rem;
    }
}

/* Mobile Responsive for Fixed Buttons */
@media (max-width: 768px) {
    .fixed-social-buttons {
        left: 20px;
        bottom: 30px;
        gap: 12px;
    }
    
    .social-btn {
        width: 50px;
        height: 50px;
    }
    
    .social-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 15px;
    }
    
    .about-content,
    .bespoke-content,
    .boutique-content,
    .footer-content {
        padding: 0 15px;
    }
    
    .collection-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .collection-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 15px;
    }

    .collection-image {
        height: 200px;
    }

    .collection-overlay {
        padding: 1rem;
    }

    .collection-content h4 {
        font-size: 1.2rem;
    }

    .collection-content p {
        font-size: 0.75rem;
    }
    
    .fixed-social-buttons {
        left: 15px;
        bottom: 30px;
        gap: 10px;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
    }
    
    .social-btn svg {
        width: 22px;
        height: 22px;
    }
} 