@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* New Color Palette */
  --she-int2-primary: #1a1a2e;
  --she-int2-secondary: #16213e;
  --she-int2-accent: #e94560;
  --she-int2-accent-hover: #ff6b81;
  --she-int2-light: #0f3460;
  --she-int2-light-alt: #533483;
  --she-int2-background: #0d1117;
  --she-int2-background-alt: #161b22;
  --she-int2-border: #30363d;
  --she-int2-text: #f0f6fc;
  --she-int2-text-muted: #8b949e;
  
  /* Gradients */
  --she-int2-gradient-primary: linear-gradient(135deg, #e94560 0%, #533483 100%);
  --she-int2-gradient-secondary: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
  --she-int2-gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  
  /* Typography */
  --she-int2-font-primary: "Inter", sans-serif;
  --she-int2-font-heading: "Manrope", sans-serif;
  --she-int2-font-ui: "Inter", sans-serif;
  --she-int2-font-size-base: 16px;
  --she-int2-font-weight-normal: 400;
  --she-int2-font-weight-medium: 500;
  --she-int2-font-weight-semibold: 600;
  --she-int2-font-weight-bold: 700;
  
  /* Spacing */
  --she-int2-spacing-xs: 8px;
  --she-int2-spacing-sm: 16px;
  --she-int2-spacing-md: 24px;
  --she-int2-spacing-lg: 32px;
  --she-int2-spacing-xl: 48px;
  --she-int2-spacing-xxl: 64px;
  
  /* Border Radius */
  --she-int2-radius-sm: 8px;
  --she-int2-radius: 12px;
  --she-int2-radius-lg: 16px;
  --she-int2-radius-xl: 24px;
  --she-int2-radius-round: 50%;
  
  /* Shadows */
  --she-int2-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --she-int2-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --she-int2-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --she-int2-shadow-accent: 0 4px 20px rgba(233, 69, 96, 0.3);
  
  /* Transitions */
  --she-int2-transition-fast: 0.2s ease;
  --she-int2-transition: 0.3s ease;
  --she-int2-transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-width: 360px;
  background: var(--she-int2-background);
  color: var(--she-int2-text);
  font-family: var(--she-int2-font-primary);
  font-size: var(--she-int2-font-size-base);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.she-int2-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--she-int2-spacing-md);
}

/* Header */
.she-int2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--she-int2-border);
  z-index: 1000;
  transition: var(--she-int2-transition);
}

.she-int2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--she-int2-spacing-sm) 0;
}

.she-int2-logo-img {
  height: 50px;
  transition: var(--she-int2-transition-fast);
}

.she-int2-logo-img:hover {
  transform: scale(1.05);
}

/* Desktop Navigation */
.she-int2-desktop-nav {
  display: flex;
  gap: var(--she-int2-spacing-md);
  align-items: center;
}

.she-int2-nav-link {
  color: var(--she-int2-text);
  text-decoration: none;
  font-family: var(--she-int2-font-ui);
  font-weight: var(--she-int2-font-weight-medium);
  font-size: 14px;
  padding: var(--she-int2-spacing-sm) var(--she-int2-spacing-md);
  border-radius: var(--she-int2-radius);
  transition: var(--she-int2-transition);
  position: relative;
  overflow: hidden;
}

.she-int2-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--she-int2-gradient-primary);
  transition: var(--she-int2-transition);
  z-index: -1;
}

.she-int2-nav-link:hover {
  color: white;
  transform: translateY(-2px);
}

.she-int2-nav-link:hover::before {
  left: 0;
}

/* Mobile Toggle */
.she-int2-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--she-int2-spacing-sm);
}

.she-int2-mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--she-int2-text);
  transition: var(--she-int2-transition);
  transform-origin: center;
}

/* Mobile Menu */
.she-int2-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--she-int2-transition);
}

.she-int2-overlay-active {
  opacity: 1;
  visibility: visible;
}

.she-int2-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100vh;
  background: var(--she-int2-background);
  z-index: 1000;
  transition: var(--she-int2-transition);
  border-right: 1px solid var(--she-int2-border);
  display: flex;
  flex-direction: column;
}

