:root {
  --primary: #e8281a;
  --secondary: #f6a623;
  --dark: #1a1a1a;
  --green: #2d6a4f;
  --cream: #fff8f0;
  --cream2: #fef0dc;
  --light: #f9f5f0;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  color: #444;
  background: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
img {
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}


/* ===================== NAVBAR ===================== */
#nav {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 990;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: 0.4s;
}
#nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.14);
}
.blogo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.35);
}
.bname {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
}
.bname span {
  color: var(--primary);
}
.bsub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #aaa;
}
.navbar-nav .nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: #333 !important;
  padding: 26px 13px !important;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 55%;
}
.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
}
/* FIX 1 â€” Search btn in navbar */
#navSearchBtn {
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.3s;
}
#navSearchBtn:hover {
  background: rgba(232, 40, 26, 0.08);
  color: var(--primary);
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 20px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(232, 40, 26, 0.3);
  margin-left: 6px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(232, 40, 26, 0.4);
}

/* ============================================================
   NAVBAR - Minimal Update
   ============================================================ */

/* Logo Image Style */
.blogo img {
    display: block;
    max-height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

#nav.scrolled .blogo img {
    max-height: 50px;
}

.bsub {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: -4px;
    font-family: 'Poppins', sans-serif;
}

/* Search Input in Navbar */
.navbar-collapse .sovinput {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 4px 4px 4px 18px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 250px;
    width:670px;
    margin: 0 20px;
}

