/* Base.html */

header.navbar {
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.navbar .brand {
  font-family: 'Barlow';
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

header.navbar nav {
  display: flex;
  gap: 1.25rem;
}

header.navbar nav a {
  font-family: 'Barlow';
  font-size: var(--font-size-base);
  color: var(--color-text);
  text-decoration: none !important;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

header.navbar nav a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Home.html */
/* Hero Banner */
.hero {
  background: linear-gradient(135deg, var(--soft-pink), var(--soft-purple));
  color: var(--text-primary);
  padding: 4rem 2rem;
  margin: -2rem -2rem 3rem -2rem;
  text-align: center;
  border-radius: 0 0 var(--border-radius-window) var(--border-radius-window);
  box-shadow: var(--shadow-window);
  position: relative;
}
.hero-titlebar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  background: linear-gradient(to bottom, #f8f8f8, #e8e8e8);
  border-bottom: 1px solid #d0d0d0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}
.hero-titlebar span {
  margin-left: 12px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.hero h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
}
.hero-actions {
  display: flex;
  flex-direction: row;
  gap: 20px; /* or whatever spacing you want */
  justify-content: center;
  align-items: center;
}

/* Section headers with MacOS style */
.section-header {
  background: linear-gradient(to bottom, #f8f8f8, #e8e8e8);
  border: var(--border-soft);
  border-radius: var(--border-radius-window) var(--border-radius-window) 0 0;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Feature Cards */
.feature-card {
  padding: 2rem;
  text-align: left;
}
.feature-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: none;
  box-sizing: border-box;
  background: #FDF0F0 !important;
  border-radius: 0;
  box-shadow: none;
}
/* Large screens (≤1400px) */
@media (max-width: 1400px) {
  .container {
    max-width: 1100px;
    width: 98vw;
    padding: 0 2vw;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .container {
    max-width: 768px;
    width: 768px;
    padding: 0;
  }
}

/* Mobile (≤390px) */
@media (max-width: 390px) {
  .container {
    max-width: 390px;
    width: 390px;
    padding: 0;
  }
}

body {
  background: #FDF0F0 !important;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevent horizontal scroll */
  -webkit-text-size-adjust: 100%; /* Prevent iOS font scaling */
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.categories-bg {
  background: #FDD4A4;
}

body.categories-bg .container {
  background: transparent !important;
}

body.categories-bg .main-header {
  background: transparent !important;
}

body.categories-bg .main-header img {
  background: transparent !important;
}
/* Popular pro tips */
/* Section Wrapper */
.popular-pro-tips-section {
  background: #cbbfe0;
  border-top: 8px solid #0e0b0b;
  border-bottom: 8px solid rgba(0,0,0,0.65);
  padding: 28px 0;
  border-radius: 12px;
  margin: 44px 0 0 0;
  width: 100vw;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.popular-pro-tips-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 24px;
}

/* Large screens (≤1400px) */
@media (max-width: 1400px) {
  .popular-pro-tips-inner {
    max-width: 98vw;
    padding: 0 2vw;
  }
  .popular-pro-tips-section {
    border-radius: 12px;
    padding: 24px 0;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .popular-pro-tips-inner {
    max-width: 100vw;
    padding: 0 8px;
  }
  .popular-pro-tips-section {
    border-radius: 8px;
    padding: 16px 0;
  }
}

/* Mobile (≤390px) */
@media (max-width: 390px) {
  .popular-pro-tips-inner {
    max-width: 100vw;
    padding: 0 2px;
  }
  .popular-pro-tips-section {
    border-radius: 6px;
    padding: 8px 0;
  }
}
/* Section Title */
/* .popular-pro-tips-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(28px, 6vw, 60px);
  font-weight: 900;
  text-align: center;
  margin: 44px 0 22px;
  color: #DCE45F;
  text-shadow:
    0px 4px 0 #000,
    0px -4px 0 #000,
    4px 0px 0 #000,
   -4px 0px 0 #000,
    3px 3px 0 #000,
   -3px 3px 0 #000,
    3px -3px 0 #000,
   -3px -3px 0 #000;
} */
.popular-protips-title {
  width: 100%;
  max-width: 769px;
  margin: 44px auto 36px auto;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 60px); /* responsive scaling */
  line-height: 1.2;
  display: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #DCE45F;
  letter-spacing: -3px; /* less extreme spacing */
  -webkit-text-stroke: 3px #000; /* thinner outline */
  paint-order: stroke fill;

  text-shadow:
    2px 3px 0 rgba(0,0,0,0),
   -2px -2px 0 rgba(0,0,0,0.5);
  filter: drop-shadow(0px 6px 0px #000);
}


.popular-protips-title .stroke {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: absolute;
  inset: 0;
  color: black; /* fill + counters go black */
  -webkit-text-stroke: 6px black; /* black outline */
  z-index: 0;
}

.popular-protips-title .fill {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: relative;
  color: #DCE45F; /* pink fill */
  z-index: 1;
}

/* Grid Layout */
.popular-pro-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Flexible */
  gap: 20px;
}

/* Card */
.pro-tip-card {
  background: #DCE45F;
  padding: 12px;
  border-radius: 18px;
  border: 4px solid #0e0b0b;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.6);
  text-decoration: none;
  height: 382px;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* remove fixed width */
  width: 100%; 
  height: 500px;
  max-width: 307px; /* optional: keeps them from stretching too wide */
  margin: 0 auto;   /* centers the cards when smaller */
}


/* Image */
.pro-tip-image-wrap {
  width: 100%;
  height: 378px;
  aspect-ratio: 16 / 10; /* keeps proportion */
  border-radius: 12px;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
  margin-bottom: 0;
}
.pro-tip-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Title */
.pro-tip-title {
  margin: 6px 0;
  font-size: clamp(18px, 4vw, 26px);
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
}

/* Meta Row */
.pro-tip-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}
.pro-tip-meta-icon {
  margin-right: 6px;
  display: flex;
  align-items: center;
}
.pro-tip-meta-text {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(12px, 4vw, 20px);
  font-weight: 700;
  color: #111;
  margin-left: 4px;
}
.pro-tip-arrow {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #B5B0D8;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #000;
  flex-shrink: 0;
}
.pro-tip-arrow img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Description Row */
.pro-tip-desc-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 14px;
  gap: 10px;
  width: 100%;
  height: auto;
  background: #FDD4A4;
  border: 2px solid #000;
  border-radius: 60px;
  font-weight: 700;
  box-sizing: border-box;
  margin-top: 6px;
}
.pro-tip-desc-bulb {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.pro-tip-desc-text {
  display: block;
  white-space: wrap; /* allow wrapping */
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 18px;
  color: #000000;
  align-items: center;
}

/* Tablet */
@media (max-width: 768px) {
  .popular-pro-tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* Mobile */
@media (max-width: 390px) {
  .pro-tip-arrow {
    width: 28px;
    height: 28px;
  }
  .pro-tip-arrow img {
    width: 16px;
    height: 16px;
  }
  .pro-tip-desc-text {
    font-size: 16px;
  }
}

/* End */

/* Recent recommendations */
/* Section Title */
.recent-recs-title {
  width: 100%;
  max-width: 769px;
  margin: 44px auto 36px auto;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 60px); /* responsive scaling */
  line-height: 1.2;
  display: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #ECBED9;
  letter-spacing: -3px; /* less extreme spacing */
  -webkit-text-stroke: 3px #000; /* thinner outline */
  paint-order: stroke fill;

  text-shadow:
    2px 3px 0 rgba(0,0,0,0),
   -2px -2px 0 rgba(0,0,0,0.5);
  filter: drop-shadow(0px 6px 0px #000);
}


.recent-recs-title .stroke {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: absolute;
  inset: 0;
  color: black; /* fill + counters go black */
  -webkit-text-stroke: 6px black; /* black outline */
  z-index: 0;
}

.recent-recs-title .fill {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: relative;
  color: #ECBED9; /* pink fill */
  z-index: 1;
}

/* Dashboard recent recommendations */
.recent-recs-dashboard-title {
  width: 100%;
  max-width: 769px;
  margin: 44px auto 36px auto;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 60px); /* responsive scaling */
  line-height: 1.2;
  display: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #FDD4A4;
  letter-spacing: -3px; /* less extreme spacing */
  -webkit-text-stroke: 3px #000; /* thinner outline */
  paint-order: stroke fill;

  text-shadow:
    2px 3px 0 rgba(0,0,0,0),
   -2px -2px 0 rgba(0,0,0,0.5);
  filter: drop-shadow(0px 6px 0px #000);
}


.recent-recs-dashboard-title .stroke {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: absolute;
  inset: 0;
  color: black; /* fill + counters go black */
  -webkit-text-stroke: 6px black; /* black outline */
  z-index: 0;
}

.recent-recs-dashboard-title .fill {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: relative;
  color: #FDD4A4; /* pink fill */
  z-index: 1;
}

/* Cards Row */
.recent-recs-row {
  display: flex;
  flex-wrap: wrap; /* allow wrapping */
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

/* Individual Card */
.rec-card {
  flex: 1 1 300px; /* flexible sizing */
  max-width: 307px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 10px 20px;
  gap: 20px;
  height: 500; /* let content define height */
  background: #FDD4A4;
  border: 4px solid #000000;
  box-shadow: 7px 8px 0px #000000;
  border-radius: 26px;
  box-sizing: border-box;
  position: relative;
}

/* Image wrapper */
.rec-image-wrap {
  width: 100%;
  height: 378px;
  aspect-ratio: 16 / 10; /* keep proportion */
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #000000;
  box-shadow: 3px 2px 0px #000000;
  margin-bottom: 0;
  background: #fff;
}

.rec-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stars */
.rec-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 65%;
  background: #ECBED9;
  border: 2px solid #000000;
  border-radius: 60px;
  padding: 6px 12px;
  box-sizing: border-box;
  z-index: 2;
}

/* Bottom Info */
.rec-card-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  margin-top: 10px;
}

.rec-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rec-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 3.5vw, 26px);
  line-height: 1.2;
  color: #000;
}

.rec-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(12px, 2.8vw, 20px);
  color: #000;
}

/* Share Button */
.rec-share {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #DCE45F;
  border: 3px solid #000000;
  box-shadow: 2px 3px 0px #000000;
  border-radius: 50%;
  text-decoration: none;
}

.rec-share img {
  width: 22px;
  height: 22px;
}

/* Large Tablets and Desktop */
@media (max-width: 1024px) {
  .recent-recs-row {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .rec-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .recent-recs-title {
    max-width: 100%;
    width: 100%;
    margin: 24px auto 20px auto;
    padding: 0 16px;
  }

  .recent-recs-row {
    gap: 16px;
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .rec-card {
    flex: 1 1 calc(50% - 8px);
    max-width: 100%;
    min-width: 250px;
    padding: 8px 8px 16px;
    gap: 16px;
  }
  
  .rec-image-wrap {
    border-radius: 16px;
  }
}

/* Small Tablet / Large Mobile */
@media (max-width: 600px) {
  .recent-recs-row {
    flex-direction: column;
    align-items: center;
  }
  
  .rec-card {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .recent-recs-title {
    margin: 20px auto 16px auto;
    padding: 0 12px;
  }

  .recent-recs-row {
    padding: 0 12px;
    gap: 12px;
    margin-bottom: 20px;
  }

  .rec-card {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    padding: 8px 8px 14px;
    gap: 14px;
    border-radius: 20px;
  }

  .rec-image-wrap {
    border-radius: 14px;
    aspect-ratio: 16 / 9;
  }

  .rec-stars {
    padding: 4px 10px;
    gap: 4px;
  }

  .rec-card-bottom {
    margin-top: 8px;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .recent-recs-title {
    margin: 16px auto 12px auto;
    padding: 0 10px;
  }

  .recent-recs-row {
    padding: 0 10px;
    gap: 10px;
  }

  .rec-card {
    padding: 6px 6px 12px;
    gap: 12px;
    border-radius: 18px;
  }

  .rec-share {
    width: 40px;
    height: 40px;
  }

  .rec-share img {
    width: 18px;
    height: 18px;
  }

  .rec-image-wrap {
    border-radius: 12px;
  }
}

/* End */
.hero-figma {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 40px;
  gap: 50px;
  width: 100%;
  max-width: 1320px;
  margin: 60px auto 0 auto;
  background: #FDD4A4;
  border: 4px solid #000;
  box-shadow: 9px 12px 0 #000;
  border-radius: 30px;
  box-sizing: border-box;
  position: relative;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
  gap: 20px;
  width: 100%;
  max-width: 1076px;
  margin: 0 auto;
}

/* Hero Title */
.hero-content h1 {
  width: 100%;
  white-space: normal; /* allow wrapping */
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 80px); /* responsive scaling */
  line-height: 1.1;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

/* Hero Paragraph */
.hero-content p {
  width: 100%;
  max-width: 1051px;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 26px); /* responsive scaling */
  line-height: 1.4;
  text-align: center;
  color: #000;
  margin: 0;
}

/* Hero Button */
.hero-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(14px, 2.5vw, 20px); /* responsive */
  line-height: 1.2;
  border-radius: 110px;
  border: 4px solid #000;
  height: auto;
  min-height: 48px;
  box-sizing: border-box;
  text-decoration: none;
  color: #000;
  background: #FDF0F0;
  transition: background 0.2s;
  justify-content: center;
  text-align: center;
}

/* Button Icon */
.hero-btn img {
  width: 24px;
  height: 24px;
}

/* Register Button */
.hero-btn.hero-register {
  background: #DCE45F;
  box-shadow: 4px 6px 0 #000;
  border: 4px solid #000;
  min-width: 180px;
}


/* Our features */
/* .features-public-profiles-title {
  border: none;
  background: none;
  font-family: 'Barlow', sans-serif;
  font-size: 60px;
  font-weight: 900;
  text-align: center;
  margin: 44px 0 22px 0;
  color: #FDD4A4;
  text-shadow:
    0px 4px 0 #000,
    0px -4px 0 #000,
    4px 0px 0 #000,
   -4px 0px 0 #000,
    3px 3px 0 #000,
   -3px 3px 0 #000,
    3px -3px 0 #000,
   -3px -3px 0 #000;
  display: block;
  width: 100%;
} */

.our-features-title {
  width: 100%;
  max-width: 769px;
  margin: 44px auto 36px auto;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 60px); /* responsive scaling */
  line-height: 1.2;
  display: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #ECBED9;
  letter-spacing: -3px; /* less extreme spacing */
  -webkit-text-stroke: 3px #000; /* thinner outline */
  paint-order: stroke fill;

  text-shadow:
    2px 3px 0 rgba(0,0,0,0),
   -2px -2px 0 rgba(0,0,0,0.5);
  filter: drop-shadow(0px 6px 0px #000);
}


.our-features-title .stroke {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: absolute;
  inset: 0;
  color: black; /* fill + counters go black */
  -webkit-text-stroke: 6px black; /* black outline */
  z-index: 0;
}

.our-features-title .fill {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: relative;
  color: #ECBED9;
  z-index: 1;
}

.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Flexible grid */
  gap: 30px;
  width: 100%;
  max-width: 1318px;
  margin: 36px auto 0 auto;
  padding: 0 16px; /* breathing space on mobile */
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  gap: 16px;

  /* instead of fixed width & height */
  width: 100%;
  max-width: 307px;
  height: auto;

  background: #ECBED9;
  border: 4px solid #000000;
  box-shadow: 7px 8px 0px #000000;
  border-radius: 26px;
  box-sizing: border-box;
  margin: 0 auto; /* keeps cards centered in column layouts */
}
/* Responsive title sizing */
.features-title {
  font-size: clamp(28px, 5vw, 60px);
  margin: 24px 0 12px 0;
}
/* Adjust text for smaller screens */
.feature-title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-family: "Barlow", sans-serif;
}

.feature-desc {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.4;
  padding: 0 8px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  text-align: center;
  
}

/* Recent public profiles */
/* Recent Public Profiles (updated — responsive) */
/* .recent-public-profiles-title {
  border: none;
  background: none;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 900;
  text-align: center;
  margin: 44px 0 22px 0;
  color: #FDD4A4;
  text-shadow:
    0px 4px 0 #000,
    0px -4px 0 #000,
    4px 0px 0 #000,
   -4px 0px 0 #000,
    3px 3px 0 #000,
   -3px 3px 0 #000,
    3px -3px 0 #000,
   -3px -3px 0 #000;
  display: block;
  width: 100%;
  box-sizing: border-box;
} */
.recent-public-profiles-title {
  width: 100%;
  max-width: 769px;
  margin: 44px auto 36px auto;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 60px); /* responsive scaling */
  line-height: 1.2;
  display: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #FDD4A4;
  letter-spacing: -3px; /* less extreme spacing */
  -webkit-text-stroke: 3px #000; /* thinner outline */
  paint-order: stroke fill;

  text-shadow:
    2px 3px 0 rgba(0,0,0,0.5),
   -2px -2px 0 rgba(0,0,0,0.5);
  filter: drop-shadow(0px 6px 0px #000);
}


.recent-public-profiles-title .stroke {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: absolute;
  inset: 0;
  color: black; /* fill + counters go black */
  -webkit-text-stroke: 6px black; /* black outline */
  z-index: 0;
}

.recent-public-profiles-title .fill {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: relative;
  color: #FDD4A4;
  z-index: 1;
}
/* Section container */
.recent-public-profiles-section {
  background: #DCE45F;
  border-top: 8px solid #000000;
  box-shadow: 0px 14px 0px #000000;
  border-radius: 18px 18px 0 0;
  width: 100vw;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 60px;
  padding: 44px 0;
}

/* Inner container for content */
.recent-public-profiles-inner {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 32px;
}
/* Responsive grid: will fit 3 / 2 / 1 columns automatically */
.recent-public-profiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;   /* Center grid items horizontally */
  align-items: start;
  margin: 0 auto;
  max-width: 1318px;
  width: 100%;
  box-sizing: border-box;
}
/* Card */
.public-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 30px;
  gap: 20px;
  background: #B3E0DD;
  border: 4px solid #000;
  box-shadow: 7px 8px 0 #000;
  border-radius: 26px;
  box-sizing: border-box;
  /* allow content to determine height but keep a consistent minimum */
  width: 100%;
  height: auto;
  min-height: 260px;
}
/* Top row inside card */
.public-profile-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}
/* Image */
.public-profile-image {
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 3px solid #000;
  filter: drop-shadow(2px 3px 0px #000);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 800;
  color: #000;
}
.public-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Info area (flex trick: width:0 + flex-grow:1) */
.public-profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 0;
  flex-grow: 1;
  min-width: 0; /* important to allow truncation / wrapping inside flex item */
  box-sizing: border-box;
}
/* Name, date, bio */
.public-profile-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  /* responsive name size */
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1;
  color: #000;
  margin-bottom: 2px;
}
.public-profile-date {
  display: flex;
  
  align-items: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 2vw, 18px);
  color: #000;
}
/* Bio: single-line truncation on wide screens, expands on small screens via media query below */
.public-profile-bio {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 24px;
  color: #000;
  opacity: 0.8;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
}
/* Action button */
.public-profile-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  width: 85%;
  height: 56px;
  background: #B5B0D8;
  border: 4px solid #000;
  box-shadow: 4px 6px 0 #000;
  border-radius: 110px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 2vw, 20px);
  color: #000;
  text-decoration: none;
  margin-top: auto;
  box-sizing: border-box;
}
.public-profile-btn span {
  width: 108px;
  height: 24px;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #000000;
  flex: none;
  order: 1;
  flex-grow: 0;
  /* Optional: prevent text wrapping */
  white-space: nowrap;
}
/* ----------------------------------------------
   Responsive tweaks for tablets and mobile
   ---------------------------------------------- */
