/* FALLEN LUXURY - DESIGNER PAGE */

/* ALL DESIGNERS PAGE */
.fl-designers-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.fl-designers-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}
.fl-designers-header h1 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #1a1a1a;
}
.fl-designers-header p {
    color: #888;
    font-size: 14px;
    letter-spacing: 0.05em;
}
.fl-designers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
}
.fl-designer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    gap: 14px;
    transition: transform 0.3s ease;
}
.fl-designer-card:hover { transform: translateY(-4px); }
.fl-designer-card-logo {
    width: 180px;
    height: 180px;
    background: #f8f8f8;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #ebebeb;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.fl-designer-card:hover .fl-designer-card-logo {
    border-color: #c9a96e;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.fl-designer-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}
.fl-designer-card-placeholder {
    width: 180px;
    height: 180px;
    background: #f0f0f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ebebeb;
}
.fl-designer-card-placeholder span {
    font-size: 64px;
    font-weight: 300;
    color: #ccc;
    font-family: Georgia, serif;
}
.fl-designer-card-name {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    text-align: center;
}

/* SINGLE DESIGNER PAGE */
.fl-designer-page { width: 100%; }

.fl-designer-banner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #f5f5f5;
}
.fl-designer-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fl-designer-logo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}
.fl-designer-logo-overlay img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}
.fl-designer-banner-placeholder {
    width: 100%;
    height: 200px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ebebeb;
}
.fl-designer-logo-only {
    height: 80px;
    width: auto;
    object-fit: contain;
}
.fl-designer-name-only {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1a1a;
}
.fl-designer-title {
    text-align: center;
    padding: 40px 20px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.fl-designer-title h1 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.fl-designer-tagline {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.03em;
}
.fl-designer-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #e8e8e8;
    margin: 10px 0 0;
}
.fl-tab-btn {
    padding: 14px 50px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
}
.fl-tab-btn:hover { color: #1a1a1a; }
.fl-tab-btn.fl-tab-active {
    color: #1a1a1a;
    border-bottom-color: #1a1a1a;
}
.fl-tab-content {
    padding: 50px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}
.fl-tab-hidden { display: none !important; }
.fl-designer-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}
.fl-designer-empty {
    text-align: center;
    color: #aaa;
    padding: 40px;
}
.fl-designer-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.fl-designer-product {
    text-decoration: none;
    color: #1a1a1a;
}
.fl-designer-product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f8f8;
    margin-bottom: 14px;
}
.fl-designer-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fl-designer-product:hover .fl-designer-product-image img {
    transform: scale(1.05);
}
.fl-product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}
.fl-product-no-image span {
    font-size: 48px;
    color: #ccc;
    font-family: Georgia, serif;
}
.fl-designer-product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.fl-designer-product-name {
    font-size: 13px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.4;
}
.fl-designer-product-price {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}
.fl-designer-no-products {
    text-align: center;
    color: #aaa;
    padding: 60px;
    grid-column: 1 / -1;
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* MOBILE */
@media (max-width: 1024px) {
    .fl-designer-products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .fl-designers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .fl-designer-card-logo, .fl-designer-card-placeholder { width: 140px; height: 140px; }
    .fl-designer-banner { height: 250px; }
    .fl-designer-title h1 { font-size: 22px; }
    .fl-tab-btn { padding: 12px 25px; }
    .fl-designer-products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .fl-tab-content { padding: 30px 16px; }
}
@media (max-width: 400px) {
    .fl-designer-products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}