/* Katalog & Lookbook Page CSS */
/* Fixing FAQ Visibility */
/* Katalog & Lookbook Page CSS */
/* Fixing FAQ Visibility */
.erpin-faq-answer {
    display: none;
    color: #333 !important;
    /* Force dark color */
    font-size: 1rem;
    line-height: 1.6;
}

.erpin-faq-answer {
    display: none;
    color: #333 !important;
    font-size: 1rem;
    line-height: 1.6;
    overflow: hidden;
    /* Ensure no float weirdness */
}

.erpin-faq-answer.show {
    display: block !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: #fff;
    /* Ensure it's not transparent on black */
    position: relative;
    z-index: 10;
}

:root {
    --fashion-black: #000000;
    --fashion-accent: #c0a062;
    /* Gold/Beige Accent */
    --fashion-bg: #ffffff;
    --fashion-gray: #f9f9f9;
}

/* Typography Overrides for this page */
.fashion-font {
    font-family: 'Playfair Display', serif;
    /* Assuming we can load this or fallback to serif */
}

/* Hero Section */
.katalog-hero {
    position: relative;
    padding: 180px 0 120px;
    background: #000;
    color: #fff;
    overflow: hidden;
}

.katalog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Overlay for readability if bg image is added */
    z-index: 1;
}

.katalog-hero-content {
    position: relative;
    z-index: 2;
}

.katalog-hero h1 {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: "Didot", "Bodoni MT", "Playfair Display", serif;
}

.katalog-hero h1 span {
    font-style: italic;
    color: var(--fashion-accent);
}

.katalog-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.btn-fashion {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-fashion:hover {
    background: #fff;
    color: #000;
}

/* Gallery / Masonry Layout */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -60px;
    /* Overlap effect */
    position: relative;
    z-index: 3;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.lookbook-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

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

.lookbook-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lookbook-title {
    color: #fff;
    font-size: 1.5rem;
    font-family: serif;
    font-style: italic;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.lookbook-item:hover .lookbook-title {
    transform: translateY(0);
}

/* Services Minimal List */
.fashion-services {
    padding: 100px 0;
    background: #fff;
}

.fs-item {
    border-top: 1px solid #eee;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.fs-item:last-child {
    border-bottom: 1px solid #eee;
}

.fs-item:hover {
    background: #fafafa;
}

.fs-title {
    font-size: 2rem;
    font-weight: 300;
    color: #000;
    font-family: serif;
}

.fs-desc {
    max-width: 400px;
    color: #666;
    font-weight: 300;
    text-align: right;
}

.fs-num {
    font-size: 0.9rem;
    color: var(--fashion-accent);
    margin-right: 20px;
    font-family: monospace;
}

/* Responsive */
@media (max-width: 991px) {
    .katalog-hero h1 {
        font-size: 3rem;
    }

    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 0;
        gap: 15px;
    }

    .fs-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .erpin-faq-item {
        border-bottom: 1px solid #ddd;
        margin-bottom: 0;
    }
}

/* Ensure icons are visible */
.erpin-faq-toggle {
    font-size: 0.9rem;
    color: #666;
}