/* Medium screens / tablets */
/* Large screens (≤1400px) */
@media (max-width: 1400px) {
  .recent-public-profiles-inner {
    max-width: 98vw;
    padding: 0 2vw;
  }
  .recent-public-profiles-section {
    border-radius: 12px 12px 0 0;
    padding: 32px 0;
  }
  .recent-public-profiles-grid {
    max-width: 1318px;
    grid-template-columns: repeat(3, 1fr);
  }  
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .recent-public-profiles-inner {
    max-width: 100vw;
    padding: 0 8px;
  }
  .recent-public-profiles-section {
    border-radius: 8px 8px 0 0;
    padding: 16px 0;
  }
  .recent-public-profiles-grid {
    max-width: 1318px;
    grid-template-columns: repeat(3, 1fr);
  }    
}

/* Mobile (≤390px) */
@media (max-width: 390px) {
  .recent-public-profiles-inner {
    max-width: 100vw;
    padding: 0 2px;
  }
  .recent-public-profiles-section {
    border-radius: 6px 6px 0 0;
    padding: 8px 0;
  }

  .recent-public-profiles-grid {
    max-width: 307px;
    grid-template-columns: repeat(1, 1fr);
  }
}
  /* make cards stack full width */

  .public-profile-top {
    gap: 12px;
  }
  .public-profile-image {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }
  .public-profile-name {
    font-size: clamp(16px, 3.5vw, 22px);
  }
  .public-profile-date {
    font-size: clamp(13px, 2.6vw, 16px);
  }
  /* allow bio to wrap and show multiple lines on mobile */
  .public-profile-bio {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .public-profile-btn {
    width: 100%;
    padding: 10px 18px;
    font-size: 16px;
    height: 50px;
  }

/* Main header */
.main-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1320px;
  margin: 20px auto;
  padding: 0 16px;
  background: #FDF0F0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.nav-btn.nav-logout {
  background: #ECBED9 !important;
  color: #000 !important;
}

/* Tablet and mobile responsive header */
@media (max-width: 1024px) {
  .main-header {
    width: 95%;
    margin: 15px auto;
    padding: 0 12px;
  }
}

@media (max-width: 768px) {
  .main-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    width: 100%;
    margin: 10px auto;
  }
  
  .main-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .nav-btn {
    min-width: auto;
    padding: 8px 16px;
    font-size: 14px;
    height: 44px;
  }
  
  .nav-btn span {
    display: none;
  }
  
  .nav-btn img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .main-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px 10px;
    margin: 5px auto;
  }
  
  .main-nav {
    justify-content: center;
    width: 100%;
  }
  
  .nav-btn {
    flex: 1;
    min-width: 60px;
    max-width: 80px;
    padding: 10px 8px;
    justify-content: center;
  }
}

/* Logo / Profile Image */
.main-header img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  display: block;
}
/* Header Navigation */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  height: auto;
  background: transparent;
}
.nav-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  border-radius: 110px;
  border: 4px solid #000000;
  background: #fff;
  color: #000;
  text-decoration: none !important;
  height: 56px;
  box-sizing: border-box;
  transition: background 0.2s;
  min-width: 150px;
  justify-content: center;
}
.nav-btn.nav-register {
  background: #DCE45F;
  box-shadow: 4px 6px 0 #000;
  border: 4px solid #000;
  min-width: 202px;
}
.logo-badge {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 500 !important;
  color: #000 !important;
  text-shadow: none !important;
  letter-spacing: 1px;
  background: var(--accent-green, #dff16a);
  border: 3px solid #0e0b0b;
  border-radius: 12px;
  padding: 8px 18px 6px 18px;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.65);
  display: inline-block;
  line-height: 1.1;
}
/* --- Header + Nav style from Figma --- */

.logo {
  display: flex;
  align-items: center;
  gap: 18px;
}
/* HERO heading style */
.hero h1 {
  font-family: 'Barlow', sans-serif; /* ✅ switch to Inter */
  font-size: 42px;                  /* ✅ slightly smaller for balance */
  font-weight: 200;                 /* ✅ not too heavy */
  line-height: 1.1;
  margin: 0;
  text-align: center;
  color: #000 !important;           /* ✅ pure black */
  text-shadow: none !important;     /* ✅ remove shadow */
}