.navbar-collapse .sovinput:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.navbar-collapse .sovinput input {
    border: none;
    background: transparent;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.navbar-collapse .sovinput input::placeholder {
    color: #999;
    font-weight: 300;
}

.navbar-collapse .sovinput button {
    background: var(--primary);
    border: none;
    color: #fff;
    /* width: 38px; */
    /* height: 38px; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.navbar-collapse .sovinput button:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.navbar-collapse .sovinput button i {
    font-size: 0.9rem;
}

/* Keep your existing button styles, just add responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 16px;
        margin-top: 12px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

    .navbar-collapse .sovinput {
        min-width: 100%;
        margin: 10px 0;
    }

    .navbar-collapse .d-flex {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px !important;
        margin-top: 10px;
    }

    .nav-link.nav-cta {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

    #nav.scrolled .blogo img {
        max-height: 45px;
    }

    .blogo img {
        max-height: 50px;
    }

    .bsub {
        font-size: 0.65rem;
    }
}

@media (max-width: 576px) {
    #nav {
        padding: 8px 0;
    }

    .blogo img {
        max-height: 40px;
    }

    .bsub {
        font-size: 0.6rem;
        margin-top: -2px;
    }

    .navbar-collapse {
        padding: 16px;
    }

    .navbar-collapse .sovinput {
        padding: 3px 3px 3px 14px;
    }

    .navbar-collapse .sovinput input {
        font-size: 0.8rem;
        padding: 6px 0;
    }

    .navbar-collapse .sovinput button {
        width: 34px;
        height: 34px;
    }

    .nav-link.nav-cta {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
}

/* Animation for mobile menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ===================== SECTION COMMONS ===================== */
section {
  padding: 88px 0 !important;
}
.slbl {
  font-family: "Dancing Script", cursive;
  font-size: 1.35rem;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}
.stitle {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}
.stitle span {
  color: var(--primary);
}
.sline {
  width: 58px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto 12px;
}
.sline.lft {
  margin-left: 0;
}
.sdesc {
  color: #777;
  font-size: 0.93rem;
  line-height: 1.8;
}
.btn-red {
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.93rem;
  box-shadow: 0 8px 24px rgba(232, 40, 26, 0.35);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(232, 40, 26, 0.45);
  color: #fff;
}


/* ===================== MENU ===================== */
#menu {
  background: var(--light);
}
/* FIX 3 â€” Filter buttons */
.filtbtn {
  border: 2px solid #e5e5e5;
  background: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: 0.3s;
  margin: 3px;
  font-family: "Poppins", sans-serif;
}
.filtbtn.active,
.filtbtn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 18px rgba(232, 40, 26, 0.24);
}
.mwrap {
  transition: 0.35s;
}
.mwrap.gone {
  display: none !important;
}
.mcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
  cursor: pointer;
}
.mcard:hover {
  transform: translateY(-9px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}
.mimg {
  position: relative;
  overflow: hidden;
  height: 215px;
  background: var(--cream2);
}
.mimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.mcard:hover .mimg img {
  transform: scale(1.09);
}
.mbdg {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--primary);
  color: #fff;
  border-radius: 7px;
  padding: 3px 11px;
  font-size: 0.7rem;
  font-weight: 700;
}
.mbdg.new {
  background: var(--green);
}
.mbdg.hot {
  background: var(--secondary);
  color: var(--dark);
}
/* FIX 4 â€” Heart & Plus buttons stop propagation */
.mhrt {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
}
.mhrt:hover {
  color: var(--primary);
  transform: scale(1.18);
}
.mbody {
  padding: 18px;
}
.mcat {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.mtit {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}
.mdesc {
  font-size: 0.78rem;
  color: #aaa;
  margin-bottom: 13px;
  line-height: 1.5;
}
.mfoot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mprice {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  font-family: "Playfair Display", serif;
}
.mprice small {
  font-size: 0.72rem;
  font-weight: 400;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 5px;
}
.mstars {
  font-size: 0.73rem;
  color: var(--secondary);
}
/* FIX 4 â€” Plus button opens detail popup */
.madd {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 11px rgba(232, 40, 26, 0.28);
}
.madd:hover {
  transform: scale(1.15) rotate(90deg);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  padding: 68px 0 0;
}
.fnm {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
}
.fnm span {
  color: var(--primary);
}
.fdesc {
  color: #777;
  font-size: 0.86rem;
  line-height: 1.8;
  margin-top: 9px;
}
.fsoc {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}
.fsoc a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-size: 0.88rem;
  transition: 0.3s;
}
.fsoc a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.ftit {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  font-family: "Poppins", sans-serif;
}
.flinks li {
  list-style: none;
  margin-bottom: 9px;
}
.flinks a {
  color: #777;
  font-size: 0.86rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: 0.3s;
}
.flinks a:hover {
  color: var(--secondary);
  padding-left: 5px;
}
.flinks a i {
  color: var(--primary);
  font-size: 0.68rem;
}
.fci {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 14px;
}
.fciico {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(232, 40, 26, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.fciinfo {
  color: #777;
  font-size: 0.83rem;
  line-height: 1.6;
}
.fciinfo strong {
  color: #bbb;
  display: block;
  font-size: 0.77rem;
}
.fbot {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
  margin-top: 46px;
}
.fbot p {
  color: #555;
  font-size: 0.8rem;
  margin: 0;
}
.fbot span {
  color: var(--primary);
}
.fbot a {
  color: #555;
  font-size: 0.8rem;
  margin-left: 18px;
}
.fbot a:hover {
  color: var(--secondary);
}

/* ===================== UTILITIES ===================== */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 6px 18px rgba(232, 40, 26, 0.38);
  opacity: 0;
  transform: translateY(18px);
  transition: 0.4s;
}
#btt.show {
  opacity: 1;
  transform: translateY(0);
}
#btt:hover {
  transform: translateY(-4px) !important;
}
.cartfl {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9990;
  background: var(--secondary);
  border-radius: 50px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 7px 22px rgba(246, 166, 35, 0.38);
  cursor: pointer;
  transition: 0.3s;
  color: var(--dark);
  font-weight: 700;
  font-size: 0.88rem;
}
.cartfl:hover {
  transform: translateY(-4px);
}
.cartfl .ccount {
  background: var(--primary);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
}

/* ====================================================
   ALL POPUP / MODAL STYLES
==================================================== */

/* --- FIX 1: SEARCH POPUP --- */
#searchOv {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(5, 5, 5, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 78px;
}
#searchOv.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
@keyframes fadeov {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#searchOv .sovclose {
  position: absolute;
  top: 22px;
  right: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  transition: 0.3s;
}
#searchOv .sovclose:hover {
  background: var(--primary);
}
.sovbox {
  width: 100%;
  max-width: 680px;
  padding: 0 18px;
}
.sovbox h4 {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 26px;
  font-family: "Playfair Display", serif;
}
.sovinput {
  display: flex;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 60px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}
.sovinput input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 17px 24px;
  color: #fff;
  font-size: 1.05rem;
  font-family: "Poppins", sans-serif;
  outline: none;
}
.sovinput input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}
.sovinput button {
  background: var(--primary);
  border: none;
  padding: 10px 10px;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}
