/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --hue: 207;
  --first-color: #f72e91;
  --first-color-alt: #63123a; /* -4% */
  --stylish-text: #63123a;
  --title-color: #000;
  --text-color: black;
  --text-color-light: #6F6B80;
  --text-color-lighten: hsl(var(--hue), 8%, 92%);
  --body-color: #ffffff;
  --container-color: #fff;
  --header-height: 3rem;
  --sticky-nav-height: 60px; /* Default for profile.php, manage-orders.php */
  --sticky-nav-padding: 10px;
  --sticky-nav-border: 1px;
  --interesting-gray: hsla(248, 32%, 23%, 0.2);
  --white: #fff;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Outfit', Tahoma, sans-serif;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*==== Spacing ================*/
   --section-padding: 80px;

   /*====== Box Shadow ======*/
  --shadow-1: 0 8px 20px hsla(0, 0%, 0%, 0.06);
  --shadow-2: 0px 4px 10px hsla(0, 0%, 0%, 0.05);

  /*====== Border Radius ======*/
  --radius-4: 4px;
  --radius-6: 6px;

  /*==== Transition ====*/
  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*=========== General Styling (for all screen sizes) ==============*/
/* Skeleton Screen Styles */
.skeleton-container {
    display: none; /* Hidden by default, shown during loading */
    padding: 20px;
}

.skeleton {
    background: #e0e0e0;
    border-radius: 4px;
    margin: 10px 0;
    animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-text {
    height: 16px;
    width: 100%;
}

.skeleton-title {
    height: 24px;
    width: 60%;
}

.skeleton-circle {
    height: 50px;
    width: 50px;
    border-radius: 50%;
}

.skeleton-box {
    height: 100px;
    width: 100%;
}

@keyframes pulse {
    0% { background-color: #e0e0e0; }
    50% { background-color: #f0f0f0; }
    100% { background-color: #e0e0e0; }
}

/* Specific layouts for each page */
.skeleton-dashboard {
    display: grid;
    gap: 20px;
}

.skeleton-inbox {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.skeleton-inbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skeleton-analytics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

/* FORM(S) STYLING */
.styled-input{
  outline: none;
  width: 100%;
  height: 30px;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: var(--body-font);
  margin-bottom: 10px;
}
.styled-select {
  outline: none;
  width: 100%;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--first-color);
  font-size: 16px;
  font-family: var(--body-font);
  margin-bottom: 10px;
}
.styled-select:focus {
  border-color: #f72e91;
  /*box-shadow: 0 0 5px rgba(247, 46, 145, 0.3);*/
}
.styled-textarea {
outline: none;
width: 100%;
padding: 8px;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 16px;
font-family: var(--body-font);
margin-bottom: 10px;
}
.styled-label {
  color: var(--first-color);
}

/* Hide default checkbox */
.styled-checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--first-color); /* Pink border */
  border-radius: 4px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  background-color: white; /* Default background */
}

/* When checked, change background color */
.styled-checkbox:checked {
  background-color: var(--first-color);
  border-color: var(--first-color);
}

/* Add a checkmark */
.styled-checkbox:checked::after { 
  content: "✔";
  font-size: 14px;
  color: white; 
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}

.styled-bold {
  color: var(--first-color);
}

.btn-primary {
  background-color: var(--first-color);
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 1rem;
  font-family: var(--body-font);
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--first-color-alt);
}

.profile__perfil img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

/* Sticky bottom navigation bar */
.hidden {
  display: none;
}

.stickybottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f1f1f1;
  padding: 10px;
  border-top: 1px solid #ddd;
  z-index: 9999;
}

.navbutton {
  flex: 1;
  text-align: center;
}

#btn-copy, .secondbutton a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #f72e91;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  font-family: var(--body-font);
  text-decoration: none;
  width: 80%;
}

main {
  padding: 20px;
  max-width: 800px; /* ensures it doesn’t stretch too wide */
  margin: calc(3rem + 20px) auto 0; /* Adds space beneath the header */
  font-family: 'Outfit', sans-serif;
  min-height: 100vh; /* Ensures it's at least the full viewport height */
  height: auto; /* Allows it to grow with content */
  overflow: auto; /* Handles any overflow properly */
}

/* Order Details Section */

/* Title Styling */
.mowraptitle {
  font-size: 24px;
  font-weight: 700;
  color: #f72e91;
  margin-bottom: 10px;
  color: var(--first-color-alt);
}

.h-tags {
  text-align: center;
  margin-bottom: 20px;
  color: var(--first-color-alt);
}

/* Paragraph Styling */
.mowrap-paragraph {
  color: var(--text-color);
}

/* Pink color for elements */
.pink-color {
  color: var(--first-color);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
  font-size: 16px;
  text-align: left;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

th {
  background: #f72e91;
  color: white;
}

/*-----------------------------------*\
  #COURSE AKA THE PAGE WHERE THE SERVICES AND THE INFLUENCERS PROFILES ARE SHOWN ON people-also-viewed.php, et al. 
\*-----------------------------------*/

.course {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.course :is(.section-subtitle, .section-title) { text-align: center; }

.course .grid-list { margin-block: 60px; }

.course-card {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-6);
  overflow: hidden;
  border: 1px solid;
}

.course-card .card-banner {
  background-color: var(--light-gray);
  aspect-ratio: 370 / 270;
  overflow: hidden;
}

.course-card .card-banner img { transition: var(--transition-2); }

.course-card:is(:hover, :focus-within) .card-banner img { transform: scale(1.1); }

.course-card .card-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.course-card .badge {
  background-color: var(--white);
  color: var(--ultramarine-blue);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  padding: 4px 12px;
  border-radius: var(--radius-4);
}

.course-card .whishlist-btn {
  background-color: var(--space-cadet_20);
  color: var(--white);
  font-size: 18px;
  padding: 6px;
  margin: 5px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.course-card .whishlist-btn.active { color: var(--tart-orange); }

.course-card .whishlist-btn:active ion-icon { transform: scale(0.9); }

.course-card .card-content { padding: 25px 20px; }

.course-card .card-meta-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.course-card .card-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ultramarine-blue);
}

.course-card .card-meta-item ion-icon { --ionicon-stroke-width: 40px; }

.course-card .card-meta-text { font-weight: var(--fw-500);}

.course-card .card-title {
  line-height: 1.6;
  margin-block: 10px 15px;
  transition: var(--transition-1);
}

.course-card .card-title:is(:hover, :focus) { color: var(--ultramarine-blue); }

.course-card .rating {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--orange-peel);
  font-size: 18px;
}

.course-card .rating-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-block-end: 25px;
}