/* Signup page */
/* Make the register container flexible */
.register-figma {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 5%; /* keep original top/bottom, make sides flexible */
  gap: 50px;
  width: 100%;
  max-width: 716px; /* original design width */
  min-height: 900px;
  margin: 60px auto 0 auto;
  background: #FDD4A4;
  border: 4px solid #000;
  box-shadow: 9px 12px 0 #000;
  border-radius: 30px;
  box-sizing: border-box;
}

/* Header adapts */
.register-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 516px;
  height: auto;
}

.register-header h1 {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  max-width: 516px;
  font-size: clamp(36px, 6vw, 60px); /* responsive font */
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

.register-subtitle {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  max-width: 516px;
  font-size: clamp(18px, 4vw, 26px);
  line-height: 1.5;
  text-align: center;
  color: #000;
  margin: 0;
}

/* Fields responsive */
.register-fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 516px;
  min-height: 380px;
  font-family: 'Barlow', sans-serif;

}

.register-row {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  max-width: 516px;
  width: 100%;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  font-size: 1.2rem;
  color: rgba(0,0,0,0.4);
}
/* Responsive design for register form */
@media (max-width: 768px) {
  .register-figma {
    padding: 40px 4%;
    margin: 40px auto 0 auto;
    min-height: auto;
    width: 95%;
    max-width: 600px;
  }
  
  .register-row {
    max-width: 100%;
    width: 100%;
  }
  
  .register-btn,
  .register-login-btn {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .register-figma {
    padding: 30px 5%;
    margin: 20px auto 0 auto;
    border-radius: 20px;
    gap: 30px;
  }
  
  .register-header h1 {
    font-size: 36px;
  }
}

@media (max-width: 390px) {
  .register-figma {
    padding: 20px 4%;
    margin: 10px auto 0 auto;
    border-radius: 15px;
    gap: 25px;
  }
  
  .register-row {
    max-width: 100%;
    height: 48px;
    font-size: 1rem;
  }
  
  .register-header h1 {
    font-size: 28px;
  }
  
  .register-btn,
  .register-login-btn {
    height: 48px;
    font-size: 16px;
  }
}

.register-input {
  width: 100%;
  font-size: 1rem;
  background: #FDF0F0;
  font-family: 'Barlow', sans-serif;
  border: none;

}

/* Buttons scale */
.register-btn{
  width: 100%;
  max-width: 516px;
  height: 56px;
  background: #ECBED9;
  font-size: clamp(16px, 2.5vw, 20px);
  padding: 10px 5%;
  font-family: 'Barlow', sans-serif;
  border-radius: 60px;

}
.register-login-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  width: 282px;
  height: 56px;
  background: #DCE45F;
  border: 4px solid #000;
  box-shadow: 4px 6px 0 #000;
  border-radius: 110px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000;
  margin-top: 20px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .register-login-btn {
    width: 100%;
    max-width: 282px;
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 60px;
  }
}
@media (max-width: 390px) {
  .register-login-btn {
    max-width: 282px;
    width: 100%;
    padding: 8px 8px;
    font-size: 15px;
    border-radius: 32px;
  }
}

@media (max-width: 768px) {
  .register-btn {
    max-width: 516px;
    width: 100%;
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 60px;
  }
}
@media (max-width: 390px) {
  .register-btn {
    max-width: 292px;
    width: 100%;
    padding: 8px 8px;
    font-size: 15px;
    border-radius: 32px;
  }
}
/* Footer responsive */
.register-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  max-width: 516px;
  width: 100%;
  height: 24px;
  margin-top: 30px;
}
.register-footer-text {
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.register-footer-line {
  flex: 1 1 100%;
  height: 0;
  border-top: 4px solid rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .register-footer {
    width: 98vw;
    max-width: 98vw;
    gap: 12px;
    height: 20px;
  }
  .register-footer-line {
    border-top-width: 3px;
  }
  .register-footer-text {
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  .register-footer {
    width: 100vw;
    max-width: 100vw;
    gap: 6px;
    height: 16px;
  }
  .register-footer-line {
    border-top-width: 2px;
  }
  .register-footer-text {
    font-size: 13px;
  }
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
  .register-figma {
    padding: 40px 20px;
    min-height: auto;
  }
  .register-header h1 {
    font-size: clamp(28px, 8vw, 48px);
  }
  .register-subtitle {
    font-size: clamp(16px, 4vw, 22px);
  }
  .register-btn, .register-login-btn {
    font-size: clamp(14px, 4vw, 18px);
  }
}

/* Dashboard */
/* .dashboard-title {
  width: 337px;
  height: 42px;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 60px;
  line-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #B5B0D8;
  text-shadow:
    0px 4px 0 #000,
    0px -4px 0 #000,
    4px 0px 0 #000,
   -4px 0px 0 #000,
    3px 3px 0 #000,
   -3px 3px 0 #000,
    3px -3px 0 #000,
   -3px -3px 0 #000;  margin: 0 auto 24px auto;
  background: transparent;
  box-sizing: border-box;
} */

.dashboard-title {
  width: 100%;
  max-width: 769px;
  margin: 44px auto 36px auto;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 60px); /* responsive scaling */
  line-height: 1.2;
  display: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #B5B0D8;
  letter-spacing: -3px; /* less extreme spacing */
  -webkit-text-stroke: 3px #000; /* thinner outline */
  paint-order: stroke fill;

  text-shadow:
    2px 3px 0 rgba(0,0,0,0),
   -2px -2px 0 rgba(0,0,0,0.5);
  filter: drop-shadow(0px 6px 0px #000);
}


.dashboard-title .stroke {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: absolute;
  inset: 0;
  color: black; /* fill + counters go black */
  -webkit-text-stroke: 6px black; /* black outline */
  z-index: 0;
}

.dashboard-title .fill {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: relative;
  color: #B5B0D8;
  z-index: 1;
}

/* Dashboard title responsive */
@media (max-width: 768px) {
  .dashboard-title {
    margin: 30px auto 24px auto;
    font-size: clamp(24px, 8vw, 36px);
    letter-spacing: -2px;
    -webkit-text-stroke: 2px #000;
    filter: drop-shadow(0px 4px 0px #000);
  }
  
  .dashboard-title .stroke {
    -webkit-text-stroke: 4px black;
  }
}

@media (max-width: 480px) {
  .dashboard-title {
    margin: 20px auto 20px auto;
    font-size: clamp(20px, 10vw, 28px);
    letter-spacing: -1px;
  }
}

@media (max-width: 390px) {
  .dashboard-title {
    margin: 16px auto 16px auto;
    font-size: clamp(18px, 12vw, 24px);
    letter-spacing: -0.5px;
  }
}
/* Personlized message */
/* Personalized Welcome Section */
.dashboard-figma {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  gap: 50px;
  width: 100%;
  max-width: 1320px;
  min-height: 435px;
  margin: 40px auto 0 auto;
  background: #FDD4A4;
  border: 4px solid #000;
  box-shadow: 9px 12px 0 #000;
  border-radius: 30px;
  box-sizing: border-box;
}

.dashboard-figma-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 38px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.dashboard-figma-greeting {
  width: 100%;
  max-width: 1051px;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000000;
  margin: 0 auto;
  justify-content: center;
}

.dashboard-figma-subheader {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 6px;
  width: 100%;
  max-width: 1160px;
}

.dashboard-figma-title {
  width: 100%;
  max-width: 1160px;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin: 0 auto;
  justify-content: center;
}

.dashboard-figma-desc {
  width: 100%;
  max-width: 1051px;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000;
  margin: 0 auto;
  justify-content: center;
}

.dashboard-figma-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1160px;
  justify-content: center;
}

.dashboard-figma-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  gap: 20px;
  background: #DCE45F;
  border: 4px solid #000;
  box-shadow: 7px 8px 0 #000;
  border-radius: 26px;
  box-sizing: border-box;
  flex-grow: 1;
}

.dashboard-figma-stat-value {
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000;
  margin: 0 auto;
  justify-content: center;
}

.dashboard-figma-stat-label {
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000;
  opacity: 0.8;
  margin: 0 auto;
  justify-content: center;
}

/* 📱 Enhanced Dashboard Mobile Responsiveness */
@media (max-width: 1024px) {
  .dashboard-figma {
    padding: 40px 20px;
    gap: 35px;
    margin: 30px auto 0 auto;
  }

  .dashboard-figma-stats-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .dashboard-figma-stat {
    flex: 1 1 calc(50% - 10px);
    min-width: 150px;
  }
}

@media (max-width: 768px) {
  .dashboard-figma {
    padding: 30px 16px;
    gap: 25px;
    margin: 20px auto 0 auto;
    border-radius: 20px;
  }

  .dashboard-figma-header {
    text-align: center;
  }

  .dashboard-figma-greeting {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .dashboard-figma-title {
    font-size: 1.3rem;
  }

  .dashboard-figma-desc {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .dashboard-figma-stats-row {
    flex-direction: column;
    gap: 16px;
  }

  .dashboard-figma-stat {
    flex: none;
    width: 100%;
    padding: 16px;
  }

  .dashboard-figma-stat-value {
    font-size: 1.8rem;
  }

  .dashboard-figma-stat-label {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .dashboard-figma {
    padding: 25px 12px;
    gap: 20px;
    margin: 15px auto 0 auto;
    border-radius: 18px;
  }

  .dashboard-figma-greeting {
    font-size: 1.4rem;
  }

  .dashboard-figma-title {
    font-size: 1.1rem;
  }

  .dashboard-figma-desc {
    font-size: 0.9rem;
  }

  .dashboard-figma-stat {
    padding: 12px;
  }

  .dashboard-figma-stat-value {
    font-size: 1.5rem;
  }

  .dashboard-figma-stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 390px) {
  .dashboard-figma {
    padding: 20px 10px;
    gap: 18px;
    margin: 10px auto 0 auto;
    border-radius: 16px;
  }

  .dashboard-figma-greeting {
    font-size: 1.2rem;
  }

  .dashboard-figma-title {
    font-size: 1rem;
  }

  .dashboard-figma-desc {
    font-size: 0.8rem;
  }

  .dashboard-figma-stat {
    padding: 10px;
  }

  .dashboard-figma-stat-value {
    font-size: 1.3rem;
  }

  .dashboard-figma-stat-label {
    font-size: 0.75rem;
  }
}

/* Manage Content Section */
.manage-content-figma {
  background: #ECBED9;
  border-top: 8px solid #0e0b0b;
  border-bottom: 8px solid rgba(0,0,0,0.65);
  padding: 28px 0;
  border-radius: 12px;
  margin: 44px 0 0 0;
  width: 100vw;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.manage-content-inner-figma {

  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 24px;
}

/* .manage-content-title {
  width: 680px;
  height: 42px;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 60px;
  line-height: 80px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #B5B0D8;
  text-shadow:
    0px 4px 0 #000,
    0px -4px 0 #000,
    4px 0px 0 #000,
   -4px 0px 0 #000,
    3px 3px 0 #000,
   -3px 3px 0 #000,
    3px -3px 0 #000,
   -3px -3px 0 #000;
  background: transparent;
  border-radius: 20px;
  margin: 0 auto 40px auto;
  justify-content: center;
} */
.manage-content-title {
  width: 100%;
  max-width: 769px;
  margin: 44px auto 36px auto;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 60px); /* responsive scaling */
  line-height: 1.2;
  display: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #B5B0D8;
  letter-spacing: -3px; /* less extreme spacing */
  -webkit-text-stroke: 3px #000; /* thinner outline */
  paint-order: stroke fill;

  text-shadow:
    2px 3px 0 rgba(0,0,0,0),
   -2px -2px 0 rgba(0,0,0,0.5);
  filter: drop-shadow(0px 6px 0px #000);
}


.manage-content-title .stroke {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: absolute;
  inset: 0;
  color: black; /* fill + counters go black */
  -webkit-text-stroke: 6px black; /* black outline */
  z-index: 0;
}

.manage-content-title .fill {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: relative;
  color: #B5B0D8;
  z-index: 1;
}
.manage-content-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  max-width: 1320px;
  justify-content: center;
  flex-wrap: wrap; /* ✅ allow wrapping on smaller screens */
}

.manage-content-card {
  display: flex;
  flex: 1 1 320px;
  max-width: 420px;
  min-width: 280px;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  gap: 20px;
  width: 100%;
  height: 219px;
  background: #B5B0D8;
  border: 4px solid #000;
  box-shadow: 7px 8px 0 #000;
  border-radius: 26px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  color: #000;
}

.manage-content-card:hover {
  box-shadow: 0 0 0 4px #DCE45F, 7px 8px 0 #000;
  transform: translateY(-4px) scale(1.02);
}

.manage-content-card-icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 10px;
  width: 98px;
  height: 98px;
  background: #B3E0DD;
  border: 3px solid #000;
  box-shadow: 2px 3px 0 #000;
  border-radius: 20px;
  margin-bottom: 10px;
}

.manage-content-card-icon img {
  width: 50px;
  height: 50px;
  display: block;
}

.manage-content-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;      /* Center horizontally */
  justify-content: center;  /* Center vertically if needed */
  gap: 16px;
  width: 100%;
  height: 61px;
  text-align: center;       /* Center text */
}

.manage-content-card-title {
  width: 400px;
  height: 21px;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #000;
}

.manage-content-card-title,
.manage-content-card-desc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;  /* Center text horizontally */
  text-align: center;
}

/* 📱 Responsiveness */
@media (max-width: 1400px) {
  .manage-content-figma {
    padding: 80px 40px;
    gap: 40px;
  }

  .manage-content-title {
    font-size: 48px;
    width: 100%;
    line-height: 1.2;
  }

  .manage-content-row {
    gap: 20px;
  }

  .manage-content-card {
    height: auto; /* let height adjust naturally */
  }
}

@media (max-width: 1024px) {
  .manage-content-figma {
    padding: 60px 30px;
    gap: 35px;
  }

  .manage-content-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .manage-content-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .manage-content-figma {
    padding: 40px 20px;
    gap: 25px;
  }

  .manage-content-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .manage-content-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .manage-content-card {
    flex: none;
    width: 100%;
    max-width: 400px;
    min-width: auto;
  }

  .manage-content-card-title {
    font-size: 20px;
  }

  .manage-content-card-info {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .manage-content-figma {
    padding: 30px 15px;
    gap: 20px;
  }

  .manage-content-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .manage-content-card {
    padding: 16px;
    gap: 12px;
    border-radius: 18px;
  }

  .manage-content-card-icon {
    width: 50px;
    height: 50px;
  }

  .manage-content-card-icon img {
    width: 35px;
    height: 35px;
  }

  .manage-content-card-title {
    font-size: 18px;
  }
}

@media (max-width: 390px) {
  .manage-content-figma {
    padding: 20px 12px;
    gap: 18px;
  }

  .manage-content-title {
    font-size: 24px;
  }

  .manage-content-card {
    padding: 14px;
    gap: 10px;
    border-radius: 16px;
  }

  .manage-content-card-icon {
    width: 45px;
    height: 45px;
  }

  .manage-content-card-icon img {
    width: 30px;
    height: 30px;
  }
}

/* Universal responsive utilities */
/* Prevent content overflow on mobile */
* {
  box-sizing: border-box;
}

/* Responsive images and media */
img, 
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Responsive tables */
table {
  width: 100%;
  border-collapse: collapse;
}

@media (max-width: 768px) {
  table, 
  thead, 
  tbody, 
  th, 
  td, 
  tr {
    display: block;
  }
  
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  
  tr {
    border: 1px solid #ccc;
    margin-bottom: 10px;
  }
  
  td {
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50%;
  }
  
  td:before {
    content: attr(data-label) ": ";
    position: absolute;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
  }
}

/* Responsive forms */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Touch target improvements for mobile */
@media (max-width: 768px) {
  button,
  a,
  input[type="button"],
  input[type="submit"],
  .btn,
  .nav-btn {
    min-height: 44px; /* iOS recommended touch target size */
    min-width: 44px;
  }
}

/* Prevent zoom on focus for iOS */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"], 
  input[type="password"],
  input[type="tel"],
  textarea,
  select {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

@media (max-width: 390px) {
  .manage-content-figma {
    padding: 40px 15px;
    gap: 20px;
  }

  .manage-content-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .manage-content-card {
    padding: 15px;
  }

  .manage-content-card-icon {
    width: 70px;
    height: 70px;
    padding: 20px;
  }

  .manage-content-card-title {
    font-size: 18px;
  }
}


/* Quick Actions */
.quick-actions-figma {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  margin: 40px auto 0 auto;
  width: 100%;
  max-width: 1440px;
}

.quick-actions-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  max-width: 1320px;
  justify-content: center;
  flex-wrap: wrap; /* ✅ Allow wrapping for smaller screens */
}

.quick-action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 10px;
  gap: 20px;
  max-width: 307.5px;
  width: 100%;
  height: 185px;
  background: #B3E0DD;
  border: 4px solid #000;
  box-shadow: 7px 8px 0 #000;
  border-radius: 26px;
  text-decoration: none;
  color: #000;
  transition: box-shadow 0.2s, transform 0.2s;
}

.quick-action-card:hover {
  box-shadow: 0 0 0 4px #DCE45F, 7px 8px 0 #000;
  transform: translateY(-4px) scale(1.02);
}

.quick-action-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  gap: 10px;
  width: 98px;
  height: 98px;
  background: #DCE45F;
  border: 3px solid #000;
  box-shadow: 2px 3px 0 #000;
  border-radius: 20px;
  margin-bottom: 10px;
}

