* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header,
main,
section,
footer {
  position: relative;
  z-index: 1;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  padding-bottom: 80px;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: #ff5a00;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 0 100%);
  z-index: -1;
}

.page-bottom-shape {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: #ff5a00;
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Navigation */
.navbar {
  background-color: #ff5a00;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
}

/* Burger Menu */
.burger-menu {
  width: 32px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.burger-menu:hover {
  transform: scale(1.1);
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Logo */
.logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 800;
  color: #2c3e50;
}

.logo img {
  height: 30px;
  border-radius: 5px;
  /* margin-top: 10px; */
  padding-top: 1px;
}

.logo-text {
  color: #fff;
}

/* USER ICON */
.user-btn {
  background: none;
  border: none;
  font-size: 36px;
  cursor: pointer;
  color: #ffffff;
}

/* DROPDOWN CONTAINER */
.user-dropdown {
  position: absolute;
  top: 55px;
  right: 12px;
  width: 270px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 1000;
  overflow: hidden;
}

.user-dropdown.active {
  display: block;
}

/* ROWS */
.dropdown-row {
  padding: 12px 14px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-row:last-child {
  border-bottom: none;
}

/* MSISDN TEXT */
.dropdown-row strong {
  font-weight: 600;
}

/* EDIT ICON */
.edit-icon {
  font-size: 14px;
  color: #ec0202;
  cursor: pointer;
  transition: color 0.2s ease;
}

.edit-icon:hover {
  color: #1a73e8;
}

/* EDIT MODE */
.msisdn-edit {
  display: none;
  padding: 12px 14px;
  border-bottom: 1px solid #f0f0f0;
}

/* INPUT */
.subscribe-form input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  background: #f6f9ff;
}

.subscribe-form input:focus {
  border-color: #1a73e8;
  background: #ffffff;
}

/* ACTION BUTTONS */
.edit-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.edit-actions button {
  flex: 1;
  padding: 9px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

/* OK BUTTON */
.edit-actions button[type="submit"] {
  background: #1a73e8;
  color: #fff;
}

/* CANCEL BUTTON */
.edit-actions button#cancelEdit {
  background: #e0e0e0;
  color: #333;
}

/* SUBSCRIBE / UNSUBSCRIBE */
.user-action {
  display: block;
  margin: 12px;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  background: #1a73e8;
  color: #ffffff;
}

.user-action.danger {
  background: #e53935;
}

/* STATUS & CHARGE TEXT */
.dropdown-row span {
  color: #555;
}

/* Sidebar Menu */
.sidebar-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100%;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1200;
  transition: left 0.4s ease;
  overflow-y: auto;
}

.sidebar-menu.active {
  left: 0;
}

.sidebar-header {
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2c3e50;
  color: white;
}

.sidebar-nav {
  list-style: none;
  padding: 20px 0;
}

.sidebar-nav li {
  border-bottom: 1px solid #eee;
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.sidebar-nav li a:hover {
  background-color: #f8f8f8;
  color: #e74c3c;
  padding-left: 30px;
}

.sidebar-nav li a i {
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Banner Carousel */
.banner-section {
  margin-bottom: 20px;
}

.carousel-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
  display: flex;
  transition: transform 0.5s ease;
  height: 400px;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 30px;
}

.carousel-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.carousel-read-time {
  font-size: 14px;
  opacity: 0.9;
  display: flex;
  align-items: center;
}

.carousel-read-time i {
  margin-right: 8px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  /* padding: 20px 0; */
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: white;
  transform: scale(1.2);
}

/* Categories Section */
.categories-section {
  margin-bottom: 50px;
}

.categories-container {
  display: flex;
  align-items: center;
  position: relative;
}

.categories-list {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none; /* Firefox */
}

.categories-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.category-item {
  flex: 0 0 auto;
  padding: 12px 24px;
  margin-right: 15px;
  background-color: #fff;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color: #e74c3c;
  color: #e74c3c;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.scroll-btn:hover {
  background-color: #e74c3c;
  color: white;
}

.left-scroll {
  left: -20px;
}

.right-scroll {
  right: -20px;
}

/* Trending Section & Category Sections */
.trending-section,
.category-section {
  margin-bottom: 60px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
}

.section-nav {
  display: flex;
  gap: 10px;
}

.nav-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #e74c3c;
  color: white;
}

.nav-btn.hidden {
  display: none !important;
}

.nav-btn:disabled,
.nav-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.trending-container,
.category-container {
  position: relative;
  overflow: hidden;
}

.trending-slider,
.category-slider {
  display: flex;
  transition: transform 0.4s ease;
}

.blog-card {
  flex: 0 0 auto;
  margin-right: 20px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  /* width: calc(100% - 40px); */
  width: calc(100% - 140px);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cat-blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-info {
  padding: 20px;
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
  line-height: 1.4;
}

.blog-read-time {
  font-size: 14px;
  color: #7f8c8d;
  display: flex;
  align-items: center;
}

.blog-read-time i {
  margin-right: 8px;
}

/* Blog Hero Image */
.blog-hero {
  margin-bottom: 30px;
}

.hero-image-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
}

.blog-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog Post Section */
/* .blog-post-section {
  padding: 0 20px;
  margin-bottom: 60px;
} */

.blog-post-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 20px;
}