.she-int2-menu-active {
  left: 0;
}

.she-int2-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--she-int2-spacing-md);
  border-bottom: 1px solid var(--she-int2-border);
}

.she-int2-mobile-close {
  background: none;
  border: none;
  color: var(--she-int2-text);
  cursor: pointer;
  padding: var(--she-int2-spacing-sm);
}

.she-int2-mobile-nav {
  flex: 1;
  padding: var(--she-int2-spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--she-int2-spacing-sm);
}

.she-int2-mobile-link {
  color: var(--she-int2-text);
  text-decoration: none;
  font-family: var(--she-int2-font-ui);
  font-weight: var(--she-int2-font-weight-medium);
  padding: var(--she-int2-spacing-md);
  border-radius: var(--she-int2-radius);
  transition: var(--she-int2-transition);
  border: 1px solid transparent;
}

.she-int2-mobile-link:hover {
  background: var(--she-int2-background-alt);
  border-color: var(--she-int2-accent);
  transform: translateX(8px);
}

/* Main Content */
.she-int2-main {
  padding-top: 80px;
  min-height: 100vh;
}

/* Hero Sections */
.she-int2-hero,
.she-int2-profile-hero,
.she-int2-gallery-hero,
.she-int2-map-hero {
  text-align: center;
  padding: var(--she-int2-spacing-xxl) 0;
  margin: calc(-1 * var(--she-int2-spacing-md)) calc(-1 * var(--she-int2-spacing-md)) var(--she-int2-spacing-xl);
  position: relative;
  overflow: hidden;
}

.she-int2-hero::before,
.she-int2-profile-hero::before,
.she-int2-gallery-hero::before,
.she-int2-map-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(233, 69, 96, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(83, 52, 131, 0.1) 0%, transparent 50%);
}

.she-int2-hero-title,
.she-int2-profile-title,
.she-int2-gallery-title,
.she-int2-map-title {
  font-family: var(--she-int2-font-heading);
  font-size: 3rem;
  font-weight: var(--she-int2-font-weight-bold);
  margin-bottom: var(--she-int2-spacing-sm);
  position: relative;
  background: var(--she-int2-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.she-int2-gallery-subtitle,
.she-int2-map-description {
  font-size: 1.2rem;
  color: var(--she-int2-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FIXED MASONRY GRID ===== */
.she-int2-image-grid {
  columns: 4 280px;
  column-gap: var(--she-int2-spacing-lg);
  padding: var(--she-int2-spacing-lg) 0;
}

.she-int2-card {
  break-inside: avoid;
  margin-bottom: var(--she-int2-spacing-lg);
  background: var(--she-int2-background-alt);
  border-radius: var(--she-int2-radius-lg);
  overflow: hidden;
  transition: var(--she-int2-transition);
  border: 1px solid var(--she-int2-border);
  position: relative;
}

.she-int2-card:hover {
  transform: translateY(-8px);
  border-color: var(--she-int2-accent);
  box-shadow: var(--she-int2-shadow-accent);
}

.she-int2-image-container {
  position: relative;
  overflow: hidden;
}

.she-int2-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--she-int2-transition-slow);
}

.she-int2-card:hover .she-int2-image {
  transform: scale(1.1);
}

/* Card footer for model info */
.she-int2-card-footer {
  padding: var(--she-int2-spacing-md);
  background: var(--she-int2-background-alt);
}

.she-int2-model-name {
  color: var(--she-int2-text);
  font-family: var(--she-int2-font-heading);
  font-weight: var(--she-int2-font-weight-semibold);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--she-int2-transition-fast);
  display: block;
  margin-bottom: var(--she-int2-spacing-xs);
}

.she-int2-model-name:hover {
  color: var(--she-int2-accent);
}

.she-int2-model-stats {
  color: var(--she-int2-text-muted);
  font-size: 0.9rem;
}

/* Alternative masonry layout */
.she-int2-masonry-grid {
  columns: 4 280px;
  column-gap: var(--she-int2-spacing-lg);
}

.she-int2-masonry-item {
  break-inside: avoid;
  margin-bottom: var(--she-int2-spacing-lg);
}

.she-int2-card-v2 {
  background: var(--she-int2-background-alt);
  border-radius: var(--she-int2-radius-lg);
  overflow: hidden;
  transition: var(--she-int2-transition);
  border: 1px solid var(--she-int2-border);
}

.she-int2-card-v2:hover {
  transform: translateY(-8px);
  border-color: var(--she-int2-accent);
  box-shadow: var(--she-int2-shadow-lg);
}

.she-int2-masonry-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--she-int2-transition-slow);
}