.quick-action-card-icon img {
  width: 50px;
  height: 50px;
  display: block;
}

.quick-action-card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.quick-action-card-title {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 27px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* .quick-actions-title {
  width: 430px;
  height: 42px;
  margin: 60px auto 40px auto;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 60px;
  line-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #DCE45F;
  text-shadow:
    0px 4px 0 #000,
    0px -4px 0 #000,
    4px 0px 0 #000,
    -4px 0px 0 #000,
    3px 3px 0 #000,
    -3px 3px 0 #000,
    3px -3px 0 #000,
    -3px -3px 0 #000;
  background: transparent;
  border-radius: 20px;
} */

.quick-actions-title {
  width: 100%;
  max-width: 769px;
  margin: 44px auto 36px auto;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 60px); /* responsive scaling */
  line-height: 1.2;
  display: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #DCE45F;
  letter-spacing: -3px; /* less extreme spacing */
  -webkit-text-stroke: 3px #000; /* thinner outline */
  paint-order: stroke fill;

  text-shadow:
    2px 3px 0 rgba(0,0,0,0),
   -2px -2px 0 rgba(0,0,0,0.5);
  filter: drop-shadow(0px 6px 0px #000);
}


.quick-actions-title .stroke {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: absolute;
  inset: 0;
  color: black; /* fill + counters go black */
  -webkit-text-stroke: 6px black; /* black outline */
  z-index: 0;
}

.quick-actions-title .fill {
  align-items: center;
  justify-content: center;
  text-align: center;  
  position: relative;
  color: #DCE45F;
  z-index: 1;
}

/* ✅ Responsive Design */
@media (max-width: 1400px) {
  .quick-actions-row {
    gap: 20px;
  }

  .quick-action-card {
    width: 100%; /* two per row */
    height: auto;
  }

  .quick-actions-title {
    font-size: 45px;
    line-height: 60px;
    width: auto;
    height: auto;
    margin: 40px auto 20px auto;
  }
}

@media (max-width: 768px) {
  .quick-actions-row {
    flex-direction: column;
    align-items: center;
  }

  .quick-action-card {
    width: 100%; /* full width */
  }

  .quick-action-card-title {
    font-size: 22px;
  }

  .quick-actions-title {
    font-size: 36px;
    line-height: 48px;
    margin: 30px auto 20px auto;
  }
}

@media (max-width: 390px) {
  .quick-action-card {
    width: 100%;
    padding: 15px;
  }

  .quick-action-card-icon {
    width: 80px;
    height: 80px;
    padding: 20px;
  }

  .quick-action-card-icon img {
    width: 30px;
    height: 30px;
  }

  .quick-action-card-title {
    font-size: 18px;
  }

  .quick-actions-title {
    font-size: 28px;
    line-height: 36px;
  }
}

/* Recent Recommendataions */
.recent-recommendation-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 30px;
    gap: 20px;
    width: 419px;
    min-height: 154px;
    background: #B3E0DD;
    border: 4px solid #000000;
    box-shadow: 7px 8px 0px #000000;
    border-radius: 26px;
    box-sizing: border-box;
    flex: none;
    order: 0;
    flex-grow: 1;
    margin: 0 auto;
    overflow: hidden;
}

/* Top row: category left, rating right */
.recent-recommendation-top-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

/* Category name with SVG */
.recent-recommendation-category {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #25314C;
}

.recent-recommendation-category-svg {
    width: 18px;
    height: 18px;
}

/* Rating SVGs */
.recent-recommendation-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.recent-recommendation-rating-svg {
    width: 18px;
    height: 18px;
}

/* Second row: title left, cost right */
.recent-recommendation-title-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.recent-recommendation-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #000000;
    margin-top: 4px;
}

.recent-recommendation-cost {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #25314C;
    white-space: nowrap;
}

.recent-recommendation-cost-svg {
    width: 18px;
    height: 18px;
}

/* Tags row */
.recent-recommendation-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.recent-recommendation-tag-category {
    background: #B5B0D8;
    color: #000;
    border: 2px solid #000;
    border-radius: 110px;
    padding: 4px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.recent-recommendation-tag-collection {
    background: #DCE45F;
    color: #000;
    border: 2px solid #000;
    border-radius: 110px;
    padding: 4px 14px;
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.recent-recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 1318px;
    height: auto;
    margin: 0 auto 40px auto;
    box-sizing: border-box;
}

.recent-recommendations-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px 30px;
    gap: 10px;
    width: 516px;
    height: 56px;
    background: #FFFFFF;
    border: 4px solid #000000;
    box-shadow: 4px 6px 0px #000000;
    border-radius: 110px;
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #000;
    text-align: center;
    text-decoration: none;
    margin: 40px auto 0 auto;
    transition: background 0.2s;
}

.recent-recommendations-btn-svg {
    width: 28px;
    height: 28px;
    margin-left: 12px;
    vertical-align: middle;
}

.recent-recommendations-section-bg {
  background: #DCE45F;
  border-top: 8px solid #0e0b0b;
  border-bottom: 8px solid rgba(0,0,0,0.65);
  padding: 28px 0;
  border-radius: 12px;
  margin: 44px 0 0 0;
  width: 100vw;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.recent-recommendations-inner-bg {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 24px;
}
.recent-recommendations-title {
  font-family: 'Barlow', sans-serif;
  font-size: 60px;
  font-weight: 900;
  text-align: center;
  margin: 44px 0 22px;
  color: #FDD4A4;
  text-shadow:
    0px 4px 0 #000,
    0px -4px 0 #000,
    4px 0px 0 #000,
   -4px 0px 0 #000,
    3px 3px 0 #000,
   -3px 3px 0 #000,
    3px -3px 0 #000,
   -3px -3px 0 #000;
}

/* ✅ Responsive Design */
@media (max-width: 1400px) {
  .recent-recommendations-grid {
    grid-template-columns: 3fr;
    width: 100%;
    max-width: 1000px;
  }
  .recent-recommendations-section-bg {
    width: 100%;
  }
  .recent-recommendations-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .recent-recommendations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
  }
  .recent-recommendation-card {
    width: 100%;
    max-width: 500px;
  }
  .recent-recommendations-btn {
    width: 90%;
    font-size: 18px;
  }
  .recent-recommendations-title {
    font-size: 36px;
    margin: 30px 0 20px;
  }
}