.sovinput button:hover {
  background: #c01e12;
}
.sovcats {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  margin-top: 28px;
}
.sovcat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50px;
  padding: 7px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.83rem;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Poppins", sans-serif;
}
.sovcat img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}
.sovcat:hover,
.sovcat.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.sovtrend {
  text-align: center;
  margin-top: 26px;
}
.sovtrend p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  margin-bottom: 9px;
}
.sovtrend .ttag {
  display: inline-block;
  margin: 3px;
  background: rgba(246, 166, 35, 0.13);
  border: 1px solid rgba(246, 166, 35, 0.28);
  color: var(--secondary);
  border-radius: 20px;
  padding: 3px 13px;
  font-size: 0.76rem;
  cursor: pointer;
  transition: 0.3s;
}
.sovtrend .ttag:hover {
  background: var(--secondary);
  color: var(--dark);
}

/* --- FIX 4: MENU DETAIL POPUP --- */
#menuPop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 18px;
}
#menuPop.open {
  display: flex;
  animation: fadeov 0.28s ease;
}
.mpbox {
  background: #fff;
  border-radius: 22px;
  max-width: 800px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.mpbox::-webkit-scrollbar {
  width: 3px;
}
.mpbox::-webkit-scrollbar-thumb {
  background: var(--primary);
}
.mpbox .mpimg {
  width: 44%;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px 0 0 22px;
  overflow: hidden;
  min-height: 400px;
}
.mpbox .mpimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mpbox .mpbody {
  width: 56%;
  padding: 34px 30px;
}
.mpclose {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f2f2f2;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  z-index: 2;
}
.mpclose:hover {
  background: var(--primary);
  color: #fff;
}
#mpCat {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 7px;
}
#mpTitle {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 9px;
  font-family: "Playfair Display", serif;
  color: var(--dark);
}
#mpStars {
  color: var(--secondary);
  font-size: 0.88rem;
  margin-bottom: 14px;
}
#mpDesc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.8;
  margin-bottom: 18px;
}
#mpPrice {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 14px;
  font-family: "Playfair Display", serif;
}
#mpPrice small {
  font-size: 0.95rem;
  color: #ccc;
  text-decoration: line-through;
  margin-left: 7px;
}
.mpmeta {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.mpm {
  text-align: center;
  background: var(--light);
  border-radius: 9px;
  padding: 9px 14px;
}
.mpmv {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
}
.mpml {
  font-size: 0.68rem;
  color: #bbb;
}
.mpqty {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}
.mpqbtn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-weight: 700;
}
.mpqbtn:hover {
  background: var(--primary);
  color: #fff;
}
.mpqnum {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  min-width: 30px;
  text-align: center;
}
.mptags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}
.mptag {
  background: rgba(246, 166, 35, 0.11);
  color: var(--dark);
  border-radius: 20px;
  padding: 3px 11px;
  font-size: 0.73rem;
  font-weight: 600;
}
.mpaddcart {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), #c01e12);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 15px;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.mpaddcart:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232, 40, 26, 0.38);
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .hcircle {
    width: 320px;
    height: 320px;
  }
  .fc1,
  .fc2,
  .fc3 {
    transform: scale(0.82);
    transform-origin: center;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gitem:first-child {
    grid-row: span 1;
  }
  .asm {
    display: none;
  }
  .mpbox .mpimg,
  .mpbox .mpbody {
    width: 100%;
  }
  .mpbox .mpimg {
    border-radius: 22px 22px 0 0;
    min-height: 240px;
  }
  .mpbox .mpbody {
    padding: 22px 18px;
  }
  /* Timeline mobile: collapse to single column */
  .timeline::before {
    left: 16px;
  }
  .tli {
    grid-template-columns: 32px 1fr !important;
  }
  .tl-left {
    display: none !important;
  }
  .tl-right {
    display: block !important;
    visibility: visible !important;
    padding-left: 18px !important;
    text-align: left !important;
  }
  .tl-center {
    padding-top: 5px;
  }
  .tli:nth-child(odd) .tl-right,
  .tli:nth-child(even) .tl-right {
    visibility: visible !important;
    display: block !important;
  }
}
@media (max-width: 767px) {
  section {
    padding: 55px 0;
  }
  #topbar .top-contact span:last-child {
    display: none;
  }
  .hcircle {
    width: 260px;
    height: 260px;
  }
  /* Hide only hero floating cards, NOT form cards */
  .fcard.fc1,
  .fcard.fc2,
  .fcard.fc3 {
    display: none !important;
  }
  .hstats {
    display: none !important;
  }
  .ggrid {
    grid-template-columns: 1fr 1fr;
  }
  .cdwrap {
    gap: 8px;
  }
  .cditem {
    min-width: 56px;
    padding: 9px;
  }
  .nl-form-wrap {
    flex-direction: column;
    padding: 0 8px;
  }
  .nlinput,
  .nlbtn {
    width: 100%;
    border-radius: 12px;
  }
  .fcard {
    padding: 22px 18px;
  }
}
@media (max-width: 480px) {
  .hcircle {
    width: 220px;
    height: 220px;
  }
  .htitle {
    font-size: 2.4rem;
  }
  .stitle {
    font-size: 1.8rem;
  }
}

