/*
 * ============================================
 * VISIBLE.CA - APPELS D'OFFRES PAGE
 * CSS for Elementor Pro
 * Based on Figma Design System
 * ============================================
 */

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
  /* Primary Colors */
  --visible-primary: #00B1EB;
  --visible-primary-light: #8ED8F8;
  --visible-primary-bg: rgba(142, 216, 248, 0.4);
  --visible-primary-surface: #E8F7FE;
  
  /* Neutral Colors */
  --visible-bg: #F5F5F5;
  --visible-white: #FFFFFF;
  --visible-black: #000000;
  --visible-dark: #202020;
  --visible-text-primary: #1B1B21;
  --visible-text-secondary: #46464F;
  --visible-text-muted: #777680;
  --visible-secondary: #41455F;
  --visible-divider: #D9D9D9;
  --visible-border: #777680;
  
  /* Typography - Font Families */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-ui: 'Gotham', 'Inter', sans-serif;
  
  /* Typography - Heading Sizes */
  --h2-size: 74px;
  --h2-line: 90%;
  --h2-spacing: -4px;
  
  --h4-size: 46px;
  --h4-line: 63px;
  --h4-spacing: -2px;
  
  --h6-size: 28px;
  --h6-line: 95%;
  --h6-spacing: -1px;
  
  --c1-size: 22px;
  --c1-line: 30px;
  --c1-spacing: -1px;
  
  --c2-size: 18px;
  --c2-line: 25px;
  
  --body-size: 16px;
  --body-line: 22px;
  
  --small-size: 13px;
  --small-line: 95%;
  
  --label-large: 14px;
  --label-medium: 12px;
  --label-small: 11px;
  
  /* Border Radius */
  --radius-card: 20px;
  --radius-button: 100px;
  --radius-search: 28px;
  --radius-chip: 8px;
  --radius-checkbox: 2px;
  --radius-small: 10px;
  
  /* Spacing */
  --space-xs: 5px;
  --space-sm: 10px;
  --space-md: 16px;
  --space-lg: 20px;
  --space-xl: 30px;
  --space-2xl: 50px;
  --space-3xl: 55px;
  
  /* Shadows */
  --shadow-card: 0px 4px 44px rgba(0, 0, 0, 0.25);
  --shadow-soft: 0px 2px 10px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ============================================
   BASE STYLES
   ============================================ */
.visible-page {
  background: var(--visible-bg);
  font-family: var(--font-body);
  color: var(--visible-text-primary);
}

/* ============================================
   TYPOGRAPHY CLASSES
   ============================================ */

/* Heading H2 - Hero Title */
.visible-h2,
.elementor-widget-heading.visible-h2 h1,
.elementor-widget-heading.visible-h2 h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--h2-size);
  line-height: var(--h2-line);
  letter-spacing: var(--h2-spacing);
  color: var(--visible-white);
}

/* Heading H4 - Card Titles */
.visible-h4,
.elementor-widget-heading.visible-h4 h2,
.elementor-widget-heading.visible-h4 h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--h4-size);
  line-height: var(--h4-line);
  letter-spacing: var(--h4-spacing);
  color: var(--visible-dark);
}

/* Heading H6 - Section Titles */
.visible-h6,
.elementor-widget-heading.visible-h6 h3,
.elementor-widget-heading.visible-h6 h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--h6-size);
  line-height: var(--h6-line);
  letter-spacing: var(--h6-spacing);
  color: var(--visible-black);
}

/* Caption C1 - Filter Titles */
.visible-c1 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--c1-size);
  line-height: var(--c1-line);
  letter-spacing: var(--c1-spacing);
  color: var(--visible-black);
}

/* Caption C2 - Card Subtitles */
.visible-c2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--c2-size);
  line-height: var(--c2-line);
  color: var(--visible-secondary);
}

/* Body Regular */
.visible-body {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--visible-dark);
}

/* Body Muted */
.visible-body-muted {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--visible-dark);
  opacity: 0.5;
}

/* Small Text */
.visible-small {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--small-size);
  line-height: var(--small-line);
  color: var(--visible-text-muted);
}

/* Label Large */
.visible-label-lg {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--label-large);
  line-height: 20px;
  letter-spacing: 0.1px;
  color: var(--visible-text-secondary);
}

