/* ========== NAVBAR STYLES ========== */
.navbar {
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Accessibility: visible focus outlines for keyboard users */
/*button:focus,
a:focus {
  outline: 3px solid rgba(103, 53, 92, 0.12);
  outline-offset: 2px;
}*/

.logo-img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-purple);
}

.footer-logo-img {
  object-fit: contain;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-purple);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;

  a, .btn-text {
    text-decoration: none;
    color: var(--text-grey);
    font-weight: 500;
    font-size: 15px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;

    &:hover {
      color: var(--text-black);
    }
  }
}

/*.divider {
  width: 1px;
  height: 24px;
  background-color: #e5e5e5;
}*/

.btn-gold-sm {
  background-color: var(--accent-gold);
  color: var(--text-white);
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;

  &:hover {
    background-color: var(--accent-gold-hover);
  }
}

@media (max-width: 600px) {
  .logo-text {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 75vh;
  }
}

/* ========== HERO SECTION STYLES ========== */
.hero-section {
  position: relative;
  background-image: url('/assets/img/home-hero-bg.jpeg');
  background-size: cover;
  background-position: center;
  padding: 160px 0 160px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(103, 53, 92, 0.95), rgba(103, 53, 92, 0.7));
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-badge {
  display: inline-block;
  background: rgba(255, 181, 37, 0.2);
  border: 1px solid rgba(255, 181, 37, 0.3);
  color: var(--accent-gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

/*h1 {
  font-size: 64px;
  line-height: 1.2;
  color: #ffffff !important;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}*/

.hero-content h1 {
  color: #ffffff !important;
}

.hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
  margin-bottom: 40px;
      line-height: 25px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-btn {
  padding: 16px 32px;
  font-size: 16px;
}

.hero-features {
  display: flex;
  gap: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check-icon {
  color: var(--accent-gold);
  font-weight: bold;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.stat-row {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s;

  &:last-child {
    margin-bottom: 0;
  }

  &:hover {
    transform: translateY(-5px);
  }
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;

  svg {
    width: 24px;
    height: 24px;
  }
}

.icon-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.icon-purple {
  background: linear-gradient(135deg, var(--primary-purple), #8a4a7a);
}

.icon-gold {
  background: linear-gradient(135deg, var(--accent-gold), #d97706);
}

.stat-info {
  flex: 1;

  strong {
    display: block;
    color: var(--text-black);
    font-size: 16px;
  }

  span {
    display: block;
    color: var(--text-grey);
    font-size: 13px;
  }
}

.stat-value {
  &.green {
    color: #059669;
    font-weight: 700;
    font-size: 18px;
  }

  &.gold {
    color: #d97706;
    font-weight: 700;
    font-size: 18px;
  }
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;

  svg {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .hero-visual {
    display: block;
    margin-top: 24px;
  }

  h1 {
    font-size: 48px;
  }
}

/* ========== FEATURES SECTION STYLES ========== */
.features-section {
  padding: 100px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;

  h2 {
    font-size: 48px;
    color: var(--primary-purple);
    margin-bottom: 16px;
    line-height: 1.3;
    font-weight: 700;
  }

  p {
    font-size: 20px;
    color: var(--text-grey);
    line-height: 1.6;
  }
}

.badge {
  display: inline-block;
  background-color: rgba(255, 181, 37, 0.15);
  color: var(--accent-gold-hover);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  text-align: center;
  background: var(--white);
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  &:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
  }

  h3 {
    font-size: 24px;
    color: var(--primary-purple)!important;
    margin-bottom: 12px;
    font-weight: 500!important;
    font-family: 'Cormorant Garamond', serif;
  }

  p {
    color: var(--text-grey);
    line-height: 1.6;
  }
}

.feature-icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-purple), #8a4a7a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  margin:0 auto;
  margin-bottom: 30px;

  svg {
    width: 32px;
    height: 32px;
  }
}  
/* ========== TESTIMONIALS SECTION STYLES ========== */
.testimonials-section {
  padding: 0px 0;
  background-color: var(--white);
}

.badge-grey {
  display: inline-block;
  background-color: #f5f5f4;
  color: #57534e;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background-color: #fafaf9;
  border: 1px solid #f0f0f0;
  border-radius: 24px;
  padding: 40px;
  position: relative;
}

.quote-mark {
  position: absolute;
  top: -20px;
  left: 30px;
  font-family: serif;
  font-size: 80px;
  color: var(--accent-gold);
  opacity: 0.3;
  line-height: 1;
}

.quote-text {
  font-size: 18px;
  color: #44403c;
  line-height: 1.6;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.author-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.avatar-blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.avatar-green {
  background: linear-gradient(135deg, #10b981, #047857);
}

.avatar-purple {
  background: linear-gradient(135deg, #a855f7, #7e22ce);
}

.author-info {
  strong {
    display: block;
    font-size: 18px;
    color: var(--text-black);
  }

  span {
    font-size: 14px;
    color: var(--text-grey);
  }
}

/* ========== CTA SECTION STYLES ========== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--primary-purple) 0%,
    #8a4a7a 50%,
    var(--primary-purple) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;

  h2 {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
  }

  p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 48px!important;
    line-height: 1.5;
  }
}

.cta-container {
  position: relative;
  z-index: 10;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;

  svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
  }
}

.dot {
  color: rgba(255, 255, 255, 0.3);
}

.cta-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(circle at 10% 10%, white 2px, transparent 2.5px),
    radial-gradient(circle at 90% 90%, white 2px, transparent 2.5px);
  background-size: 40px 40px;
}

@media (max-width: 768px) {
  .cta-section {
    h2 {
      font-size: 40px;
    }

    p {
      font-size: 18px;
    }
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 10px;
  }

  .dot {
    display: none;
  }
}

/* ========== FOOTER SECTION STYLES ========== */
.footer-section {
  margin-top: 0px;
  background-color: var(--primary-purple);
  color: #ffffff;
  padding: 80px 0 40px;
  font-size: 15px;
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-col {
  padding-right: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
}

.logo-text-white {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

.brand-desc {
  line-height: 1.6;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);

  svg {
    width: 18px;
    height: 18px;
  }

  &:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-3px);
  }
}

.footer-links-col {
  h4 {
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  ul {
    list-style: none;
    padding: 0;

    li {
      margin-bottom: 12px;

      a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.8);
        transition: all 0.2s;
        font-size: 14px;
        display: inline-block;

        &:hover {
          color: #ffffff;
          transform: translateX(5px);
        }
      }
    }
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;

  p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
  }
}

.legal-links {
  display: flex;
  gap: 24px;

  a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    transition: color 0.2s;

    &:hover {
      color: var(--accent-gold);
    }
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand-col {
    grid-column: span 1;
    padding-right: 0;
  }

  .footer-logo,
  .social-links,
  .footer-bottom {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

/* ---------- Migrated from src/styles.css ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-purple: #67355c;
  --primary-purple-dark: #502747;
  --accent-gold: #ffb525;
  --accent-gold-hover: #e5a220;
  --text-white: #ffffff;
  --text-black: #555;
  --text-grey: #555;
  --bg-light: #f9f4f8;
  --white: #ffffff;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset & Base (scoped to component host) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-black);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
}

/* Utility Classes used across components (now in home component scope) */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-gold {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--text-white);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background-color: var(--accent-gold-hover);
}

.btn-outline-white {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  padding: 12px 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.purple-text { color: var(--primary-purple); }
.gold-text { color: var(--accent-gold); }

/* End migrated styles */

/* Tabs container */
.profile-tabs {
  border-bottom: 1px solid #eee;
}

/* UL */
.profile-tab-nav {
  display: flex;
  gap: 30px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/* Tab links */
.profile-tab-nav .nav-link {
  position: relative;
  padding: 10px 0;
  font-weight: 500;
  color: #8a8a8a;
  text-decoration: none;
  background: transparent;
  border: none;
}

/* Hover */
.profile-tab-nav .nav-link:hover {
  color: #5e2b60;
}

/* Active tab */
.profile-tab-nav .nav-link.active {
  color: #5e2b60 !important;
  font-weight: 600;
  background: none !important;
}

/* Active underline */
.profile-tab-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background-color: #5e2b60;
  border-radius: 5px;
}

.card-custom-tab {
    border-radius: 5px;
    background: #e9e9e9;
    padding: 5px 10px;
    margin-bottom: 10px;
    color: #555;
}

.invite-editor {
  min-height: 350px;
  white-space: pre-line;
  text-align: justify;
  text-justify: inter-word;
  overflow-y: auto;
}
.table_img{
  width:50px
}

.note-header b {
    color: #555;
    font-weight: 500;
}

.notes-wrapper {
  max-width: 100%;
}

.member-box {
  margin-bottom: 18px;
}

.note-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 6px;
    box-shadow: 2px 1px 6px 0px #b3b2b2;
  
}

.note-card.pinned {
  border-left-color: #6f42c1;
  border-left: 10px solid #6f42c1;
}

.note-header {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.icons i {
  margin-left: 8px;
  cursor: pointer;
}

.tags {
  margin: 0px 0px 15px 0px;
}

.tags span {
  padding: 3px 8px 6px 10px;
  border-radius: 3px;
  font-size: 11px;
  margin-right: 6px;
}

.show-more {
  cursor: pointer;
    color: #6f42c1;
    font-size: 14px;
    padding: 0px 0px 0px 5px;
    text-decoration: none;
    font-weight: bold;
}
.box-icon {
    color: #000 !important;
    border: 1px solid #ddd;
    padding: 3px 6px 5px 8px;
    border-radius: 5px;
    font-size: 13px;
}
.pin-box {
    font-size: 16px;
    color: #000;
}

.pined-box {
    font-size: 18px;
    color: goldenrod;
    font-weight: bold;
}

.note-cards.multi-notes {
    border-bottom: 1px solid #cac6c6;
    margin-bottom: 20px;
}

.no-notes {
    text-align: center;
    background: #fff;
    padding: 30px 1px;
    color: red;
}

/* Toggle switch */
.switch {
  position: relative;
  width: 42px;
  height: 22px;
}

.switch input {
  opacity: 0;
}

.slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 22px;
  cursor: pointer;
}

.slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background: white;
  border-radius: 50%;
  transition: .3s;
}

.switch input:checked + .slider {
  background: #6c63ff;
}

.switch input:checked + .slider::before {
  transform: translateX(20px);
}

/* Pin row */
.pin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pin-row p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #777;
}

.tag-list,
.selected-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 6px 0;
}

.tag-chip {
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.tag-chip i {
  font-style: normal;
  font-weight: bold;
}

.selectable {
  opacity: 0.6;
}

.selectable.active {
  opacity: 1;
  outline: 2px solid rgba(0,0,0,0.1);
}

.note-card {
  background: #fff;
  padding: 12px;
  margin-top: 12px;
  border-radius: 6px;
  border-left: 4px solid transparent;
}



.note-header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.actions {
  margin-top: 6px;
}

.danger {
  color: red;
}

.history-body {
  max-height: 450px;
  overflow-y: auto;
}

.timeline {
  position: relative;
  margin-left: 15px;
}

.timeline-item {
  display: flex;
  margin-bottom: 20px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #6f42c1;
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 8px;
}

.content-box {
  background: #f9f9ff;
  padding: 12px 16px;
  border-radius: 8px;
  width: 100%;
  border-left: 3px solid #6f42c1;
}

.action {
  font-weight: 600;
  color: #6f42c1;
  margin-bottom: 4px;
}

.meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}

.changes small {
  display: block;
  margin-bottom: 4px;
}

.tag-changes {
  margin-top: 6px;
}

.tag-chip {
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 11px;
  margin-right: 6px;
  display: inline-block;
}

.empty {
  text-align: center;
  color: #999;
  padding: 30px 0;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  
}

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 6px;
  background: #fff;
}

.search-box i {
  color: #999;
  margin-right: 8px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
}

.tag-filter select {
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
}

.header-container {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
}

.filters-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 🔥 SEARCH + TAG GROUP */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1; /* 👈 yahin se left side full space lega */
}

/* 🔍 SEARCH FULL WIDTH */
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1; /* 👈 MOST IMPORTANT */
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 0 12px;
  height: 42px;
  background: #fff;
}

.search-box i {
  color: #888;
  font-size: 14px;
}

.search-box input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
}





.storage-inline {
    display:flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    text-align: center;
    line-height: 25px;
}

.storage-info {
  font-size: 14px;
  color: #333;
}

.storage-info strong {
  font-weight: 600;
}

.storage-progress {
      width: 100%;
    margin-top: 5px;

}

.bar {
  height: 6px;
  background: #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #28a745;
  border-radius: 10px;
  transition: width 0.4s ease;
}

.btn-buy-inline {
  padding: 6px 14px;
  font-size: 13px;
  background: #1f5bd8;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.btn-buy-inline:hover {
  background: #1748aa;
}