/* Elegant Manzari Landing Page - Sophisticated Design */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove focus outlines and click borders */
*,
*:focus,
*:active,
*:hover {
    outline: none !important;
    border: none !important;
}

a,
button,
input,
textarea,
select {
    outline: none !important;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
    background: #fafafa;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    transition: background 0.2s ease-in-out, backdrop-filter 0.2s ease-in-out, box-shadow 0.2s ease-in-out, border-bottom 0.2s ease-in-out;
    border-bottom: 1px solid transparent;
    will-change: background, backdrop-filter;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo a {
    display: block;
    text-decoration: none;
}

.header-logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.header-logo-img:hover {
    transform: scale(1.05);
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #c9a96e 0%, #b8986a 100%);
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: #c9a96e;
}

.nav-links li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.espa-certification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.espa-logo {
    height: 50px;
    width: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.espa-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.verify-btn,
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.verify-btn {
    background: rgba(201, 169, 110, 0.1);
    color: #c9a96e;
    border-color: rgba(201, 169, 110, 0.3);
}

.verify-btn:hover {
    background: rgba(201, 169, 110, 0.2);
    border-color: rgba(201, 169, 110, 0.5);
    transform: translateY(-1px);
}

.store-btn {
    background: linear-gradient(135deg, #c9a96e 0%, #b8986a 100%);
    color: #000;
}

.store-btn:hover {
    background: linear-gradient(135deg, #d4b579 0%, #c9a96e 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: #c9a96e;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(201, 169, 110, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 20px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions {
        gap: 15px;
        position: relative;
    }

    .espa-certification {
        position: absolute;
        right: 0;
        top: 100%;
        transform: none;
        margin-top: 15px;
    }

    .espa-logo {
        height: 55px;
    }

    .verify-btn,
    .store-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .verify-btn span,
    .store-btn span {
        display: none;
    }

    .header-container {
        height: 70px;
    }

    .header-logo-img {
        height: 35px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Performance optimizations */
    transform: translate3d(0, 0, 0);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    /* Performance optimizations for smooth scrolling */
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(44, 44, 44, 0.3) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: fadeInUp 1.8s ease-out;
}

.brand-logo {
    width: clamp(200px, 30vw, 400px);
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.brand-tagline {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    opacity: 0.85;
    color: #e8e8e8;
    font-style: italic;
}

.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    color: #c9a96e;
    transform: translateX(-50%) scale(1.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: 0.02em;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a96e, transparent);
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Authenticity Section */
.authenticity-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

/* Authenticity Verification Styles */
.authenticity-result {
    margin-top: 20px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.authenticity-result.visible {
    opacity: 1;
}

.authenticity-table {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background: white;
}

.authenticity-table.visible {
    opacity: 1;
}

@media (min-width: 1024px) {
    .authenticity-table {
        max-width: 900px;
        font-size: 1.05rem;
    }
}

.authenticity-table th,
.authenticity-table td {
    padding: 18px 24px;
    border-bottom: 1px solid #f5f5f5;
    text-align: left;
}

.authenticity-table th {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    font-weight: 600;
    color: #2c2c2c;
    width: 35%;
    white-space: nowrap;
    border-right: 1px solid #e8e8e8;
}

.authenticity-table td {
    background-color: #fff;
    color: #555;
}

.authenticity-table tr:last-child td {
    border-bottom: none;
}

.btn.snbutton {
    background: linear-gradient(135deg, #c9a96e 0%, #b8956b 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.btn.snbutton:hover:not(:disabled):not(.noHover) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, #d4b378 0%, #c3a074 100%);
}

.btn.snbutton:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
}

.form-submit-wrapper {
    margin-top: 10px;
}

.input-full {
    width: 100%;
    padding: 14px 20px;
    border-radius: 15px;
    border: 2px solid #c9a96e;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Inter', sans-serif;
    color: #2c2c2c;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.2);
}

.input-full::placeholder {
    color: #999;
    font-weight: 400;
}

.input-full:focus {
    outline: none;
    border-color: #b8956b;
    box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.25);
    background: #fefefe;
}

/* Feature Row Styles for Authenticity Section */
.feature-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.feature-row__item {
    flex: 1;
}

.feature-row__callout-image {
    max-width: 450px;
}

.callout-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.feature-row__content {
    max-width: 450px;
}

.rte label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    color: #2c2c2c;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.col-sm-8.offset-sm-2 {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem 0;
}

/* Coats Showcase Section */
.coats-showcase {
    padding: 120px 0;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.coats-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.coats-showcase .section-header {
    margin-bottom: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.coats-showcase .section-header h2 {
    color: #ffffff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.coats-showcase .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.coats-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.coat-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.coat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.coat-item.tall {
    grid-column: 2;
    grid-row: 1 / 3;
}

.coat-item.tall .coat-image {
    height: 100%;
}

.coat-item.short .coat-image {
    height: 300px;
}

.coat-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.featured-coat .coat-image {
    height: 500px;
}

.coat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    min-width: 100%;
    min-height: 100%;
}

.coat-item:hover .coat-image img {
    transform: scale(1.05);
}

.coat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.coat-item:hover .coat-overlay {
    opacity: 1;
}

.coat-details h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.coat-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.coat-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.coat-title a:hover {
    color: #c9a96e;
    text-decoration: none;
}

.featured-coat .coat-details h3 {
    font-size: 2rem;
}

.coat-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 300;
}

.coat-price {
    display: block;
    color: #c9a96e;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.view-coat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 169, 110, 0.2);
    color: #c9a96e;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(201, 169, 110, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.view-coat-btn:hover {
    background: #c9a96e;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.showcase-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #c9a96e 0%, #b8986a 100%);
    color: #000;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(201, 169, 110, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, #d4b579 0%, #c9a96e 100%);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Coats Showcase */
@media (max-width: 768px) {
    .coats-showcase {
        padding: 80px 0;
    }

    .coats-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-coat {
        grid-column: span 1;
    }

    .coat-image,
    .featured-coat .coat-image {
        height: 350px;
        background: #333;
        position: relative;
    }

    .coat-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .coat-overlay {
        opacity: 1;
        background: linear-gradient(to bottom,
                transparent 0%,
                rgba(0, 0, 0, 0.7) 70%,
                rgba(0, 0, 0, 0.95) 100%);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: flex-end;
        padding: 20px;
    }

    .coat-details h3,
    .featured-coat .coat-details h3 {
        font-size: 1.3rem;
        color: white;
    }

    .coat-details p {
        color: rgba(255, 255, 255, 0.8);
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #f0ede6 100%);
}

.about-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.about-text .section-header {
    margin-bottom: 30px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-description p strong {
    color: #2c2c2c;
    font-weight: 600;
}

.heritage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #c9a96e;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 120px 0;
    background: #1a1a1a;
    color: white;
}

.craftsmanship-section .section-header h2 {
    color: white;
}

.craftsmanship-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.craft-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s ease;
}

.craft-card:hover {
    transform: translateY(-10px);
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.4);
}

.craft-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c9a96e 0%, #b8986a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #000;
}

.craft-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #c9a96e;
    font-weight: 600;
}

.craft-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.testimonials-section .section-header h2 {
    color: white;
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 169, 110, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #c9a96e;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: #c9a96e;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .heritage-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .craftsmanship-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .craft-card,
    .testimonial-card {
        padding: 30px 25px;
    }

    .coats-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .featured-coat {
        grid-column: span 2;
    }

    .coat-item.tall .coat-image,
    .coat-item.short .coat-image,
    .coat-image,
    .featured-coat .coat-image {
        height: 400px;
        min-height: 400px;
        background: #333;
    }

    .coat-item.tall {
        grid-column: span 2;
        grid-row: unset;
        background: #222;
    }

    .coat-item.tall .coat-image {
        height: 500px;
        min-height: 500px;
    }

    .coat-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        display: block;
        max-width: 100%;
        opacity: 1;
        visibility: visible;
    }

    .coat-overlay {
        padding: 15px;
        opacity: 1;
        background: linear-gradient(to bottom,
                transparent 0%,
                rgba(0, 0, 0, 0.4) 40%,
                rgba(0, 0, 0, 0.8) 100%);
    }

    .coat-details h3 {
        font-size: 1.2rem;
    }

    .coat-details p {
        font-size: 0.8rem;
    }

    /* Mobile coat gallery overrides for smaller screens */
    .coat-item.tall {
        grid-column: span 1 !important;
        grid-row: unset !important;
    }

    .coat-item.tall .coat-image {
        height: 200px !important;
        min-height: 200px !important;
    }

    .coat-image {
        height: 200px !important;
        min-height: 200px !important;
    }

    /* Mobile coat reordering */
    .coat-item:nth-child(4) { /* Black Velvet Mink */
        order: 1 !important;
    }
    
    .coat-item:nth-child(2) { /* Russian Sable */
        order: 2 !important;
    }
    
    .coat-item:nth-child(3) { /* Chinchilla Elite */
        order: 3 !important;
    }
    
    .coat-item:nth-child(1) { /* Blackglama Mink */
        order: 4 !important;
    }
}

/* Collections Section (replacing store section) */
.collections-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
}