.she-int2-card-v2:hover .she-int2-masonry-image {
  transform: scale(1.1);
}

/* Photo grid for galleries */
.she-int2-photo-grid {
  columns: 4 280px;
  column-gap: var(--she-int2-spacing-lg);
  padding: var(--she-int2-spacing-lg) 0;
}

.she-int2-photo-item {
  break-inside: avoid;
  margin-bottom: var(--she-int2-spacing-lg);
}

.she-int2-photo-card {
  background: var(--she-int2-background-alt);
  border-radius: var(--she-int2-radius-lg);
  overflow: hidden;
  transition: var(--she-int2-transition);
  border: 1px solid var(--she-int2-border);
  position: relative;
}

.she-int2-photo-card:hover {
  transform: translateY(-4px);
  border-color: var(--she-int2-accent);
}

.she-int2-photo-image {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--she-int2-transition-slow);
}

.she-int2-photo-card:hover .she-int2-photo-image {
  transform: scale(1.1);
}

/* ===== FIXED PAGINATION ===== */
.she-int2-pagination-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--she-int2-spacing-sm);
  justify-content: center;
  padding: var(--she-int2-spacing-lg) 0;
}

.she-int2-page-link {
  background: var(--she-int2-background-alt);
  color: var(--she-int2-text);
  padding: var(--she-int2-spacing-sm) var(--she-int2-spacing-md);
  border-radius: var(--she-int2-radius);
  text-decoration: none;
  font-family: var(--she-int2-font-ui);
  font-weight: var(--she-int2-font-weight-medium);
  border: 1px solid var(--she-int2-border);
  transition: var(--she-int2-transition);
  position: relative;
  overflow: hidden;
}

.she-int2-page-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--she-int2-gradient-primary);
  transition: var(--she-int2-transition);
  z-index: -1;
}

.she-int2-page-link:hover {
  color: white;
  transform: translateY(-2px);
  border-color: transparent;
}

.she-int2-page-link:hover::before {
  left: 0;
}

/* Categories Grid */
.she-int2-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--she-int2-spacing-md);
  padding: var(--she-int2-spacing-lg) 0;
}

.she-int2-category-card {
  background: var(--she-int2-background-alt);
  border-radius: var(--she-int2-radius-lg);
  overflow: hidden;
  transition: var(--she-int2-transition);
  border: 1px solid var(--she-int2-border);
}

.she-int2-category-card:hover {
  transform: translateY(-4px);
  border-color: var(--she-int2-accent);
  box-shadow: var(--she-int2-shadow);
}

.she-int2-category-image {
  height: 120px;
  overflow: hidden;
}

.she-int2-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--she-int2-transition);
}

.she-int2-category-card:hover .she-int2-category-image img {
  transform: scale(1.1);
}

.she-int2-category-info {
  padding: var(--she-int2-spacing-md);
}

.she-int2-category-name {
  color: var(--she-int2-text);
  font-family: var(--she-int2-font-heading);
  font-weight: var(--she-int2-font-weight-semibold);
  font-size: 1rem;
  margin-bottom: var(--she-int2-spacing-xs);
}

.she-int2-category-count {
  color: var(--she-int2-text-muted);
  font-size: 0.8rem;
}

/* Tags */
.she-int2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--she-int2-spacing-sm);
  padding: var(--she-int2-spacing-lg) 0;
}

