/* Furniture Configurator — fc.css */

.fc-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px 24px;
    font-family: Georgia, serif;
    max-width: 1100px;
    margin: 0 auto;
}

/* ── LEFT ── */
.fc-img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f2ede6;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#fc-product-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 8px;
    transition: opacity 0.4s ease;
}
.fc-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px;
    color: #b0a090;
    font-family: sans-serif;
    font-size: 13px;
}
.fc-product-info {
    margin-top: 16px;
}
.fc-product-title {
    font-size: 18px;
    font-weight: 400;
    color: #1a1612;
    margin: 0 0 4px;
}
.fc-product-price {
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #8b6f47;
    margin: 0 0 16px;
}
.fc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.fc-cart-btn {
    flex: 1;
    padding: 12px 20px;
    background: #1a1612;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.fc-cart-btn:hover { background: #3a3026; }
.fc-wa-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 20px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.fc-wa-btn:hover { background: #1ebe5d; }
.fc-added-msg {
    margin: 10px 0 0;
    font-family: sans-serif;
    font-size: 13px;
    color: #2e7d32;
    font-weight: 500;
}

/* ── RIGHT ── */
.fc-title {
    font-size: 26px;
    font-weight: 400;
    color: #1a1612;
    margin: 0 0 8px;
    line-height: 1.3;
}
.fc-desc {
    font-family: sans-serif;
    font-size: 13px;
    color: #888;
    margin: 0 0 24px;
    line-height: 1.6;
}
.fc-label {
    font-family: sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 10px;
}
.fc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.fc-chip {
    padding: 8px 18px;
    border: 1px solid #d0cac3;
    border-radius: 4px;
    font-size: 13px;
    font-family: sans-serif;
    color: #555;
    cursor: pointer;
    background: #fff;
    transition: all 0.18s;
}
.fc-chip:hover { border-color: #a08060; color: #1a1612; }
.fc-chip.active { border-color: #8b6f47; background: #8b6f47; color: #fff; }
.fc-divider {
    border: none;
    border-top: 1px solid #ece8e2;
    margin: 4px 0 20px;
}

/* Loading dots */
.fc-loading {
    display: flex;
    gap: 6px;
    padding: 8px 0;
}
.fc-loading span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8a97e;
    animation: fc-pulse 1.2s ease-in-out infinite;
    opacity: 0.3;
}
.fc-loading span:nth-child(2) { animation-delay: 0.2s; }
.fc-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes fc-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.3); }
}

/* Responsive */
@media (max-width: 768px) {
    .fc-wrap { grid-template-columns: 1fr; gap: 28px; padding: 28px 16px; }
    #fc-product-img,
    .fc-img-box { min-height: 260px; }
}
