

.main {
  margin-top: 80px;
}



.artwork-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-bg-color) 100%);
}

.artwork-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.artwork-hero__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
}

.hero-title {
  margin-bottom: 24px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.1;
}

.hero-title i {
  margin-right: 16px;
  color: var(--accent-color);
}

.hero-subtitle {
  margin-bottom: 40px;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.stat-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: white;
}

.stat-badge i {
  color: var(--accent-color);
  font-size: 2rem;
}

.stat-number {
  color: var(--main-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.8rem;
}

.stat-label {
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  padding: 18px 32px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn.primary {
  color: white;
  background: var(--accent-color);
}

.hero-btn.primary:hover {
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  background: #b8941f;
  transform: translateY(-2px);
}

.hero-btn.secondary {
  border: 2px solid var(--main-color);
  color: var(--main-color);
  background: transparent;
}

.hero-btn.secondary:hover {
  color: white;
  background: var(--main-color);
  transform: translateY(-2px);
}

.hero-showcase {
  position: relative;
}

.showcase-slider {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.showcase-slide {
  position: relative;
  display: none;
  opacity: 0;
  transition: all 0.8s ease;
}

.showcase-slide.active {
  display: block;
  opacity: 1;
}

.showcase-image {
  display: block;
  width: 100%;
  height: auto;
}

.slide-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 30px 30px;
  color: white;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.slide-title {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.slide-artist {
  margin-bottom: 16px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.slide-price {
  margin-bottom: 16px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.3rem;
}

.slide-tags {
  display: flex;
  gap: 8px;
}

.art-tag {
  border-radius: 15px;
  padding: 6px 12px;
  color: white;
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.showcase-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.control-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: var(--main-color);
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.control-btn:hover {
  color: white;
  background: var(--accent-color);
  transform: scale(1.1);
}

.control-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(30, 58, 95, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: var(--accent-color);
  transform: scale(1.3);
}



.curated-collections {
  padding: 100px 0;
  background: var(--bg-color);
}

.curated-collections__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.collections-header {
  margin-bottom: 60px;
  text-align: center;
}

.collections-title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
}

.collections-title i {
  margin-right: 16px;
  color: var(--accent-color);
}

.collections-subtitle {
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.1rem;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  color: var(--text-color);
  font-weight: 500;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-tab:hover,
.filter-tab.active {
  color: white;
  background: var(--accent-color);
  transform: translateY(-2px);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.collection-card {
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: white;
  transition: all 0.3s ease;
}

.collection-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.collection-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  color: white;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9) 0%, rgba(212, 175, 55, 0.9) 100%);
  transition: all 0.3s ease;
}

.collection-card:hover .card-overlay {
  opacity: 1;
}

.overlay-content {
  padding: 30px;
  text-align: center;
}

.overlay-content h4 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.overlay-content p {
  margin-bottom: 20px;
  opacity: 0.9;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  color: var(--main-color);
  font-weight: 600;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.explore-btn:hover {
  transform: scale(1.05);
}

.card-content {
  padding: 30px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.card-title {
  color: var(--main-color);
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.card-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 15px;
  padding: 6px 12px;
  font-weight: 600;
  font-size: 0.8rem;
}

.card-badge.local {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.card-badge.international {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.card-badge.contemporary {
  color: #a855f7;
  background: rgba(168, 85, 247, 0.1);
}

.card-description {
  margin-bottom: 20px;
  opacity: 0.8;
  color: var(--text-color);
  line-height: 1.6;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.9rem;
}

.meta-item i {
  color: var(--accent-color);
}

.artist-preview {
  display: flex;
  align-items: center;
  gap: 12px;
}

.preview-avatars {
  display: flex;
  gap: -8px;
}

.avatar {
  width: 32px;
  height: 32px;
  margin-left: -8px;
  border: 2px solid white;
  border-radius: 50%;
  overflow: hidden;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar.more {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 0.7rem;
  background: var(--accent-color);
}

.preview-text {
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.9rem;
}



.creator-spotlight {
  padding: 100px 0;
  background: var(--secondary-bg-color);
}

.creator-spotlight__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.spotlight-header {
  margin-bottom: 60px;
  text-align: center;
}

.spotlight-title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
}

.spotlight-title i {
  margin-right: 16px;
  color: var(--accent-color);
}

.spotlight-subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.1rem;
}

.spotlight-content {
  display: grid;
  gap: 60px;
}

.artist-profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.profile-visual {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.artist-photo {
  position: relative;
}

.photo-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.photo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 20px;
  padding: 8px 16px;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  background: var(--accent-color);
}

.artist-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.stat-block {
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  background: var(--secondary-bg-color);
}

.stat-block i {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.stat-value {
  display: block;
  margin-bottom: 4px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
}

.stat-label {
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.85rem;
}

.artist-header {
  margin-bottom: 30px;
}

.artist-name {
  margin-bottom: 12px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-size: 2.2rem;
}

.artist-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.1rem;
}

.artist-location i {
  color: var(--accent-color);
}

.artist-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.specialty-tag {
  border-radius: 15px;
  padding: 6px 14px;
  color: white;
  font-weight: 500;
  font-size: 0.85rem;
  background: var(--accent-color);
}

.artist-bio,
.artist-achievements,
.artist-contact {
  margin-bottom: 30px;
}

.profile-info h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.profile-info h4 i {
  color: var(--accent-color);
}

.artist-bio p {
  margin-bottom: 16px;
  opacity: 0.9;
  color: var(--text-color);
  line-height: 1.7;
}

.achievements-list {
  display: grid;
  gap: 16px;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  padding: 16px;
  background: var(--secondary-bg-color);
}

.achievement-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.achievement-text strong {
  display: block;
  margin-bottom: 2px;
  color: var(--main-color);
  font-weight: 600;
}

.achievement-text span {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.artist-contact p {
  margin-bottom: 20px;
  opacity: 0.8;
  color: var(--text-color);
}

.contact-buttons {
  display: flex;
  gap: 16px;
}

.contact-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 25px;
  padding: 14px 24px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn.primary {
  color: white;
  background: var(--accent-color);
}

.contact-btn.primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.contact-btn.secondary {
  border: 2px solid var(--main-color);
  color: var(--main-color);
  background: transparent;
}

.contact-btn.secondary:hover {
  color: white;
  background: var(--main-color);
}

.artist-portfolio {
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.portfolio-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.portfolio-title i {
  color: var(--accent-color);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-8px);
}

.portfolio-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  color: white;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.9), rgba(212, 175, 55, 0.9));
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.overlay-info {
  padding: 20px;
  text-align: center;
}

.work-title {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.work-medium,
.work-size {
  margin-bottom: 16px;
  opacity: 0.9;
}

.work-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-btn:hover {
  color: var(--main-color);
  background: white;
  transform: scale(1.1);
}

.portfolio-info {
  padding: 16px 0 8px;
  text-align: center;
}

.work-name {
  margin-bottom: 4px;
  color: var(--main-color);
  font-family: var(--font-heading);
}

.work-price {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
}



.personal-favorites {
  padding: 100px 0;
  background: var(--bg-color);
}

.personal-favorites__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.favorites-header {
  margin-bottom: 60px;
  text-align: center;
}

.favorites-title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
}

.favorites-title i {
  margin-right: 16px;
  color: var(--accent-color);
}

.favorites-subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.1rem;
}

.favorites-dashboard {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  min-height: 600px;
}

.dashboard-sidebar {
  height: fit-content;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: white;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 25px;
}

.profile-avatar {
  position: relative;
}

.avatar-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-status {
  position: absolute;
  right: 2px;
  bottom: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
}

.profile-status i {
  color: #10b981;
  font-size: 0.7rem;
}

.profile-name {
  margin-bottom: 4px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.profile-email {
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.9rem;
}

.categories-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.categories-title i {
  color: var(--accent-color);
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.category-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  text-align: left;
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
  background: var(--secondary-bg-color);
  transform: translateX(5px);
}

.category-btn span:first-of-type {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
}

.category-btn i {
  color: var(--accent-color);
}

.count {
  border-radius: 10px;
  padding: 2px 8px;
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  background: var(--accent-color);
}

.favorites-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-button.primary {
  color: white;
  background: var(--accent-color);
}

.action-button.primary:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.action-button.secondary {
  color: var(--main-color);
  background: var(--secondary-color);
}

.action-button.secondary:hover {
  color: white;
  background: var(--main-color);
}

.favorites-content {
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: white;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--secondary-color);
  padding: 25px 30px;
}

.view-controls {
  display: flex;
  gap: 8px;
}

.view-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  color: var(--text-color);
  background: var(--secondary-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-btn:hover,
.view-btn.active {
  color: white;
  background: var(--accent-color);
}

.sort-select {
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--text-color);
  background: var(--bg-color);
}

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  padding: 30px;
}

.favorites-grid.list-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.favorites-grid.list-view .favorite-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: none;
}

.favorites-grid.list-view .item-image {
  flex: 0 0 200px;
  height: 150px;
}

.favorites-grid.list-view .favorite-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favorites-grid.list-view .item-details {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 20px 25px;
}

.favorites-grid.list-view .item-meta {
  margin-bottom: 8px;
}

.favorites-grid.list-view .item-collection {
  margin-top: auto;
}

.favorite-item {
  border-radius: 15px;
  overflow: hidden;
  background: var(--secondary-bg-color);
  transition: all 0.3s ease;
}

.favorite-item:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.item-image {
  position: relative;
  overflow: hidden;
}

.favorite-image {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.favorite-item:hover .favorite-image {
  transform: scale(1.05);
}

.item-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  background: rgba(30, 58, 95, 0.9);
  transition: all 0.3s ease;
}

.favorite-item:hover .item-overlay {
  opacity: 1;
}

.overlay-actions {
  display: flex;
  gap: 12px;
}

.overlay-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.overlay-btn:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.item-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 15px;
  padding: 6px 12px;
  color: var(--text-color);
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
}

.item-badge i {
  color: var(--accent-color);
}

.item-details {
  padding: 20px;
}

.item-title {
  margin-bottom: 6px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.item-artist {
  margin-bottom: 12px;
  opacity: 0.8;
  color: var(--text-color);
}

.item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.item-size {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.9rem;
}

.item-size i {
  color: var(--accent-color);
}

.item-price {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.item-collection {
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
  color: var(--text-color);
  font-size: 0.85rem;
}

.item-collection i {
  color: var(--accent-color);
}

.login-prompt {
  padding: 60px 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-bg-color), #f0f8ff);
}

.prompt-content>i {
  display: block;
  margin-bottom: 20px;
  color: var(--accent-color);
  font-size: 4rem;
}

.prompt-content h4 {
  margin-bottom: 12px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.prompt-content p {
  margin-bottom: 30px;
  opacity: 0.8;
  color: var(--text-color);
}

.prompt-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.auth-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 25px;
  padding: 14px 24px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.auth-btn.login {
  color: white;
  background: var(--accent-color);
}

.auth-btn.login:hover {
  background: #b8941f;
  transform: translateY(-2px);
}

.auth-btn.register {
  border: 2px solid var(--main-color);
  color: var(--main-color);
  background: transparent;
}

.auth-btn.register:hover {
  color: white;
  background: var(--main-color);
}



.room-visualizer {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--secondary-bg-color) 0%, #f0f8ff 100%);
}

.room-visualizer__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.visualizer-header {
  margin-bottom: 60px;
  text-align: center;
}

.visualizer-title {
  margin-bottom: 20px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
}

.visualizer-title i {
  margin-right: 16px;
  color: var(--accent-color);
}

.visualizer-subtitle {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  color: var(--text-color);
  font-size: 1.1rem;
}

.visualizer-interface {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: white;
}

.interface-controls {
  padding: 30px;
  background: var(--secondary-bg-color);
}

.control-panel {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.panel-section {
  border-bottom: 1px solid rgba(30, 58, 95, 0.1);
  padding-bottom: 25px;
}

.panel-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.section-title i {
  color: var(--accent-color);
}

.room-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.room-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 16px;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.room-btn:hover,
.room-btn.active {
  border-color: var(--accent-color);
  background: rgba(212, 175, 55, 0.05);
}

.room-btn i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.room-btn span {
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.color-palette {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.color-btn {
  width: 40px;
  height: 40px;
  border: 3px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.color-btn:hover,
.color-btn.active {
  border-color: var(--accent-color);
  transform: scale(1.1);
}


.color-btn-white {
  background: #ffffff;
}

.color-btn-cream {
  background: #f5f5dc;
}

.color-btn-gray {
  background: #f5f5f5;
}

.color-btn-beige {
  background: #f5deb3;
}

.color-btn-blue {
  background: #e6f3ff;
}

.color-btn-green {
  background: #f0f8e6;
}

.size-select {
  width: 100%;
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-color);
  font-size: 0.95rem;
  background: white;
}

.size-select:focus {
  border-color: var(--accent-color);
  outline: none;
}

.frame-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frame-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  padding: 12px 16px;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.frame-option:hover {
  background: rgba(212, 175, 55, 0.05);
}

.frame-option input[type="radio"] {
  display: none;
}

.frame-option input[type="radio"]:checked+.frame-preview {
  color: var(--accent-color);
  font-weight: 600;
}

.frame-option input[type="radio"]:checked~.frame-price {
  color: var(--accent-color);
  font-weight: 600;
}

.frame-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
}

.frame-price {
  opacity: 0.8;
  color: var(--text-color);
  font-size: 0.9rem;
}

.total-price {
  border-radius: 15px;
  padding: 20px;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-color), #b8941f);
}

.price-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.price-value {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
}

.price-note {
  opacity: 0.9;
  font-size: 0.85rem;
}

.panel-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.action-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.action-btn.primary {
  color: white;
  background: var(--main-color);
}

.action-btn.primary:hover {
  background: #2c5282;
  transform: translateY(-2px);
}

.action-btn.secondary {
  color: var(--text-color);
  background: var(--secondary-color);
}

.action-btn.secondary:hover {
  color: white;
  background: var(--accent-color);
}

.preview-display {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
}

.room-preview {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.preview-room {
  position: relative;
  display: none;
}

.preview-room.active {
  display: block;
}

.room-background {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.artwork-placement {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.placed-artwork {
  max-width: 150px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.room-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--main-color);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.room-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.room-name i {
  color: var(--accent-color);
}

.room-description {
  opacity: 0.8;
  font-size: 0.9rem;
}

.selector-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--main-color);
  font-family: var(--font-heading);
  font-size: 1.3rem;
}

.selector-title i {
  color: var(--accent-color);
}

.artwork-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

.artwork-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px;
  background: var(--secondary-bg-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.artwork-thumb:hover,
.artwork-thumb.active {
  border-color: var(--accent-color);
  background: rgba(212, 175, 55, 0.05);
}

.thumb-image {
  width: 60px;
  height: auto;
  border-radius: 6px;
}

.thumb-title {
  color: var(--text-color);
  font-size: 0.8rem;
  text-align: center;
}

.preview-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  border-radius: 15px;
  padding: 20px;
  background: var(--secondary-bg-color);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
  font-size: 0.9rem;
}

.feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}




@media (max-width: 1024px) {

  .hero-content,
  .artist-profile {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-actions,
  .artist-location,
  .artist-specialties,
  .profile-info h4,
  .achievement-item,
  .contact-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .visualizer-interface,
  .favorites-dashboard {
    grid-template-columns: 1fr;
  }

  .interface-controls {
    order: 2;
  }

  .room-options {
    grid-template-columns: repeat(4, 1fr);
  }

  .collections-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}


@media (max-width: 768px) {
  .main {
    margin-top: 70px;
  }

  .artwork-hero,
  .curated-collections,
  .creator-spotlight,
  .personal-favorites,
  .room-visualizer {
    padding: 60px 0;
  }

  .hero-title,
  .collections-title,
  .spotlight-title,
  .favorites-title,
  .visualizer-title {
    font-size: 2.2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .collections-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .collection-card {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .artist-profile {
    padding: 25px;
  }

  .artist-stats {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .favorites-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
  }

  .dashboard-sidebar {
    padding: 20px;
  }

  .room-options {
    grid-template-columns: 1fr 1fr;
  }

  .color-palette {
    grid-template-columns: repeat(3, 1fr);
  }

  .panel-actions {
    gap: 8px;
  }

  .preview-display {
    padding: 20px;
  }

  .artwork-thumbnails {
    gap: 10px;
  }

  .preview-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


@media (max-width: 480px) {

  .content-header,
  .prompt-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-title,
  .collections-title,
  .spotlight-title,
  .favorites-title,
  .visualizer-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-badge {
    min-width: 80px;
    padding: 15px;
  }

  .artist-profile {
    padding: 20px;
  }

  .artist-specialties {
    justify-content: center;
  }

  .achievements-list {
    gap: 12px;
  }

  .achievement-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .dashboard-sidebar {
    padding: 15px;
  }

  .user-profile {
    flex-direction: column;
    text-align: center;
  }

  .category-list {
    gap: 6px;
  }

  .favorites-grid {
    padding: 15px;
  }

  .interface-controls {
    padding: 20px;
  }

  .room-options {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .frame-options {
    gap: 8px;
  }

  .placed-artwork {
    max-width: 100px;
  }

  .room-info {
    bottom: 10px;
    left: 10px;
    padding: 12px 16px;
  }
}