* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style-type: none;
}



* {
  max-width: 100%;
  box-sizing: border-box;
}

body {
  background: #221816;
  height: 100vh;
  width: 100vw;
  display: flex;
  overflow-x: hidden; 
}

.login_logo img {
  filter: invert(1);
  width: 90px;
}

aside {
  display: flex;
  flex-direction: column;
  width: 20vw;
  align-items: center;
  padding: 20px 15px;
  box-sizing: border-box;
  gap: 10px;
  height: 100vh;
}  

.logo {
  max-width: 70px;
}

ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

li {
  background: transparent;
  padding: 15px 30px 15px 20px;
  box-sizing: border-box;
  border-radius: 35px;
  transition: all 400ms ease-in-out;
}

li:hover {
  background-color: rgba(240, 151, 151, 0.18); 
}

li.active {
  background-color: #F09797;
}

li a {
  color: #FFFFFF; 
  text-align: center;
  font-family: 'Figtree';
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

li.active a {
  color: #221816; 
}

.icon {
  transition: all 400ms ease-in-out;
}

li.active .icon{
  filter: invert(1) brightness(100%) contrast(100%); 
}

.sidebar_bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: center;
  margin-top: 15px;
}

.preview_btn {
  background: #ffffff00;
  border-color: #F6B77F;
  border-radius: 35px;
  padding: 15px 0;
  color: #ffffff;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 80%;
}

.preview_btn:hover {
  background: #F09797;
  transform: translateY(-2px);
}

.preview_btn img {
  width: 16px;
  height: 16px;
}

.user_profile {
  display: flex;
  align-items: center;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.user_profile:hover {
  background: rgba(255, 255, 255, 0.15);
}

.user_avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F09797;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 600;
}

.user_info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user_name {
  color: #FFFFFF;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
}

.logout_link {
  color: #FFFFFF;
  font-family: 'Figtree';
  font-size: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.logout_link img {
  width: 12px;
  height: 12px;
}

.icon_btn { 
  background:none; 
  border:none; 
  padding:0; 
  cursor:pointer; 
}

main {
  width: 80vw;
  border-radius: 39px;
  background: #FCEBDB;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  overflow-x: hidden;
}

header {
  border-radius: 45px;
  background: #FFF;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
  justify-content: space-between;
}

header p {
  color: #3B3B3B;
  font-family: 'Figtree';
  font-size: 11.311px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.96px; /* 176.471% */
  display: flex;
}

.search_bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #F9F9F9;
  border: 1px solid #E5E7EB;
  border-radius: 30px;
  padding: 6px 14px;
  width: 240px;
}

.search_bar input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-size: 14px;
  color: #CCC;
}

.search_bar input[type="search"] {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: #000000;
}

.search_bar button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.search_bar img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
  transition: all 400ms;
}

.search_bar button:hover img {
  opacity: 1;
}

h1 {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 33.267px; 
  text-transform: uppercase;
}

.subheading {
  color: #3B3B3B;
  font-family: 'Figtree';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 19.96px; 
}

.titles {
  display: flex;
  flex-direction: column;
}

.full_title img {
  max-width: 48px;
}

