/* ========================
   StyleHub - Contact CSS
   ======================== */
 
* { margin: 0; padding: 0; box-sizing: border-box; }
 
body {
    font-family: Arial, sans-serif;
    color: #111;
    background-color: #f8f8f8;
}
 
/* TOP BAR */
.topbar { background-color: #111111; height: 35px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; }
.topbar-left a { color: #aaaaaa; text-decoration: none; font-size: 12px; margin-right: 10px; }
.topbar-left a:hover { color: white; }
.topbar-center { color: #dddddd; font-size: 12px; }
.topbar-right span { color: #aaaaaa; font-size: 12px; margin-left: 15px; }
 
/* NAVBAR */
.navbar { height: 65px; background-color: white; display: flex; align-items: center; justify-content: space-between; padding: 0 35px; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #eeeeee; box-shadow: 0 2px 5px rgba(0,0,0,0.08); }
.nav-left { display: flex; gap: 5px; }
.nav-left a { text-decoration: none; color: #333333; font-size: 13px; font-weight: 600; padding: 6px 12px; }
.nav-left a:hover { color: #C8536E; }
.nav-logo { font-family: Georgia, serif; font-size: 26px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: #111111; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-icon { text-decoration: none; color: #333333; font-size: 13px; font-weight: 600; }
.nav-icon:hover { color: #C8536E; }
.cart-count { background-color: #C8536E; color: white; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 10px; margin-left: 3px; }
 
/* PAGE HEADER */
.page-header { background: linear-gradient(135deg, #F0AABF, #F5BCC8); padding: 40px 50px; }
.page-header h1 { font-family: Georgia, serif; font-size: 38px; font-weight: 700; color: #111111; margin-bottom: 8px; }
.page-header p { font-size: 14px; color: rgba(0,0,0,0.55); }
 
/* MAIN CONTAINER */
.contact-container { display: flex; gap: 25px; padding: 30px 50px; align-items: flex-start; }
 
/* LEFT - FORM */
.contact-form-section { flex: 1; }
 
.form-card { background-color: white; border-radius: 8px; border: 1px solid #eeeeee; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.form-card-header { padding: 18px 22px; border-bottom: 1px solid #eeeeee; background-color: #fafafa; }
.form-card-header h2 { font-size: 18px; font-weight: 700; color: #111111; }
.form-card-body { padding: 22px; }
 
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: #333333; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-input { width: 100%; padding: 11px 13px; border: 1.5px solid #dddddd; border-radius: 5px; font-size: 13px; font-family: Arial, sans-serif; background-color: #fafafa; transition: border-color 0.3s; }
.form-input:focus { outline: none; border-color: #C8536E; background-color: white; }
.form-input::placeholder { color: #bbbbbb; }
textarea.form-input { resize: vertical; }
 
.btn-send { width: 100%; padding: 14px; background-color: #111111; color: white; border: none; border-radius: 5px; font-size: 14px; font-weight: 700; cursor: pointer; font-family: Arial, sans-serif; letter-spacing: 1px; transition: background-color 0.3s; }
.btn-send:hover { background-color: #C8536E; }
 
/* RIGHT - INFO */
.contact-info-section { width: 360px; flex-shrink: 0; display: flex; flex-direction: column; gap: 18px; }
 
/* INFO CARD */
.info-card { background-color: white; border-radius: 8px; border: 1px solid #eeeeee; padding: 20px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.info-card h3 { font-size: 16px; font-weight: 700; color: #111111; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid #eeeeee; }
 
.info-list { display: flex; flex-direction: column; gap: 14px; }
.info-item { display: flex; align-items: flex-start; gap: 12px; }
.info-icon { font-size: 22px; flex-shrink: 0; }
.info-item strong { font-size: 13px; color: #111111; display: block; margin-bottom: 3px; }
.info-item p { font-size: 12px; color: #888888; }
 
/* FAQ CARD */
.faq-card { background-color: white; border-radius: 8px; border: 1px solid #eeeeee; padding: 20px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.faq-card h3 { font-size: 16px; font-weight: 700; color: #111111; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid #eeeeee; }
 
.faq-item { border-bottom: 1px solid #f5f5f5; }
.faq-item:last-child { border-bottom: none; }
 
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; font-size: 13px; font-weight: 600; color: #111111; cursor: pointer; }
.faq-question:hover { color: #C8536E; }
.faq-arrow { font-size: 18px; color: #C8536E; font-weight: 700; transition: transform 0.3s; }
 
.faq-answer { font-size: 13px; color: #555555; line-height: 1.6; padding-bottom: 12px; display: none; }
.faq-answer.open { display: block; }
 
/* FOOTER */
.footer { background-color: #111111; padding: 45px 50px; display: flex; gap: 30px; color: rgba(255,255,255,0.5); margin-top: 20px; }
.footer-col { flex: 1; }
.footer-logo { font-family: Georgia, serif; font-size: 22px; font-weight: 700; color: white; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.footer-logo span { color: #FAD4DE; }
.footer-col p { font-size: 12px; line-height: 1.8; }
.footer-col h4 { color: white; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 8px; }
.footer-col a:hover { color: white; }
.footer-bottom { background-color: rgba(0,0,0,0.4); padding: 12px 50px; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.3); }
/* Profile avatar in navbar */
.nav-icon.logged-in {
    display: flex;
    align-items: center;
    gap: 8px;
}
 
.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #C8536E;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}
/* ========================
   RESPONSIVE - Tablet & Mobile
   ======================== */
@media (max-width: 768px) {
    .topbar { flex-direction: column; height: auto; padding: 8px 15px; gap: 4px; }
    .topbar-center { order: -1; }
 
    .navbar { flex-wrap: wrap; height: auto; padding: 10px 15px; row-gap: 8px; }
    .nav-left { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; gap: 0; }
    .nav-logo { position: static; transform: none; font-size: 20px; letter-spacing: 2px; order: 1; }
    .nav-right { order: 2; width: 100%; justify-content: space-between; gap: 0; margin-left: 0; }
    .nav-icon span { font-size: 10px; }
 
    .page-header { padding: 25px 20px; }
    .page-header h1 { font-size: 24px; }
 
    .contact-container { flex-direction: column; padding: 20px; gap: 18px; }
    .contact-info-section { width: 100%; }
    .form-card-body { padding: 15px; }
 
    .footer { flex-direction: column; padding: 30px 20px; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 5px; padding: 12px 20px; text-align: center; }
}
 