@media (max-width: 390px) {
  .recent-recommendation-card {
    padding: 15px;
  }
  .recent-recommendation-title {
    font-size: 18px;
  }
  .recent-recommendations-btn {
    font-size: 16px;
    height: auto;
    padding: 8px 20px;
  }
  .recent-recommendations-title {
    font-size: 28px;
  }
}

/*Profile settings*/
/* Section Container */
.profile-figma {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 100px;
  gap: 50px;
  max-width: 1062px;
  margin: 0 auto;
  background: #FDD4A4;
  border: 4px solid #000;
  box-shadow: 9px 12px 0px #000;
  border-radius: 30px;
}

/* Header */
.profile-figma-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 862px;
  height: 80px;
}

.profile-figma-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 80px;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  width: 862px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Row */
.profile-figma-main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 50px;
  width: 862px;
  min-height: 466px;
}
.profile-figma-upload-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 406px;
  height: 100%;
}
.profile-figma-btn-text {
  white-space: nowrap;
}

/* Input Row */
.profile-figma-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  max-width: 406px;
  width: 100%;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  box-sizing: border-box;
}

.profile-figma-bio-row {
  height: 112px;
  border-radius: 20px;
  align-items: flex-start;
  padding: 20px;
}

.profile-figma-select-row {
  width: 193px;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  margin-bottom: 0;
  box-sizing: border-box;
}

.profile-figma-icon {
  width: 28px;
  height: 28px;
}

.profile-figma-caret {
  width: 28px;
  height: 28px;
  margin-left: 10px;
}

.profile-figma-input {
  flex: 1 !important;
  border: none !important;
  background: transparent !important;
  font-family: 'Barlow', sans-serif !important;
  font-weight: 800 !important;
  font-size: 20px !important;
  color: rgba(0,0,0,0.4) !important;
  outline: none !important;
  padding: 0 8px !important;
  margin: 0 !important;
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
}
.profile-figma-form > .profile-figma-row,
.profile-figma-form > .profile-figma-bio-row,
.profile-figma-form > .profile-figma-country-city-row,
.profile-figma-form > .profile-figma-public-row {
  margin-bottom: 18px;
}

.profile-figma-form > .profile-figma-row:last-child,
.profile-figma-form > .profile-figma-bio-row:last-child,
.profile-figma-form > .profile-figma-country-city-row:last-child,
.profile-figma-form > .profile-figma-public-row:last-child {
  margin-bottom: 0;
}

/* Public Checkbox Row */
.profile-figma-public-row {
  display: flex;
  font-family: 'Barlow', sans-serif;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 209px;
  height: 30px;
  padding: 0;
  background: none;
  border: none;
  box-sizing: border-box;
}

.profile-figma-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 4px solid #000;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
}

.profile-figma-checkbox-input {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 2;
}

.profile-figma-checkmark {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
  z-index: 1;
}

/* When checked, show black fill */
.profile-figma-checkbox-input:checked + .profile-figma-checkmark {
  background: #000;
}

/* Image Upload Box */
.profile-figma-upload-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  width: 406px;
  height: 466px;
  background: rgba(253, 240, 240, 0.46);
  border: 4px dashed #000;
  border-radius: 21px;
  box-sizing: border-box;
}

.profile-figma-upload-icon {
  width: 58px;
  height: 58px;
}

.profile-figma-upload-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
}

.profile-figma-upload-dropzone {
  width: 100%;
  min-height: 120px;
  border: 2px dashed #000;
  border-radius: 12px;
  background: #FDF0F0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.profile-figma-upload-preview {
  max-width: 200px;
  max-height: 200px;
  border-radius: 0.5rem;
  object-fit: cover;
}

.profile-figma-upload-preview-name {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #000000;
}

.profile-figma-upload-remove {
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: #DCE45F;
  color: #000;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  cursor: pointer;
}

/* Error Message */
.profile-figma-error {
  color: #DCE45F;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Preview Area */
.profile-figma-upload-preview-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 406px;
  min-height: 466px;
}

.profile-figma-current-image {
  width: 80px;
  height: 80px;
  border-radius: 0.75rem;
  object-fit: cover;
  border: 2px solid #DCE45F;
  margin-top: 20px;
}

/* Action Buttons */
.profile-figma-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}

.profile-figma-back-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  width: 171px;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}

.profile-figma-back-btn:hover {
  box-shadow: 2px 4px 0px #000;
}

.profile-figma-save-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  width: 205px;
  height: 56px;
  background: #DCE45F;
  border: 4px solid #000;
  box-shadow: 4px 6px 0px #000;
  border-radius: 110px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}

.profile-figma-save-btn:hover {
  box-shadow: 0px 0px 0px #000;
  background: #FDF0F0;
}

.profile-figma-action-icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
/* Country & City Row */
.profile-figma-country-city-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  max-width: 406px;
  width: 100%;
  height: 56px;
  background: none;
  border: none;
  box-sizing: border-box;
  padding: 0;
}

/* Each Field */
.profile-figma-country-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  max-width: 193px;
  width: 100%;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  box-sizing: border-box;
  padding: 10px 20px;
}
.profile-figma-city-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  max-width: 193px;
  width: 100%;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  box-sizing: border-box;
  padding: 10px 20px;
}
.profile-figma-country,
.profile-figma-city {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.profile-figma-back-btn,
.profile-figma-save-btn {
  white-space: nowrap;
}

.profile-figma-btn-text {
  white-space: nowrap;
}

/* ✅ Responsive Design */
@media (max-width: 1400px) {
  .profile-figma {
    padding: 40px 60px;
    max-width: 900px;
  }
  .profile-figma-header,
  .profile-figma-title,
  .profile-figma-main {
    width: 100%;
  }
  .profile-figma-title {
    font-size: 48px;
    line-height: 64px;
  }
}

@media (max-width: 768px) {
  .profile-figma {
    padding: 30px 20px;
    max-width: 100%;
  }
  .profile-figma-main {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .profile-figma-upload-col,
  .profile-figma-upload-row,
  .profile-figma-upload-preview-area {
    width: 100%;
    max-width: 500px;
  }
  .profile-figma-row,
  .profile-figma-country-city-row {
    width: 100%;
  }
  .profile-figma-country-field {
    flex: 1;
    width: 100%;
  }
    .profile-figma-city-field {
    flex: 1;
    width: 100%;
  }
  .profile-figma-title {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 390px) {
  .profile-figma {
    padding: 20px 15px;
    gap: 30px;
  }
  .profile-figma-title {
    font-size: 28px;
    line-height: 36px;
  }
  .profile-figma-actions {
    flex-direction: column;
    gap: 15px;
  }
  .profile-figma-back-btn,
  .profile-figma-save-btn {
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    height: auto;
    padding: 8px 20px;
  }
  .profile-figma-country-city-row {
    flex-direction: row !important;
    gap: 8px !important;
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    align-items: stretch !important;
  }
  .profile-figma-country-field,
  .profile-figma-city-field {
    flex: 1 !important;
    width: 100%;
  }
  .profile-figma-title {
    font-size: 36px;
    line-height: 48px;
  }
}

/* Manage Categories */
/* Main dashboard container */
.categories-dashboard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* Add this line */
  padding: 60px;
  gap: 50px;
  position: relative;
  width: 1320px;
  height: 678px;
  margin: 0 auto;            /* This centers the container horizontally */
  background: #FDF0F0;
  border: 4px solid #000;
  box-shadow: 9px 12px 0px #000;
  border-radius: 30px;
  box-sizing: border-box;
}

/* Header row */
.categories-header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 1200px;
  height: 56px;
  margin-bottom: 0;
  gap: 10px;
}

/* Title */
.categories-title {
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 42px;
  line-height: 80px;
  text-transform: uppercase;
  color: #000000;
  width: 411px;
  height: 29px;
  display: flex;
  align-items: center;
  margin: 0;
}

/* Add Custom Category Button */
.categories-add-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  width: 294px;
  height: 56px;
  background: #B3E0DD;
  border: 4px solid #000;
  border-radius: 110px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
  white-space: nowrap;
}
.categories-add-btn:hover {
  background: #9ccfc9; /* ✅ darker shade of #B3E0DD */
  box-shadow: 4px 6px 0px #000; /* subtle lift effect */
  cursor: pointer;
}

.categories-add-icon {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

/* Categories grid: 2 rows, 3 columns, 30px gap */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 380px);
  grid-template-rows: repeat(2, 223px);
  gap: 30px;
  width: 1200px;
  height: 452px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: start;
}

/* Category card */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 30px;
  gap: 20px;
  width: 100%;                 /* responsive */
  max-width: 380px;            /* don’t exceed original size */
  min-height: 223px;           /* keep height flexible */
  background: #ECBED9;
  border: 4px solid #000;
  box-shadow: 7px 8px 0px #000;
  border-radius: 26px;
  box-sizing: border-box;
}

/* Card header */
.category-card-header {
  width: 100%;                 /* responsive */
  max-width: 340px;
  height: auto;                /* let content define height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Title row */
.category-card-title-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  width: auto;
  height: auto;                /* flexible */
}

.category-card-icon img {
  width: 30px;
  height: 30px;
}

.category-card-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;           /* responsive font size */
  color: #000;
  display: flex;
  align-items: center;
}

.category-card-count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 30px;
  margin-left: 8px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 21px;
  color: #000;
  background: #ECBED9;
  border-radius: 12px;
  padding: 0 8px;
}

/* Description */
.category-card-description {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 1rem;             /* responsive text */
  color: #000;
  opacity: 0.8;
  width: 100%;                 /* responsive */
  max-width: 340px;
  min-height: 48px;
  display: flex;
  align-items: center;
}

/* Actions */
.category-card-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;                 /* responsive */
  max-width: 340px;
  height: auto;                /* flexible */
}


/* Action buttons */
.category-action-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  border-radius: 110px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  border: 4px solid #000;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
  height: 46px;
}

.category-action-btn.add {
  width: 197px;
  background: #DCE45F;
}
.category-action-btn.add:hover {
  box-shadow: 4px 6px 0px #000; /* subtle lift effect */
  background-color: #666d05;
  cursor: pointer;
}


.category-action-btn.view {
  width: 123px;
  background: #FDD4A4;
}
.category-action-btn.view:hover {
  box-shadow: 4px 6px 0px #000; /* subtle lift effect */
  background-color: #f5ae5c;
  cursor: pointer;
}
.category-action-btn img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

/* Add new category */
#category-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
}
#category-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  background: none;
  border: none;
  display: none;
}
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #DCE45F;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 0.7s linear infinite;
  margin: 40px auto;
  background: none;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}
body.modal-open {
  overflow: hidden;
}

/* Your recommendation page */
.window.window-recommendations {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  width: 100%;
  max-width: 1320px;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  background: #FDF0F0;
  z-index: 1002;
  padding: 60px 0;
  margin: 60px auto 0 auto;
  border: 4px solid #000;
  box-shadow: 9px 12px 0 #000;
  border-radius: 30px;
  box-sizing: border-box;
  position: relative;
}
.recommendations-header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px; /* match window padding */
  width: 100%;
  height: 56px;
  margin-bottom: 24px;
  box-sizing: border-box;
}
.recommendations-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 56px;
  color: #000000;
  margin: 0;
}
.recommendations-add-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  width: 310px;
  height: 56px;
  background: #B3E0DD;
  border: 4px solid #000;
  border-radius: 110px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
  white-space: nowrap;
  cursor: pointer;
  justify-content: center;
}
.recommendations-add-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* category_form */
/* Modal window styling */
.window {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  width: 716px;
  height: 544px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 100px;
  gap: 50px;
  background: #FDD4A4;
  border: 4px solid #000;
  box-shadow: 9px 12px 0px #000;
  border-radius: 30px;
  z-index: 1002;
}