.she-int2-tag {
  background: var(--she-int2-background-alt);
  color: var(--she-int2-text);
  padding: var(--she-int2-spacing-sm) var(--she-int2-spacing-md);
  border-radius: var(--she-int2-radius);
  text-decoration: none;
  font-family: var(--she-int2-font-ui);
  font-weight: var(--she-int2-font-weight-medium);
  font-size: 0.9rem;
  border: 1px solid var(--she-int2-border);
  transition: var(--she-int2-transition-fast);
}

.she-int2-tag:hover {
  background: var(--she-int2-accent);
  color: white;
  border-color: var(--she-int2-accent);
  transform: translateY(-2px);
}

/* Profile Layout */
.she-int2-profile-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--she-int2-spacing-xl);
  padding: var(--she-int2-spacing-xl) 0;
}

.she-int2-profile-info {
  background: var(--she-int2-background-alt);
  padding: var(--she-int2-spacing-xl);
  border-radius: var(--she-int2-radius-lg);
  border: 1px solid var(--she-int2-border);
}

.she-int2-profile-stats {
  font-size: 1.1rem;
  color: var(--she-int2-accent);
  font-weight: var(--she-int2-font-weight-semibold);
  margin-bottom: var(--she-int2-spacing-md);
}

.she-int2-profile-bio {
  color: var(--she-int2-text);
  line-height: 1.7;
  margin-bottom: var(--she-int2-spacing-xl);
}

.she-int2-quick-info h3 {
  color: var(--she-int2-text);
  font-family: var(--she-int2-font-heading);
  font-weight: var(--she-int2-font-weight-semibold);
  margin-bottom: var(--she-int2-spacing-md);
  font-size: 1.2rem;
}

.she-int2-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--she-int2-spacing-md);
}

.she-int2-info-item {
  display: flex;
  justify-content: space-between;
  padding: var(--she-int2-spacing-sm) 0;
  border-bottom: 1px solid var(--she-int2-border);
}

.she-int2-info-label {
  color: var(--she-int2-text-muted);
  font-weight: var(--she-int2-font-weight-medium);
}

.she-int2-info-value {
  color: var(--she-int2-text);
  font-weight: var(--she-int2-font-weight-semibold);
}

.she-int2-profile-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.she-int2-profile-card {
  background: var(--she-int2-background-alt);
  border-radius: var(--she-int2-radius-lg);
  overflow: hidden;
  border: 1px solid var(--she-int2-border);
}

.she-int2-profile-image-main {
  height: 300px;
  overflow: hidden;
}

.she-int2-profile-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--she-int2-transition);
}

.she-int2-profile-card:hover .she-int2-profile-image-main img {
  transform: scale(1.05);
}

.she-int2-profile-actions {
  padding: var(--she-int2-spacing-md);
}

.she-int2-view-gallery {
  width: 100%;
  background: var(--she-int2-gradient-primary);
  color: white;
  border: none;
  padding: var(--she-int2-spacing-md);
  border-radius: var(--she-int2-radius);
  font-family: var(--she-int2-font-ui);
  font-weight: var(--she-int2-font-weight-semibold);
  cursor: pointer;
  transition: var(--she-int2-transition);
}

.she-int2-view-gallery:hover {
  transform: translateY(-2px);
  box-shadow: var(--she-int2-shadow-accent);
}

/* Section Titles */
.she-int2-section-title {
  font-family: var(--she-int2-font-heading);
  font-size: 2rem;
  font-weight: var(--she-int2-font-weight-bold);
  text-align: center;
  margin-bottom: var(--she-int2-spacing-xl);
  background: var(--she-int2-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.she-int2-section-title-v2 {
  font-family: var(--she-int2-font-heading);
  font-size: 2.2rem;
  font-weight: var(--she-int2-font-weight-bold);
  text-align: center;
  margin-bottom: var(--she-int2-spacing-xl);
  position: relative;
  padding-bottom: var(--she-int2-spacing-md);
}

.she-int2-section-title-v2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--she-int2-gradient-primary);
  border-radius: 2px;
}

/* Content Sections */
.she-int2-content,
.she-int2-map-content {
  padding: var(--she-int2-spacing-xl) 0;
}

.she-int2-text-content,
.she-int2-rich-content,
.she-int2-map-text {
  background: var(--she-int2-background-alt);
  padding: var(--she-int2-spacing-xl);
  border-radius: var(--she-int2-radius-lg);
  border: 1px solid var(--she-int2-border);
  line-height: 1.8;
}