.collections-section .section-header h2 {
    color: white;
}

.collections-section .section-header p {
    color: #d0d0d0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.collection-card {
    position: relative;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #444;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.collection-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: #c9a96e;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15) 0%, rgba(201, 169, 110, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card:hover .card-background {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 2.8rem;
    color: #c9a96e;
    margin-bottom: 1.8rem;
}

.collection-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.collection-card p {
    color: #d0d0d0;
    margin-bottom: 1.8rem;
    line-height: 1.7;
    flex-grow: 1;
    font-weight: 300;
}

.card-features {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.25) 0%, rgba(201, 169, 110, 0.15) 100%);
    color: #e8d5b7;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid rgba(201, 169, 110, 0.3);
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #c9a96e 0%, #b8956b 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.collection-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(201, 169, 110, 0.5);
    background: linear-gradient(135deg, #d4b378 0%, #c3a074 100%);
}

/* Contact Details in Collection Cards */
.contact-details {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.5rem 0;
    color: #d0d0d0;
    font-size: 0.9rem;
    font-weight: 400;
}

.contact-details i {
    color: #c9a96e;
    width: 16px;
    text-align: center;
}

/* Collection Buttons Container */
.collection-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
}

.collection-link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #c9a96e;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #c9a96e;
    align-self: flex-start;
    letter-spacing: 0.5px;
}

