/* ============================================
   YCLAS - Hide Seller / Owner Name
   Works on both Single Ad Page + Listings/Browse Page
   ============================================ */

/* --- Single Ad Page (Detail Page) --- */
.seller-info,
.seller-name,
.user-name,
.posted-by,
.author-name,
.user-profile,
div[class*="seller"],
span[class*="seller"],
a[href*="/user/"] {
    display: none !important;
}

/* --- Listings / Browse Page (General) --- */
.posted-by,
.author,
.seller,
.user-info,
.ad-author,
.listing-author,
div[class*="posted-by"],
div[class*="author"],
span[class*="author"],
.ad-item .user,
.ad-item .seller,
.listing-item .posted-by,
.ad small,
.listing small,
.item small,
.card small,
.text-muted,
.ad-meta,
.listing-meta,
.meta,
.ad-info small {
    display: none !important;
}

/* --- Specific Fix for Your Site (Listings Page) --- */
.col-xs-8.col-sm-9.text span {
    display: none !important;
}

/* Extra safety net */
small,
span.small,
p.small {
    display: none !important;
}
/* === Elegant Contact Form Styling for The Gown Center === */

.contact-form,
form[action*="contact"] {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.1);
    max-width: 700px;
    margin: 0 auto;
}

/* Form Labels */
.contact-form label,
form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #5d4037;
    font-size: 15px;
}

/* Input Fields */
.contact-form input,
.contact-form textarea,
.contact-form select,
form input,
form textarea,
form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #e8d5b7;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #5d4037;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
    border-color: #d4a017;
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

/* Submit Button */
.contact-form button[type="submit"],
form button[type="submit"] {
    background: #d4a017;
    color: white;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-form button[type="submit"]:hover,
form button[type="submit"]:hover {
    background: #b88c12;
    transform: translateY(-3px);
}

/* Optional: Make the page background match your design */
body {
    background: #fdf9f7;
}