.she-int2-text-content p,
.she-int2-rich-content p,
.she-int2-map-text p {
  margin-bottom: var(--she-int2-spacing-md);
}

.she-int2-text-content p:last-child,
.she-int2-rich-content p:last-child,
.she-int2-map-text p:last-child {
  margin-bottom: 0;
}

/* Related Links */
.she-int2-related-links {
  padding: var(--she-int2-spacing-xl) 0;
}

/* Scroll Grid */
.she-int2-scroll-grid {
  display: flex;
  gap: var(--she-int2-spacing-md);
  overflow-x: auto;
  padding: var(--she-int2-spacing-lg) 0;
  scrollbar-width: thin;
  scrollbar-color: var(--she-int2-accent) var(--she-int2-background-alt);
}

.she-int2-scroll-grid::-webkit-scrollbar {
  height: 8px;
}

.she-int2-scroll-grid::-webkit-scrollbar-track {
  background: var(--she-int2-background-alt);
  border-radius: 4px;
}

.she-int2-scroll-grid::-webkit-scrollbar-thumb {
  background: var(--she-int2-accent);
  border-radius: 4px;
}

.she-int2-scroll-item {
  flex: 0 0 200px;
  background: var(--she-int2-background-alt);
  border-radius: var(--she-int2-radius-lg);
  overflow: hidden;
  transition: var(--she-int2-transition);
  border: 1px solid var(--she-int2-border);
}

.she-int2-scroll-item:hover {
  transform: translateY(-4px);
  border-color: var(--she-int2-accent);
}

.she-int2-scroll-image {
  height: 150px;
  overflow: hidden;
}

.she-int2-scroll-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--she-int2-transition);
}

.she-int2-scroll-item:hover .she-int2-scroll-image img {
  transform: scale(1.1);
}

.she-int2-scroll-info {
  padding: var(--she-int2-spacing-md);
}

.she-int2-scroll-name {
  color: var(--she-int2-text);
  font-family: var(--she-int2-font-heading);
  font-weight: var(--she-int2-font-weight-semibold);
  font-size: 1rem;
  margin-bottom: var(--she-int2-spacing-xs);
}

.she-int2-scroll-badge {
  background: var(--she-int2-accent);
  color: white;
  padding: 4px 8px;
  border-radius: var(--she-int2-radius-sm);
  font-size: 0.7rem;
  font-weight: var(--she-int2-font-weight-bold);
}

/* Photo Actions */
.she-int2-photo-actions {
  position: absolute;
  top: var(--she-int2-spacing-sm);
  right: var(--she-int2-spacing-sm);
  display: flex;
  gap: var(--she-int2-spacing-xs);
  opacity: 0;
  transition: var(--she-int2-transition);
}

.she-int2-photo-card:hover .she-int2-photo-actions {
  opacity: 1;
}

.she-int2-like-btn,
.she-int2-zoom-btn {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: var(--she-int2-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--she-int2-transition-fast);
  backdrop-filter: blur(10px);
}

.she-int2-like-btn:hover,
.she-int2-zoom-btn:hover {
  background: var(--she-int2-accent);
  transform: scale(1.1);
}

/* Category Carousel */
.she-int2-category-carousel {
  display: flex;
  gap: var(--she-int2-spacing-md);
  overflow-x: auto;
  padding: var(--she-int2-spacing-lg) 0;
  scrollbar-width: none;
  cursor: grab;
}

.she-int2-category-carousel::-webkit-scrollbar {
  display: none;
}

.she-int2-category-carousel.active {
  cursor: grabbing;
}

.she-int2-category-slide {
  flex: 0 0 150px;
  text-align: center;
}

.she-int2-category-link-v2 {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--she-int2-transition);
}

.she-int2-category-link-v2:hover {
  transform: translateY(-4px);
}

.she-int2-category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--she-int2-spacing-sm);
  border-radius: var(--she-int2-radius-round);
  overflow: hidden;
  border: 3px solid var(--she-int2-border);
  transition: var(--she-int2-transition);
}