.collection-link-secondary:hover {
    background: rgba(201, 169, 110, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
}

/* Locations Section */
.locations-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f7f4 0%, #f0ede6 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.location-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 110, 0.1);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.location-card.flagship {
    grid-column: span 2;
}

.location-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.flagship .location-image {
    height: 300px;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.location-card:hover .location-image img {
    transform: scale(1.05);
}

.location-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.location-badge {
    background: linear-gradient(135deg, #c9a96e 0%, #b8986a 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.3);
}

.location-content {
    padding: 30px;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.location-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0;
}

.location-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.location-status i {
    color: #22c55e;
    font-size: 0.6rem;
}

.location-status.closed i {
    color: #ef4444;
}

.location-status span {
    color: #22c55e;
}

.location-status.closed span {
    color: #ef4444;
}

.location-details {
    margin-bottom: 25px;
}

.location-details>div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.location-details i {
    color: #c9a96e;
    font-size: 1rem;
    width: 16px;
    margin-top: 2px;
}

.location-details span {
    color: #555;
    line-height: 1.5;
    font-size: 0.95rem;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-pill {
    background: rgba(201, 169, 110, 0.1);
    color: #c9a96e;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.visit-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #c9a96e 0%, #b8986a 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.3);
}

.visit-store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, #d4b579 0%, #c9a96e 100%);
}

.locations-cta {
    margin-top: 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.1) 0%, rgba(139, 115, 85, 0.05) 100%);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.cta-content h3 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(44, 44, 44, 0.3);
}

.consultation-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 44, 44, 0.4);
    background: linear-gradient(135deg, #3a3a3a 0%, #2c2c2c 100%);
}

.consultation-btn i {
    font-size: 1rem;
}

/* Responsive Design for Locations */
@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .location-card.flagship {
        grid-column: span 1;
    }

    .location-image,
    .flagship .location-image {
        height: 200px;
    }

    .location-content {
        padding: 25px;
    }

    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .locations-cta {
        padding: 40px 25px;
        margin-top: 60px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: white;
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    max-width: 500px;
    flex: 1;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    color: #d0d0d0;
    font-weight: 300;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #c9a96e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid #333;
    color: #999;
    font-weight: 300;
}

/* Consultation Modal */
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.consultation-modal.show {
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 24px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.consultation-modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: #2c2c2c;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: #f5f5f5;
    color: #2c2c2c;
}