/* ============================================
   AUTHENTICATION PAGES STYLES
   ============================================ */

/* ===== COMMON AUTH STYLES ===== */
.login_box_area {
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.loginForm {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.loginForm:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.login-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.loginForm label {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.loginForm .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.loginForm .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
    background: #ffffff;
}

.loginForm .form-control.is-invalid {
    border-color: #dc3545;
}

.loginForm .form-control.is-valid {
    border-color: #28a745;
}

.loginForm .form-control.bg-light {
    background-color: #f8f9fa !important;
}

/* ===== BUTTON STYLES ===== */
.register-button,
.primary-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.register-button:hover,
.primary-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
}

.register-button:active,
.primary-btn:active {
    transform: translateY(0px);
}

.register-button:disabled,
.primary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== LOGIN LINKS ===== */
.login-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.login-links a,
.text-center a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.login-links a:hover,
.text-center a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.login-links span {
    color: #b2bec3;
    margin: 0 10px;
}

/* ===== PASSWORD STRENGTH ===== */
.password-strength {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 8px;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: width 0.4s ease, background-color 0.4s ease;
}

/* ===== PASSWORD REQUIREMENTS ===== */
.password-requirements {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
    margin-top: 10px;
}

.password-requirements strong {
    color: #2d3436;
    font-size: 14px;
}

.password-requirements ul {
    list-style: none;
    padding-left: 0;
    margin-top: 8px;
}

.password-requirements ul li {
    padding: 4px 0;
    font-size: 13px;
    color: #636e72;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.password-requirements ul li::before {
    content: '✗';
    color: #dc3545;
    font-weight: bold;
    font-size: 14px;
}

.password-requirements ul li.valid::before {
    content: '✓';
    color: #28a745;
}

.password-requirements ul li.valid {
    color: #28a745;
}

.password-requirements ul li.invalid {
    color: #dc3545;
}

/* ===== PASSWORD WARNING ===== */
.password-warning {
    display: none;
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 13px;
    align-items: center;
    gap: 10px;
}

.password-warning.show {
    display: flex;
}

.password-warning i {
    color: #ffc107;
    font-size: 18px;
}

/* ===== PASSWORD MATCH ===== */
#password-match {
    margin-top: 5px;
    font-weight: 500;
}

/* ===== VERIFICATION PAGE ===== */
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
}

.card-body {
    text-align: center;
}

.card-body p {
    color: #636e72;
    line-height: 1.8;
}