/* Category Hero Section */
.category-hero {
  position: relative;
  height: 300px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(231, 76, 60, 0.7); /* Light blur orange */
  backdrop-filter: blur(5px);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  max-width: 800px;
  z-index: 1;
}

.category-title {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-weight: 800;
  /* margin-bottom: 15px; */
  padding: 8px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  background: rgba(236, 30, 8, 0.1); /* Light blur orange */
  backdrop-filter: blur(5px);
  border-radius: 15px;
}

/* Breadcrumb Section */
.breadcrumb-section {
  padding: 0 5px;
  margin-bottom: 40px;
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.breadcrumb-item {
  color: #0783f1;
  font-weight: bold;
  transition: color 0.3s ease;
}

.breadcrumb-item:hover {
  color: #e74c3c;
}

.breadcrumb-item.active {
  color: #2c3e50;
  font-weight: 500;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: #ff5a00;
}

/* Blog Listing Section */
.blog-listing-section {
  /* padding: 0 20px; */
  margin-bottom: 60px;
}

.blog-listing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.blog-item {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-item-image {
  height: 200px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-image {
  transform: scale(1.05);
}

.blog-item-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: #7f8c8d;
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
}

.blog-read-time i {
  margin-right: 5px;
}

.blog-item-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
  line-height: 1.3;
  font-family: "Playfair Display", serif;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  color: #e74c3c;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-read-more:hover {
  color: #c0392b;
  transform: translateX(5px);
}

.blog-read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover i {
  transform: translateX(5px);
}

/* Post Header */
.post-header {
  margin-bottom: 30px;
  /* border-bottom: 2px solid #f0f0f0;
  padding-bottom: 30px; */
}

.post-title {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #2c3e50;
  margin-bottom: 25px;
}

/* Footer */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: white;
  z-index: 100;
  padding: 15px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
/* 
.subscribe-container {
  margin-bottom: 10px;
} */

.subscribe-btn {
  background-color: #ff5a00;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.subscribe-btn:hover {
  background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
}

.subscribe-btn i {
  margin-right: 10px;
}

/* Subscribe Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.modal-content p {
  margin-bottom: 25px;
  color: #7f8c8d;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscribe-form input {
  padding: 15px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.subscribe-form input:focus {
  outline: none;
  border-color: #e74c3c;
}

.subscribe-form button {
  /* padding: 15px; */
  background-color: #e74c3c;
  color: white;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #c0392b;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #7f8c8d;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #333;
}

/* Responsive Design */
@media (min-width: 768px) {
  .blog-card {
    width: calc(50% - 20px);
  }

  .categories-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .left-scroll {
    left: 0;
  }

  .right-scroll {
    right: 0;
  }
}