.modal-body {
    padding: 2.5rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #f5f5f5 100%);
    border-radius: 16px;
    text-decoration: none;
    color: #2c2c2c;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-option:hover {
    background: linear-gradient(135deg, #c9a96e 0%, #b8956b 100%);
    color: white;
    border-color: #c9a96e;
    transform: translateY(-2px);
}

.contact-option i {
    font-size: 1.3rem;
    color: #c9a96e;
    transition: color 0.3s ease;
}

.contact-option:hover i {
    color: white;
}

/* Appointment modal specific styles */
.appointment-locations {
    margin: 1.8rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.appointment-location {
    padding: 1.8rem;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 16px;
    border-left: 4px solid #c9a96e;
}

.appointment-location h4 {
    color: #2c2c2c;
    margin: 0 0 0.8rem 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.appointment-location h4 i {
    color: #c9a96e;
}

.appointment-location p {
    margin: 0.4rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.appointment-location p:last-child {
    color: #999;
    font-style: italic;
    margin-top: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .feature-row {
        flex-direction: column;
        text-align: center;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .contact-options {
        gap: 0.8rem;
    }

    .collection-card {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 100vh;
    }

    .authenticity-section,
    .collections-section,
    .locations-section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .coats-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .coat-item.tall {
        grid-column: span 1 !important;
        grid-row: unset !important;
    }

    .featured-coat {
        grid-column: span 1;
    }

    .collection-card,
    .location-card {
        padding: 2rem 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #c9a96e;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .collection-card {
        border: 2px solid white;
    }

    .location-card {
        border: 2px solid #2c2c2c;
    }
}

/* Mobile-specific clean coat gallery redesign */
@media (max-width: 768px) {
    /* Clean mobile coat gallery */
    .coats-gallery {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0;
        margin: 0;
    }

    .coat-item {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        background: #1a1a1a;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease;
        margin-bottom: 0;
    }

    .coat-item:active {
        transform: scale(0.98);
    }

    .coat-image {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: #222;
    }

    .coat-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
        transition: none;
    }

    /* Better image positioning for each coat */
    .coat-item:nth-child(1) .coat-image img { /* Blackglama */
        object-position: center 20%;
    }
    
    .coat-item:nth-child(2) .coat-image img { /* Russian Sable */
        object-position: center 15%;
    }
    
    .coat-item:nth-child(3) .coat-image img { /* Chinchilla */
        object-position: center 25%;
    }
    
    .coat-item:nth-child(4) .coat-image img { /* Black Velvet */
        object-position: center 20%;
    }

    .coat-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 50%,
            transparent 100%
        );
        padding: 12px;
        color: white;
    }

    .coat-details h3 {
        font-size: 0.9rem;
        font-weight: 600;
        margin: 0 0 4px 0;
        color: white;
        line-height: 1.2;
    }

    .coat-details p {
        font-size: 0.7rem;
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Mobile coat reordering - Blackglama Mink at the end */
    .coat-item:nth-child(4) { /* Black Velvet Mink */
        order: 1 !important;
    }
    
    .coat-item:nth-child(2) { /* Russian Sable */
        order: 2 !important;
    }
    
    .coat-item:nth-child(3) { /* Chinchilla Elite */
        order: 3 !important;
    }
    
    .coat-item:nth-child(1) { /* Blackglama Mink */
        order: 4 !important;
    }

    /* Remove tall class behavior on mobile */
    .coat-item.tall {
        grid-column: span 1 !important;
        height: auto;
    }

    .coat-item.tall .coat-image {
        height: 200px;
    }

    /* Add proper spacing for CTA button on mobile */
    .showcase-cta {
        margin-top: 40px;
        padding-top: 20px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* Disable hover effects on touch devices */
    .coat-item:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .coat-item:hover .coat-image img {
        transform: none;
    }

    .coat-item:hover .coat-overlay {
        opacity: 1;
    }
}

/* ESPA Modal Styles */
.espa-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.espa-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.espa-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

.espa-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #666;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.espa-modal-close:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.1);
}

.espa-modal-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 5px;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { 
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Responsive modal */
@media (max-width: 768px) {
    .espa-modal-content {
        margin: 20px;
        padding: 15px;
        max-width: calc(100% - 40px);
        max-height: calc(100% - 40px);
    }
    
    .espa-modal-image {
        max-width: 100%;
    }
}