/**
 * Profile Page Styles
 * Styles specific to business profile pages
 */
/* === ARTICLE PAGE SPECIFIC STYLES === */
body {
  padding-top: 136px; /* Primary navbar (56px) + Secondary navbar (60px) + spacing (20px) - ARTICLE SPECIFIC */
}

/* Article page mobile body padding adjustment */
@media (max-width: 767px) {
  body {
    padding-top: 126px; /* Primary navbar (56px) + Secondary navbar (50px) + spacing (20px) */
  }
}

/* === PROFILE HEADER SECTION === */
.profile-header {
  background: var(--surface-bg);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(var(--primary-color-rgb), 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.profile-title-section {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.profile-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--border-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.profile-title-info h1 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.profile-location {
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-location i {
  color: var(--primary-color);
}

/* === PROFILE CONTACT INFO === */
.profile-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem;
  background: var(--body-bg);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.05) 0%, rgba(var(--secondary-color-rgb), 0.05) 100%);
}

.contact-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--primary-color);
}

/* === SOCIAL MEDIA LINKS === */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: var(--text-white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.4);
  color: var(--text-white);
}

/* === PROFILE CONTENT SECTIONS === */
.profile-section {
  background: var(--surface-bg);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(var(--primary-color-rgb), 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.profile-section h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.profile-section h3 i {
  color: var(--primary-color);
}

/* === MENU & SERVICES SECTION === */
.menu-services-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.menu-services-buttons .btn {
  flex: 1;
  min-width: 180px;
  text-align: center;
  white-space: nowrap;
}

.menu-services-buttons .btn i {
  margin-right: 0.5rem;
}

/* === ABOUT SECTION WITH CAROUSEL === */
.about-content {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.image-carousel {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 0.5rem;
}

/* === HOURS SECTION === */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hours-category {
  background: var(--body-bg);
  border-radius: 10px;
  padding: 1rem;
  border: 1px solid var(--border-light);
}

.hours-category h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.hours-table th {
  background: var(--surface-bg);
  color: var(--primary-color);
  font-weight: 600;
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 2px solid var(--primary-color);
  font-size: 0.8rem;
}

.hours-table th:first-child {
  border-radius: 8px 0 0 0;
  width: 25%;
}

.hours-table th:nth-child(2) {
  width: 37.5%;
}

.hours-table th:last-child {
  border-radius: 0 8px 0 0;
  width: 37.5%;
}

.hours-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table tr:hover {
  background: rgba(var(--primary-color-rgb), 0.05);
}

.hours-day {
  font-weight: 500;
  color: var(--text-primary);
}

.hours-time {
  color: var(--text-secondary);
  font-weight: 400;
}

/* === ARTICLES LIST STYLES === */
.articles-container {
  margin-top: 1rem;
}

.article-card {
  background: var(--surface-bg);
  border-radius: 12px;
  padding: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(var(--primary-color-rgb), 0.08);
}

.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.15);
}

.article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: 1.5rem;
}

.article-category {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  width: auto;
  max-width: fit-content;
}

.article-title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: var(--secondary-color);
}

.article-blurb {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: var(--secondary-color);
  transform: translateX(3px);
}

.read-more-link i {
  transition: transform 0.3s ease;
}

.read-more-link:hover i {
  transform: translateX(3px);
}

/* === FEATURED RESTAURANTS STYLES === */
.featured-restaurants {
  margin-top: 1rem;
}

.featured-restaurant-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: var(--surface-bg);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.featured-restaurant-item:hover {
  background: var(--body-bg);
  transform: translateX(3px);
}

.restaurant-logo {
  flex-shrink: 0;
}

.restaurant-logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--border-light);
}

.restaurant-info {
  flex: 1;
  min-width: 0;
}

.restaurant-name {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.restaurant-name a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.restaurant-name a:hover {
  color: var(--secondary-color);
}

.restaurant-location {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.restaurant-location i {
  color: var(--primary-color);
  font-size: 0.7rem;
}

/* === NEWSLETTER SIGNUP STYLES === */
.newsletter-signup {
  margin-top: 1rem;
}

.newsletter-signup p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.newsletter-signup .form-control {
  border: 1px solid var(--border-light);
  font-size: 0.9rem;
  padding: 0.6rem;
}

.newsletter-signup .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

.newsletter-signup .btn {
  padding: 0.6rem 1rem;
}

/* === DAILY EVENTS CARDS === */
.daily-events-container {
  margin-top: 1rem;
}

.daily-events-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5rem;
  margin: 0 -0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--surface-bg);
  scroll-snap-type: x mandatory;
}

.daily-events-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.daily-events-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--surface-bg);
  border-radius: 3px;
}

