/* ==========================
   StyleHub - Boutiques 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;
    letter-spacing: 1px;
}
 
.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-left a.active { color: #C8536E; }
 
.nav-logo {
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #111111;
    cursor: pointer;
    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: 50px 50px;
    text-align: center;
}
 
.page-header h1 {
    font-family: Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}
 
.page-header p {
    font-size: 15px;
    color: rgba(0,0,0,0.55);
}
 
/* FILTER SECTION */
.filter-section {
    background-color: white;
    padding: 20px 50px;
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    flex-wrap: wrap;
}
 
.search-box {
    flex: 1;
    min-width: 250px;
    padding: 10px 15px;
    border: 1.5px solid #dddddd;
    border-radius: 5px;
    font-size: 13px;
    font-family: Arial, sans-serif;
}
 
.search-box:focus {
    outline: none;
    border-color: #C8536E;
}
 
.filter-select {
    padding: 10px 12px;
    border: 1.5px solid #dddddd;
    border-radius: 5px;
    font-size: 13px;
    font-family: Arial, sans-serif;
    background-color: white;
    cursor: pointer;
}
 
.filter-select:focus {
    outline: none;
    border-color: #C8536E;
}
 
/* BOUTIQUES CONTAINER */
.boutiques-container {
    padding: 35px 50px;
}
 
/* BOUTIQUES GRID */
.boutiques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
 
/* BOUTIQUE CARD */
.boutique-card {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
 
.boutique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(200,83,110,0.12);
}
 
.boutique-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}
 
.green-bg  { background: linear-gradient(135deg, #1a3a2a, #2d5a40); }
.blue-bg   { background: linear-gradient(135deg, #2a2a3a, #3a3a5a); }
.brown-bg  { background: linear-gradient(135deg, #3a2a1a, #5a4020); }
.purple-bg { background: linear-gradient(135deg, #3a1a3a, #5a2a5a); }
.rose-bg   { background: linear-gradient(135deg, #C8536E, #F0AABF); }
.dark-bg   { background: linear-gradient(135deg, #1a1a2a, #2a2a4a); }
 
.boutique-body {
    padding: 16px;
}
 
.boutique-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
 
.boutique-top h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
}
 
.verified-tag {
    background-color: #edfaf3;
    color: #27ae60;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
}
 
.boutique-desc {
    font-size: 12px;
    color: #888888;
    margin-bottom: 6px;
}
 
.boutique-location {
    font-size: 12px;
    color: #888888;
    margin-bottom: 5px;
}
 
.boutique-rating {
    font-size: 12px;
    color: #888888;
    margin-bottom: 10px;
}
 
.boutique-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
 
.tag {
    background-color: #FFF0F3;
    color: #C8536E;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
}
 
.boutique-footer {
    padding: 14px 16px;
    border-top: 1px solid #f5f0ee;
}
 
.btn-visit {
    display: block;
    text-align: center;
    background-color: #111111;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}
 
.btn-visit:hover {
    background-color: #C8536E;
}
 
/* 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: 30px 20px; }
    .page-header h1 { font-size: 28px; }
 
    .filter-section { padding: 15px 20px; }
    .search-box { min-width: 100%; }
 
    .boutiques-container { padding: 20px; }
    .boutiques-grid { grid-template-columns: 1fr; }
 
    .footer { flex-direction: column; padding: 30px 20px; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 5px; padding: 12px 20px; text-align: center; }
}
 