.she-int2-category-link-v2:hover .she-int2-category-icon {
  border-color: var(--she-int2-accent);
  transform: scale(1.1);
}

.she-int2-category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.she-int2-category-label {
  color: var(--she-int2-text);
  font-family: var(--she-int2-font-ui);
  font-weight: var(--she-int2-font-weight-medium);
  font-size: 0.9rem;
}

/* Premium Models */
.she-int2-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--she-int2-spacing-lg);
  padding: var(--she-int2-spacing-lg) 0;
}

.she-int2-premium-card {
  background: var(--she-int2-background-alt);
  border-radius: var(--she-int2-radius-lg);
  overflow: hidden;
  transition: var(--she-int2-transition);
  border: 1px solid var(--she-int2-border);
  position: relative;
}

.she-int2-premium-card:hover {
  transform: translateY(-8px);
  border-color: var(--she-int2-accent);
  box-shadow: var(--she-int2-shadow-accent);
}

.she-int2-premium-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.she-int2-premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--she-int2-transition);
}

.she-int2-premium-card:hover .she-int2-premium-image img {
  transform: scale(1.1);
}

.she-int2-premium-badge {
  position: absolute;
  top: var(--she-int2-spacing-sm);
  right: var(--she-int2-spacing-sm);
  background: var(--she-int2-gradient-primary);
  color: white;
  padding: 6px 12px;
  border-radius: var(--she-int2-radius);
  font-size: 0.8rem;
  font-weight: var(--she-int2-font-weight-bold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.she-int2-premium-content {
  padding: var(--she-int2-spacing-md);
}

.she-int2-premium-name {
  color: var(--she-int2-text);
  font-family: var(--she-int2-font-heading);
  font-weight: var(--she-int2-font-weight-bold);
  font-size: 1.2rem;
  margin-bottom: var(--she-int2-spacing-xs);
}

.she-int2-premium-desc {
  color: var(--she-int2-text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--she-int2-spacing-md);
  line-height: 1.5;
}

.she-int2-premium-stats {
  display: flex;
  gap: var(--she-int2-spacing-md);
}

.she-int2-stat {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--she-int2-text-muted);
  font-size: 0.8rem;
  font-weight: var(--she-int2-font-weight-medium);
}

.she-int2-stat .material-icons {
  font-size: 14px;
}

/* Link Cloud */
.she-int2-link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--she-int2-spacing-sm);
  justify-content: center;
  padding: var(--she-int2-spacing-lg) 0;
}

.she-int2-cloud-link {
  background: var(--she-int2-background-alt);
  color: var(--she-int2-text);
  padding: var(--she-int2-spacing-sm) var(--she-int2-spacing-md);
  border-radius: var(--she-int2-radius);
  text-decoration: none;
  font-family: var(--she-int2-font-ui);
  font-weight: var(--she-int2-font-weight-medium);
  border: 1px solid var(--she-int2-border);
  transition: var(--she-int2-transition);
  position: relative;
  overflow: hidden;
}

.she-int2-cloud-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--she-int2-gradient-primary);
  transition: var(--she-int2-transition);
  z-index: -1;
}

.she-int2-cloud-link:hover {
  color: white;
  transform: translateY(-2px);
  border-color: transparent;
}

.she-int2-cloud-link:hover::before {
  left: 0;
}

/* Advanced Pagination */
.she-int2-advanced-pagination {
  padding: var(--she-int2-spacing-xl) 0;
}

.she-int2-pagination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--she-int2-spacing-md);
}