.full_title {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.small_title {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.header_right {
  display: flex;
  gap: 25px;
}

.hero_section {
  display: flex;
}

.main_inner {
  padding: 25px 30px 30px 30px;
  flex:1;
  overflow-y: auto;
  overflow-x: hidden; 
  max-width: 100%;
  scrollbar-width: none; 
  -ms-overflow-style: none; 
}

.main_inner::-webkit-scrollbar {
  display: none; 
}

.hero_editor {
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-areas:
    "image options"
    "content shapes";
  gap:24px;
}

.card {
  background:#FFFFFF;
  border-radius:14px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.card2 {
  background:#F6B77F;
  border-radius:14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: all 0.3s ease;
}

.hero_image {
  grid-area: image
}

.bg_options {
  grid-area: options
}

.content_editor {
  grid-area: content
}

.chosen_shapes {
  grid-area: shapes
}

.card_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card h3, .card2 h3 {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.287px; 
  text-transform: uppercase;
  margin: 0;
}

.edit_icon {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.edit_icon:hover {
  opacity: 1;
}

.he_image_frame {
  background: #ffffff62;
  border-radius: 12px;
  display:flex;
  align-items: center;
  justify-content:center;
  margin-bottom: 10px;
}

.hero_editor_btn {
  display:inline-block;
  padding: 10px 25px;
  border-radius: 10px;
  border: 1px solid #221816;
  background:#ffffff00;
  cursor: pointer;
  color: #221816;
  font-family: 'Figtree';
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 14.655px; 
  width: fit-content;
}

.swatch_group {
  height: fit-content;
  padding: 10px 5px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #FCEBDB;
}

.he_bg_text {
  color: #0A0A0A;
  font-family: 'Figtree';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
}

.swatch_row {
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.swatch {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  box-sizing: border-box;
  transition: all  400ms ease-in-out;
}

.swatch img {
  width: 90%;
}

.swatch:hover {
  transform:scale(1.05)
}

.swatch.selected {
background-color: #22181682;
}

.content_editor label {
  color: #0A0A0A;
  font-family: 'Figtree';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  margin-bottom: 8px;
}

.content_editor input {
  width: 100%;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(252, 235, 219, 0.76);
  padding: 0 10px;
  box-sizing: border-box;
  color: #0A0A0A;
  font-family: 'Figtree';
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.content_editor .field {
  display: flex;
  flex-direction: column;
}

.row_2 {
  display: grid;
  grid-template-columns:1fr 1fr;
  gap:12px
}

.shape_grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px
}

.shape_card {
  background: #FCEBDB;;
  border-radius:12px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.06);
  cursor: pointer;
  transition: all ease-in-out;
}

.shape_card img {
  max-width: 105px;
}

.shape_card:hover {
  transform:scale(1.03);
  box-shadow:0 4px 10px rgba(0,0,0,.1)
}

.shape_card.selected {
  outline: 2px solid #221816;
}

.shape_card img {
  width:70%;
  height: auto;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle img {
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover img {
  opacity: 0.8;
}


/* Testimonials Page Styles */
.featured_testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial_card {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial_header {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.testimonial_avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Figtree';
  font-size: 16px;
  font-weight: 600;
}

.testimonial_info {
  flex: 1;
}

.testimonial_info h3 {
  color: #221816;
  font-family: 'Figtree';
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.testimonial_info p {
  color: #6B7280;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.testimonial_actions {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 0;
  right: 0;
}

.testimonial_actions .edit_btn, .testimonial_actions .delete_btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.testimonial_actions .delete_btn:hover, .testimonial_actions .edit_btn:hover {
  background: rgba(255, 0, 0, 0.1);
}

.testimonial_actions img {
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
}

.testimonial_rating {
  margin: 8px 0;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #D1D5DB;
  font-size: 16px;
  transition: color 0.3s ease;
}

.star.filled {
  color: #F6B77F;
}

.testimonial_quote p {
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 0;
  font-style: italic;
}

.all_testimonials_section {
  margin-top: 40px;
}

.section_header {
  margin-bottom: 24px;
}

.section_header h2 {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.section_header p {
  color: #6B7280;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.testimonials_table {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.table_header {
  display: grid;
  grid-template-columns: 60px 1fr 120px 100px 2fr;
  gap: 16px;
  padding: 16px 20px;
  background: #F9F9F9;
  border-bottom: 1px solid #E5E7EB;
  font-family: 'Figtree';
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  align-items: center;
}

.table_row {
  display: grid;
  grid-template-columns: 60px 1fr 120px 100px 2fr;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid #F3F4F6;
  align-items: center;
  transition: all 0.3s ease;
}

  /* .table_header, .table_row {
    grid-template-columns: 50px 1fr 100px 80px 1.5fr;
    gap: 12px;
    padding: 12px 16px;
    min-width: auto;
  } */

.table_row:hover {
  background: #F9F9F9;
}

.table_row:last-child {
  border-bottom: none;
}

.col_show {
  display: flex;
  justify-content: center;
}

.col_show input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #F09797;
  padding: 10px;
  box-sizing: border-box;
  border: 2px solid #ddd;
}

.name_with_avatar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.small_avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Figtree';
  font-size: 10px;
  font-weight: 600;
}

.name_with_avatar span {
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
}

.col_role {
  color: #6B7280;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
}

.col_rating .stars {
  gap: 1px;
}

.col_rating .star {
  font-size: 12px;
}

.col_testimonial {
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding: 0 20px;
}

.pagination_info {
  color: #6B7280;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
}

.pagination_controls {
  display: flex;
  gap: 8px;
}

.pagination_btn {
  background: rgba(255, 255, 255, 0.126);
  border: 1px solid #6B7280;
  border-radius: 6px;
  padding: 8px 12px;
  color: #6B7280;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination_btn:hover {
  background: #F9F9F9;
  border-color: #D1D5DB;
}

.pagination_btn.active {
  background: #F09797;
  border-color: #F09797;
  color: #FFFFFF;
}

/* Flavor Page Styles */
.flavor_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.flavor_card {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  height: fit-content;
  transition: all 0.3s ease;
}

.flavor_image {
  width: auto;
  min-height: 200px;
  border-radius: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.green {
  background-image: url(assets/green_shape.png);
}

.orange {
  background-image: url(assets/orange_shape.png);
}

.pink {
  background-image: url(assets/pink_shape.png);
}

.flavor_image_green img {
  width: 100%;
  max-width: 117px;
  height: auto;
  object-fit: cover;
}

.flavor_content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flavor_content h3 {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  margin: 0;
}

.flavor_content p {
  color: #3B3B3B;
  font-family: 'Figtree';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin: 0;
}

.flavor_controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.toggle_switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle_switch input[type="checkbox"] {
  appearance: none;
  width: 40px;
  height: 20px;
  background: #E5E7EB;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle_switch input[type="checkbox"]:checked {
  background: #ABCD77;
}

.toggle_switch input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.toggle_switch input[type="checkbox"]:checked::before {
  transform: translateX(20px);
}

.toggle_switch label {
  color: #221816;
  font-family: 'Figtree';
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.flavor_actions {
  display: flex;
  gap: 8px;
}

.flavor_actions .edit_btn, .flavor_actions .delete_btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.flavor_actions .delete_btn:hover, .flavor_actions .edit_btn:hover {
  background: rgba(255, 0, 0, 0.1);
}

.flavor_actions img {
  width: 14px;
  height: 14px;
  transition: all 0.3s ease;
}

.add_flavor_btn {
  background: #F09797;
  border: none;
  border-radius: 10px;
  padding: 10px 25px;
  color: #FFF;
  font-family: 'Figtree';
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.add_flavor_btn:hover {
  background: #F6B77F;
  transform: translateY(-2px);
}

.add_flavor_btn span {
  font-size: 18px;
  font-weight: 600;
}

/* Gallery Page Styles */
.image_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.image_card {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
}

.testimonial_card:hover, .image_card:hover, .branch_card:hover, .video_card:hover, .flavor_card:hover, .card2:hover, .card:hover  {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.image_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image_header h3 {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.287px;
  text-transform: uppercase;
  margin: 0;
}

.image_thumbnail {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image_actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Lab Page Styles */
.upload_btn {
  background: #F09797;
  border: none;
  border-radius: 35px;
  padding: 15px 25px;
  color: #FFFFFF;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.upload_btn:hover {
  background: #F6B77F;
  transform: translateY(-2px);
}

.upload_btn img {
  width: 16px;
  height: 16px;
}

.video_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.video_card {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
}

.video_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.video_header h3 {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.287px;
  text-transform: uppercase;
  margin: 0;
}

.options_btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.options_btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.options_btn img {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.options_btn:hover img {
  opacity: 1;
}

.video_thumbnail {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video_thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video_actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.replace_btn {
  background: none;
  border: 1px solid #F6B77F;
  border-radius: 10px;
  padding: 8px 16px;
  color: #F6B77F;
  font-family: 'Figtree';
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.replace_btn:hover {
  background: #F6B77F;
  color: #FFFFFF;
}

.delete_btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.delete_btn:hover {
  background: rgba(255, 0, 0, 0.1);
}

.delete_btn img {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}



/* Dashboard Page Styles */
.save_btn {
  background: #F6B77F;
  border: none;
  border-radius: 35px;
  padding: 12px 20px;
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.save_btn:hover {
  background: #F09797;
  transform: translateY(-2px);
}

.save_btn img {
  width: 16px;
  height: 16px;
}

.star_icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.star_icons img {
  width: 20px;
  height: 20px;
}

.metrics_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.metric_card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.metric_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.metric_icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric_icon.green {
  background: #abcd7786;
}

.metric_icon.orange {
  background: #f2984a64;
}

.metric_content {
  flex: 1;
}

.metric_content h3 {
  color: #6B7280;
  font-family: 'Figtree';
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 8px 0;
}

.metric_value {
  color: #221816;
  font-family: 'Figtree';
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.metric_trend {
  display: flex;
  align-items: center;
  gap: 4px;
}

.metric_trend.positive span {
  color: #10B981;
  font-family: 'Figtree';
  font-size: 12px;
  font-weight: 500;
}

.metric_trend.negative span {
  color: #EF4444;
  font-family: 'Figtree';
  font-size: 12px;
  font-weight: 500;
}

.charts_section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.chart_card {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 24px 24px 8px 24px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.chart_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.chart_header {
  margin-bottom: 20px;
}

.chart_header h3 {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.chart_header p {
  color: #6B7280;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.chart_content {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line_chart {
  width: 100%;
  height: 100%;
}

.chart_svg {
  width: 100%;
  height: 100%;
}

.bar_chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 100%;
  padding: 0 20px;
}

.bar {
  flex: 1;
  background: #ABCD77;
  border-radius: 4px 4px 0 0;
  min-height: 20px;
}

.sections_overview {
  margin-bottom: 24px;
}

.sections_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.section_card {
  display: flex;
  background: #eff6e4;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 25px 15px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
  gap: 10px;
}

.section_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.section_icon {
  background-image: url(assets/Asterisk\ 5.svg);
  border-radius: 12px;
  height: auto;
  min-width: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sections_grid_titles {
  display: flex;
  flex-direction: column;
  align-self: center;
}

.section_card h3 {
  color: #000;
  font-family: 'Figtree';
  font-size: 16.825px;
  font-style: normal;
  font-weight: 700;
  line-height: 27.711px; /* 164.706% */
}

.section_card p {
  color: #6B7280;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.recent_updates {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 24px;
  box-sizing: border-box;
  height: fit-content;
}

.recent_updates h2 {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.updates_list {
  margin-bottom: 20px;
}

.update_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
}

.update_item:last-child {
  border-bottom: none;
}

.update_text {
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
}

.update_time {
  color: #6B7280;
  font-family: 'Figtree';
  font-size: 12px;
  font-weight: 400;
}

.view_all_btn {
  background: #F09797;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  color: #FFFFFF;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.view_all_btn:hover {
  background: #F6B77F;
  transform: translateY(-2px);
}

/* Settings Page Styles */
.settings_section {
  margin-bottom: 40px;
}

.settings_section .section_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.settings_section .section_header h2 {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

.settings_section .section_header img {
  width: 20px;
  height: 20px;
}

.social_links_card, .footer_links_card {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 24px;
  box-sizing: border-box;
}

.social_item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.social_item:last-child {
  margin-bottom: 0;
}

.social_icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social_input {
  flex: 1;
}

.social_input input, .footer_item input {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: #F9F9F9;
  padding: 0 12px;
  box-sizing: border-box;
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
}

.social_input input:focus, .footer_item input:focus {
  outline: none;
  border-color: #F6B77F;
  background: #FFFFFF;
}

.footer_item {
  margin-bottom: 20px;
}

.footer_item:last-child {
  margin-bottom: 0;
}

.footer_item label {
  display: block;
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.dashboard_bottom_section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
}

.website_sections_overview {
  background: #F6B77F;
  border-radius: 14px;
  padding: 24px;
  box-sizing: border-box;
}

.sections_overview_header {
  margin-bottom: 20px;
}

.sections_overview_header h2 {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

.sections_preview_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.section_preview_card {
  position: relative;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio:  4 / 2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section_preview_card:hover {
  transform: scale(1.05);
}

.preview_image {
  width: 100%;
  height: 100%;
  display: flex;
  background-repeat: no-repeat;
  background-size: contain;

}

.hero_preview {
  background-image: url(assets/hero.png);
}

.gallery_preview {
  background-image: url(assets/gallery.png);
}

.flavors_preview {
  background-image: url(assets/flavors.png);
}

.testimonials_preview {
  background-image: url(assets/testimonials.png);
}

.location_preview {
  background-image: url(assets/branches.png);
}

.lab_preview {
  background-image: url(assets/lab.png);
}

.preview_icon {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.799);
  border-radius: 4px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview_icon img {
  width: 16px;
  height: 16px;
}

.preview_label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  font-family: Figtree;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 19.079px; /* 139.776% */
  padding: 8px;
  text-align: center;
}

/* Login Page Styles */
.login_body {
  background: #221816;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.login_container {
  width: 100%;
  max-width: 400px;
}

.login_form {
  background: #FCEBDB;
  border-radius: 50px;
  padding: 40px;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.login_header {
  text-align: center;
  margin-bottom: 30px;
}

.login_logo {
  margin-bottom: 20px;
}

.login_title {
  color: #221816;
  font-family: "Wosker Demo";
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

.welcome_text {
  text-align: center;
  margin-bottom: 30px;
}

.welcome_text h2 {
  color: #221816;
  font-family: 'Figtree';
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.welcome_text p {
  color: #221816;
  font-family: 'Figtree';
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.login_form_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form_group label {
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
}

.form_group input {
  height: 40px;
  border-radius: 8px;
  border: 1px solid #F6B77F;
  background: #FFFFFF;
  padding: 0 12px;
  box-sizing: border-box;
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.form_group input:focus {
  outline: none;
  border-color: #F09797;
  box-shadow: 0 0 0 2px rgba(240, 151, 151, 0.2);
}

.form_group input::placeholder {
  color: #F6B77F;
}

.company_info_section, .social_media_section {
  margin-bottom: 24px;
}

.section_header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section_header img {
  width: 20px;
  height: 20px;
}

.section_header h2 {
  color: #221816;
  font-family: 'Figtree';
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.input_with_icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input_with_icon img {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  z-index: 1;
}

.input_with_icon input {
  padding-left: 40px;
}

.save_changes_btn {
  background: #F6B77F;
  border: none;
  border-radius: 35px;
  padding: 12px 24px;
  color: #FFFFFF;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.save_changes_btn:hover {
  background: #F09797;
  transform: translateY(-2px);
}

.save_changes_btn img {
  width: 16px;
  height: 16px;
}

.social_icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social_icon.facebook {
  background: #1877F2;
}

.social_icon.instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social_icon.linkedin {
  background: #0077B5;
}

.social_icon.twitter {
  background: #1DA1F2;
}

.social_icon img {
  width: 20px;
  height: 20px;
}

.social_icon span {
  color: #FFFFFF;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 600;
}

.footer_links_section {
  margin-bottom: 24px;
}

.form_options {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.remember_me {
  display: flex;
  align-items: center;
  gap: 8px;
}

.remember_me input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #F6B77F;
}

.remember_me label {
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.forgot_password {
  color: #F6B77F;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.forgot_password:hover {
  color: #F09797;
}

.signin_btn {
  background: #F2994A;
  border: none;
  border-radius: 8px;
  height: 48px;
  color: #FFFFFF;
  font-family: 'Figtree';
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(246, 183, 127, 0.3);
}

.signin_btn:hover {
  background: linear-gradient(180deg, #F09797 0%, #E5888A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(240, 151, 151, 0.4);
}

.signup_link {
  text-align: center;
}

.signup_link p {
  color: #221816;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.signup_link a {
  color: #F6B77F;
  font-family: 'Figtree';
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.signup_link a:hover {
  color: #F09797;
}

/* Branches Page Styles */

.branches_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 24px 0;
}

.branch_card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.branch_image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.branch_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.active_badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ABCD77;
  color: #3B3B3B;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.branch_content {
  padding: 20px;
}

.branch_content h3 {
  color: #3B3B3B;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.branch_location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}


.branch_location p {
  color: #0A0A0A;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.view_maps_link {
  color: #F65F61;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 16px;
  transition: all 0.3s ease;
  display: flex;
  gap: 10px;
}

.view_maps_link:hover {
  color: #cc0000;
}

.branch_controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle_switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle_switch input[type="checkbox"] {
  position: relative;
  width: 44px;
  height: 24px;
  background: #ccc;
  border-radius: 12px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.toggle_switch input[type="checkbox"]:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle_switch input[type="checkbox"]:checked {
  background: #ABCD77;
}

.toggle_switch input[type="checkbox"]:checked:before {
  transform: translateX(20px);
}

.toggle_switch label {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.branch_actions {
  display: flex;
  gap: 8px;
}

.edit_btn, .delete_btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.delete_btn:hover, .edit_btn:hover {
  background: #ffe6e6;
}

.edit_btn img, .delete_btn img {
  width: 16px;
  height: 16px;
}


@media (max-width: 1024px) and (min-width: 701px) {
  body {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }
  
  aside {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #221816;
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 60px 20px 20px;
    box-sizing: border-box;
    justify-content: flex-start;
    gap: 20px;
  }
  
  aside.active {
    left: 0;
  }
  
  .logo {
    max-width: 60px;
    margin-bottom: 20px;
  }
  
  ul {
    flex-direction: column;
    gap: 8px;
  }
  
  li {
    padding: 12px 20px;
  }
  
  li a {
    font-size: 14px;
    gap: 12px;
  }
  
  main {
    width: 100%;
    border-radius: 0;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
  }
  
  header {
    border-radius: 15px;
    height: 64px;
    padding: 15px 20px;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
  }

  header p {
   display: none;
  }
  
  .search_bar {
    width: 200px;
  }
  
  .hero_editor {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "options"
      "content"
      "shapes";
    gap: 20px;
  }
  
  .row_2 {
    grid-template-columns: 1fr;
  }

  .swatch_group {
    padding: 10px 20%;
  }
  
  .shape_grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .video_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .image_grid {
    gap: 20px;
  }
  
  .flavor_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .featured_testimonials {
    gap: 20px;
  }
  
  .table_header, .table_row {
    grid-template-columns: 50px 1fr 100px 80px 1.5fr;
    gap: 12px;
    padding: 12px 16px;
    min-width: auto;
  }
  
  .testimonials_table {
    overflow-x: auto;
    min-width: 100%;
  }
  
  .sidebar_bottom {
    margin-top: auto;
    gap: 15px;
  }
  
  .preview_btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .user_profile {
    padding: 8px;
  }
  
  .user_avatar {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .user_name {
    font-size: 13px;
  }
  
  .logout_link {
    font-size: 11px;
  }

  .branches_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .metric_card, .section_card {
    flex-direction: column;
    text-align: center;
  }

  .section_icon {
    width: auto;
    min-height: 60px;
  }
}

@media (max-width: 700px) {
  body {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
  }
  
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    z-index: 1001;
  }
  
  aside {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #221816;
    z-index: 1000;
    transition: left 0.3s ease;
    padding: 60px 20px 20px;
    box-sizing: border-box;
    justify-content: flex-start;
    gap: 20px;
  }
  
  aside.active {
    left: 0;
  }
  
  .logo {
    max-width: 60px;
    margin-bottom: 20px;
  }
  
  ul {
    flex-direction: column;
    gap: 8px;
  }
  
  li {
    padding: 12px 20px;
  }
  
  li a {
    font-size: 14px;
    gap: 12px;
  }
  
  main {
    width: 100%;
    border-radius: 0;
    min-height: 100vh;
  }
  
header   {
    border-radius: 15px;
    height: auto;
    padding: 15px 20px;
    gap: 15px;
    align-items: center;
  }
  
  header p {
   display: none;
  }
  
  .header_right {
    gap: 15px;
    align-items: center;
  }
  
  .search_bar {
    width: 100%;
    max-width: none;
  }
  
  .search_bar input {
    font-size: 16px;
  }
  
  .full_title {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .full_title img {
    max-width: 40px;
  }
  
  h1 {
    font-size: 25px;
    line-height: 28px;
  }
  
  .subheading {
    font-size: 14px;
  }
  
  .main_inner {
    padding: 20px 30px;
  }
  
  .hero_editor {
    grid-template-columns: 1fr;
    grid-template-areas:
      "image"
      "options"
      "content"
      "shapes";
    gap: 20px;
  }
  
  .card, .card2 {
    padding: 15px;
  }
  
  .he_image_frame {
    margin-bottom: 15px;
  }
  
  .he_image_frame img {
    max-width: 100%;
    height: auto;
  }
  
  .hero_editor_btn {
    width: 100%;
    padding: 10px 14px;
    font-size: 12px;
  }
  
  .swatch_row {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .swatch img {
    width: 35px;
    height: 35px;
  }

  .content_editor input {
    height: 44px;
    font-size: 16px;
    padding: 0 15px;
  }
  
  .row_2 {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .shape_grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .shape_card {
    height: 80px;
  }
  
  .shape_card img {
    max-width: 60px;
  }
  
  .sidebar_bottom {
    margin-top: auto;
    gap: 15px;
  }
  
  .preview_btn {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .user_profile {
    padding: 8px;
  }
  
  .user_avatar {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
  
  .user_name {
    font-size: 13px;
  }
  
  .logout_link {
    font-size: 11px;
  }

    .video_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .video_card {
    padding: 15px;
  }
  
  .video_thumbnail {
    height: 150px;
  }
  
  .upload_btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  
  .full_title {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .titles {
    text-align: center;
  }

  .branches_grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .branch_card {
    margin: 0 16px;
  }
  
  .branch_content {
    padding: 16px;
  }

  .branch_actions img {
    height: 25px;
    width: 25px;
  }

  .metrics_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .charts_section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sections_grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .dashboard_bottom_section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .metric_card {
    padding: 16px;
  }
  
  .chart_card {
    padding: 16px;
  }
  
  .section_card {
    padding: 16px;
  }
  
  .company_info_section,
  .social_media_section,
  .footer_links_section {
    margin-bottom: 20px;
  }
  
  .section_header {
    margin-bottom: 16px;
  }
  
  .section_header h2 {
    font-size: 16px;
  }
  
  .save_changes_btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .metric_card, .section_card {
    flex-direction: row;
    text-align: center;
  }

  .section_icon {
    height: auto;
    min-width: 60px;
  }
  
  .website_sections_overview {
    padding: 16px;
  }

  .settings_section {
    margin-bottom: 24px;
  }
  
  .social_links_card, .footer_links_card {
    padding: 16px;
  }
  
  .social_item {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .social_icon {
    align-self: flex-start;
  }

  .login_form {
    padding: 30px 20px;
    border-radius: 30px;
  }
  
  .login_title {
    font-size: 28px;
  }
  
  .welcome_text h2 {
    font-size: 20px;
  }
  
  .welcome_text p {
    font-size: 14px;
  }

  .featured_testimonials {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  
  .testimonials_table {
    overflow-x: scroll;
    min-width: 636px;
  }

  .testimonials_table_wrapper {
    border-radius: 14px;
    overflow: hidden;
  }

  .table_header {
    display: grid;
    grid-template-columns: 60px 240px 120px 100px 480px;
    gap: 16px;
    padding: 16px 20px;
    background: #F9F9F9;
    border-bottom: 1px solid #E5E7EB;
    font-family: 'Figtree';
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
  }

  .table_row {
    display: grid;
    grid-template-columns: 60px 240px 120px 100px 480px;
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }

  aside {
    width: 90%;
    max-width: none;
    padding: 50px 15px 20px;
  }
  
  header {
    padding: 12px 15px;
  }
  
  .main_inner {
    padding: 15px 20px;
  }

  .small_title {
    flex-direction: column;
    gap: 5px;
  }
  
  .card, .card2 {
    padding: 12px;
  }
  
  .swatch_row {
    gap: 10px;
  }
  
  .swatch img {
    width: 30px;
    height: 30px;
  }
  
  .shape_card {
    height: 70px;
  }
  
  .shape_card img {
    max-width: 50px;
  }

  .metrics_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .sections_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .dashboard_bottom_section {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .sections_preview_grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .metric_card {
    padding: 12px;
  }
  
  .chart_card {
    padding: 12px;
  }
  
  .section_card {
    padding: 12px;
  }
  
  .company_info_section,
  .social_media_section,
  .footer_links_section {
    margin-bottom: 16px;
  }
  
  .section_header {
    margin-bottom: 12px;
  }
  
  .section_header h2 {
    font-size: 14px;
  }
  
  .save_changes_btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .social_icon {
    width: 35px;
    height: 35px;
  }
  
  .social_icon img {
    width: 16px;
    height: 16px;
  }

  .metrics_grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

  .website_sections_overview {
    padding: 12px;
  }
  
  .metric_icon {
    width: 40px;
    height: 40px;
  }

  
  .metric_value {
    font-size: 20px;
  }

  .social_links_card, .footer_links_card {
    padding: 12px;
  }

  .image_grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }

  .login_form {
    padding: 20px 15px;
    border-radius: 20px;
  }
  
  .login_title {
    font-size: 24px;
  }
  
  .welcome_text h2 {
    font-size: 18px;
  }
  
  .welcome_text p {
    font-size: 13px;
  }
  
  .form_group input {
    height: 44px;
    font-size: 16px;
  }
  
  .signin_btn {
    height: 44px;
    font-size: 14px;
  }

  .video_card {
    padding: 12px;
  }
  
  .video_thumbnail {
    height: 120px;
  }
  
  .upload_btn {
    padding: 10px 16px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }
  
  .add_flavor_btn {
    padding: 12px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  
  .flavor_grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .flavor_card {
    padding: 15px;
  }
  
  .flavor_image {
    height: 150px;
  }
  
  .testimonial_card {
    padding: 16px;
  }
  
  .testimonial_avatar {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .testimonial_info h3 {
    font-size: 14px;
  }
  
  .testimonial_info p {
    font-size: 12px;
  }
  
  .table_header,
  .table_row {
    grid-template-columns: 40px 1fr 80px 60px 1fr;
    gap: 8px;
    padding: 10px 12px;
    min-width: auto;
  }
  
  .col_testimonial {
    font-size: 12px;
    line-height: 16px;
  }
  
  .testimonials_table {
    overflow-x: auto;
    min-width: 100%;
  }
  
  .testimonials_table_wrapper {
    overflow-x: auto;
  }
  
  .pagination {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .pagination_controls {
    justify-content: center;
  }
}