@media (max-width: 767px) {
  .main-content {
    padding: 0px 20px;
  }

  .carousel-slides {
    height: 200px;
  }

  .carousel-info {
    padding: 15px;
  }

  .carousel-title {
    font-size: 16px;
  }

  .carousel-read-time {
    display: none;
  }

  .categories-section {
    margin-bottom: 20px;
  }

  .category-item {
    padding: 6px 12px;
    margin-right: 12px;
  }

  .category-hero {
    height: 100px;
  }

  .category-title {
    font-size: 25px;
  }

  .section-header {
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 14px;
  }

  .cat-blog-image {
    height: 100px;
  }

  .breadcrumb {
    font-size: 12px;
  }

  .blog-info {
    padding: 12px;
  }

  .blog-title {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 5px;
  }

  .blog-read-time {
    font-size: 12px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-item {
    flex-direction: row;
    height: auto;
  }

  .blog-meta {
    display: none;
  }

  .blog-item-image {
    flex: 0 0 160px;
    height: 130px;
  }

  .blog-item-content {
    padding: 10px;
  }

  .blog-item-title {
    font-size: 14px;
  }

  /* .blog-read-more {
    display: none;
  } */

  .trending-section,
  .category-section {
    margin-bottom: 40px;
  }

  .hero-image-container {
    height: 200px;
  }

  .post-title {
    font-size: 22px;
    text-align: center;
  }

  .post-content {
    font-size: 16px;
  }

  .post-content h2 {
    font-size: 24px;
  }

  .post-content h3 {
    font-size: 20px;
  }

  .post-navigation {
    flex-direction: column;
  }

  .user-btn {
    font-size: 26px;
  }

  .burger-menu {
    width: 22px;
    height: 18px; 
  }

  .subscribe-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .blog-card {
    width: calc(33.333% - 20px);
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }

  .category-title {
    font-size: 42px;
  }

  .post-title {
    font-size: 22px;
  }

  .post-content {
    font-size: 17px;
  }

  .post-content h2 {
    font-size: 28px;
  }

  .post-content h3 {
    font-size: 22px;
  }
}

/* SIDEBAR OVERLAY */
.sidebar-overlay {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  background: #ff5a00;
  z-index: 9999;

  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;

  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.sidebar-overlay.active {
  transform: translateY(0);
}

/* CLOSE BUTTON */
.sidebar-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
}

/* AVATAR */
.sidebar-avatar {
  display: flex;
  justify-content: center;
  margin: 50px 0 35px;
}

.sidebar-avatar img {
  width: 72px;
  height: 72px;
  /* border-radius: 50%; */
  object-fit: cover;
  /* border: 2px solid rgba(255,255,255,0.4); */
}

/* GRID CONTAINER */
.sidebar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 24px 60px;
  text-align: center;
}

/* MENU ITEM */
.menu-box {
  color: white;
}

.menu-box span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* CIRCLE */
.menu-circle {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.menu-circle:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.08);
}

.menu-circle img {
  width: 62%;
  height: 62%;
  object-fit: contain;
}

/* Center the middle item in first row if needed (optional) */
.menu-box.center {
  grid-column: 2;
}

/* SUBSCRIBE BUTTON */
.sidebar-subscribe {
  padding: 0 24px 40px;
  text-align: center;
}

.sidebar-subscribe a {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 48px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sidebar-subscribe a:hover {
  background: white;
  color: #ff5a00;
}

/* ============================================= */
/*               DESKTOP / BIG SCREEN            */
/* ============================================= */

@media (min-width: 768px) {
  .sidebar-overlay {
    background: rgba(255, 90, 0, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
  }

  /* Wrapper for nice centering & max width */
  .sidebar-content {
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sidebar-close {
    top: 30px;
    right: 30px;
    font-size: 36px;
  }

  .sidebar-avatar {
    margin: 20px 0 50px;
  }

  .sidebar-avatar img {
    width: 90px;
    height: 90px;
  }

  .sidebar-grid {
    max-width: 420px;
    gap: 32px;
    padding: 0 20px 80px;
  }

  .menu-circle {
    width: 110px;
    height: 110px;
  }

  .menu-circle img {
    width: 60%;
    height: 60%;
  }

  .sidebar-subscribe {
    margin-top: 40px;
    padding: 0;
  }

  .sidebar-subscribe a {
    padding: 14px 60px;
    font-size: 17px;
  }
}

.form-error {
  background: #fdecea;
  color: #b71c1c;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 10px;
  border: 1px solid #f5c6cb;
}