.card-body .register-button {
    width: auto;
    padding: 10px 30px;
    display: inline-block;
    margin-top: 15px;
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .login_box_area {
        padding: 40px 0;
        min-height: 70vh;
    }

    .loginForm {
        padding: 30px 25px;
    }

    .login-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .login_box_area {
        padding: 30px 0;
        min-height: 60vh;
    }

    .loginForm {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .login-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .loginForm .form-control {
        padding: 10px 15px;
        font-size: 13px;
    }

    .register-button,
    .primary-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .password-requirements {
        padding: 12px 15px;
    }

    .password-requirements ul li {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .login_box_area {
        padding: 20px 0;
    }

    .loginForm {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .login-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .login-title::after {
        width: 40px;
    }

    .loginForm label {
        font-size: 13px;
    }

    .loginForm .form-control {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    .register-button,
    .primary-btn {
        padding: 10px 15px;
        font-size: 13px;
        border-radius: 8px;
    }

    .password-requirements ul li {
        font-size: 11px;
        padding: 3px 0;
    }

    .login-links a,
    .text-center a {
        font-size: 13px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loginForm {
    animation: fadeInUp 0.6s ease;
}

/* ===== DARK MODE SUPPORT (Optional) ===== */
@media (prefers-color-scheme: dark) {
    .login_box_area {
        background: #1a1a2e;
        background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    }

    .loginForm {
        background: #2d2d44;
        border-color: rgba(255, 255, 255, 0.05);
    }

    .login-title {
        color: #ffffff;
    }

    .loginForm label {
        color: #e0e0e0;
    }

    .loginForm .form-control {
        background: #3d3d5c !important;
        border-color: #4a4a6a;
        color: #ffffff;
    }

    .loginForm .form-control:focus {
        background: #4a4a6a !important;
        border-color: #e74c3c;
    }

    .loginForm .form-control.bg-light {
        background-color: #3d3d5c !important;
    }

    .login-links {
        border-top-color: #4a4a6a;
    }

    .password-requirements {
        background: #3d3d5c;
        border-left-color: #e74c3c;
    }

    .password-requirements strong {
        color: #ffffff;
    }

    .password-requirements ul li {
        color: #b0b0b0;
    }

    .password-warning {
        background: #2d2d1a;
        border-color: #ffc107;
        color: #ffd60a;
    }

    .alert-success {
        background: #1a3a2a;
        color: #7ddf9a;
        border-color: #2a5a3a;
    }

    .login-links a,
    .text-center a {
        color: #ff6b6b;
    }

    .login-links a:hover,
    .text-center a:hover {
        color: #ff5252;
    }
}


/* ============================================
   DASHBOARD LAYOUT STYLES
   ============================================ */

.dashboard-wrapper {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: calc(100vh - 150px);
    background: #f8f9fa;
}

/* ============================================
   SIDEBAR STYLES
   ============================================ */

.dashboard-sidebar {
    flex: 0 0 280px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    padding: 30px 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.dashboard-sidebar:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

/* User Info in Sidebar */
.user-info {
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f2f6;
}

.user-info .user-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #e74c3c;
    padding: 3px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.15);
    transition: all 0.3s ease;
}

.user-info .user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.25);
}

.user-info h6 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 5px;
    margin-top: 10px;
}

.user-info p {
    font-size: 13px;
    color: #636e72;
    margin-bottom: 0;
    word-break: break-all;
}

/* Dashboard Menu */
.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-menu li {
    margin-bottom: 5px;
}

.dashboard-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #2d3436;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.dashboard-menu li a i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #636e72;
    transition: all 0.3s ease;
}

.dashboard-menu li a:hover {
    background: #f8f9fa;
    color: #e74c3c;
    transform: translateX(5px);
}

.dashboard-menu li a:hover i {
    color: #e74c3c;
}

.dashboard-menu li a.active {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.25);
}

.dashboard-menu li a.active i {
    color: #ffffff;
}

.dashboard-menu li a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: #ffffff;
    border-radius: 0 4px 4px 0;
}

/* Logout Button */
.dashboard-menu li a.front-logout {
    color: #dc3545;
    border-top: 1px solid #f1f2f6;
    margin-top: 10px;
    padding-top: 15px;
}

.dashboard-menu li a.front-logout i {
    color: #dc3545;
}

.dashboard-menu li a.front-logout:hover {
    background: #fff5f5;
    color: #c0392b;
}

.dashboard-menu li a.front-logout:hover i {
    color: #c0392b;
}

/* ============================================
   DASHBOARD CONTENT STYLES
   ============================================ */

.dashboard-content {
    flex: 1;
    min-width: 0;
}

.dashboard-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.dashboard-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.dashboard-content .card {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.dashboard-content .card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.dashboard-content .card .card-body {
    padding: 30px;
}

/* ============================================
   PROFILE VIEW STYLES
   ============================================ */

.dashboard-content .user-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e74c3c;
    padding: 5px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.15);
    transition: all 0.3s ease;
}

.dashboard-content .user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.25);
}

.dashboard-content .card p {
    font-size: 15px;
    color: #2d3436;
    padding: 8px 0;
    border-bottom: 1px solid #f1f2f6;
    margin-bottom: 0;
}

.dashboard-content .card p:last-of-type {
    border-bottom: none;
}