/* Counter/Badge Text */
.visible-counter {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--visible-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.visible-hero {
  position: relative;
  background: linear-gradient(0deg, var(--visible-primary), var(--visible-primary)), 
              url('your-pattern-image.jpg');
  background-blend-mode: soft-light, normal;
  border-radius: var(--radius-small);
  padding: 80px 40px;
  text-align: center;
}

.visible-hero-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--h2-size);
  line-height: var(--h2-line);
  letter-spacing: var(--h2-spacing);
  color: var(--visible-white);
  margin-bottom: var(--space-lg);
}

/* ============================================
   SEARCH BAR
   ============================================ */
.visible-search-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
}

.visible-search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4px;
  gap: 4px;
  background: var(--visible-white);
  border-radius: var(--radius-search);
  width: 100%;
  max-width: 360px;
  height: 56px;
}

.visible-search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-ui);
  font-weight: 325;
  font-size: 16px;
  line-height: 24px;
  color: var(--visible-text-secondary);
  padding: 0 var(--space-md);
}

.visible-search-bar input::placeholder {
  color: var(--visible-text-secondary);
}

.visible-search-bar input:focus {
  outline: none;
}

.visible-search-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--visible-text-secondary);
}

/* Filter Button */
.visible-filter-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 15px;
  gap: var(--space-sm);
  background: var(--visible-white);
  border: 1px solid var(--visible-border);
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--visible-text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.visible-filter-btn:hover {
  background: var(--visible-bg);
  border-color: var(--visible-primary);
}

/* ============================================
   SORT & VIEW CONTROLS
   ============================================ */
.visible-controls-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) 0;
}

.visible-results-info {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.visible-results-count {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--h6-size);
  line-height: var(--h6-line);
  letter-spacing: var(--h6-spacing);
  color: var(--visible-black);
}

.visible-results-number {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--visible-primary);
}

.visible-view-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.visible-view-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.visible-view-btn.active {
  background: var(--visible-primary-surface);
}

.visible-view-btn.active svg {
  color: var(--visible-primary);
}

.visible-view-btn svg {
  width: 24px;
  height: 24px;
  color: var(--visible-black);
}

.visible-sort-dropdown {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--visible-text-secondary);
}

/* ============================================
   FILTERS SIDEBAR
   ============================================ */
.visible-filters-sidebar {
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  padding-right: var(--space-xl);
}

.visible-filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.visible-filter-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--c1-size);
  line-height: var(--c1-line);
  letter-spacing: var(--c1-spacing);
  color: var(--visible-black);
}

.visible-filter-list {
  display: flex;
  flex-direction: column;
}

/* Filter List Item */
.visible-filter-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 16px;
  gap: var(--space-md);
  min-height: 56px;
  background: var(--visible-bg);
  cursor: pointer;
  transition: var(--transition-fast);
}

.visible-filter-item:hover {
  background: var(--visible-primary-surface);
}

/* Custom Checkbox */
.visible-checkbox-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visible-checkbox {
  width: 18px;
  height: 18px;
  border-radius: var(--radius-checkbox);
  border: 2px solid var(--visible-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.visible-filter-item.active .visible-checkbox,
.visible-checkbox.checked {
  background: var(--visible-primary);
  border-color: var(--visible-primary);
}

.visible-checkbox svg {
  width: 12px;
  height: 12px;
  color: var(--visible-white);
  opacity: 0;
  transition: var(--transition-fast);
}

.visible-filter-item.active .visible-checkbox svg,
.visible-checkbox.checked svg {
  opacity: 1;
}

.visible-filter-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--visible-text-primary);
}

/* ============================================
   CALL/APPEL CARDS
   ============================================ */
.artpublic.cards-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.artpublic.call-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: var(--space-xl) var(--space-lg);
  gap: var(--space-lg);
  background: var(--visible-white);
  border-radius: var(--radius-card);
  transition: var(--transition-normal);
}

.artpublic.call-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

/* Card Image */
.artpublic.card-image {
  width: 344px;
  height: 344px;
  flex-shrink: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.artpublic.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Content */
.artpublic.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 344px;
  gap: var(--space-lg);
}

/* Card Header */
.artpublic.card-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.artpublic.card-type {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--c2-size);
  line-height: var(--c2-line);
  color: var(--visible-secondary);
}

.artpublic.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--h4-size);
  line-height: var(--h4-line);
  letter-spacing: var(--h4-spacing);
  color: var(--visible-dark);
  margin: 0;
}

/* Card Meta */
.artpublic.card-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-xl);
}

.visible-profile-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}