/* Header */
.window-header {
    background: #FDD4A4;
    font-family: 'Barlow', sans-serif;
    padding: 18px 32px;
    font-size: 60px;
    font-weight: 800;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Content */
.window-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0;
}
.btn {
    background: #B3E0DD;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 8px 18px;
    font-weight: 700;
    color: #222;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 13px;
}
.btn:hover {
    background: #DCE45F;
}
/* Default (large desktop > 1400px) */

.form-field-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 516px;
  margin-bottom: 16px;
}

.form-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: rgba(0,0,0,0.4);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.form-control {
  width: 100%;
  height: 56px;
  padding: 10px 20px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000000;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 20px;
  box-sizing: border-box;
  margin-bottom: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.form-description {
  height: 112px !important;
  resize: none;
}

.form-error {
  color: #FF4D4F;
  font-size: 12px;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 400px;
  margin: 0 auto;
}

.btn.btn-cancel,
.btn.btn-primary {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 159px;
  height: 56px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  cursor: pointer;
  border-radius: 110px;
  border: 4px solid #000;
  box-sizing: border-box;
  white-space: nowrap;
}

.btn.btn-primary {
  width: 228px;
  background: #DCE45F;
  color: #000;
  box-shadow: 4px 6px 0px #000;
}

.btn.btn-cancel {
  background: #FDF0F0;
  color: #000;
}

.btn img {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Your recommendations */
.recommendations-grid {
  display: flex;
  flex-direction: row;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  width: 1200px;
  min-height: 336px;
  margin: 0 auto 40px auto;
  flex-wrap: wrap;
}

.recommendation-card {
  flex: none;
  width: 370px;
  min-height: 336px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 30px;
  box-shadow: 4px 6px 0px #000;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.recommendation-card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recommendation-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #000000;
  margin: 0;
}

.recommendation-category {
  background: #B3E0DD;
  color: #000000;
  padding: 4px 12px;
  font-size: 14px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
}

.recommendation-description {
  color: #333;
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}

.recommendation-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.recommendation-meta a {
  color: #000000;
  text-decoration: underline;
  word-break: break-all;
}

.recommendation-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: auto;
}

.btn-edit, .btn-delete {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  border-radius: 20px;
  border: 2px solid #000;
  cursor: pointer;
  text-decoration: none;
  background: #DCE45F;
  color: #000;
  transition: background 0.2s;
}

.btn-delete {
  background: #FDD4A4;
  color: #000;
}

.btn-edit:hover, .btn-delete:hover {
  background: #B3E0DD;
}

/* New recommendation form */
/* --- Frame 8: Outer Container --- */
/* ---------------- base overrides ---------------- */
body.cur8tr-recs-bg {
    background: #ECBED9 !important;
}
body.cur8tr-recs-bg header.main-header {
    background: #ECBED9 !important;
}

/* ---------------- Frame 8 (container in rec_form.html itself) ---------------- */

/* --- Frame 7: Heading --- */
.cur8tr-frame7 {
    display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 100%;
  max-width: 1120px;
  height: 80px;
}
@media (max-width: 768px) {
  .cur8tr-frame7 {
    max-width: 98vw;
    height: auto;
    gap: 6px;
  }
  .cur8tr-frame7-heading {
    font-size: 36px;
    line-height: 48px;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame7 {
    max-width: 100vw;
    height: auto;
    gap: 4px;
  }
  .cur8tr-frame7-heading {
    font-size: 22px;
    line-height: 32px;
  }
}

.cur8tr-frame7-heading {
  max-width: 1120px;
  width: 100%;
  height: 80px;
  font-family: 'Barlow', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 60px;
  line-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: #000000;
  margin: 0 auto;
}

/* --- Frame 49: Main Form Container --- */
.cur8tr-frame49 {
    display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 1120px;
  height: auto;
  box-sizing: border-box;
}

/* Responsive overrides for .cur8tr-frame49 */
@media (max-width: 1400px) {
  .cur8tr-frame49 {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 2vw;
  }
}
@media (max-width: 768px) {
  .cur8tr-frame49 {
    width: 98vw;
    max-width: 98vw;
    padding: 0 1vw;
    gap: 12px;
    box-sizing: border-box;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame49 {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    padding: 0 0.5vw;
    gap: 8px;
    box-sizing: border-box;
  }
}

/* --- Frame 44: Top Form Row --- */
.cur8tr-frame44 {
    display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 40px;
  width: 100%;
  max-width: 1120px;
  height: auto;
  margin-bottom: 20px;
  box-sizing: border-box;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .cur8tr-frame44 {
    max-width: 98vw;
    gap: 24px;
    padding: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame44 {
    max-width: 100vw;
    width: 100vw;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    box-sizing: border-box;
    overflow-x: visible;
  }
}

/* Frame 39: Categories Row */
.frame39-profile-categories-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns per row */
  gap: 30px;
  width: 100%;
  justify-content: center;   /* ✅ centers cards horizontally */
  
  max-width: 1200px;
  min-height: 509px;
  box-sizing: border-box;
  margin: 0 auto;
  align-items: flex-start;
  justify-items: stretch;
}

/* Frame 33: Category Card inside Frame 39 */
.frame33-profile-category-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 16px;  /* 16px top+bottom, 16px left+right */

  /* gap: 10px; */
  max-width: 380px;
  width: 100%;
  min-height: 120px;
  background: #B3E0DD;
  border: 4px solid #000;
  border-radius: 26px;
  box-shadow: 7px 8px 0px #000;
  font-family: 'Barlow', sans-serif;
  box-sizing: border-box;
}
.frame33-profile-category-title {
  font-weight: 800;
  font-size: 26px;
  color: #000000;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.frame33-profile-category-small-title {
  font-weight: 700;
  font-size: 18px;
  max-width: 340px;
  width: 100%;
  color: #000000;
  display: flex;
  align-items: center;
  margin: 20px 20px 0px 20px;
  gap: 8px;
}
.frame33-profile-category-desc {
  font-size: 15px;
  color: #000000;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 8px;
}


.frame47-profile-recommendation-content
{
  background-color: #DCE45F;
  border: 4px solid #000;
  min-width: 340px;
  border-radius: 26px;
  height: 275px;
  width: 100%;
  box-sizing: border-box;
}
.frame33-profile-category-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  margin: 15px auto;
  align-items: center;
  justify-content: space-evenly; /* ✅ equal spacing on both sides */
  box-sizing: border-box;
  padding: 20px 20px 30px 20px 20px;
}
/* .frame33-profile-category-action-btn {
  background: #ECBED9;
  color: #000000;
  border-radius: 110px;
  padding: 8px 18px;
  font-size: 15px;
  border: 2px solid #000;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.frame33-profile-category-action-btn:hover {
  background: #B3E0DD;
} */


.frame47-profile-recommendation-title
{
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: #000000;
  margin-left: 20px;
  text-decoration: none;

}
.frame47-profile-recommendation-desc
{
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  opacity: 0.8;
  font-size: 18px;
  color: #000000;
  text-decoration: none;
  max-width: 300px;
  justify-content: center;
  margin: 20px 20px 0px 20px;
}
/* --- Frame 34: Left Column --- */
.cur8tr-frame34 {
    display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 540px;
  height: auto;
}
@media (max-width: 768px) {
  .cur8tr-frame34 {
    max-width: 98vw;
    gap: 16px;
    padding: 0;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame34 {
    max-width: 100vw;
    width: 100vw;
    gap: 8px;
    padding: 0;
  }
}


/* --- Frame 5: Category Select --- */
.cur8tr-frame5 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  max-width: 540px;
  width: 100%;
  box-sizing: border-box;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  box-sizing: border-box;
}

  .cur8tr-frame5-icon, .cur8tr-frame5-caret {
    width: 22px;
    height: 22px;
  }
  .cur8tr-frame5-select {
    font-size: 16px;
    height: 20px;
  }
  .cur8tr-frame5-icon, .cur8tr-frame5-caret {
    width: 16px;
    height: 16px;
  }
  .cur8tr-frame5-select {
    font-size: 13px;
    height: 16px;
  }

.cur8tr-frame5-icon { width: 28px; height: 28px; }
.cur8tr-frame5-select {
  width: calc(100% - 48px);
  height: 24px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.4);
  border: none;
  background: transparent;
  margin-left: 10px;
}
.cur8tr-frame5-caret { width: 28px; height: 28px; }

/* --- Frame 4: Title Input --- */
.cur8tr-frame4 {
    display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  width: 100%;
  max-width: 540px;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .cur8tr-frame4 {
    max-width: 98vw;
    height: 48px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 60px;
  }
  .cur8tr-frame4-icon {
    width: 22px;
    height: 22px;
  }
  .cur8tr-frame4-input {
    font-size: 16px;
    height: 20px;
  }
}

  .cur8tr-frame4-icon {
    width: 16px;
    height: 16px;
  }
  .cur8tr-frame4-input {
    font-size: 13px;
    height: 16px;
  }

@media (max-width: 768px) {
  .cur8tr-frame5 {
    max-width: 98vw;
    height: 48px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 60px;
  }
  .cur8tr-frame5-icon, .cur8tr-frame5-caret {
    width: 22px;
    height: 22px;
  }
  .cur8tr-frame5-select {
    font-size: 16px;
    height: 20px;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame5 {
    max-width: 100vw;
    height: 40px;
    padding: 6px 6px;
    gap: 6px;
    border-radius: 32px;
  }
  .cur8tr-frame5-icon, .cur8tr-frame5-caret {
    width: 16px;
    height: 16px;
  }
  .cur8tr-frame5-select {
    font-size: 13px;
    height: 16px;
  }
}
@media (max-width: 768px) {
  .cur8tr-frame4 {
    max-width: 98vw;
    height: 48px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 60px;
  }
  .cur8tr-frame4-icon {
    width: 22px;
    height: 22px;
  }
  .cur8tr-frame4-input {
    font-size: 16px;
    height: 20px;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame4 {
    max-width: 100vw;
    height: 40px;
    padding: 6px 6px;
    gap: 6px;
    border-radius: 32px;
  }
  .cur8tr-frame4-icon {
    width: 16px;
    height: 16px;
  }
  .cur8tr-frame4-input {
    font-size: 13px;
    height: 16px;
  }
}

.cur8tr-frame4-icon { width: 28px; height: 28px; }
.cur8tr-frame4-input {
  width: 100%;
  height: 24px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.4);
  border: none;
  background: transparent;
  margin-left: 10px;
  flex-grow: 1;
}

/* --- Frame 46: Rating Select --- */
.cur8tr-frame46 {
@media (max-width: 768px) {
  .cur8tr-frame46 {
    max-width: 98vw;
    height: 48px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 60px;
  }
  .cur8tr-frame46-select {
    font-size: 16px;
    height: 20px;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame46 {
    max-width: 100vw;
    height: 40px;
    padding: 6px 6px;
    gap: 6px;
    border-radius: 32px;
  }
  .cur8tr-frame46-select {
    font-size: 13px;
    height: 16px;
  }
}
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  width: 100%;
  max-width: 540px;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  box-sizing: border-box;
}
.cur8tr-frame19 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  width: auto;
  height: 27px;
}
.cur8tr-frame19-like {
  width: 27px;
  height: 27px;
  background: #FDD4A4;
  border: 3px solid #000;
  border-radius: 50%;
  display: inline-block;
}
.cur8tr-frame19-label {
  width: auto;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  margin-left: 10px;
  flex-grow: 1;
}
.cur8tr-frame19-caret { width: 28px; height: 28px; }
.cur8tr-frame46-select {
  border: none;
  background: transparent;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.4);
  margin-left: 10px;
}