.dashboard-content .card p strong {
    display: inline-block;
    min-width: 100px;
    color: #636e72;
    font-weight: 600;
}

/* ============================================
   EDIT PROFILE / FORM STYLES
   ============================================ */

.dashboard-content .form-group {
    margin-bottom: 20px;
}

.dashboard-content .form-group label {
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.dashboard-content .form-group .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
}

.dashboard-content .form-group .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
    background: #ffffff;
}

.dashboard-content .form-group .form-control:disabled {
    background: #e9ecef;
    cursor: not-allowed;
}

.dashboard-content .form-group textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.dashboard-content .form-group input[type="file"].form-control {
    padding: 8px 12px;
    background: #f8f9fa;
}

.dashboard-content .form-group input[type="file"].form-control::-webkit-file-upload-button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 15px;
}

.dashboard-content .form-group input[type="file"].form-control::-webkit-file-upload-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.dashboard-content .form-group .text-danger {
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* ============================================
   CHANGE PASSWORD SPECIFIC STYLES
   ============================================ */

.dashboard-content .password-strength {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
}

.dashboard-content .password-strength-bar {
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: width 0.4s ease, background-color 0.4s ease;
}

.dashboard-content .password-requirements {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
    margin-top: 15px;
}

.dashboard-content .password-requirements strong {
    color: #2d3436;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.dashboard-content .password-requirements ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.dashboard-content .password-requirements ul li {
    padding: 4px 0;
    font-size: 13px;
    color: #636e72;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.dashboard-content .password-requirements ul li::before {
    content: '✗';
    color: #dc3545;
    font-weight: bold;
    font-size: 14px;
}

.dashboard-content .password-requirements ul li.valid::before {
    content: '✓';
    color: #28a745;
}

.dashboard-content .password-requirements ul li.valid {
    color: #28a745;
}

.dashboard-content #password-match {
    font-weight: 500;
    font-size: 13px;
    margin-top: 8px;
}

.dashboard-content #password-match.text-success {
    color: #28a745;
}

.dashboard-content #password-match.text-danger {
    color: #dc3545;
}

/* ============================================
   PRIMARY BUTTON STYLES
   ============================================ */

.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
    color: #ffffff;
    text-decoration: none;
}

.primary-btn:active {
    transform: translateY(0px);
}

.primary-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
    .dashboard-wrapper {
        flex-direction: column;
        padding: 20px 15px;
        gap: 20px;
    }

    .dashboard-sidebar {
        flex: none;
        width: 100%;
        position: static;
        padding: 25px 20px;
    }

    .dashboard-content h2 {
        font-size: 24px;
    }

    .dashboard-content .user-avatar {
        width: 120px;
        height: 120px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .dashboard-wrapper {
        padding: 15px 10px;
        gap: 15px;
    }

    .dashboard-sidebar {
        padding: 20px 15px;
    }

    .user-info .user-avatar {
        width: 70px;
        height: 70px;
    }

    .dashboard-menu li a {
        padding: 10px 14px;
        font-size: 13px;
    }

    .dashboard-menu li a i {
        font-size: 16px;
        width: 20px;
    }

    .dashboard-content h2 {
        font-size: 22px;
    }

    .dashboard-content .card {
        padding: 15px !important;
    }

    .dashboard-content .user-avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .dashboard-content .card p {
        font-size: 14px;
        padding: 6px 0;
    }

    .dashboard-content .card p strong {
        min-width: 80px;
        display: inline-block;
    }

    .dashboard-content .form-group .form-control {
        padding: 10px 14px;
        font-size: 13px;
    }

    .dashboard-content .password-requirements {
        padding: 12px 15px;
    }

    .dashboard-content .password-requirements ul li {
        font-size: 12px;
    }

    .primary-btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        text-align: center;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .dashboard-wrapper {
        padding: 10px 8px;
    }

    .dashboard-sidebar {
        padding: 15px 12px;
        border-radius: 12px;
    }

    .user-info .user-avatar {
        width: 60px;
        height: 60px;
    }

    .user-info h6 {
        font-size: 14px;
    }

    .user-info p {
        font-size: 12px;
    }

    .dashboard-menu li a {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    .dashboard-menu li a i {
        font-size: 14px;
        width: 18px;
    }

    .dashboard-content h2 {
        font-size: 20px;
        padding-bottom: 10px;
    }

    .dashboard-content h2::after {
        width: 40px;
        height: 2px;
    }

    .dashboard-content .card {
        padding: 12px !important;
        border-radius: 12px;
    }

    .dashboard-content .card .card-body {
        padding: 15px;
    }

    .dashboard-content .user-avatar {
        width: 80px;
        height: 80px;
        border-width: 3px;
    }

    .dashboard-content .card p {
        font-size: 13px;
        padding: 5px 0;
    }

    .dashboard-content .card p strong {
        min-width: 70px;
        font-size: 12px;
    }

    .dashboard-content .form-group label {
        font-size: 13px;
    }

    .dashboard-content .form-group .form-control {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 8px;
    }

    .dashboard-content .form-group input[type="file"].form-control {
        padding: 5px 8px;
    }

    .dashboard-content .form-group input[type="file"].form-control::-webkit-file-upload-button {
        padding: 6px 15px;
        font-size: 12px;
    }

    .dashboard-content .password-requirements {
        padding: 10px 12px;
        border-left-width: 3px;
    }

    .dashboard-content .password-requirements strong {
        font-size: 13px;
    }

    .dashboard-content .password-requirements ul li {
        font-size: 11px;
        padding: 3px 0;
    }

    .dashboard-content #password-match {
        font-size: 12px;
    }

    .primary-btn {
        padding: 10px 15px;
        font-size: 12px;
        border-radius: 8px;
    }
}