.daily-events-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.daily-events-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

.daily-events-grid {
  display: flex;
  gap: 1rem;
  padding: 0 0.5rem;
  width: fit-content;
}

.day-events-card {
  background: var(--body-bg);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  flex: 0 0 300px;
  min-width: 300px;
  max-height: 400px;
  overflow-y: auto;
  scroll-snap-align: start;
}

.day-events-card h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.day-events-card h5 i {
  color: var(--primary-color);
  font-size: 1rem;
}

.event-item {
  background: var(--surface-bg);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.event-item:last-child {
  margin-bottom: 0;
}

.event-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  gap: 0.25rem;
}

.event-type {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.event-time {
  color: var(--text-secondary);
  font-size: 0.85rem;
  background: var(--border-light);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  align-self: flex-start;
}

.event-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

/* === DEALS CARDS === */
.deals-container {
  margin-top: 1rem;
}

.deals-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.5rem;
  margin: 0 -0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--surface-bg);
  scroll-snap-type: x mandatory;
}

.deals-scroll-wrapper::-webkit-scrollbar {
  height: 6px;
}

.deals-scroll-wrapper::-webkit-scrollbar-track {
  background: var(--surface-bg);
  border-radius: 3px;
}

.deals-scroll-wrapper::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 3px;
}

.deals-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

.deals-grid {
  display: flex;
  gap: 1rem;
  padding: 0 0.5rem;
  width: fit-content;
}

.deal-card {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.05) 0%, rgba(var(--secondary-color-rgb), 0.05) 100%);
  border-radius: 12px;
  padding: 1.25rem;
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 0 0 320px;
  min-width: 320px;
  scroll-snap-align: start;
}

.deal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.deal-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.3;
}

.deal-badge {
  background: var(--gradient-primary);
  color: var(--text-white);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.deal-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.deal-dates {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.deal-date-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface-bg);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid var(--border-light);
}

.deal-date-label {
  color: var(--text-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.deal-date-value {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
}

/* === LEGACY DEALS TABLE (kept for fallback) === */
.deals-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.deals-table th,
.deals-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

.deals-table th {
  background: var(--gradient-primary);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
}

.deals-table td {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.deals-table .deal-title {
  color: var(--primary-color);
  font-weight: 600;
}

/* === MAP AND AD SECTION === */
.map-ad-container {
  text-align: center;
}

.map-placeholder {
  width: 100%;
  height: 250px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.3);
}

.ad-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--secondary-color-rgb), 0.1) 100%);
  border: 2px dashed var(--border-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

/* === SIDEBAR STYLES === */
.sidebar-section {
  background: var(--surface-bg);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(var(--primary-color-rgb), 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.sidebar-section h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-section h4 i {
  color: var(--primary-color);
}

/* === CATEGORIES LIST === */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.category-group h6 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.category-tag {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--secondary-color-rgb), 0.1) 100%);
  color: var(--primary-color);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.category-tag:hover {
  background: var(--gradient-primary);
  color: var(--text-white);
  transform: translateY(-1px);
}

/* === QUICK CLICKS === */
.quick-clicks-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-clicks-list li {
  margin-bottom: 0.25rem;
}

.quick-clicks-list a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.quick-clicks-list a:hover {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.05) 0%, rgba(var(--secondary-color-rgb), 0.05) 100%);
  transform: translateX(5px);
}

.quick-clicks-list i {
  color: var(--primary-color);
  width: 16px;
  text-align: center;
}

/* === EVENT CALENDAR === */
.calendar-container {
  background: var(--body-bg);
  border-radius: 10px;
  padding: 0.75rem;
  margin-top: 0.75rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.calendar-header h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0;
  font-size: 0.9rem;
}

.calendar-nav {
  background: none;
  border: none;
  color: var(--primary-color);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calendar-nav:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.15rem;
  max-width: 100%;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-bg);
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 24px;
  max-height: 32px;
}

.calendar-day:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

.calendar-day.today {
  background: var(--gradient-primary);
  color: var(--text-white);
  font-weight: 600;
}

.calendar-day.has-event {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.2) 0%, rgba(var(--secondary-color-rgb), 0.2) 100%);
  color: var(--primary-color);
  font-weight: 600;
}

/* === FEATURED RESTAURANTS === */
.featured-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.featured-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: var(--body-bg);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.featured-item:hover {
  background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.05) 0%, rgba(var(--secondary-color-rgb), 0.05) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.1);
}

.featured-logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  flex-shrink: 0;
}

.featured-info h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  font-size: 0.9rem;
  line-height: 1.2;
}