/* --- Frame 47: Cost Select --- */
.cur8tr-frame47 {
@media (max-width: 768px) {
  .cur8tr-frame47 {
    max-width: 98vw;
    height: 48px;
    padding: 8px 12px;
    gap: 8px;
    border-radius: 60px;
  }
  .cur8tr-frame47-select {
    font-size: 16px;
    height: 20px;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame47 {
    max-width: 100vw;
    height: 40px;
    padding: 6px 6px;
    gap: 6px;
    border-radius: 32px;
  }
  .cur8tr-frame47-select {
    font-size: 13px;
    height: 16px;
  }
}
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  width: 100%;
  max-width: 540px;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  box-sizing: border-box;
}
.cur8tr-frame47-icon { width: 28px; height: 28px; }
.cur8tr-frame47-select {
  width: calc(100% - 48px);
  height: 24px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.4);
  border: none;
  background: transparent;
  margin-left: 10px;
}
.cur8tr-frame47-caret { width: 28px; height: 28px; }

/* --- Frame 6: Image Upload --- */
.cur8tr-frame6-upload {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  width: 100%;
  max-width: 540px;
  height: auto;
  min-height: 160px;
  background: rgba(253, 240, 240, 0.46);
  border: 4px dashed #000;
  border-radius: 21px;
  box-sizing: border-box;
}
.cur8tr-frame6-upload-icon { width: 58px; height: 58px; }
.cur8tr-frame6-upload-label {
  width: auto;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cur8tr-frame6-dropzone {
  width: 100%;
  min-height: 80px;
  border: 2px dashed #000;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  background: rgba(168, 85, 247, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 8px;
}
.cur8tr-frame6-preview-img {
  max-width: 120px;
  max-height: 120px;
  border-radius: 6px;
  object-fit: cover;
}
.cur8tr-frame6-remove-btn {
  margin-top: 4px;
  padding: 2px 8px;
  background: #FDD4A4;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 10px;
  cursor: pointer;
}

/* --- Frame 48: Description & Pro Tip --- */
.cur8tr-frame48 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0;
  gap: 40px;
  width: 100%;
  max-width: 1110px;
  height: auto;
  margin-bottom: 40px;
}
.cur8tr-frame34-desc,
.cur8tr-frame45 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 535px;
  height: auto;
}
.cur8tr-frame3-desc,
.cur8tr-frame3-tip {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 20px;
  gap: 10px;
  width: 100%;
  max-width: 535px;
  height: auto;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 20px;
  box-sizing: border-box;
}
.cur8tr-frame3-desc-label,
.cur8tr-frame3-tip-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.cur8tr-frame3-desc-input,
.cur8tr-frame3-tip-input {
  flex-grow: 1;
  border: none;
  background: transparent;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000000;
  margin-left: 10px;
}
.cur8tr-frame6-url,
.cur8tr-frame6-location {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  width: 100%;
  max-width: 535px;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  box-sizing: border-box;
}
.cur8tr-frame6-url-icon,
.cur8tr-frame6-location-icon { width: 28px; height: 28px; }
.cur8tr-frame6-url-input,
.cur8tr-frame6-location-input {
  flex-grow: 1;
  border: none;
  background: transparent;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.4);
  margin-left: 10px;
}

/* --- Frame 32: Tags Section --- */
.cur8tr-frame32-tags {
@media (max-width: 768px) {
  .cur8tr-frame32-tags {
    max-width: 98vw;
    padding: 24px 8px;
    gap: 16px;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame32-tags {
    max-width: 100vw;
    width: 100vw;
    padding: 12px 2px;
    gap: 8px;
  }
}
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  gap: 20px;
  width: 100%;
  max-width: 1120px;
  height: auto;
  background: #B3E0DD;
  border: 4px solid #000;
  box-shadow: 7px 8px 0px #000;
  border-radius: 26px;
  box-sizing: border-box;
}
.cur8tr-frame37-tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 6px;
  width: 100%;
  max-width: 1040px;
  height: auto;
  margin-bottom: 20px;
}
.cur8tr-frame37-heading {
  width: 100%;
  max-width: 1040px;
  height: auto;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 80px;
  color: #000000;
  text-transform: capitalize;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cur8tr-frame37-desc {
  width: 100%;
  max-width: 1051px;
  height: auto;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  color: #000;
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0;
}

/* --- Frame 50: Category Tags --- */
.cur8tr-frame50-category {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 1040px;
  height: auto;
}
.cur8tr-frame6-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 20px;
  gap: 10px;
  width: 100%;
  max-width: 1040px;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  box-sizing: border-box;
}
.cur8tr-frame6-tag-icon { width: 28px; height: 28px; }
.cur8tr-frame6-tag-input {
  flex-grow: 1;
  border: none;
  background: transparent;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.4);
  margin-left: 10px;
}
.cur8tr-frame40-category {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  padding: 0;
  gap: 10px;
  width: 100%;
  max-width: 1040px;
  height: auto;
}
.cur8tr-frame40-category-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

/* tag styles (completed - inferred background) */
.cur8tr-frame1-cat-tag,
.cur8tr-frame34-cat-tag,
.cur8tr-frame36-cat-tag,
.cur8tr-frame37-cat-tag,
.cur8tr-frame38-cat-tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  background: #B5B0D8;            /* inferred to match your palette */
  border: 2px solid #000;
  border-radius: 110px;
  cursor: pointer;
  text-transform: lowercase;
  margin-right: 10px;
}