.she-int2-pagination-card {
  background: var(--she-int2-background-alt);
  padding: var(--she-int2-spacing-lg);
  border-radius: var(--she-int2-radius-lg);
  text-decoration: none;
  color: var(--she-int2-text);
  border: 1px solid var(--she-int2-border);
  transition: var(--she-int2-transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.she-int2-pagination-card:hover {
  transform: translateY(-4px);
  border-color: var(--she-int2-accent);
  box-shadow: var(--she-int2-shadow);
}

.she-int2-page-number {
  font-family: var(--she-int2-font-heading);
  font-weight: var(--she-int2-font-weight-semibold);
  font-size: 1.1rem;
}

.she-int2-page-arrow {
  color: var(--she-int2-accent);
  font-size: 1.2rem;
  transition: var(--she-int2-transition-fast);
}

.she-int2-pagination-card:hover .she-int2-page-arrow {
  transform: translateX(4px);
}

/* Footer */
.she-int2-footer {
  background: var(--she-int2-gradient-dark);
  border-top: 1px solid var(--she-int2-border);
  margin-top: var(--she-int2-spacing-xxl);
}

.she-int2-footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--she-int2-spacing-xl);
  padding: var(--she-int2-spacing-xxl) 0 var(--she-int2-spacing-xl);
}

.she-int2-footer-brand {
  text-align: center;
}

.she-int2-footer-logo {
  height: 60px;
  margin-bottom: var(--she-int2-spacing-md);
}

.she-int2-footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--she-int2-spacing-xl);
}

.she-int2-footer-section h3 {
  color: var(--she-int2-text);
  font-family: var(--she-int2-font-heading);
  font-weight: var(--she-int2-font-weight-semibold);
  margin-bottom: var(--she-int2-spacing-md);
  font-size: 1.1rem;
}

.she-int2-footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--she-int2-spacing-sm);
}

.she-int2-footer-links a {
  color: var(--she-int2-text-muted);
  text-decoration: none;
  transition: var(--she-int2-transition-fast);
  padding: var(--she-int2-spacing-xs) 0;
}

.she-int2-footer-links a:hover {
  color: var(--she-int2-accent);
  transform: translateX(8px);
}

.she-int2-footer-bottom {
  border-top: 1px solid var(--she-int2-border);
  padding: var(--she-int2-spacing-xl) 0;
  text-align: center;
}

.she-int2-warning {
  margin-bottom: var(--she-int2-spacing-lg);
}

.she-int2-warning p {
  color: var(--she-int2-text-muted);
  margin-bottom: var(--she-int2-spacing-sm);
  font-size: 0.9rem;
}

.she-int2-warning p:last-child {
  margin-bottom: 0;
}

.she-int2-copyright p {
  color: var(--she-int2-text-muted);
  font-size: 0.9rem;
}

/* Lightbox */
.she-int2-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--she-int2-spacing-xl);
}

.she-int2-lightbox-active {
  display: flex;
}

.she-int2-lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.she-int2-lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: var(--she-int2-accent);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: var(--she-int2-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--she-int2-transition);
  z-index: 10001;
}

.she-int2-lightbox-close:hover {
  background: var(--she-int2-accent-hover);
  transform: scale(1.1);
}

.she-int2-lightbox-navigation {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--she-int2-spacing-md);
}

.she-int2-lightbox-prev,
.she-int2-lightbox-next {
  background: var(--she-int2-accent);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: var(--she-int2-radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--she-int2-transition);
  z-index: 10001;
}

.she-int2-lightbox-prev:hover,
.she-int2-lightbox-next:hover {
  background: var(--she-int2-accent-hover);
  transform: scale(1.1);
}

.she-int2-lightbox-image-container {
  max-width: calc(90vw - 200px);
  max-height: calc(90vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.she-int2-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--she-int2-radius);
  object-fit: contain;
}

.she-int2-lightbox-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: var(--she-int2-font-ui);
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: var(--she-int2-spacing-sm) var(--she-int2-spacing-md);
  border-radius: var(--she-int2-radius);
}

/* Loading Animation */
.she-int2-loaded {
  animation: sheInt2FadeIn 0.5s ease;
}

@keyframes sheInt2FadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE MASONRY ===== */
@media (max-width: 1200px) {
  .she-int2-image-grid,
  .she-int2-masonry-grid,
  .she-int2-photo-grid {
    columns: 3 280px;
  }
}