.visible-profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--visible-white);
}

.visible-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visible-profile-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--c2-size);
  line-height: var(--c2-line);
  color: var(--visible-black);
}

.visible-location {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.visible-location-icon {
  width: 24px;
  height: 24px;
  color: var(--visible-text-muted);
}

.visible-location-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--visible-text-muted);
}

/* Card Description */
.artpublic.card-description {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--visible-dark);
  opacity: 0.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card Tags/Chips */
.artpublic.card-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-lg);
}

.visible-chip {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 16px;
  border: 1px solid var(--visible-border);
  border-radius: var(--radius-chip);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--label-large);
  line-height: 20px;
  letter-spacing: 0.1px;
  color: var(--visible-text-secondary);
  transition: var(--transition-fast);
}

.visible-chip:hover {
  background: var(--visible-bg);
  border-color: var(--visible-primary);
  color: var(--visible-primary);
}

.visible-chip.active {
  background: var(--visible-primary-bg);
  border-color: var(--visible-primary);
  color: var(--visible-primary);
}

/* Card Info Blocks */
.artpublic.card-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: var(--space-sm);
  gap: var(--space-sm);
}

.visible-info-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  width: 198px;
}

.visible-info-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--small-size);
  line-height: var(--small-line);
  color: var(--visible-text-muted);
}

.visible-info-value {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: var(--body-size);
  line-height: var(--body-line);
  color: var(--visible-black);
}

/* Card Actions */
.artpublic.card-actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 143px;
  align-self: stretch;
}

.artpublic.card-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-lg);
}

.visible-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--visible-primary-bg);
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.visible-icon-btn:hover {
  background: var(--visible-primary-light);
}

.visible-icon-btn svg {
  width: 24px;
  height: 24px;
  color: var(--visible-primary);
}

/* View Details Button */
.visible-btn-details {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  background: var(--visible-primary-bg);
  border-radius: 100px;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--label-large);
  line-height: 20px;
  letter-spacing: 0.1px;
  color: var(--visible-primary);
  cursor: pointer;
  transition: var(--transition-fast);
  width: 100%;
}

.visible-btn-details:hover {
  background: var(--visible-primary);
  color: var(--visible-white);
}

/* ============================================
   PREMIUM BANNER
   ============================================ */
.visible-premium-banner {
  position: relative;
}

.visible-premium-card {
  background: var(--visible-white);
  border-radius: var(--radius-card);
  opacity: 0.5;
  filter: blur(35px);
  padding: var(--space-xl);
}

.visible-premium-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.visible-premium-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--h6-size);
  line-height: var(--h6-line);
  letter-spacing: var(--h6-spacing);
  color: var(--visible-black);
  margin-bottom: var(--space-lg);
}

/* ============================================
   BUTTONS
   ============================================ */

/* Primary Button */
.visible-btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  gap: 8px;
  background: var(--visible-primary);
  border-radius: var(--radius-button);
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--label-large);
  line-height: 20px;
  letter-spacing: 0.1px;
  color: var(--visible-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.visible-btn-primary:hover {
  background: #009ad0;
  transform: translateY(-1px);
}

/* Secondary Button */
.visible-btn-secondary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  gap: 8px;
  background: var(--visible-primary-bg);
  border-radius: var(--radius-button);
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--label-large);
  line-height: 20px;
  letter-spacing: 0.1px;
  color: var(--visible-primary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.visible-btn-secondary:hover {
  background: var(--visible-primary);
  color: var(--visible-white);
}

/* Outlined Button */
.visible-btn-outline {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--visible-border);
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--label-large);
  line-height: 20px;
  letter-spacing: 0.1px;
  color: var(--visible-text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.visible-btn-outline:hover {
  border-color: var(--visible-primary);
  color: var(--visible-primary);
}

/* ============================================
   HEADER/NAVIGATION
   ============================================ */
.visible-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  height: 80px;
  background: var(--visible-white);
}

.visible-nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 27px;
}

.visible-nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--visible-text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.visible-nav-link:hover {
  color: var(--visible-primary);
}

.visible-user-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-sm);
}

.visible-user-name {
  font-family: var(--font-ui);
  font-weight: 350;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: var(--visible-black);
}

.visible-user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 6px solid var(--visible-white);
  overflow: hidden;
}

.visible-notification-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.visible-notification-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--visible-primary);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: var(--visible-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.visible-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 50px 0;
  gap: 61px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--visible-white);
}