/* --- Frame 51: Collection Tags --- */
.cur8tr-frame51-collection {
@media (max-width: 768px) {
  .cur8tr-frame51-collection {
    max-width: 98vw;
    padding: 16px 8px;
    gap: 12px;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame51-collection {
    max-width: 100vw;
    width: 100vw;
    padding: 8px 2px;
    gap: 6px;
  }
}
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 1040px;
  height: auto;
}
.cur8tr-frame40-collection {
@media (max-width: 768px) {
  .cur8tr-frame40-collection {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
    padding: 8px 0;
  }
  .cur8tr-frame40-collection-label {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .cur8tr-frame35-tag, .cur8tr-frame36-tag, .cur8tr-frame37-tag, .cur8tr-frame38-tag {
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 10px;
    margin: 2px;
  }
}
@media (max-width: 390px) {
  .cur8tr-frame40-collection {
    width: 100vw;
    gap: 6px;
    flex-wrap: wrap;
    padding: 4px 0;
  }
  .cur8tr-frame40-collection-label {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .cur8tr-frame35-tag, .cur8tr-frame36-tag, .cur8tr-frame37-tag, .cur8tr-frame38-tag {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 8px;
    margin: 1px;
  }
}
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; /* Prevent wrapping */
  align-items: center;
  align-content: center;
  padding: 0;
  gap: 10px;
  width: 100%;
  height: 27px;
  box-sizing: border-box;
}
.cur8tr-frame40-collection-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.cur8tr-frame35-tag,
.cur8tr-frame36-tag,
.cur8tr-frame37-tag,
.cur8tr-frame38-tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  gap: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #000;
  background: #DCE45F;
  border: 2px solid #000;
  border-radius: 110px;
  cursor: pointer;
  text-transform: lowercase;
  margin-right: 10px;
}

/* --- Frame 6: Actions --- */
.cur8tr-frame6-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 20px;
  width: 100%;
  max-width: 492px;
  height: auto;
  margin: 40px auto 0 auto;
}
.cur8tr-frame4-cancel {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px 30px;
  gap: 10px;
  width: 159px;
  height: 56px;
  background: #FDF0F0;
  border: 4px solid #000;
  border-radius: 110px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
}
.cur8tr-frame4-cancel-icon { width: 28px; height: 28px; margin-right: 10px; }

.cur8tr-frame1-save {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  align-items: center;
  display: flex;
  flex-direction: row;
  padding: 10px 30px;
  gap: 10px;
  width: 100%;
  max-width: 313px;
  height: 56px;
  background: #DCE45F;
  border: 4px solid #000;
  box-shadow: 4px 6px 0px #000;
  border-radius: 110px;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none;
}
.cur8tr-frame1-save span { display: inline-block; vertical-align: middle; white-space: nowrap; }
.cur8tr-frame1-save-icon { width: 28px; height: 28px; margin-right: 10px; }

/* --- Utility: Remove default input/select/button styles --- */
.cur8tr-frame5-select,
.cur8tr-frame4-input,
.cur8tr-frame46-select,
.cur8tr-frame47-select,
.cur8tr-frame3-desc-input,
.cur8tr-frame3-tip-input,
.cur8tr-frame6-url-input,
.cur8tr-frame6-location-input,
.cur8tr-frame6-tag-input {
  outline: none;
  border: none;
  background: transparent;
  resize: none;
}
.cur8tr-frame5-select:focus,
.cur8tr-frame4-input:focus,
.cur8tr-frame46-select:focus,
.cur8tr-frame47-select:focus,
.cur8tr-frame3-desc-input:focus,
.cur8tr-frame3-tip-input:focus,
.cur8tr-frame6-url-input:focus,
.cur8tr-frame6-location-input:focus,
.cur8tr-frame6-tag-input:focus {
  outline: none;
  border: none;
  background: transparent;
}

/* --- Responsive: large -> tablet -> mobile --- */

/* Slightly smaller than very-large screens */
@media (max-width: 1400px) {
  .cur8tr-frame8 {
    width: 100%;
    padding: 40px 4%;
    min-height: auto;
  }
  .cur8tr-frame7,
  .cur8tr-frame49,
  .cur8tr-frame44,
  .cur8tr-frame32-tags {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .cur8tr-frame34,
  .cur8tr-frame6-upload,
  .cur8tr-frame34-desc,
  .cur8tr-frame45 {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .cur8tr-frame6-actions {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

/* Tablet responsiveness */
@media (max-width: 768px) {
  .cur8tr-frame8 {
    width: 92%;
    padding: 30px 4%;
    gap: 36px;
  }

  /* Stack top form rows */
  .cur8tr-frame44,
  .cur8tr-frame48 {
    flex-direction: column;
    gap: 20px;
  }

  /* Categories grid -> 2 columns */
  .frame39-profile-categories-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }

  /* Make left column and upload area full width */
  .cur8tr-frame34,
  .cur8tr-frame6-upload,
  .cur8tr-frame34-desc,
  .cur8tr-frame45 {
    width: 100%;
  }

  /* Tags container scales down */
  .cur8tr-frame32-tags {
    padding: 30px;
    gap: 16px;
  }

  .cur8tr-frame37-heading { font-size: 32px; line-height: 40px; }
  .cur8tr-frame37-desc { font-size: 18px; line-height: 26px; }

  /* Buttons */
  .cur8tr-frame4-cancel,
  .cur8tr-frame1-save {
    width: auto;
    padding: 10px 20px;
  }
}

/* Small screens / phones */
@media (max-width: 390px) {
  .cur8tr-frame8 {
    width: 95%;
    padding: 20px;
    gap: 28px;
  }

  .cur8tr-frame7-heading { font-size: 32px; line-height: 40px; }

  .frame39-profile-categories-row {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .cur8tr-frame44,
  .cur8tr-frame48 {
    gap: 16px;
  }

  .cur8tr-frame3-desc,
  .cur8tr-frame3-tip {
    padding: 12px;
  }

  .cur8tr-frame6-upload {
    padding: 8px 12px;
  }

  .cur8tr-frame37-heading { font-size: 24px; line-height: 32px; }
  .cur8tr-frame37-desc { font-size: 16px; line-height: 22px; }

  /* Actions stack on mobile */
  .cur8tr-frame6-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cur8tr-frame4-cancel,
  .cur8tr-frame1-save {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    justify-content: center;
  }

  /* Tags & chips wrap */
  .cur8tr-frame40-category,
  .cur8tr-frame40-collection {
    width: 100%;
    gap: 8px;
    flex-wrap: wrap;
  }
}

/* Home page recommendation author */
.rec-meta-author {
    display: inline;
    white-space: nowrap;
    vertical-align: middle;
}

/* Flash messages */
.flash-messages {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 400px;
    max-width: 90vw;
}
.flash-message {
    padding: 16px 24px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid #222;
    text-align: center;
    animation: fadeIn 0.5s;
}
.flash-success { background: #B3E0DD; color: #25314C; border-color: #4BB543; }
.flash-error { background: #FDF0F0; color: #C0392B; border-color: #C0392B; }
.flash-warning { background: #FDD4A4; color: #8D6E63; border-color: #FDD835; }
.flash-info { background: #DCE45F; color: #25314C; border-color: #000000; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px);}
    to { opacity: 1; transform: translateY(0);}
}


/* Frame 8 single Recommendation page- recommendation.html */
.frame8-recommendation-window-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 40px;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.frame8-recommendation-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    gap: 50px;
    position: relative;
    width: 100%;
    max-width: 1320px;
    min-height: 600px;
    margin: 60px auto 0 auto;
    background: #B3E0DD;
    border: 4px solid #000000;
    box-shadow: 9px 12px 0px #000000;
    border-radius: 30px;
    box-sizing: border-box;
    z-index: 10;
}

.frame8-recommendation-window {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    background: #B3E0DD;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(44,44,46,0.08);
    border: 4px solid #111;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 48px;
}

.frame8-recommendation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #B3E0DD;
    padding: 18px 28px;
    font-size: 28px;
    font-weight: 900;
    color: #000000;
    border-bottom: 2px solid #000000;
    border-radius: 18px 18px 0 0;
}

.frame8-recommendation-controls {
    display: flex;
    gap: 8px;
}

.frame8-recommendation-content {
    display: flex;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.frame8-recommendation-image {
    width: 240px;
    height: 240px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid #FFF;
    flex-shrink: 0;
}

.frame8-recommendation-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.frame8-recommendation-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #000000;
    margin-bottom: 8px;
}

.frame8-recommendation-meta-row {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-bottom: 18px;
    font-size: 17px;
    flex-wrap: wrap;
}

.frame8-recommendation-category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #6C63FF;
}

.frame8-recommendation-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    color: #FDD4A4;
}

.frame8-recommendation-cost {
    color: #000000;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.frame8-recommendation-description {
    font-size: 17px;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.6;
}

.frame8-recommendation-protip {
    background: #ECBED9;
    border-left: 4px solid #FDD4A4;
    border-radius: 8px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #8b4513;
}

.frame8-recommendation-protip-label {
    font-weight: bold;
    color: #111;
}

.frame8-recommendation-location {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.frame8-recommendation-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.frame8-tag-category {
    background: #B5B0D8;
    color: #000;
    border: 2px solid #000;
    border-radius: 110px;
    padding: 5px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.frame8-tag-collection {
    background: #DCE45F;
    color: #000;
    border: 2px solid #000;
    border-radius: 110px;
    padding: 5px 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.frame8-recommendation-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 12px;
    flex-wrap: wrap;
}

.frame8-btn-like, .frame8-btn-share {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFF;
    color: #000000;
    border-radius: 110px;
    padding: 10px 24px;
    font-size: 16px;
    border: 2px solid #000;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s;
}

.frame8-btn-like.liked {
    background: #d77d72;
    border-color: #111;
}

.frame8-recommendation-comments {
    margin-top: 24px;
    width: 100%;
}

.frame8-comments-title {
    font-size: 18px;
    margin-bottom: 18px;
    color: #000000;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.frame8-comment-form {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.frame8-form-control {
    flex: 1;
    border-radius: 8px;
    border: 2px solid #B3E0DD;
    padding: 10px 14px;
    font-size: 16px;
}

.frame8-btn-primary {
    background: #FDD4A4;
    color: #000000;
    border-radius: 110px;
    width: fit-content;
    padding: 10px 24px;
    font-size: 16px;
    border: 2px solid #000;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.frame8-comment-login-prompt {
    margin-bottom: 16px;
    text-align: center;
    background: #FDF0F0;
    border-radius: 8px;
    padding: 16px;
    color: #888;
}

.frame8-comments-list {
    margin-top: 10px;
}

.frame8-comment-card {
    background: #FFF;
    border: 2px solid #B3E0DD;
    border-radius: 12px;
    margin-bottom: 12px;
    padding: 14px 18px;
}

.frame8-comment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.frame8-comment-date {
    font-size: 13px;
    color: #888;
}

.frame8-btn-delete {
    background: none;
    border: none;
    color: #C0392B;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
}

.frame8-comment-body {
    font-size: 16px;
    color: #000000;
}

.frame8-no-comments {
    text-align: center;
    color: #888;
    font-size: 15px;
    margin-top: 18px;
}

.frame8-recommendation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
    margin-top: 32px;
    border-top: 2px solid #B3E0DD;
    padding-top: 18px;
    flex-wrap: wrap;
    gap: 12px;
}

.frame8-btn-secondary {
    background: #DCE45F;
    font-family: 'Barlow', sans-serif;
    color: #000000;
    border-radius: 110px;
    padding: 10px 24px;
    font-size: 14px;
    border: 2px solid #000;
    cursor: pointer;
    font-weight: 700;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.frame8-liked-by-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    color: #C0392B;
    margin-bottom: 4px;
}

.frame8-liked-by-svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.frame8-share-svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 6px;
}

/* 📱 Responsive Styles */
@media (max-width: 1400px) {
  .frame8-recommendation-container {
    max-width: 1200px;   /* fits large but not ultra-wide screens */
    margin: 0 auto;
    padding: 40px 20px;
  }
  .frame8-recommendation-window {
    max-width: 900px;
    padding: 24px;
  }
  .frame8-recommendation-content {
    flex-direction: row;    /* keep horizontal on desktop */
    align-items: center;
    justify-content: space-between;
  }
  .frame8-recommendation-image {
    width: 220px;
    height: 220px;
  }
  .frame8-recommendation-title {
    font-size: 28px;
  }
  .frame8-recommendation-window-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .frame8-recommendation-container {
    max-width: 100%;   /* stretch across screen */
    padding: 30px 16px;
  }
  .frame8-recommendation-window {
    max-width: 600px;
    padding: 20px;
  }
  .frame8-recommendation-content {
    flex-direction: column; /* stack vertically on tablet */
    align-items: center;
  }
  .frame8-recommendation-image {
    width: 160px;
    height: 160px;
  }
  .frame8-recommendation-title {
    font-size: 20px;
  }
  .frame8-recommendation-window-title {
    font-size: 24px;
  }
}

@media (max-width: 390px) {
  .frame8-recommendation-container {
    max-width: 100%;
    padding: 30px 12px;
  }
  .frame8-recommendation-window {
    max-width: 250px;
    padding: 20px;
  }
  .frame8-recommendation-content {
    flex-direction: column;
    align-items: center;
  }
  .frame8-recommendation-image {
    width: 120px;
    height: 120px;
  }
  .frame8-recommendation-title {
    font-size: 16px;
  }
  .frame8-recommendation-window-title {
    font-size: 18px;
  }
}

/* Profile page*/
.frame29-profile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 20px 30px;
    gap: 20px;

    width: 100%;            /* allow it to shrink/grow with screen */
    max-width: 1200px;      /* cap at 1200px */
    min-width: 0;           /* allow flex children to shrink */
    height: auto;           /* let content define height */

    background: #DCE45F;
    border: 4px solid #000000;
    box-shadow: 7px 8px 0px #000000;
    border-radius: 26px;
    margin: 0 auto 40px auto;
    box-sizing: border-box;
}

.frame29-profile-image-wrap {
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.frame29-profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #000;
    object-fit: cover;
    background: #fff;
}

.frame29-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    color: #000000;
    font-size: 2.5rem;
    font-weight: 900;
    display: flex;


/* Profile page*/
.frame29-profile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px 20px 30px;
    gap: 20px;
    width: 1200px;
    height: 116px;
    background: #DCE45F;
    border: 4px solid #000000;
    box-shadow: 7px 8px 0px #000000;
    border-radius: 26px;
    margin: 0 auto 40px auto;
    box-sizing: border-box;
}

.frame29-profile-image-wrap {
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
}

.frame29-profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #000;
    object-fit: cover;
    background: #fff;
}

.frame29-profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    color: #000000;
    font-size: 2.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
}

.frame29-profile-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}


/* Frame 48 Share Profile Section */

/*Middle content for the profile page */
/* Frame 47: Remaining Profile Content */
.frame47-profile-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 30px;
    width: 1200px;         /* <-- Set fixed width */
    height: 729px;
    flex: none;
    order: 2;
    align-self: stretch;
    flex-grow: 0;
    background: #fff;
    border-radius: 26px;
    box-sizing: border-box;
    margin: 40px auto 0 auto;
}

/* Example: Profile sections inside Frame 47 */
.frame47-profile-section {
    width: 100%;
    max-width: 1200px;
    background: #FDF0F0;
    border: 2px solid #ECBED9;
    border-radius: 18px;
    padding: 32px 40px;
    margin: 40px auto 0 auto;
    box-sizing: border-box;
    margin-bottom: 0;
}

.frame47-profile-section-title {
    font-family: 'Barlow', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #000000;
    margin-bottom: 18px;
    text-transform: capitalize;
}

.frame47-profile-section-content {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    color: #222;
    line-height: 1.6;
}

/* Example: Profile categories grid */
.frame47-profile-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    margin-top: 10px;
}

.frame47-profile-category-card {
    background: #ECBED9;
    border: 2px solid #000;
    border-radius: 18px;
    box-shadow: 2px 3px 0px #000;
    padding: 18px 24px;
    width: 280px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Barlow', sans-serif;
}

.frame47-profile-category-title {
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    margin-bottom: 6px;
}

.frame47-profile-category-desc {
    font-size: 15px;
    color: #000000;
    opacity: 0.8;
}

/* Example: Profile actions row */
.frame47-profile-actions-row {
    display: flex;
    gap: 18px;
    margin-top: 24px;
}

.frame47-profile-action-btn {
    background: #DCE45F;
    color: #000000;
    border-radius: 110px;
    padding: 10px 24px;
    font-size: 16px;
    border: 2px solid #000;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.frame47-profile-action-btn:hover {
    background: #B3E0DD;
}

.frame33-category-svg {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 8px;
}
.frame33-category-small-svg {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin: 20px 20px 20px 20px;
}
/* Responsive adjustment for main header and main nav */
/* Responsive adjustments */
@media (max-width: 1400px) {
  .main-header {
    width: 95%;
    margin: 16px auto;
    padding: 0 12px;
  }

  .main-nav {
    gap: 12px;
  }
}

  .main-nav {
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  .main-header img {
    width: 28px;
    height: 28px;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 8px;
  }
}

/* Hero figma responsive update */
/* Tablet (≤1024px) */
@media (max-width: 1400px) {
  .hero-figma {
    padding: 50px 30px;
    gap: 40px;
    margin: 40px auto 0 auto;
    border-radius: 24px;
  }
}

/* Small tablets / landscape phones (≤768px) */
@media (max-width: 768px) {
  .hero-figma {
    padding: 40px 20px;
    gap: 30px;
    margin: 30px auto 0 auto;
    border-radius: 20px;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .hero-figma {
    padding: 30px 15px;
    gap: 25px;
    margin: 15px auto 0 auto;
    border-radius: 18px;
    box-shadow: 6px 8px 0 #000;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 15px !important;
  }
  
  .hero-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 390px) {
  .hero-figma {
    padding: 24px 16px;
    gap: 20px;
    margin: 20px auto 0 auto;
    border-radius: 16px;
    box-shadow: 5px 7px 0 #000; /* lighter shadow for small screens */
  }
}

/* Tablet */
@media (max-width: 768px) {
  .hero-content {
    gap: 16px;
    padding: 0 12px;
  }

  .hero-content p {
    line-height: 1.5;
  }

  .hero-btn {
    padding: 8px 20px;
    gap: 8px;
    min-width: 140px;
  }
  
  .hero-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* Mobile */
@media (max-width: 390px) {
  .hero-content {
    gap: 12px;
    padding: 0 8px;
  }

  .hero-btn {
    width: 100%;
    max-width: 260px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .hero-btn img {
    width: 20px;
    height: 20px;
  }
}