@media (max-width: 768px) {
  .she-int2-hero-title,
  .she-int2-profile-title,
  .she-int2-gallery-title,
  .she-int2-map-title {
    font-size: 2rem;
  }
  
  .she-int2-section-title,
  .she-int2-section-title-v2 {
    font-size: 1.5rem;
  }
  
  .she-int2-image-grid,
  .she-int2-masonry-grid,
  .she-int2-photo-grid {
    columns: 2 200px;
    column-gap: var(--she-int2-spacing-md);
  }
  
  .she-int2-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
  
  .she-int2-premium-grid {
    grid-template-columns: 1fr;
  }
  
  .she-int2-info-grid {
    grid-template-columns: 1fr;
  }
  
  .she-int2-lightbox-navigation {
    flex-direction: column;
  }
  
  .she-int2-lightbox-prev,
  .she-int2-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .she-int2-lightbox-prev {
    left: 10px;
  }
  
  .she-int2-lightbox-next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .she-int2-container {
    padding: 0 var(--she-int2-spacing-sm);
  }
  
  .she-int2-mobile-menu {
    width: 100%;
  }
  
  .she-int2-image-grid,
  .she-int2-masonry-grid,
  .she-int2-photo-grid {
    columns: 1 280px;
  }
  
  .she-int2-category-grid {
    grid-template-columns: 1fr;
  }
  
  .she-int2-pagination-grid {
    grid-template-columns: 1fr;
  }
  
  .she-int2-footer-nav {
    grid-template-columns: 1fr;
  }
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .she-int2-desktop-nav {
    display: none;
  }
  
  .she-int2-mobile-toggle {
    display: flex;
  }
  
  .she-int2-profile-layout {
    grid-template-columns: 1fr;
    gap: var(--she-int2-spacing-lg);
  }
  
  .she-int2-profile-sidebar {
    position: static;
  }
  
  .she-int2-footer-main {
    grid-template-columns: 1fr;
    gap: var(--she-int2-spacing-lg);
    text-align: center;
  }
}

/* Profile Thumbnail Styles - FIXED */
.she-int2-profile-image-main {
    height: 300px;
    overflow: visible;
    position: relative;
    margin-bottom: 40px;
}

.she-int2-profile-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--she-int2-transition);
    border-radius: var(--she-int2-radius-lg);
}

.she-int2-profile-thumbnail {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: var(--she-int2-radius-round);
    overflow: hidden;
    border: 4px solid var(--she-int2-accent);
    background: var(--she-int2-background);
    box-shadow: var(--she-int2-shadow-lg);
    z-index: 2;
    transition: var(--she-int2-transition);
}

.she-int2-profile-thumbnail:hover {
    transform: translateX(-50%) scale(1.1);
    border-color: var(--she-int2-accent-hover);
}

.she-int2-profile-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.she-int2-profile-actions {
    padding: var(--she-int2-spacing-md);
    margin-top: 0;
}

.she-int2-view-gallery {
    width: 100%;
    background: var(--she-int2-gradient-primary);
    color: white;
    border: none;
    padding: var(--she-int2-spacing-md);
    border-radius: var(--she-int2-radius);
    font-family: var(--she-int2-font-ui);
    font-weight: var(--she-int2-font-weight-semibold);
    cursor: pointer;
    transition: var(--she-int2-transition);
    position: relative;
    z-index: 1;
}

.she-int2-view-gallery:hover {
    transform: translateY(-2px);
    box-shadow: var(--she-int2-shadow-accent);
}

/* Responsive for profile thumbnail */
@media (max-width: 768px) {
    .she-int2-profile-thumbnail {
        width: 90px;
        height: 90px;
        bottom: -35px;
        border-width: 3px;
    }
    
    .she-int2-profile-image-main {
        height: 250px;
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .she-int2-profile-thumbnail {
        width: 80px;
        height: 80px;
        bottom: -30px;
        border-width: 3px;
    }
    
    .she-int2-profile-image-main {
        height: 200px;
        margin-bottom: 30px;
    }
}
/* Mobile reordering for profile layout */
@media (max-width: 992px) {
  .she-int2-profile-layout {
    display: flex;
    flex-direction: column;
    gap: var(--she-int2-spacing-lg);
  }
  
  .she-int2-profile-sidebar {
    order: -1;
  }
  
  .she-int2-profile-main {
    order: 1;
  }
}