.course-card .card-footer {
  padding-block-start: 25px;
  border-block-start: 1px solid var(--cultured-2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.course-card .card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.course-card .card-price .span {
  color: var(--space-cadet-2);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
}

.course .btn { margin-inline: auto; }


/*=== General Layout/ACTIVITY_ORDERS.PHP PAGE ===*/
/* Chat Button */
.chat-btn {
  background: #63123a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-btn img {
  height: 24px;
  width: 24px;
}

/* Delivery Box */
.box-deliver {
  background: #fff3f7;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

/* Order Timeline */
.timeline-event {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.timeline-event img {
  height: 30px;
  width: 30px;
}

/*== Profile Metrics Links ===*/
.metrics-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease-in-out;
}

.metrics-link:hover {
  transform: scale(1.05);
}

/*== Settings Page ===*/
.settings-section {
  margin-bottom: 20px;
}

.settings-section h3 {
  font-size: 1.2rem;
  color: #63123a;
  margin-bottom: 10px;
}

.settings-link {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid #e5e5e5;
  transition: color 0.3s ease;
}

.settings-link:last-child {
  border-bottom: none;
}

.settings-link i {
  font-size: 1.5rem;
  color: #f72e91;
  margin-right: 10px;
}

.settings-link:hover {
  color: #63123a;
}

.settings-button {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  color: #333;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: 'Outfit';
}

.settings-button:hover {
  color: #63123a;
}
 
.settings-button i {
  font-size: 1.5rem;
  color: #f72e91;
  margin-right: 10px;
}

/*== Inbox Page ===*/
.inbox-container{
  background: #fff; border-radius: 8px; padding: 20px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.inbox-container li{
  display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid #ddd;
}

.inbox-container .username{
  font-weight: 600; font-size: 1rem; color: #333;
}

.inbox-message{
  font-size: 0.875rem; color: #555; margin: 5px 0;
}

.inbox-container .timestamp{
  font-size: 0.75rem; color: #999;
}
 
.search-box-inbox {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid var(--body-color);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s;
  background: var(--container-color);
  font-family: var(--body-font);
  color: var(--text-color);
}

.search-box-inbox:focus {
  border-color: #f72e91;
}

.unread-bubble {
  background-color: #f72e91;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
}

.inbox-list li {
  padding: 10px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s;
}

.inbox-list li:hover {
  background-color: #f7f7f7;
}
.message-info {
  flex-grow: 1;
  margin-left: 10px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    color: #666;
    border-bottom: 2px solid transparent;
}
.tab.active {
    color: #f72e91;
    border-bottom: 2px solid #f72e91;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.message-icon {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.inbox-list li, .call-list li {
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.inbox-list li:hover, .call-list li:hover {
    background: #f9f9f9;
}
.call-info {
    flex-grow: 1;
    margin-left: 10px;
} 
.unread-bubble {
    background: #f72e91;
    color: #fff;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 12px;
}
.new-call-button {
    background: #f72e91;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
  /*  display: <?php echo $category === 'Influencer' ? 'block' : 'none'; ?>; */
}
.call-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.call-modal-content {
    background: var(--container-color);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
}
.call-modal-content h3 {
    margin-top: 0;
}
.call-option {
    display: block;
    padding: 10px;
    margin: 5px 0;
    background: var(--body-color);
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}
.call-option:hover {
    background: #e0e0e0;
}
.frequent-contacts, .all-contacts {
    margin-top: 10px;
}
.contact-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}
.contact-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.contact-item:hover { 
    background: #f9f9f9;
}
.close-modal {
    float: right;
    font-size: 20px;
    cursor: pointer;
}
.call-type-icon {
    margin-right: 5px;
}


/*== Messages Page ===*/
/* Chat Container */
.message-container {
  display: flex;
  flex-direction: column;
  margin: auto;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  position: relative;
  bottom: 70px;
}

/* Chat Header */
.chat-header {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 10px;
  gap: 10px;
}

.chat-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.chat-info h3 {
  margin: 0;
  font-size: 16px;
  color: var(--white);
}

#user-status {
  font-size: 12px;
  opacity: 0.8;
}

/* Chatbox */
.chatbox {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background: #f9f9f9;
}

/* Messages */
.messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sent {
  align-self: flex-end;
  background: var(--first-color-alt);
  color: white;
  padding: 8px;
  border-radius: 10px 10px 0 10px;
  max-width: 70%;
}

.received {
  align-self: flex-start;
  background: var(--first-color);
  padding: 8px;
  border-radius: 10px 10px 10px 0;
  max-width: 70%;
}

/* Chat Footer */
.chat-footer {
  display: flex;
  align-items: center;
  background: var(--container-color);
  padding: 10px;
  border-top: 1px solid #ddd;
  width: 100%;
  gap: 5px;
}

.chat-icon {
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-icon i {
  color: #888;
  transition: color 0.3s ease;
}

.chat-icon:hover i {
  color: #f72e91;
}

.message-input {
  flex: 1;
  padding: 10px;
  border-radius: 20px;
  font-size: 16px;
  outline: none;
  background: var(--body-color);
  color: var(--text-color);
  border: none;
}

.send-button {
  background: #f72e91;
  color: #fff;
  padding: 8px 12px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-button i {
  font-size: 22px;
}

.send-button:hover {
  background: #63123a;
}


/*== Notifications Page ===*/
/* Notification Container */
.notifications-container {
  max-width: 700px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Notification Styling */
.notification {
background: var(--first-color);
padding: 15px;
border-radius: 6px;
color: #fff;
font-size: 1rem;
margin-bottom: 10px;
display: flex;
justify-content: space-between;
align-items: center;
transition: opacity 0.3s;
}

.notification.read {
background: var(--first-color-alt);
}

.notification-text {
font-weight: 500;
font-size: 1rem;
color: #fefefe;
}

.notification-time {
font-size: 0.85rem;
color: #E0E0E0;
margin-top: 5px;
}

.trash-icon {
background: none;
border: none;
cursor: pointer;
color: #fff;
font-size: 1.2rem;
}


/* Buttons */
.notification-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.notification-buttons button {
  background: #63123a;
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: 'Outfit';
}

.notification-buttons button:hover {
  background: #50102e;
}

/* Trash Icon */
.trash-icon {
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
}

.trash-icon i {
  transition: color 0.3s;
}

.trash-icon:hover i {
  color: #ffdddd;
}

/* Notification Dropdown */
.nav__notifications {
    position: relative;
}

.notification-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    background: var(--container-color);
    border: 1px solid var(--body-color);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.notification-dropdown.show {
    display: block;
}

.notification-dropdown__header {
    padding: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.notification-dropdown__header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: var(--stylish-text);
}

.notification-actions {
    display: flex;
    gap: 10px;
}

.notification-actions button {
    background: none;
    border: none;
    color: var(--first-color);
    font-size: 12px;
    cursor: pointer;
}

.notification-actions button:hover {
    text-decoration: underline;
}

.notification-dropdown__list {
    padding: 0;
    margin: 0;
}

.notification-dropdown__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.notification-dropdown__item.unread {
    background: #f0f8ff;
}

.notification-link {
    flex: 1;
    text-decoration: none;
    color: #333;
}

.notification-text {
    margin: 0;
    font-size: 14px;
}

.notification-time {
    margin: 5px 0 0;
    font-size: 12px;
    color: #777;
}

.trash-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: #ff4444;
    font-size: 16px;
}

.trash-icon:hover {
    color: #cc0000;
}

.notification-dropdown__footer {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
}

.notification-dropdown__footer a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.notification-dropdown__footer a:hover {
    text-decoration: underline;
}

/* Ensure icons are relatively positioned for badge placement */
.nav__item, .nav__link {
    position: relative;
}

/* General Notification Badge Styling */
.notification-badge {
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    padding: 3px 6px;
    min-width: 18px;
    text-align: center;
    position: absolute;
    margin-top: 5px;
    top: 0;
    right: 0;
    transform: translate(50%, -50%); 
}

/* Positioning for Inbox Badge */
.inbox-badge {
    top: -5px;
    right: -5px;
}

/* Positioning for Orders Badge */
.orders-badge {
    top: -5px; 
    right: -5px;
}

/* Positioning for Notifications Badge */
.notifications-badge {
    top: -5px;
    right: -5px;
}

/*== Manage Orders Page ===*/
.order-card {
  background: #fff; 
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  padding: 20px; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
}

.order-info h3{
  margin: 0; 
  font-size: 1.2rem; 
  color: #333;
}

.order-info .ordered-by {
  font-size: 0.9rem; 
  color: #666; 
  margin: 5px 0;
}

.order-text {
  font-size: 0.9rem; 
  color: #666;
}

/*== Begin Page ===*/
.welcome-section {
  text-align: center;
  margin: 30px auto;
}

.party-popper-icon {
width: 24px; /* Adjust size */
height: 24px;
vertical-align: middle;
margin-right: 5px; /* Space between image and text */
}

.welcome-section h2 {
  font-size: 1.8rem;
  color: #63123a;
  margin-bottom: 10px;
}

.welcome-section p {
  font-size: 1rem;
  color: #666;
}

.info-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 600px;
  margin: 20px auto;
}

.info-content ol {
  list-style: none;
  padding: 0;
}

.info-content ol li {
  margin: 15px 0;
  font-size: 1rem;
}

.suggestivelink {
  color: var(--first-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.suggestivelink:hover {
  color: var(--first-color-alt);
}

.crossed li {
  text-decoration: line-through;
  color: var(--first-color-alt);
  font-weight: bold;
}

.help-link {
  color: var(--first-color-alt);
  font-style: italic;
  text-decoration: underline;
}

/*== Show Services Page ===*/
.show-services-container {
  max-width: 960px; 
  margin: auto; 
  padding: 20px;
}

.service-status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.service-status-list a li {
  font-size: 16px;
  color: #333;
  padding: 5px 10px;
  background-color: #f4f4f4;
  border-radius: 5px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.service-status-list a li:hover {
  background-color: #e0e0e0;
}

.service-actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-card {
  background: #fff; 
  border-radius: 8px; 
  padding: 20px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  position: relative;
}

.service-card h3 {
  font-size: 1.25rem; 
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem; 
  color: #666; 
  margin-bottom: 15px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.btn-create-service,
.btn-subscription-packages,
.btn-campaigns {
  background-color: #f72e91;
}

.btn-create-service:hover,
.btn-subscription-packages:hover,
.btn-campaigns:hover {
  background-color: #63123a;
}

.btn ion-icon {
  font-size: 18px;
  vertical-align: middle;
}

/*== Dashboard (a.k.a Influencer's home page) Page ===*/
/* Main Dashboard Container */
.dashboard-container {
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
}

/* Post Box */
.write-post {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.write-post textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: none;
  border-radius: 5px;
  resize: none;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
}

/* Alert Box Container */
.alert-box {
  margin-bottom: 15px;
}

/* General Alert Styling */
.alert {
  padding: 12px 18px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 300px;
  max-width: 500px;
  text-align: left;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Success Message */
.alert.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* Error Message */
.alert.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Close Button */
.close-btn {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: inherit;
  margin-left: 15px;
}

.media-icon {
  cursor: pointer;
  color: var(--first-color);
  font-size: 1rem;
  margin-right: 12px;
  position: relative;
  top: 5px;
}

.submit-post-btn {
  background: var(--first-color);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 15px;
  font-family: 'Outfit';
}

.submit-post-btn:hover {
  background: var(--first-color-alt);
}

 /* Your Posts Section */
 .your-posts {
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Post Footer */
.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Left Section: Likes & Comments */
.left-section {
  display: flex;
  gap: 15px;
}

/* Right Section: Saves */
.right-section {
  display: flex;
  justify-content: flex-end;
}

/* Post Icons */
.post-icon {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-icon:hover {
  color: #f72e91;
  cursor: pointer;
}


/* Analytics Section */
.analytics-section {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 1100px;
  margin: 20px auto;
}

/* Analytics Grid */
.analytics-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

/* Individual Analytics Box */
.analytics-box {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f72e91; /* Primary color border */
}

.analytics-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 12px rgba(247, 46, 145, 0.3);
}

/* Analytics Headings */
.analytics-box h3 {
  font-size: 14px;
  color: #63123a; /* Secondary color */
  font-weight: bold;
  margin-bottom: 8px;
}

/* Data Number */
.analytics-data {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.info-icon {
  font-size: 18px;
  color: #888;
  cursor: pointer;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

.analytics-info {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 5px;
  font-size: 14px;
}

/* Button */
.btn-primary-analytics {
  background: #f72e91;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
  font-family: var(--body-font);
}

.btn-primary-analytics:hover {
  background: #63123a;
}

/*== Subscription Packages Page ===*/
.subscription-packages-container { max-width: 900px; margin: 0 auto; padding: 20px; }
    .package-list { list-style: none; padding: 0; }
    .package-item { background: #f9f9f9; border: 1px solid #ddd; padding: 15px; margin-bottom: 15px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
    .package-item h3 { font-size: 20px; color: var(--first-color); }
    .package-item p { margin: 5px 0; font-size: 16px; color: #555; }
    .package-item strong { color: var(--first-color); }
    .btn-link { color: var(--first-color); text-decoration: none; font-weight: 500; }
    .btn-link:hover { text-decoration: underline; }

/*== Create Subscription Packages Page ===*/
.create-subscription-package-container {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: none; 
  position: relative;
}

.features-container { 
  margin-top: 10px; 
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid var(--container-color);
  padding: 5px;
  border-radius: 8px;
  background: #f1f1f1;
}

.feature-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 8px;
  border-radius: var(--border-radius);
  margin-bottom: 5px;
}

.feature-item ion-icon {
  margin-left: auto;
  cursor: pointer;
  color: red;
}

.feature-item ion-icon:hover {
  opacity: 0.7;
}

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

/*=== Apply-For-Verification.php PAGE ===*/
.verification-preview {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.user-preview-card {
  display: flex;
  align-items: center;
  background: var(--container-color);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  width: 100%;
}

.profile-pic {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info {
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-weight: bold;
  font-size: 18px;
  color: var(--text-color);
}
.verified-badge-application-page {
  width: 20px;
  height: 20px;
  margin-left: 5px;
  color: var(--first-color);
  margin-top: 5px;
}

/*== Get Verified Page ===*/
.verification-step { padding: 20px; background: var(--body-color); border-radius: 10px; margin-bottom: 20px; box-shadow: 0px 2px 6px rgba(0,0,0,0.1); }
        .upload-box { border: 2px dashed #f72e91; padding: 15px; border-radius: 8px; cursor: pointer; margin-top: 10px; }
        .uploaded-item { background: #f9f9f9; padding: 10px; margin-top: 5px; border-radius: 5px; display: flex; justify-content: space-between; align-items: center; }
        .uploaded-item span { font-size: 0.9rem; color: #333; }
        .uploaded-item button { background: none; border: none; color: red; cursor: pointer; font-size: 1rem; }
        .hidden { display: none; }
        .btn { padding: 10px 20px; background: #f72e91; color: white; border: none; border-radius: 5px; cursor: pointer; }
        .btn:hover { background: #d92172; }
        .payment-methods { display: none; text-align: center; margin-top: 20px; }
        .last-updated { font-size: 0.85rem; color: #777; margin-top: 10px; }

/*== CROP-UPLOAD Page ===*/
/* STYLE FOR CUSTOM FILE INPUT */
input[type="file"] {
  display: none; /* Hide the default file input */
}

.custom-file-input {
  background-color: #f72e91;
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
  transition: 0.3s;
  width: auto;
}

.custom-file-input:hover {
  background-color: #e02468;
}

.custom-file-input:active {
  background-color: #d21a55;
}

.custom-file-input:focus {
  outline: none;
} 

/*=== InputServices.php PAGE ===*/
.form-wrapper {
  padding: 20px;
  background: var(--container-color);
  border-radius: 10px;
 /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

/*=== Withdrawals.php Page ===*/
.withdrawal-history-section {
  max-width: 700px;
  margin: 50px auto;
  padding: 25px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}

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

.withdrawal-history-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #63123a;
  text-align: center;
}

.withdrawal-list {
  margin-top: 20px;
}

.withdrawal-item {
  background: #f9f9f9;
  padding: 15px 1px;
  border-radius: 8px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
}

.withdrawal-item span {
  font-weight: bold;
  color: #333;
}

.withdrawal-status {
  font-size: 0.9rem;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
}

.btn-secondary {
  background-color: #f72e91;
  font-family: 'Outfit';
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  display: block;
  margin-top: 15px;
}

.btn-secondary:hover {
  background-color: #63123a;
}

.see-more-container {
  text-align: center;
  margin-top: 15px;
}

.no-more-withdrawals {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
}

/*=== EarningsWithdrawal.php Page ===*/
.withdrawal-section {
  max-width: 600px;
  margin: 50px auto;
  padding: 25px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}

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

.withdrawal-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #63123a;
  text-align: center;
}

.withdrawal-section p {
  text-align: center;
  font-size: 1rem;
  color: #666;
}

.btn-primary-earnings-withdrawal {
  background-color: #f72e91;
  font-family: 'Outfit';
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}

.btn-primary-earnings-withdrawal {
  background-color: #63123a;
}

.error-message, .success-message {
  text-align: center;
  font-size: 1rem;
  padding: 10px; 
  border-radius: 5px;
}

.error-message {
  background-color: rgba(255, 0, 0, 0.1);
  color: red;
}

.success-message {
  background-color: lightgreen;
  color: #333;
}

/*=== Saved-Posts.php Page ===*/
.post {
  background: var(--container-color);
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  position: relative;
}

.post-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.post-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.post-content {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
  word-wrap: break-word;
}

.post-media {
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}

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

.view-post-btn {
  display: inline-block;
  padding: 8px 15px;
  background: #f72e91;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.view-post-btn:hover {
  background: #d92172;
}

.no-posts {
  text-align: center;
  font-size: 1.2rem;
  color: #777;
  margin-top: 30px;
}

.no-posts i {
  font-size: 3rem;
  color: #f72e91;
}

/*=== About.php Page ===*/
a.about-link {
  color: var(--first-color);
  text-decoration: none;
}

a.about-link:hover {
  color: var(--first-color-alt);
}

.about-section {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.about-section h3 {
  margin-top: 20px;
  color: #333;
  font-size: 1.2rem;
}

.ratings {
  font-size: 1rem;
  color: #333;
}

.action-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  font-family: 'Outfit';
}

.action-buttons button {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.action-buttons a {
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.block-btn {
  background-color: #dc3545;
  color: white;
}

.block-btn:hover {
  background-color: #a71d2a;
}

.report-btn {
  background-color: #f72e91;
  color: white;
}

.report-btn:hover {
  background-color: #63123a;
  color: white;
}

/*== Help.php Page ===*/
.help-section{
  text-align: center;
}
.help-options a{
  color: var(--first-color-alt);
}

/*== Rate-your-experience.php Page ===*/
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 5px;
}
.star-rating input {
  display: none;
}
.star-rating label {
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
}
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: var(--first-color);
}

/*== Monetixation.php Page ===*/
.monetization-list {
  margin-top: 20px;
  text-align: left;
}

.monetization-list p {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.monetization-list p i {
  color: #f72e91;
  font-size: 20px;
  margin-right: 8px;
}

.cta-buttons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.cta-buttons a {
  text-decoration: none;
  background-color: #f72e91;
  color: white;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 20px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

.cta-buttons a:hover {
  background-color: #e02468;
}

.cta-buttons a i {
  margin-right: 8px;
  font-size: 18px;
}

.custom-partnerships {
  text-decoration: none;
  background-color: #f72e91;
  color: white;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 20px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

.custom-partnerships:hover {
  background-color: #e02468;
}

.custom-partnerships i {
  margin-right: 8px;
  font-size: 18px;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--container-color);
}

.modal-content {
  background: var(--body-color);
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-family: var(--body-font);
}

.modal-content p {
  font-size: 16px;
  line-height: 1.5;
}

.modal-close {
  display: block;
  margin-top: 15px;
  background: #f72e91;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--body-font);
}

.modal-close:hover {
  background: #c81b6b;
}

/*== Posts.php Page ===*/
.post-status-list {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.post-status-list li {
  background: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.post-status-list li:hover {
  background: #f72e91;
  color: #fff;
  border-color: #f72e91;
}

/*== Post.php Page ===*/
.post-container {
  max-width: 500px;
  background: #fff;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-header-post {
  display: flex;
  align-items: center;
  padding: 12px;
}
.verification-badge-post-header {
  color: var(--first-color-alt);
  position: relative;
  top: 1px;
}
.profile-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.post-header-username {
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.post-header-timestamp {
  font-size: 12px;
  color: #777;
}
.dot-icon {
  font-size: 2px; /* Make the dot slightly bigger */
  color: #999; /* Match the container color */
  font-weight: bold;
  margin: 0 4px; /* Space between time and Fansta for */
  position: relative;
  top: -1px; /* Adjust alignment */
}
.fansta-device {
  font-weight: normal;
  color: var(--first-color); /* Keep it readable */
}
.verified-badge-post-header {
  width: 20px;
  height: 20px;
  margin-left: 3px;
  color: var(--first-color-alt);
  margin-top: 5px;
}
.post-media {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}
.post-footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
}

.icon-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, color 0.2s;
    font-size: 16px;
    color: var(--text-color);
}

.bottom-section {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.comment {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.comment .profile-img {
  width: 30px;
  height: 30px;
}
.comment-text {
  margin-left: 10px;
  font-size: 14px;
}
.comment-input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 10px;
  color: var(--text-color);
  font-family: var(--body-font);
}
.comment-input:focus {
  border-color: #f72e91;
  outline: none;
}
.comment-btn {
  margin-top: 10px;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  border-radius: 5px;
  font-family: var(--body-font);
  background: var(--first-color);
  color: var(--white);
}
.comment-container {
  background: var(--body-color);
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.comment-text {
  flex-grow: 1;
  margin-left: 10px;
  font-size: 14px;
}
.comment-meta {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
}
.comment-meta .timestamp {
  margin-left: 5px;
}
.comment-options {
  cursor: pointer;
  font-size: 18px;
  padding: 5px;
}
.comment-actions {
  display: none;
  position: absolute;
  background: #fff;
  box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
  padding: 5px;
  border-radius: 3px;
}
.comment-options:hover + .comment-actions {
  display: block;
}
.comment-actions a {
  display: block;
  padding: 5px;
  color: #000;
  text-decoration: none;
}

/*== Subscribe.php Page ===*/
    /* Toggle Switch */
    .toggle-container {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
  }
  .switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 24px;
  }
  .switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }
  .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ccc;
      transition: 0.4s;
      border-radius: 24px;
  }
  .slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 4px;
      bottom: 3px;
      background-color: white;
      transition: 0.4s;
      border-radius: 50%;
  }
  input:checked + .slider {
      background-color: #f72e91;
  }
  input:checked + .slider:before {
      transform: translateX(26px);
  }
  
  /* Pricing Cards */
  .pricing-table {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
  }
  .pricing-card {
      background: var(--container-color);
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      text-align: center;
      width: 300px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .pricing-card:hover {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  .package-name {
      font-size: 20px;
      color: var(--stylish-text);
      margin-bottom: 10px;
  }
  .package-description {
      font-size: 15px;
      margin-bottom: 15px;
  }
  .package-price {
      font-size: 22px;
      color: #f72e91;
      margin-bottom: 20px;
  }
  .package-features {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  .package-features li {
      font-size: 15px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
  }
  .package-features li i {
      color: #28a745;
  }
  .pricing-card.highlighted {
      border: 2px solid #f72e91;
      background-color: var(--container-color);
  }
  .recommended-label {
      position: absolute;
      top: -10px;
      right: -10px;
      background: #f72e91;
      color: #fff;
      font-size: 12px;
      padding: 5px 10px;
      border-radius: 20px;
  }

/*== Checkout-partnership-subscribe.php Page ===*/
.checkout-container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background: var(--container-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.section-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--first-color-alt);
  text-align: center;
  margin-bottom: 15px;
}
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.payment-option {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.payment-option:hover {
  border-color: var(--stylish-text);
}
.payment-option input {
  display: none;
}
.icon-container {
  width: 50px;
  height: 50px;
  border: 2px solid var(--stylish-text);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.icon-container img {
  width: 40px;
  height: auto;
}
.dropdown {
  position: relative;
  display: inline-block;
  width: 100%;
}
.dropdown-btn {
  background: #f72e91;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
}
.dropdown-content {
  display: none;
  position: absolute;
  width: 100%;
  background: var(--body-color);
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px;
}
.dropdown-content label {
  display: block;
  padding: 5px;
  cursor: pointer;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.buyers-guarantee {
  background: var(--container-color);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
}




@media screen and (min-width: 968px) {
  /*=============== BASE ===============*/
:root {
    --h1-font-size: 2.25rem;
    --normal-font-size: 1rem;
  }
  * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: #f4f4f4;
  color: var(--text-color);
}

.section-subtitle {
  color: var(--first-color-alt);
  text-transform: uppercase;
  font-weight: var(--fw-800);
  letter-spacing: 2px;
  margin-block-end: 5px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

#error-msg {
  text-align: center;
  margin-top: 1.25em;
  color: #ff4362;
}
/* Popup box style */
.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.popup h2 {
  margin-top: 0;
}

.popup button {
  background-color: #f72e91;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  cursor: pointer;
  outline: none;
  margin-right: 10px;
}

/* ✅ Fix button spacing on small screens */
.btn-subscriptions {
  width: 100%;
  max-width: 250px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ✅ Order status & subscription button fixes */
.order-status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.order-status-list li {
  font-size: 14px;
  padding: 8px;
  min-width: 80px;
}
}



/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  padding: 4.5rem 0 2rem;
}

.section__title {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 1.5rem;
}

.section__height {
  height: 100vh;
}

/*=============== LAYOUT ===============*/ 
.container {
  max-width: 968px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.home-feed .container,
.business-feed .container {
  max-width: 95vw;
  margin-left: auto;
  margin-right: auto;
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  z-index: var(--z-fixed);
  transition: .4s;
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__img {
  width: 34px;border-radius: 50%;
}

.nav__logo {
  font-weight: 600;
font-family: 'Poppins', sans-serif;color: black;}

@media screen and (max-width: 767px) {
 main {
    min-height: 100vh;
    height: auto;
    overflow: auto;
    padding-bottom: calc(var(--sticky-nav-height) + 2 * var(--sticky-nav-padding) + var(--sticky-nav-border));
  }

  .nav__menu {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--container-color);
    box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    display: grid;
    align-content: center;
    /* border-radius: 1.25rem 1.25rem 0 0; */
    transition: .4s;
  }
  /* ✅ Make grid layouts flexible */
  .grid-list {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .order-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Messages */
    .message-container {
        width: 100%;
    }
    
    .chat-header {
        padding: 8px;
    }

    .chat-profile {
        width: 35px;
        height: 35px;
    }

    .chat-info h3 {
        font-size: 14px;
        color: var(--white);
    }

    .message-input {
        font-size: 14px;
    }

    .send-button {
        padding: 6px 10px;
    }

    .chat-icon {
        font-size: 20px;
    }
    /* Show Services page */
    .service-status-list a li {
      flex: 1 1 calc(50% - 1rem); /* Two columns */
  }

  .service-actions {
      flex-direction: column;
  }

  .btn {
      width: 100%;
      justify-content: center;
  }

}

.nav__list, 
.nav__link {
  display: flex;
}

.nav__link {
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  color: var(--text-color);
  font-size: 12px;
  font-weight: 600;
}

.nav__list {
  justify-content: space-around;
}

.nav__name {
  font-size: var(--tiny-font-size); /* This is not defined currently (2.3.2025)
  display: none; */ /* Minimalist design, hidden labels */
}

.nav__icon {
  font-size: 1.5rem;
}

/*Active link*/
.active-link {
  position: relative;
  color: #f72e91;
  transition: .3s;
}

/* Change background header */
.scroll-header {
  box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
}

/*=============== MEDIA QUERIES ===============*/
/* For small devices */
/* Remove if you choose, the minimalist design */

/* For medium devices */
@media screen and (min-width: 576px) {
  .nav__list {
    justify-content: center;
    column-gap: 3rem;
  }
  .projects__content {
    grid-template-columns: 332px;
    justify-content: center;
  }

  .filters__content {
    width: 332px;
    margin: 3rem auto;
  }

  /* ✅ Fix buttons on mobile */
  .btn-primary, .btn-subscriptions {
    font-size: 14px;
    padding: 10px;
  }

  /* Show Services page */
  .service-status-list a li {
    flex: 1 1 100%; /* Stack items vertically */
}

.service-actions {
    gap: 5px;
}

  /**
   * COURSE
   */

   .course-card .card-content {
    padding-inline: 30px;
    padding-block-end: 30px;
  }


  /**
   * EVENT
   */

  .event-card .card-content { padding: 30px; }

  
}




@media screen and (min-width: 767px) {
  body {
    margin: 0;
  }
  .nav {
    height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
  }
  .nav__name {
    font-size: var(--normal-font-size);
    /* display: block; */ /* Minimalist design, visible labels */
  }
  .nav__link:hover {
    color: var(--first-color);
  } 

  .projects__content,
  .skills__content {
    grid-template-columns: repeat(2, 332px);
  }

  .skills__content {
    justify-content: center;
    column-gap: 3rem;
  }


  /* First design, remove if you choose the minimalist design */
  .active-link::before {
    content: '';
    position: absolute;
    bottom: -.75rem;
    width: 4px;
    background: #ff4362;height: 4px;
    
    border-radius: 50%;
  }

  /**
   * COURSE
   */

   .course-card .card-content {
    padding-inline: 30px;
    padding-block-end: 30px;
  }


  /* Minimalist design */
  /* .active-link::before{
      bottom: -.75rem;
  } */
}

/* For large devices larger than 1024 screen size */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }
  .skills__title {
    font-size: var(--normal-font-size);
    margin-bottom: 2.5rem;
  }
    /**
   * COURSE, EVENT
   */

   :is(.course, .event) .grid-list { grid-template-columns: repeat(3, 1fr); }
}



@media screen and (min-width: 968px) {
  :root {
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
/*  transition: .3s;  For animation dark mode */
}

h1, h2, h3 {
  color: var(--first-color-alt);
  font-weight: 600;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
.change-theme {
  position: absolute;
  top: 1.5rem;
  right: 0;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: .3s;
}

.about-icon-profile {
  position: absolute;
  top: 1.5rem;
  right: 0;
  font-size: 1.25rem;
  color: var(--first-color);
  cursor: pointer;
  transition: .3s;
}

.about-icon-profile:hover {
  color: var(--first-color-alt);
}

.change-theme:hover {
  color: var(--first-color);
}

/*========== Variables Dark theme ==========*/ 
body.dark-theme {
  --title-color: hsl(var(--hue), 12%, 95%);
  --text-color: white;
  --stylish-text: #f72e91;
  --body-color: #000;
  --container-color: #161616;
}

/*========== 
    Color changes in some parts of 
    the website, in light theme
==========*/
.dark-theme .button__gray {
  background-color: var(--container-color);
}

.dark-theme .button__gray:hover {
  background-color: hsl(var(--hue), 24%, 16%);
}

.dark-theme .filters__content {
  background-color: var(--container-color);
}

.dark-theme::-webkit-scrollbar {
  background-color: hsl(var(--hue), 8%, 16%);
}

.dark-theme::-webkit-scrollbar-thumb {
  background-color: hsl(var(--hue), 8%, 24%);
}

.dark-theme::-webkit-scrollbar-thumb:hover {
  background-color: hsl(var(--hue), 8%, 32%);
}

.dark-theme .nav__logo{
  color: var(--white);
}

.dark-theme .profile__name {
  color: var(--first-color);
}

.dark-theme .profile__info-number {
  color: var(--first-color);
}

.dark-theme .profile__social-check{
  color: var(--first-color);
}

.dark-theme .inbox-container{
  background: var(--container-color);
}

.dark-theme .inbox-container li{
  background: var(--body-color);
  border-bottom: var(--container-color);
}

.dark-theme .inbox-container .username{
  color: var(--first-color);
}

.dark-theme .messages-input{
  background: var(--container-color);
  color: var(--text-color);
}

.dark-theme .notifications-container{
  background: var(--container-color);
}

.dark-theme .settings-container{
  background: var(--container-color);
}

.dark-theme .filter-tab-active {
  background-color: var(--body-color);
}

.dark-theme .styled-input{
  background: var(--container-color);
  color: var(--text-color);
  outline: none;
  width: 100%;
  height: 30px;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid var(--body-color);
  font-size: 16px;
  font-family: var(--body-font);
  margin-bottom: 10px;
}

.dark-theme .styled-select {
  background: var(--container-color);
  color: var(--text-color);
  outline: none;
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid var(--container-color);
  font-size: 16px;
  font-family: var(--body-font);
  margin-bottom: 10px;
}

.dark-theme .styled-select:focus {
  border-color: var(--first-color);
}

.dark-theme .styled-textarea {
background: var(--container-color);
color: var(--text-color);
outline: none;
width: 100%;
padding: 8px;
border-radius: 5px;
border: 1px solid var(--container-color);
font-size: 16px;
font-family: var(--body-font);
margin-bottom: 10px;
}

.dark-theme .settings-section h3 {
  color: var(--first-color);
}

.dark-theme .settings-link{
  color: var(--text-color);
  border-bottom: 1px solid var(--body-color);
}

.dark-theme .settings-button {
  color: var(--text-color);
}

.dark-theme .chatbox{
  background: var(--container-color);
  color: var(--text-color);
}

.dark-theme .order-status-list li {
  background: var(--container-color);
  color: var(--text-color);
  border: 1px solid var(--container-color);
}

.dark-theme .order-card {
  background: var(--container-color);
  color: var(--text-color);
}

.dark-theme .order-info h3 {
  color: var(--first-color);
}

.dark-theme .order-info .ordered-by {
  color: var(--text-color);
}

.dark-theme .order-text {
  color: var(--text-color);
}

.dark-theme .mowraptitle {
  color: var(--first-color);
}

.dark-theme .h-tags{
  color: var(--first-color);
}

.dark-theme .mowrap-paragraph {
  color: var(--text-color);
}

.dark-theme .info-container {
  background: var(--container-color);
}

.dark-theme .crossed li {
  color: var(--first-color);
}

.dark-theme .help-link {
  color: var(--first-color);
}

.dark-theme .service-status-list a li {
  background: var(--container-color);
  color: var(--text-color);
}

.dark-theme .service-card {
  background: var(--container-color);
}

.dark-theme .service-card h3 {
  color: var(--first-color);
}

.dark-theme .service-card p {
  color: var(--text-color);
}

.dark-theme .write-post {
  background: var(--container-color);
}

.dark-theme .write-post textarea {
  background: var(--body-color);
  color: var(--text-color);
  border: 1px solid var(--container-color);
}

.dark-theme .write-post .styled-select {
  border: 1px solid var(--first-color);
  border-radius: 10px;
}

.dark-theme .your-posts {
  background: var(--container-color);
}

.dark-theme .package-item {
  background: var(--container-color);
  border: 1px solid var(--body-color);
}

.dark-theme .package-item p {
  color: var(--text-color);
}

.dark-theme .create-subscription-package-container {
  background: var(--body-color);
}

.dark-theme .features-container {
  background: var(--container-color);
}

.dark-theme .feature-item {
  background: var(--body-color);
}

.dark-theme .upload-box {
  background: var(--container-color);
  border: 2px dashed var(--first-color);
}

.dark-theme .upload-box span {
  color: var(--first-color);
}

.dark-theme .uploaded-item {
  background: var(--body-color);
}

.dark-theme .uploaded-item span {
  color: var(--text-color);
}

.dark-theme .user-preview-card {
  background: var(--container-color);
}

.dark-theme .form-wrapper {
  background: var(--body-color);
}

.dark-theme .withdrawal-history-section {
  background: var(--container-color);
}

.dark-theme .withdrawal-item {
  background: var(--body-color);
}

.dark-theme .withdrawal-item span {
  color: var(--text-color);
}

.dark-theme .withdrawal-section {
  background: var(--container-color);
}

.dark-theme .withdrawal-section-strong {
  color: var(--first-color);
}

.dark-theme .withdrawal-section-p {
  color: var(--text-color);
}

.dark-theme .btn-primary-earnings-withdrawal {
  background: var(--first-color);
}

.dark-theme .post {
  background: var(--container-color);
}

.dark-theme .post-content {
  color: var(--text-color);
}

.dark-theme .about-section {
  background: var(--container-color);
}

.dark-theme a.about-link {
  color: var(--text-color);
}

.dark-theme .ratings {
  color: var(--text-color);
}

.dark-theme .stickybottomnav-profile {
  background: var(--container-color);
  border-top: var(--body-color);
}

.dark-theme .help-options a {
  color: var(--first-color);
}

.dark-theme .analytics-section {
  background: var(--container-color);
}

.dark-theme .analytics-box {
  background: var(--body-color);
}

.dark-theme .analytics-box h3 {
  color: var(--first-color);
}

.dark-theme .analytics-data {
  color: var(--text-color);
}

.dark-theme .post-icon {
  color: var(--white);
}

.dark-theme .post-status-list li {
  background: var(--container-color);
  color: var(--text-color);
}

.dark-theme .post-status-list li:hover {
  background: var(--first-color);
  color: var(--white);
}

.dark-theme .post-container {
  background: var(--container-color);
}

.dark-theme .post-header-username {
  color: var(--first-color);
}

.dark-theme .post-header-timestamp {
  color: var(--text-color);
}

.dark-theme .bottom-section {
  background: var(--container-color);
}

.dark-theme .comment-input {
  background: var(--body-color);
  border: none;
}

.dark-theme .verification-badge-post-header {
  color: var(--first-color);
}

.dark-theme .suggestivelink { 
  color: var(--first-color);
}

.dark-theme .box-deliver {
  background: var(--body-color);
}


/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 968px;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== PROFILE ===============*/
.profile {
  position: relative;
  padding-top: 3.5rem;
}

.profile__container {
  row-gap: 2rem;
}

.profile__data {
  display: grid;
  text-align: center;
}

.profile__perfil {
  width: 100px;
  height: 100px;
  /* background: linear-gradient(180deg, 
              hsla(var(--hue), var(--sat), var(--lig), 1) 0%, 
              hsla(var(--hue), var(--sat), var(--lig), .2) 100%); */
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.img-modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
}

.img-modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 5px;
}

.close {
  position: absolute;
  top: 10px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.profile__border {
  /* border: 3.5px solid var(--first-color); */
  justify-self: center;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
}

.profile__name {
  font-size: var(--h2-font-size);
}

.profile__profession {
  font-size: var(--smaller-font-size);
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.profile__social {
  list-style: none;
  padding: 0;
}

.profile__social li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.profile__social i {
  font-size: 1.2rem;
  color: #f72e91;
  transition: transform 0.3s ease-in-out;
}

.profile__social-link {
  text-decoration: none;
  font-weight: 600;
  color: #63123a;
  transition: color 0.3s ease-in-out;
}

.business-account {
  font-weight: bold;
  color: #63123a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.business-account i {
  color: #f72e91;
  font-size: 1.3rem;
}

.profile__social-check {
  font-size: 1.25rem;
  color: #63123A;
  transition: .3s;
}

.profile__social-link:hover {
  color: var(--first-color);
}

.profile__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center aligns items */
  gap: 1rem;
}

.profile__info-group {
  text-align: center;
}

.profile__info-number {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  margin-bottom: .25rem;
}

.profile__info-bio {
  width: 100%; /* Ensures it takes up the full width */
  text-align: center;
  font-size: var(--smaller-font-size);
  font-weight: 500;
  margin-top: 1rem;
}

.profile__info-description {
  font-size: var(--smaller-font-size);
  font-weight: 500;
}

.profile__buttons, 
.profile__buttons-small {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile__buttons {
  column-gap: 1rem;
}

.profile__buttons-small {
  column-gap: .25rem;
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  background-color: var(--first-color);
  color: #fff;
  padding: 1.15rem 1.5rem;
  border-radius: .5rem;
  transition: .3s;
  box-shadow: 0 8px 24px hsla(var(--hue), var(--sat), var(--lig), .25);
}

.button i {
  font-size: 1.25rem;
}

.button:hover {
  background-color: var(--first-color-alt);
}

.button__small {
  padding: .75rem;
  box-shadow: none;
}

.button__gray {
  background-color: var(--text-color-lighten);
  color: var(--title-color);
}

.button__gray:hover {
  background-color: var(--text-color-light);
}

.stickybottomnav-profile {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f1f1f1;
  padding: 10px;
  border-top: 1px solid var(--body-color);
  z-index: 9999;
}

@media screen and (max-width: 767px) {
    body:has(.nav__menu) .stickybottomnav-profile {
        bottom: 64px;
    }
}

.secondbutton-profile a {
  display: inline-block;
  background-color: #f72e91;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  width: 80%;
}

/*=============== FILTERS TABS===============*/
.filters__content {
  margin: 2rem 0 2.5rem;
  background-color: var(--text-color-lighten);
  padding: .375rem;
  border-radius: .75rem;
  display: flex;
  justify-content: space-between;
  column-gap: .5rem;
}

.filters__button {
  width: 100%;
  border: none;
  outline: none;
  padding: 1rem;
  color: var(--title-color);
  font-size: var(--small-font-size);
  font-family: var(--body-font);
  font-weight: 500;
  border-radius: .75rem;
  cursor: pointer;
  background-color: transparent;
  transition: .3s;
}

.filters__button:hover {
  background-color: var(--body-color);
}

/*=============== SERVICES (OR CAMPAIGNS) ===============*/
.projects__card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.projects__card img {
  width: 100%;
  height: 100%;
}

.projects__modal {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0; /* Change this line from 'bottom: -100%;' to 'bottom: 0;' */
  left: 0;
  background: linear-gradient(180deg, hsla(var(--hue), 24%, 40%, .3) 0%, #63123a 95%);
  display: grid;
  align-items: flex-end;
  padding: 1.5rem 1.25rem;
  transition: .3s;
}

.projects__subtitle, 
.projects__title {
  color: #fff;
}

.projects__subtitle {
  font-size: var(--smaller-font-size);
}

.projects__title {
  font-size: var(--h3-font-size);
  margin-bottom: .75rem;
}

.projects__button {
  padding: .5rem;
}

.projects__card:hover .projects__modal {
  bottom: 0;
}

/*=============== SKILLS (Or Posts) ===============*/
.skills__content {
  row-gap: 3.5rem;
}

.skills__title {
  font-size: var(--h3-font-size);
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: var(--body-font);
}

.skills__box {
  display: flex;
  justify-content: center;
  column-gap: 3rem;
}

.skills__group {
  display: grid;
  align-content: flex-start;
  row-gap: 1rem;
}

.skills__data {
  display: flex;
  column-gap: .5rem;
}

.skills__data i {
  font-size: 1rem;
  color: var(--first-color);
}

.skills__name {
  font-size: var(--normal-font-size);
  font-weight: 500;
  line-height: 18px;
}

.skills__level {
  font-size: var(--smaller-font-size);
}

/* Hide and show projects & skills */
.filters [data-content] {
  display: none;
}

.filters__active[data-content] {
  display: grid;
}

/* Activate button filter */
.filter-tab-active {
  background-color: var(--white);
}


/*=============== FOOTER ===============*/
.footer__copy {
  display: block;
  margin: 2.5rem 0 2rem;
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
}


/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
  .container {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .profile__info {
    column-gap: 1.5rem;
  }
  .profile__buttons {
    flex-direction: column;
    row-gap: 1rem;
  }

  .posts__content {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

/* For medium devices */
@media screen and (min-width: 576px) {
  .projects__content {
    grid-template-columns: 332px;
    justify-content: center;
  }

  .filters__content {
    width: 332px;
    margin: 3rem auto;
  }
}

@media screen and (min-width: 776px) {
  .projects__content,
  /*=============== POSTS ===============*/
.posts__content {
  row-gap: 3rem;
}

.posts__title {
  font-size: var(--normal-font-size);
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--first-color);
}

.posts__box {
  display: flex;
  justify-content: center;
  column-gap: 3rem;
}

.posts__content {
  display: grid;
  gap: 1.5rem;
}

.posts__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.post__item {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.post__title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.post__date {
  font-size: 0.9rem;
  color: #666;
}

.post__content {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.post__locked {
  text-align: center;
  padding: 20px;
  border: 2px dashed #f72e91;
  border-radius: 8px;
  background-color: #fff8f9;
}

.post__locked p {
  font-size: 1rem;
  color: #f72e91;
  margin-bottom: 10px;
}

}

/* For large devices */
@media screen and (min-width: 992px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  .change-theme {
    top: 2.5rem;
    right: 2.5rem;
  }

  .profile {
    padding-top: 4rem;
  }
  .profile__border {
    width: 135px;
    height: 135px;
    margin-bottom: 1rem;
  }
  .profile__perfil {
    width: 120px;
    height: 120px;
  }
  .profile__profession {
    margin-bottom: 1.5rem;
  }
  .profile__info {
    column-gap: 3rem;
  }
  .profile__info-description {
    font-size: var(--small-font-size);
  }
  .profile__buttons {
    column-gap: 2rem;
  }

  .projects__content {
    gap: 2rem 3rem;
  }
  .projects__modal {
    padding: 1.5rem;
  }

  .posts__content {
    grid-template-columns: repeat(2, 332px);
  }
  .posts__content {
    justify-content: center;
    column-gap: 3rem;
  }

  .footer__copy {
    margin: 4.5rem 0 2.5rem;
  }
}