/* ============================================
   DARK MODE SUPPORT (Optional)
   ============================================ */

@media (prefers-color-scheme: dark) {
    .dashboard-wrapper {
        background: #1a1a2e;
    }

    .dashboard-sidebar {
        background: #2d2d44;
        border-color: rgba(255, 255, 255, 0.05);
    }

    .user-info {
        border-bottom-color: #4a4a6a;
    }

    .user-info h6 {
        color: #ffffff;
    }

    .user-info p {
        color: #b0b0b0;
    }

    .dashboard-menu li a {
        color: #e0e0e0;
    }

    .dashboard-menu li a i {
        color: #b0b0b0;
    }

    .dashboard-menu li a:hover {
        background: #3d3d5c;
    }

    .dashboard-menu li a.active {
        background: linear-gradient(135deg, #e74c3c, #c0392b);
        color: #ffffff;
    }

    .dashboard-menu li a.front-logout {
        border-top-color: #4a4a6a;
    }

    .dashboard-content h2 {
        color: #ffffff;
    }

    .dashboard-content .card {
        background: #2d2d44;
    }

    .dashboard-content .card p {
        color: #e0e0e0;
        border-bottom-color: #4a4a6a;
    }

    .dashboard-content .card p strong {
        color: #b0b0b0;
    }

    .dashboard-content .form-group label {
        color: #e0e0e0;
    }

    .dashboard-content .form-group .form-control {
        background: #3d3d5c;
        border-color: #4a4a6a;
        color: #ffffff;
    }

    .dashboard-content .form-group .form-control:focus {
        background: #4a4a6a;
        border-color: #e74c3c;
    }

    .dashboard-content .form-group .form-control:disabled {
        background: #3d3d5c;
    }

    .dashboard-content .form-group input[type="file"].form-control {
        background: #3d3d5c;
    }

    .dashboard-content .password-requirements {
        background: #3d3d5c;
        border-left-color: #e74c3c;
    }

    .dashboard-content .password-requirements strong {
        color: #ffffff;
    }

    .dashboard-content .password-requirements ul li {
        color: #b0b0b0;
    }

    .dashboard-content .password-strength {
        background: #4a4a6a;
    }

    .dashboard-content #password-match.text-success {
        color: #7ddf9a;
    }

    .dashboard-content #password-match.text-danger {
        color: #ff6b6b;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dashboard-sidebar {
    animation: slideIn 0.5s ease;
}

.dashboard-content .card {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   SCROLLBAR STYLES
   ============================================ */

.dashboard-sidebar::-webkit-scrollbar {
    width: 5px;
}

.dashboard-sidebar::-webkit-scrollbar-track {
    background: #f1f2f6;
    border-radius: 10px;
}

.dashboard-sidebar::-webkit-scrollbar-thumb {
    background: #e74c3c;
    border-radius: 10px;
}

.dashboard-sidebar::-webkit-scrollbar-thumb:hover {
    background: #c0392b;
}