.featured-location {
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin: 0;
}

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
  .profile-title-section {
    flex-direction: column;
  }
  
  .profile-logo {
    width: 80px;
    height: 80px;
    align-self: center;
  }
  
  .profile-title-info h1 {
    font-size: 1.4rem;
  }
  
  .profile-contact-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .contact-item {
    padding: 0.5rem;
  }
  
  .hours-grid {
    grid-template-columns: 1fr;
  }
  
  .hours-sections {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .social-links {
    justify-content: center;
    gap: 0.5rem;
  }
  
  /* Menu & Services Mobile Styles */
  .menu-services-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .menu-services-buttons .btn {
    flex: none;
    min-width: auto;
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .menu-services-buttons .btn:last-child {
    margin-bottom: 0;
  }
  
  /* Daily Events Mobile Styles */
  .daily-events-scroll-wrapper {
    margin: 0 -1rem;
  }
  
  .daily-events-grid {
    padding: 0 1rem;
    gap: 0.75rem;
    width: fit-content;
  }
  
  .day-events-card {
    padding: 1rem;
    flex: 0 0 280px;
    min-width: 280px;
    max-height: 350px;
  }
  
  .day-events-card h5 {
    font-size: 1rem;
  }
  
  .event-item {
    padding: 0.65rem;
  }
  
  /* Deals Mobile Styles */
  .deals-scroll-wrapper {
    margin: 0 -1rem;
  }
  
  .deals-grid {
    padding: 0 1rem;
    gap: 0.75rem;
    width: fit-content;
  }
  
  .deal-card {
    padding: 1rem;
    flex: 0 0 280px;
    min-width: 280px;
  }
  
  .deal-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .deal-badge {
    align-self: flex-start;
  }
  
  .deal-dates {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  /* Articles Mobile Styles */
  .article-image {
    height: 180px;
  }
  
  .article-content {
    padding: 1rem;
  }
  
  .article-category {
    font-size: 0.75rem;
    padding: 0.25rem 0.8rem;
    margin-bottom: 0.8rem;
  }

  .article-title {
    font-size: 1.1rem;
  }
  
  .article-blurb {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
  
  .featured-restaurant-item {
    padding: 0.6rem;
  }
  
  .restaurant-logo img {
    width: 45px;
    height: 45px;
  }
  
  .restaurant-name {
    font-size: 0.9rem;
  }
  
  .restaurant-location {
    font-size: 0.75rem;
  }
  
  .calendar-container {
    padding: 0.5rem;
  }
  
  .calendar-header h5 {
    font-size: 0.85rem;
  }
  
  .calendar-nav {
    font-size: 0.9rem;
    min-width: 20px;
    height: 20px;
  }
  
  .calendar-day {
    font-size: 0.65rem;
    min-height: 20px;
    max-height: 28px;
  }
  
  .deals-table {
    font-size: 0.8rem;
  }
  
  .deals-table th,
  .deals-table td {
    padding: 0.5rem;
  }
}

@media (max-width: 576px) {
  /* Extra small screens - stack menu buttons vertically */
  .menu-services-buttons .btn {
    font-size: 0.85rem;
    padding: 0.65rem 0.8rem;
  }
  
  .menu-services-buttons .btn i {
    margin-right: 0.3rem;
    font-size: 0.9rem;
  }
  
  /* Extra small daily events styles */
  .daily-events-grid {
    gap: 0.5rem;
    width: fit-content;
  }
  
  .day-events-card {
    padding: 0.75rem;
    flex: 0 0 250px;
    min-width: 250px;
    max-height: 300px;
  }
  
  .day-events-card h5 {
    font-size: 0.95rem;
  }
  
  .event-type {
    font-size: 0.9rem;
  }
  
  .event-time {
    font-size: 0.8rem;
  }
  
  .event-description {
    font-size: 0.85rem;
  }
  
  /* Extra small deals styles */
  .deals-grid {
    gap: 0.5rem;
    width: fit-content;
  }
  
  .deal-card {
    padding: 0.75rem;
    flex: 0 0 250px;
    min-width: 250px;
  }
  
  .deal-title {
    font-size: 1rem;
  }
  
  .deal-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
  }
  
  .deal-description {
    font-size: 0.85rem;
  }
  
  .deal-date-label {
    font-size: 0.6rem;
  }
  
  .deal-date-value {
    font-size: 0.7rem;
  }
  
  /* Extra small articles styles */
  .article-card {
    margin-bottom: 1.5rem;
  }
  
  .article-image {
    height: 160px;
  }
  
  .article-content {
    padding: 0.75rem;
  }
  
  .article-title {
    font-size: 1rem;
  }
  
  .article-blurb {
    font-size: 0.85rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  
  .featured-restaurant-item {
    padding: 0.5rem;
    gap: 0.75rem;
  }
  
  .restaurant-logo img {
    width: 40px;
    height: 40px;
  }
  
  .restaurant-name {
    font-size: 0.85rem;
  }
  
  .calendar-day {
    font-size: 0.6rem;
    min-height: 18px;
    max-height: 24px;
  }
  
  .profile-title-info h1 {
    font-size: 1.2rem;
  }
  
  .profile-logo {
    width: 70px;
    height: 70px;
  }
  
  /* Make deals table more compact on very small screens */
  .deals-table {
    font-size: 0.75rem;
  }
  
  .deals-table th,
  .deals-table td {
    padding: 0.4rem 0.3rem;
  }
}

/* === ARTICLE DETAIL STYLES === */
.article-detail {
  background: var(--surface-bg);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(var(--primary-color-rgb), 0.1);
  padding: 0;
  margin-bottom: 2rem;
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  overflow: hidden;
}

.article-hero-image {
  width: 100%;
  margin-bottom: 0;
}

.article-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
}

.article-header {
  padding: 2rem 2rem 1rem 2rem;
}

.article-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-meta i {
  color: var(--accent-color);
  width: 16px;
}

.article-blurb {
  padding: 0 2rem 1rem 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: rgba(var(--primary-color-rgb), 0.02);
  border-top: 1px solid rgba(var(--primary-color-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.article-content {
  padding: 1.5rem 2rem;
}

.content-section {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.content-section p {
  margin-bottom: 1rem;
}

.content-image {
  margin-bottom: 2.5rem;
  text-align: center;
}

.content-image img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.75rem;
}

.image-caption {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
  padding: 0 1rem;
}

.article-links {
  padding: 2rem;
  background: rgba(var(--primary-color-rgb), 0.02);
  border-top: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.article-links h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.event-details {
  background: var(--surface-bg);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.detail-item:last-child {
  margin-bottom: 0;
}

.detail-item i {
  color: var(--accent-color);
  width: 20px;
  text-align: center;
}

.detail-item strong {
  color: var(--text-primary);
  margin-right: 0.5rem;
}

.action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.action-links .btn {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-links .btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
}

.action-links .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.3);
}

.action-links .btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.action-links .btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.action-links .btn-outline-secondary {
  border: 2px solid var(--text-secondary);
  color: var(--text-secondary);
  background: transparent;
}

.action-links .btn-outline-secondary:hover {
  background: var(--text-secondary);
  color: white;
}

.article-share {
  padding: 2rem;
  background: var(--surface-bg);
  border-top: 1px solid rgba(var(--primary-color-rgb), 0.1);
}

.article-share h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0a66c2;
  color: white;
}

.share-btn.email {
  background: var(--text-secondary);
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Related Articles Styles */
.related-articles {
  background: var(--surface-bg);
}

.related-article-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(var(--primary-color-rgb), 0.1);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  background: var(--background-color);
}

.related-article-item:hover {
  box-shadow: 0 4px 15px rgba(var(--primary-color-rgb), 0.1);
  transform: translateY(-2px);
}

.related-article-item:last-child {
  margin-bottom: 0;
}

.related-article-image img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.related-article-content {
  flex: 1;
}

.related-article-content h6 {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.3;
}

.related-article-content h6 a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.related-article-content h6 a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.related-article-content p {
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

/* Responsive styles for article detail */
@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }
  
  .article-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  
  .article-blurb {
    padding: 0 1.5rem 1rem 1.5rem;
    font-size: 1rem;
  }
  
  .article-content {
    padding: 1rem 1.5rem;
  }
  
  .article-links {
    padding: 1.5rem;
  }
  
  .article-share {
    padding: 1.5rem;
  }
  
  .action-links .btn {
    min-width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .article-meta {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .event-details {
    padding: 1rem;
  }
  
  .detail-item {
    font-size: 0.9rem;
  }
  
  .content-image img {
    max-height: 250px;
  }
  
  .related-article-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  
  .related-article-image img {
    width: 60px;
    height: 45px;
  }
  
  .related-article-content h6 {
    font-size: 0.9rem;
  }
  
  .related-article-content p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .article-title {
    font-size: 1.6rem;
  }
  
  .article-header {
    padding: 1rem 1rem 0.75rem 1rem;
  }
  
  .article-blurb {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.95rem;
  }
  
  .article-content {
    padding: 1rem;
  }
  
  .article-links {
    padding: 1rem;
  }
  
  .article-share {
    padding: 1rem;
  }
  
  .article-hero-image img {
    height: 250px;
  }
  
  .content-image img {
    max-height: 200px;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .share-btn {
    justify-content: center;
  }
}