/* StyleHub - Home Page CSS */

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: Arial, sans-serif; color: #111; }

/* 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-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; }

/*HERO SECTION  */
.hero-section {
    width: 100%;
    min-height: 620px;
    background: linear-gradient(135deg, #FAF3F0, #C8536E);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}
 
.hero-circle {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: rgba(200,83,110,0.07);
    z-index: 0;
}
 
.off-badge {
    position: absolute;
    top: 40px;
    left: 60px;
    width: 78px;
    height: 78px;
    background-color: #111111;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    transform: rotate(-12deg);
    z-index: 5;
}
.off-badge p:first-child { font-size: 20px; line-height: 1; }
.off-badge p:last-child { font-size: 10px; letter-spacing: 1px; }
 
.hero-left {
    position: relative;
    z-index: 2;
    width: 42%;
    padding-top: 60px;
}
 
.hero-tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: #C8536E;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}
 .hero-elite {
    font-family: Georgia, serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    color: #111111;
}
 .hero-style {
    font-family: Georgia, serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    color: #C8536E;
}

 
.hero-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.8;
    max-width: 380px;
    margin: 22px 0 32px;
}
 
.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
 
.btn-explore {
    background-color: #111111;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 3px;
    text-transform: uppercase;
    transition: background-color 0.3s;
}
.btn-explore:hover { background-color: #C8536E; }
 
.choose-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #111111;
    padding-bottom: 3px;
    transition: color 0.3s, border-color 0.3s;
}
.choose-link:hover { color: #C8536E; border-color: #C8536E; }
 
.hero-right {
    position: relative;
    z-index: 2;
    width: 58%;
    height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
 
.hero-right img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
}

/* MARQUEE */
.marquee { background-color: #C8536E; padding: 10px 0; overflow: hidden; white-space: nowrap; }
.marquee-text { display: inline-block; animation: scroll 22s linear infinite; }
.marquee-text span { font-size: 11px; font-weight: 700; color: white; letter-spacing: 2px; text-transform: uppercase; padding: 0 20px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 55px 50px; }
.grey-bg { background-color: #f8f4f2; }
.section-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: #C8536E; font-weight: 700; margin-bottom: 6px; text-align: center; }
.section-title { font-family: Georgia, serif; font-size: 36px; color: #111111; font-weight: 700; text-align: center; margin-bottom: 8px; }
.section-line { width: 50px; height: 3px; background-color: #C8536E; margin: 0 auto 35px auto; }
.section-top-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.section-top-row .section-label, .section-top-row .section-title { text-align: left; }
.view-all-link { font-size: 12px; font-weight: 700; color: #C8536E; text-decoration: underline; cursor: pointer; }

/* CATEGORIES */
.categories-row { display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
.category-item { text-decoration: none; color: #111111; text-align: center; cursor: pointer; width: 120px; transition: transform 0.3s; }
.category-item:hover { transform: translateY(-5px); }
.cat-box { width: 120px; height: 120px; border-radius: 8px; background: linear-gradient(135deg, #FAD4DE, #F2AABF); display: flex; align-items: center; justify-content: center; margin-bottom: 10px; overflow: hidden; font-size: 40px; }
.cat-box img { width: 100%; height: 100%; object-fit: cover; }
.category-item p { font-size: 13px; font-weight: 600; }

/* BOUTIQUES */
.boutiques-row { display: flex; gap: 20px; }
.boutique-card { flex: 0 1 calc(33.333% - 14px); max-width: 350px; background-color: white; border-radius: 8px; border: 1px solid #eeeeee; overflow: hidden; cursor: pointer; 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: 150px; display: flex; align-items: center; justify-content: center; font-size: 55px; }
.green-bg { background: linear-gradient(135deg, #1a3a2a, #2d5a40); }
.blue-bg { background: linear-gradient(135deg, #2a2a3a, #3a3a5a); }
.brown-bg { background: linear-gradient(135deg, #3a2a1a, #5a4020); }
.boutique-info { padding: 15px; }
.boutique-info h3 { font-size: 15px; font-weight: 700; color: #111111; margin-bottom: 5px; }
.boutique-info p { font-size: 12px; color: #888888; margin-bottom: 4px; }
.boutique-bottom { padding: 12px 15px; border-top: 1px solid #f5f0ee; display: flex; justify-content: space-between; align-items: center; }
.visit-link { font-size: 12px; font-weight: 700; color: #111111; text-decoration: none; }
.visit-link:hover { color: #C8536E; }
.tag { background-color: #FFF0F3; color: #C8536E; font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 3px; }

/* MEASUREMENT SECTION */
.meas-section { padding: 55px 50px; display: flex; gap: 60px; align-items: center; }
.meas-left { flex: 1; }
.meas-img-box { height: 350px; background: linear-gradient(135deg, #2a2010, #5a4020); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.meas-right { flex: 1; }
.meas-right h2 { font-family: Georgia, serif; font-size: 40px; color: #111111; line-height: 1.2; margin-bottom: 15px; margin-top: 10px; }
.meas-desc { font-size: 13px; color: #555555; line-height: 1.8; margin-bottom: 20px; }
.meas-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 25px; }
.meas-points p { font-size: 13px; color: #333333; font-weight: 500; }

/* FOOTER */
.footer { background-color: #111111; padding: 45px 50px; display: flex; gap: 30px; color: rgba(255,255,255,0.5); }
.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;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.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: 992px) {
    .hero-left { padding-left: 30px; }
    .hero-elite { font-size: 70px; }
    .hero-style { font-size: 56px; }
    .boutique-card { flex: 0 1 calc(50% - 10px); }
}
 
@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; }
 
    .hero-section { height: auto; flex-direction: column; padding: 30px 15px; min-height: unset; }
    .hero-left, .hero-right { width: 100%; padding: 0; }
    .hero-left { align-items: center; text-align: center; order: 1; }
    .hero-desc { max-width: 100%; }
    .hero-right { order: 2; align-items: center; text-align: center; padding-top: 20px; }
    .hero-stats { justify-content: center; }
    .hero-elite { font-size: 50px; }
    .hero-style { font-size: 40px; }
    .off-badge { top: 10px; left: 10px; width: 65px; height: 65px; }
 
    .section { padding: 35px 20px; }
    .section-title { font-size: 26px; }
    .section-top-row { flex-direction: column; align-items: flex-start; gap: 10px; }
 
    .boutiques-row { flex-direction: column; }
    .boutique-card { flex: 1 1 100%; max-width: 100%; }
 
    .meas-section { flex-direction: column; padding: 35px 20px; gap: 25px; }
    .meas-img-box { height: 220px; }
    .meas-right h2 { font-size: 28px; }
 
    .footer { flex-direction: column; padding: 30px 20px; gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 5px; padding: 12px 20px; text-align: center; }
}
 

 
@media (max-width: 900px) {
    .hero-section { flex-direction: column; padding: 100px 24px 0; min-height: auto; }
    .hero-left, .hero-right { width: 100%; }
    .hero-left { text-align: center; padding-top: 0; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-cta-row { justify-content: center; }
    .hero-elite, .hero-style { font-size: 40px; }
    .hero-right { height: 320px; margin-top: 30px; }
    .hero-circle { display: none; }
}
 
@media (max-width: 480px) {
    .hero-section { padding: 90px 18px 0; }
    .hero-elite, .hero-style { font-size: 32px; }
    .off-badge { width: 60px; height: 60px; top: 20px; left: 18px; }
    .off-badge p:first-child { font-size: 15px; }
    .btn-explore { padding: 13px 22px; font-size: 11px; }
}

 