/* Skeleton Drawer CSS */
.skeleton-drawer-container {
  background: white;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header */
.skeleton-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #E0E0E0;
  background: #F8F9FA;
}

.skeleton-back-arrow {
  width: 20px;
  height: 20px;
  background: #D1D6DD;
  border-radius: 4px;
}

.skeleton-title {
  width: 140px;
  height: 20px;
  background: #D1D6DD;
  border-radius: 6px;
}

.skeleton-close {
  width: 20px;
  height: 20px;
  background: #D1D6DD;
  border-radius: 4px;
}

/* Main content */
.skeleton-main-content {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Left panel */
.skeleton-left-panel {
  width: 50%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #F8F9FA;
}

.skeleton-large-image {
  width: 100%;
  height: 320px;
  background: #D1D6DD;
  border-radius: 8px;
}

.skeleton-small-heading {
  width: 80px;
  height: 14px;
  background: #D1D6DD;
  border-radius: 6px;
}

.skeleton-medium-image {
  width: 100%;
  height: 180px;
  background: #D1D6DD;
  border-radius: 8px;
}

/* Right panel */
.skeleton-right-panel {
  width: 50%;
  padding: 24px;
  overflow-y: auto;
  background: white;
  border-left: 1px solid #E0E0E0;
}

.skeleton-section {
  margin-bottom: 20px;
}

.skeleton-heading {
  width: 75px;
  height: 16px;
  background: #D1D6DD;
  border-radius: 8px;
  margin-bottom: 12px;
}

.skeleton-items {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-bottom: 8px;
}

.skeleton-item {
  width: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.skeleton-img {
  width: 75px;
  height: 75px;
  background: #E0E0E0;
  border-radius: 4px;
}

.skeleton-label {
  width: 49.5px;
  height: 11px;
  background: #E0E0E0;
  border-radius: 6px;
}

.skeleton-pill-items {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.skeleton-pill {
  width: 65px;
  height: 32px;
  background: #E0E0E0;
  border-radius: 40px;
}

.skeleton-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skeleton-text-long {
  width: 100%;
  max-width: 300px;
  height: 11px;
  background: #E0E0E0;
  border-radius: 6px;
}

.skeleton-text-short {
  width: 60%;
  max-width: 180px;
  height: 11px;
  background: #E0E0E0;
  border-radius: 6px;
}

.skeleton-divider {
  width: 100%;
  height: 1px;
  background: #E0E0E0;
  margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .skeleton-main-content {
    flex-direction: column;
  }
  
  .skeleton-left-panel,
  .skeleton-right-panel {
    width: 100%;
  }
  
  .skeleton-left-panel {
    height: 40vh;
  }
  
  .skeleton-right-panel {
    height: 60vh;
  }
}