/**
 * Longling Silk Textile — Custom Styles
 * Company: Longling Silk Textile Co., Ltd. (龙绫)
 */

/* ============================================================
   Inquiry / Request Quote Button
   ============================================================ */
.longling-inquiry-box {
    margin: 20px 0;
    padding: 18px 24px;
    background: #f8f5f0;
    border: 1px solid #e0d8cc;
    border-radius: 4px;
    text-align: center;
}

.longling-inquiry-button {
    display: inline-block;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #1a1a1a;
    color: #fff !important;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.longling-inquiry-button:hover {
    background: #c9a84c;
    color: #fff !important;
}

.longling-inquiry-note {
    margin: 10px 0 0;
    font-size: 13px;
    color: #777;
}

/* ============================================================
   Ordering Info Table (Product Tab)
   ============================================================ */
.longling-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.longling-info-table th,
.longling-info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e8e4dc;
    text-align: left;
}

.longling-info-table th {
    width: 200px;
    font-weight: 600;
    color: #1a1a1a;
    background: #f8f5f0;
}

/* ============================================================
   Footer Contact List
   ============================================================ */
.footer_contact_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_contact_list li {
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer_contact_list a {
    color: inherit;
}

.footer_contact_list a:hover {
    color: #c9a84c;
}

/* ============================================================
   Product Categories Icon Grid (Homepage)
   ============================================================ */
.longling-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 30px 0;
}

.longling-category-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 200px;
    text-align: center;
    padding: 28px 16px;
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 4px;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.longling-category-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.longling-category-card .category-icon {
    font-size: 36px;
    margin-bottom: 14px;
    color: #c9a84c;
}

.longling-category-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.longling-category-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
}

/* ============================================================
   About Us Page Styles
   ============================================================ */
.longling-about-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto 30px;
}

.longling-about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.longling-about-item {
    flex: 1;
    min-width: 250px;
    padding: 24px;
    background: #f8f5f0;
    border-radius: 4px;
}

.longling-about-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.longling-about-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
    .longling-category-card {
        flex: 0 0 calc(50% - 12px);
        min-width: 140px;
    }

    .longling-about-item {
        flex: 0 0 100%;
    }

    .longling-inquiry-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .longling-info-table th {
        width: 120px;
    }
}