.visible-footer-content {
  display: flex;
  flex-direction: row;
  gap: 54px;
  width: 100%;
  max-width: 1820px;
}

.visible-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 44px;
  width: 348px;
}

.visible-footer-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--visible-black);
  opacity: 0.5;
}

.visible-footer-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 250px;
}

.visible-footer-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  color: var(--visible-black);
  opacity: 0.5;
}

.visible-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.visible-footer-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: var(--visible-black);
  text-decoration: none;
  transition: var(--transition-fast);
}

.visible-footer-link:hover {
  color: var(--visible-primary);
}

.visible-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  max-width: 1820px;
}

.visible-footer-divider {
  width: 100%;
  height: 2px;
  background: var(--visible-divider);
}

.visible-footer-legal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.visible-footer-legal span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  color: var(--visible-black);
  opacity: 0.5;
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.visible-main-layout {
  display: flex;
  flex-direction: row;
  gap: var(--space-xl);
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 45px;
}

.visible-sidebar {
  width: 360px;
  flex-shrink: 0;
}

.visible-main-content {
  flex: 1;
  min-width: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1200px) {
  :root {
    --h2-size: 56px;
    --h4-size: 36px;
    --h6-size: 24px;
  }
  
  .artpublic.call-card {
    flex-direction: column;
  }
  
  .artpublic.card-image {
    width: 100%;
    height: 250px;
  }
  
  .artpublic.card-content {
    min-height: auto;
  }
  
  .artpublic.card-actions {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  
  .visible-main-layout {
    flex-direction: column;
  }
  
  .visible-sidebar {
    width: 100%;
  }
  
  .visible-filters-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-lg);
  }
  
  .visible-filter-group {
    flex: 1;
    min-width: 250px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --h2-size: 40px;
    --h4-size: 28px;
    --h6-size: 20px;
    --c1-size: 18px;
    --c2-size: 16px;
  }
  
  .visible-header {
    padding: 0 20px;
  }
  
  .visible-main-layout {
    padding: 0 20px;
  }
  
  .artpublic.card-info {
    flex-direction: column;
  }
  
  .visible-info-block {
    width: 100%;
  }
  
  .artpublic.card-tags {
    flex-wrap: wrap;
  }
  
  .visible-footer-content {
    flex-direction: column;
  }
  
  .visible-footer-column {
    width: 100%;
  }
  
  .visible-footer-legal {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .visible-search-wrapper {
    flex-direction: column;
  }
  
  .visible-search-bar {
    max-width: 100%;
  }
}

/* ============================================
   ELEMENTOR SPECIFIC OVERRIDES
   ============================================ */

/* Reset Elementor defaults */
.elementor-widget-container {
  font-family: var(--font-body);
}

/* Elementor buttons */
.elementor-button.visible-btn-primary {
  background-color: var(--visible-primary) !important;
  border-radius: var(--radius-button) !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  padding: 10px 24px !important;
}

.elementor-button.visible-btn-primary:hover {
  background-color: #009ad0 !important;
}

/* Elementor headings */
.elementor-heading-title.visible-h2 {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  letter-spacing: var(--h2-spacing) !important;
}

.elementor-heading-title.visible-h4 {
  font-family: var(--font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: var(--h4-spacing) !important;
}

/* Elementor containers */
.elementor-section.visible-bg {
  background-color: var(--visible-bg) !important;
}

.elementor-section.visible-hero {
  background: linear-gradient(0deg, var(--visible-primary), var(--visible-primary)) !important;
}

/* JetSmartFilters Integration */
.jet-filter-items-dropdown {
  border-radius: var(--radius-search) !important;
  font-family: var(--font-body) !important;
}

.jet-checkboxes-list__row {
  padding: 8px 16px !important;
  background: var(--visible-bg) !important;
}

.jet-checkboxes-list__label {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: var(--visible-text-primary) !important;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.visible-text-primary { color: var(--visible-primary); }
.visible-text-dark { color: var(--visible-dark); }
.visible-text-muted { color: var(--visible-text-muted); }
.visible-bg-white { background: var(--visible-white); }
.visible-bg-light { background: var(--visible-bg); }
.visible-bg-primary { background: var(--visible-primary); }
.visible-rounded-card { border-radius: var(--radius-card); }
.visible-rounded-btn { border-radius: var(--radius-button); }
.visible-shadow { box-shadow: var(--shadow-soft); }
