*{ margin:0; padding:0; box-sizing:border-box; }
.is-hidden{ display:none !important; }

html {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.loaded {
  scroll-behavior: smooth;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  color:#000000;
  background:#ffffff;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Prevent images/videos from causing horizontal overflow */
img, video {
  max-width: 100%;
  height: auto;
}

.container{
  width: min(1100px, 92%);
  margin: 0 auto;
  max-width: 100%;
}

/* HEADER */
.header{
  position: fixed;
  top:0; left:0;
  width:100%;
  z-index:9999;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-row{
  min-height: 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap: wrap;
  padding: 16px 0;
  gap: 12px;
}

.brand{
  display: flex;
  align-items: center;
}

.brand img{
  height: 48px;
  width:auto;
  display:block;
}

/* DESKTOP NAV */
.desktop-nav{
  display:flex;
  gap: 18px;
  align-items:center;
}

.desktop-nav a{
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  color:#111;
}

.desktop-nav a:hover{ opacity:0.7; }
.desktop-nav a.active{ text-decoration: underline; }

.nav-btn{
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 12px;
  background: transparent;
  color: #111;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nav-btn:hover{
  opacity: 0.7;
}

/* Sign In button - black with white text */
.nav-btn.signin{
  background: #111;
  color: #fff;
  border-color: #111;
}

.nav-btn.signin:hover{
  background: #000;
  opacity: 1;
}

/* User Info */
.user-info{
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.1);
}

.user-name{
  font-size: 14px;
  font-weight: 600;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logout-btn{
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,0.2);
}

.logout-btn:hover{
  background: #f5f5f5;
  opacity: 1;
}

/* HAMBURGER */
.hamburger{
  width:44px; height:44px;
  background:transparent;
  border:none;
  cursor:pointer;
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}

.hamburger span{
  width:26px;
  height:2px;
  background:#111;
  border-radius:6px;
}

/* =========================
   HERO SLIDER - MOBILE FIRST RESPONSIVE
========================= */

/* Mobile First - Base styles for smallest screens */
.hero-slider{
  position: relative;
  width: 100%;
  height: 70dvh;
  min-height: 500px;
  max-height: 750px;
  overflow: hidden;
  background: #f5f5f5;
  margin-top: 0;
}

.hero-slider .hero-slides,
.hero-slider .slides{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Individual slide */
.hero-slider .slide{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #f5f5f5;

  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.hero-slider .slide.active{
  opacity: 1;
}

/* Slide image - fills container */
.hero-slider .slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Subtle overlay for text readability */
.hero-slider .hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
  z-index: 2;
  pointer-events: none;
}

/* Text content container - responsive positioning */
.hero-slider .hero-inner{
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
}

.hero-slider .hero-content{
  width: 100%;
  max-width: 100%;
}

/* Mobile typography - lighter and readable */
.hero-slider .hero-content h1{
  font-size: clamp(26px, 6.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.5);
  letter-spacing: -0.5px;
}

.hero-slider .hero-content p{
  font-size: clamp(14px, 3.5vw, 17px);
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  font-weight: 400;
}

/* Navigation Arrows - Mobile optimized */
.as-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  
  border: none;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  width: 44px;
  height: 44px;
  border-radius: 50%;
  
  font-size: 28px;
  font-weight: 300;
  color: #fff;
  
  cursor: pointer;
  line-height: 1;
  opacity: 0.85;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  transition: all 0.3s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.as-arrow.left{ left: 12px; }
.as-arrow.right{ right: 12px; }

.as-arrow:hover,
.as-arrow:active{
  opacity: 1;
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.05);
}

/* Tablet - 600px and up */
@media (min-width: 600px){
  .hero-slider{
    height: 75dvh;
    min-height: 550px;
    max-height: 850px;
  }
  
  .hero-slider .slide{
    background-size: cover;
  }
  
  .hero-slider .hero-inner{
    padding: 50px 30px;
  }
  
  .hero-slider .hero-content h1{
    font-size: clamp(36px, 5.5vw, 48px);
    margin-bottom: 24px;
  }
  
  .hero-slider .hero-content p{
    font-size: clamp(15px, 2.8vw, 18px);
    max-width: 85%;
    line-height: 1.7;
  }
  
  .as-arrow{
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
  
  .as-arrow.left{ left: 16px; }
  .as-arrow.right{ right: 16px; }
}

/* Desktop - 900px and up */
@media (min-width: 900px){
  .hero-slider{
    height: 82dvh;
    min-height: 600px;
    max-height: 950px;
  }
  
  .hero-slider .slide{
    background-color: #fff;
  }

  .hero-slider .slide img{
    object-fit: contain;
  }
  
  .hero-slider .hero-overlay{
    background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.15));
  }
  
  .hero-slider .hero-inner{
    padding: 60px 40px;
  }
  
  .hero-slider .hero-content h1{
    font-size: clamp(42px, 4.5vw, 58px);
    margin-bottom: 28px;
    letter-spacing: -1px;
  }
  
  .hero-slider .hero-content p{
    font-size: clamp(16px, 2vw, 20px);
    max-width: 750px;
    line-height: 1.7;
  }
  
  .as-arrow{
    width: 56px;
    height: 56px;
    font-size: 36px;
    background: rgba(255, 255, 255, 0.12);
  }
  
  .as-arrow.left{ left: 32px; }
  .as-arrow.right{ right: 32px; }
}

/* Large Desktop - 1400px and up */
@media (min-width: 1400px){
  .hero-slider{
    height: 85dvh;
    max-height: 1050px;
  }
  
  .hero-slider .hero-inner{
    padding: 70px 50px;
  }
  
  .hero-slider .hero-content h1{
    font-size: 62px;
    margin-bottom: 32px;
  }
  
  .hero-slider .hero-content p{
    font-size: 21px;
    max-width: 850px;
    line-height: 1.8;
  }
  
  .as-arrow{
    width: 64px;
    height: 64px;
    font-size: 42px;
  }
  
  .as-arrow.left{ left: 48px; }
  .as-arrow.right{ right: 48px; }
}


/* BUTTONS */
.btn{
  display:inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
}

.btn-dark{
  background:#111;
  color:#fff;
}

.btn-light{
  background:#fff;
  color:#111;
}

/* SECTIONS */
.section{
  padding: 50px 0;
}

.section-gray{
  background:#f4f4f4;
}

.section-top{
  margin-bottom: 22px;
}

.section-top h2{
  font-size: 28px;
  margin-bottom: 10px;
}

.muted{ color:#555; }
.small{ font-size: 13px; }

/* GRID */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  overflow:hidden;
  background:#fff;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.card-body{
  padding: 14px;
}

.card-body h3{
  margin-bottom: 6px;
}

.link{
  display:inline-block;
  margin-top: 10px;
  color:#111;
  text-decoration:none;
  font-weight:700;
}

/* SHOP */
.shop-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.shop-item{
  background:#fff;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.shop-meta{
  padding: 12px 14px;
  display:flex;
  justify-content:space-between;
}

.price{ font-weight:700; }

/* ARTISTS */

/* Avatar centering - for artists listing page only */
.artist-card .artist-avatar{
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  border: 2px solid rgba(0,0,0,0.06);
}

/* ✅ remove extra space for Artists section only */
#artists.section{
  padding-top: 20px !important;
  padding-bottom: 20px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}



.artist-card{
  text-align:center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#artists .btn{
  margin-top: 14px;
  display: inline-block;
}


/* NEWS */
.news-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px;
  border-radius: 14px;
  text-decoration: none;
  color: #111;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.news-item .date{ 
  font-weight: 700; 
  color: #333;
  font-size: 13px;
}

.news-item .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-item .arrow{ 
  font-weight: 900;
  align-self: flex-end;
  font-size: 20px;
}

/* Mobile: Maintain vertical list */
@media (max-width: 768px) {
  .news-list {
    gap: 12px;
  }
  
  .news-item {
    padding: 16px 14px;
  }
}

@media (max-width: 480px) {
  .news-list {
    gap: 10px;
  }
  
  .news-item {
    padding: 14px 12px;
  }
}

/* FORM */
.form{
  max-width: 480px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.form input{
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.18);
  outline: none;
}

/* FOOTER */
.footer{
  padding: 30px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  flex-wrap:wrap;
}

/* SEARCH SECTION (Below Header) */
.search-section{
  background: #f9f9f9;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 16px 0;
  margin-top: 76px; /* Height of fixed header */
}

.search-social-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.search-wrapper{
  position: relative;
  flex: 0 1 400px;
  max-width: 400px;
  min-width: 200px;
}

.search-input{
  width: 100%;
  padding: 12px 40px 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.search-input:focus{
  outline: none;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12), 0 0 0 2px rgba(0,0,0,0.06);
}

/* Active search state - when user is typing */
.search-input.searching{
  border-color: rgba(0,0,0,0.15);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.search-icon{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.55;
  font-size: 16px;
  pointer-events: none;
}

.social-icons{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  flex-shrink: 0;
}

.social-icons .soc{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  position: relative;
  overflow: visible;
}

.social-icons .soc svg{
  width: 18px;
  height: 18px;
  transition: fill 0.18s ease, transform 0.18s ease;
  position: relative;
  z-index: 1;
  /* No default fill - brand colors set directly below */
}

/* Brand Colors - Applied immediately without flash */
.social-icons .soc[aria-label="Facebook"] svg {
  fill: #1877F2;
}

/* Instagram Brand Color */
.social-icons .soc[aria-label="Instagram"] svg {
  fill: #E4405F;
}

/* WhatsApp Brand Color */
.social-icons .soc[aria-label="WhatsApp"] svg {
  fill: #25D366;
}

.social-icons .soc:hover{
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.95);
}

/* Enhanced hover effects with brand colors */
.social-icons .soc[aria-label="Facebook"]:hover {
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

.social-icons .soc[aria-label="Instagram"]:hover {
  box-shadow: 0 8px 20px rgba(228, 64, 95, 0.3);
}

.social-icons .soc[aria-label="WhatsApp"]:hover {
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.social-icons .soc:hover svg {
  transform: scale(1.05);
}

/* MOBILE MENU OVERLAY */
.menu-overlay{
  position:fixed;
  inset:0;
  background: rgba(214,214,214,0.96);
  z-index:10000;
  opacity:0;
  pointer-events:none;
  transition: 0.25s ease;
}

.menu-overlay.active{
  opacity:1;
  pointer-events:auto;
}

.menu-close{
  position:absolute;
  top: 26px;
  right: 26px;
  font-size: 40px;
  background:transparent;
  border:none;
  cursor:pointer;
  color:#111;
}

.menu-links{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 24px;
}

.menu-link{
  text-decoration:none;
  color:#111;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 400;
  display: inline-block;
  width: fit-content;
}

/* RESPONSIVE */
@media(max-width: 900px){
  .desktop-nav{ display:none; }
  .hamburger{ display:flex; }

  /* Search section mobile adjustments */
  .search-section{
    padding: 12px 0;
    margin-top: 70px; /* Adjusted for smaller mobile header */
  }

  .search-social-row{
    gap: 16px;
  }

  .search-wrapper{
    flex: 0 1 300px;
    max-width: 300px;
  }

  .search-input{
    padding: 10px 36px 10px 16px;
    font-size: 13px;
  }

  .search-icon{
    right: 16px;
    font-size: 14px;
  }

  .social-icons{
    gap: 10px;
  }

  .social-icons .soc{
    width: 34px;
    height: 34px;
  }

  .social-icons .soc svg{
    width: 16px;
    height: 16px;
  }

  .grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* მობილურზე shop-grid - 3 სვეტი */
  .shop-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .shop-item img{
    height: 180px;
    object-fit: contain;
  }

  .shop-meta{
    padding: 8px 10px;
    font-size: 12px;
  }

  /* Grid cards responsive styling */
  .card img{
    height: 180px;
    object-fit: contain;
  }

  .card-body{
    padding: 8px 10px;
  }

  .card-body h3{
    font-size: 14px;
    margin-bottom: 4px;
  }

  .card-body p{
    font-size: 11px;
  }

  .link{
    font-size: 12px;
    margin-top: 6px;
  }

  .shop-meta .price{
    font-size: 12px;
  }

  .hero-content h1{
    font-size: 34px;
  }

  .header-row {
    min-height: 70px;
    padding: 12px 0;
  }

  .brand img {
    height: 40px;
  }

  .section {
    padding: 40px 0;
  }

  .section-top h2 {
    font-size: 28px;
  }

  .projects-track .card {
    flex: 0 0 calc((100% - 22px) / 2);
  }
}

@media(max-width: 600px){
  .header-row {
    min-height: 64px;
    padding: 10px 0;
  }

  .brand img {
    height: 36px;
  }

  .hero-slider{
    height: 75dvh;
    min-height: 380px;
  }

  .hero-slider .slide{
    background-size: cover;
  }

  .hero-slider .hero-inner{
    padding: 0 16px;
  }

  .hero-slider .hero-content h1{
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero-slider .hero-content p{
    font-size: 13px;
    line-height: 1.4;
    max-width: 90%;
  }

  .hero-slider .hero-arrow{
    font-size: 50px;
  }

  .hero-slider .hero-arrow.left{ left: 8px; }
  .hero-slider .hero-arrow.right{ right: 8px; }

  .search-section{
    margin-top: 65px; /* Match smaller header height */
    padding: 10px 0;
  }

  .search-social-row{
    gap: 10px;
  }

  .search-wrapper{
    flex: 1 1 auto;
    max-width: 60%;
    min-width: 150px;
  }

  .search-input{
    padding: 9px 32px 9px 14px;
    font-size: 12px;
  }

  .search-icon{
    right: 14px;
    font-size: 13px;
  }

  .social-icons{
    gap: 6px;
  }

  .social-icons .soc{
    width: 32px;
    height: 32px;
  }

  .social-icons .soc svg{
    width: 15px;
    height: 15px;
  }

  .section {
    padding: 30px 0;
  }

  .section-top h2 {
    font-size: 24px;
  }

  /* Ensure 3 columns even on very small screens */
  .grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .card img{
    height: 150px;
    object-fit: contain;
  }

  .card-body{
    padding: 6px 8px;
  }

  .card h3 {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .card p {
    font-size: 10px;
  }

  .link{
    font-size: 11px;
    margin-top: 4px;
  }

  .projects-track .card {
    flex: 0 0 100%;
  }

  /* მობილურზე არტისტები - 3 სვეტი (clean grid, no cropping) */
  .artists-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px;
    display: grid !important;
  }

  #homeArtistsGrid.artists-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    display: grid !important;
  }

  .artist-card{
    display: flex !important;
    flex-direction: column;
    align-items: center;
  }

  .artist-avatar{
    width: 40px;
    height: 40px;
    margin: 0 auto 6px;
    border-width: 2px;
  }

  .artist-card h3,
  .artist-card h4{
    font-size: 11px;
    margin-bottom: 2px;
  }

  .artist-card p{
    font-size: 9px;
  }
}
/* =========================
   DESKTOP – show 3 projects
========================= */
@media (min-width: 769px) {
  .projects-track .card {
    flex: 0 0 33.3333%;
  }
}

/* Smaller artist cards for very small mobile screens */
@media(max-width: 400px){
  .artists-grid {
    gap: 8px;
  }

  .artist-avatar{
    width: 55px;
    height: 55px;
    margin: 0 auto 5px;
  }

  .artist-card h3,
  .artist-card h4{
    font-size: 10px;
  }

  .artist-card p{
    font-size: 8px;
  }
}

/* ===== ArtistShare-style Hero Slider ===== */
.hero-as-slider{
  position: relative;
  height: 90dvh;
  min-height: 520px;
  background: #000;
  overflow: hidden;
}

/* სლაიდების ზონა */
.as-slides{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

/* სურათი იყოს ცენტრში და არ მოიჭრას */
.as-slide{
  max-width: 85%;
  max-height: 90%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.as-slide.active{
  opacity: 1;
}

/* ტექსტი შიგნით (ზემოდან) */
.as-text{
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 14px;
  color: #fff;
}

.as-text h1{
  font-size: 46px;
  margin-bottom: 10px;
}

.as-text p{
  opacity: 0.92;
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
}

/* Arrow styles are defined with the hero-slider responsive section */

/* მობილური */
@media(max-width: 900px){
  .as-slide{
    max-width: 92%;
    max-height: 82%;
  }

  .as-text h1{ font-size: 34px; }
}
.hero-as-slider{
  position: relative;
}

.avatar{
  width: 70px;
  height: 70px;
  border-radius: 999px;
  background: #ddd;
  margin: 0 auto 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* photos */
.art-page{
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px;
}

/* top layout */
.art-hero{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 50px;
}

.art-text h1{
  margin: 0 0 12px;
  font-size: 32px;
}

.art-text p{
  margin: 0 0 12px;
  line-height: 1.6;
}

.art-details{
  margin: 16px 0 0;
  padding-left: 18px;
}

/* right image */
.art-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* gallery */
.art-gallery h2{
  margin: 0 0 16px;
  font-size: 22px;
}

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  cursor: pointer;
  transition: transform .2s ease;
}

.gallery-grid img:hover{
  transform: scale(1.02);
}

/* responsive */
@media (max-width: 850px){
  .art-hero{
    grid-template-columns: 1fr;
  }
  .gallery-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid img{
    object-fit: contain;
  }
}
@media (max-width: 480px){
  .gallery-grid{
    grid-template-columns: 1fr;
  }
  .gallery-grid img{
    height: auto;
  }
}
/* PROJECT PAGE */
.project-page{
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 16px;
}

.project-hero{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 50px;
}

.project-text h1{
  margin: 0 0 10px;
  font-size: 32px;
}

.project-details{
  margin: 16px 0 0;
  padding-left: 18px;
}

.project-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.project-gallery h2{
  margin: 0 0 14px;
  font-size: 22px;
}

.gallery-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-list img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.gallery-list img:hover{
  transform: scale(1.02);
}

@media (max-width: 768px){
  .gallery-list img{
    object-fit: contain;
  }
}

/* Responsive: Keep 3 columns on all screen sizes */
@media (max-width: 900px){
  .gallery-list{
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .gallery-list img{
    height: 150px;
  }
}
@media (max-width: 520px){
  .gallery-list{
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .gallery-list img{
    height: 120px;
  }
}


@media (max-width: 850px){
  .project-hero{
    grid-template-columns: 1fr;
  }
}
/* LIGHTBOX */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(3px);
}

.lightbox.open{
  opacity: 1;
  visibility: visible;
}

.lightbox-img{
  max-width: 92vw;
  max-height: 88dvh;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  object-fit: contain;
  cursor: default;
  pointer-events: auto;
}

.lightbox.open .lightbox-img{
  transform: scale(1);
}

.close{
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 10001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
}

.close:hover{
  transform: scale(1.1);
  opacity: 0.8;
}
/* =========================
   SALE / SOLD FILTER BUTTONS
========================= */
.filter-tabs{
  display:flex;
  flex-wrap: wrap;
  gap:10px;
  align-items:center;
  margin: 10px 0 20px;
}

.tab-btn{
  border:1px solid #111;
  background:#fff;
  color:#111;
  font-weight:800;
  font-size:14px;
  padding:10px 22px;
  border-radius:999px;
  cursor:pointer;
  transition:.2s ease;
}

.tab-btn.active{
  background:#111;
  color:#fff;
}

/* =========================
   SOLD RED DOT before price
========================= */
.shop-item.sold .price::before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:red;
  margin-right:8px;
  vertical-align:middle;
}

/* make sure SALE never gets dot */
.shop-item:not(.sold) .price::before{
  content:none;
}
/* Small gallery grid for sale/shop page */
.shop-grid-small{
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.shop-grid-small .shop-item img{
  height: 240px;      /* პატარა ფანჯარა */
  object-fit: contain;
}

/* tablet */
@media (max-width: 1000px){
  .shop-grid-small{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* mobile */
@media (max-width: 700px){
  .shop-grid-small{
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .shop-grid-small .shop-item img{
    height: 140px;
  }
}

@media (max-width: 420px){
  .shop-grid-small{
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .shop-grid-small .shop-item img{
    height: 120px;
  }
}
.product-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 99999;
}

.product-modal.open{ display:flex; }

.product-modal-box{
  width: min(980px, 96vw);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 50px rgba(0,0,0,.35);
  pointer-events: auto;
}

.product-close{
  position: absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 10002;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-close:active{
  transform: scale(0.9);
  background: #333;
}

.product-layout{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}

.product-left{
  background: #f4f4f4;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}

.product-left img{
  max-width: 100%;
  max-height: 70dvh;
  object-fit: contain;
  border-radius: 16px;
}

.product-right{
  padding: 22px;
}

.product-info{
  margin: 14px 0;
  padding-left: 18px;
  line-height: 1.6;
}

.product-price{
  font-size: 20px;
  font-weight: 900;
}

.product-right .status {
  font-size: 14px;
  margin-top: 5px;
}

.product-right .status.sold {
  color: red;
  font-weight: 600;
}

.product-right .status.sale {
  color: green;
  font-weight: 600;
}

@media(max-width: 900px){
  .product-layout{
    grid-template-columns: 1fr;
  }

  /* Fix mobile image cropping */
  .product-left{
    min-height: 60dvh;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-left img{
    max-height: 60dvh;
    height: auto;
    width: 100%;
    object-fit: contain;
  }

  .product-gallery{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60dvh;
  }

  .product-gallery #productImg{
    width: 100%;
    height: auto;
    max-height: 60dvh;
    object-fit: contain;
    cursor: pointer;
  }
  
  /* Ensure modal z-index hierarchy */
  .product-modal{
    z-index: 100000;
    pointer-events: auto;
  }
  
  .product-modal-box{
    max-height: 95dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.shop-item img{
  width: 100%;
  height: 320px;
  object-fit: contain;  /* მთლიანად ჩანდეს */
  background: #fff;     /* რომ ცარიელი ადგილი თეთრი იყოს */
  display: block;
}
/* ===== MOBILE 3-COLUMN GRID for HOME SHOP ===== */
@media (max-width: 900px){
  #homeShopGrid{
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    overflow-x: hidden !important;
  }

  #homeShopGrid .shop-item{
    flex: none !important;
  }

  /* ✅ Scale down images to fit 3 columns */
  #homeShopGrid .shop-item img{
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fff;
    display: block;
  }
}

@media (max-width: 768px){
  #homeShopGrid{
    gap: 8px !important;
  }

  #homeShopGrid .shop-item img{
    height: 160px;
    object-fit: contain;
  }
}

@media (max-width: 480px){
  #homeShopGrid{
    gap: 6px !important;
  }

  #homeShopGrid .shop-item img{
    height: 140px;
    object-fit: contain;
  }
}
.shop-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shop-meta span:first-child{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 65%;
}

.shop-meta .price{
  white-space: nowrap;
  font-weight: 800;
}
/* ===== FILTER BUTTONS (PILL) ===== */
.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border-radius: 999px;

  border: 1px solid #111;
  background: #fff;
  color: #000;

  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;

  /* effects */
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}

.pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.16);
}

.pill:active{
  transform: translateY(0px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.10);
}

/* ✅ links */
a.pill,
a.pill:visited{
  color: inherit;
  text-decoration: none;
}

/* ✅ pill active */
.filter-tabs .pill.active{
  background: #111;
  color: #fff;
  border-color: #111;
}

/* optional: arrow on home sale buttons */
.homeSaleBtns .pill::after{
  content: " →";
  font-weight: 800;
  margin-left: 6px;
}

@media (max-width: 600px){
  .pill{
    padding: 8px 16px;
    font-size: 13px;
  }
}




.menu-social{
  margin-top: 26px;
  display: flex !important;
  justify-content: center;
  gap: 16px;
}

.menu-social .soc{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: #111;

  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  position: relative;
  overflow: visible;
}

.menu-social .soc svg{
  width: 22px;
  height: 22px;
  fill: #111;
  transition: fill 0.18s ease, transform 0.18s ease;
  position: relative;
  z-index: 1;
}

/* Mobile Menu - Facebook Brand Color */
.menu-social .soc[aria-label="Facebook"] svg {
  fill: #1877F2 !important;
}

/* Mobile Menu - Instagram Brand Color */
.menu-social .soc[aria-label="Instagram"] svg {
  fill: #E4405F !important;
}

/* Mobile Menu - WhatsApp Brand Color */
.menu-social .soc[aria-label="WhatsApp"] svg {
  fill: #25D366 !important;
}

.menu-social .soc:hover{
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 12px 26px rgba(0,0,0,0.20);
  background: rgba(255,255,255,0.75);
}

/* Mobile Menu - Enhanced hover effects */
.menu-social .soc[aria-label="Facebook"]:hover {
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.3);
}

.menu-social .soc[aria-label="Instagram"]:hover {
  box-shadow: 0 12px 30px rgba(228, 64, 95, 0.3);
}

.menu-social .soc[aria-label="WhatsApp"]:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.3);
}

.menu-social .soc:hover svg {
  transform: scale(1.05);
}
.imgModal img{
  max-width: 92vw;
  max-height: 86dvh;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  background: #fff;
}

.imgClose{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: #fff;
  font-size: 20px;
  font-weight: 900;

  
}
.addArtworkBox{
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  background: #fff;
}
.addArtworkBox h3{
  margin: 0 0 12px;
}
.addArtworkBox .form{
  display: grid;
  gap: 10px;
}
.addArtworkBox input,
.addArtworkBox select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.20);
  outline: none;
}
/* Modal overlay */
.imgModal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  place-items: center;
  padding: 18px;
  z-index: 9999;
}

.imgModal.open{ display: grid; }

.imgClose{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

/* modal box layout */
.imgModalBox{
  width: min(1100px, 95vw);
  height: min(700px, 85vh);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}

/* left image */
.imgModalLeft{
  background: #111;
  display: grid;
  place-items: center;
}

#imgModalPic{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* right info */
.imgModalRight{
  padding: 18px;
  overflow: auto;
}

.modalTitle{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.modalPrice{
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.modalMeta{
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.modalBadge{
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #eee;
  margin-bottom: 12px;
}

/* Mobile modal */
@media (max-width: 800px){
  .imgModalBox{
    grid-template-columns: 1fr;
    height: auto;
    max-height: 90dvh;
  }
  .imgModalLeft{
    height: 45dvh;
  }

  /* Ensure close button is visible on mobile */
  .imgClose{
    position: fixed !important;
    top: 12px !important;
    right: 12px !important;
    width: 48px !important;
    height: 48px !important;
    z-index: 10000 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    font-size: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 768px){
  /* Product modal close button - CRITICAL MOBILE FIX */
  .product-close{
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    width: 52px !important;
    height: 52px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    color: #111 !important;
    border: 2px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
    font-size: 26px !important;
    font-weight: bold !important;
    z-index: 100010 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    cursor: pointer !important;
  }
  
  .product-close:active{
    transform: scale(0.92) !important;
    background: rgba(240, 240, 240, 0.98) !important;
  }

  /* Lightbox close button mobile fix */
  .close{
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001 !important;
    font-size: 32px;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
  }

  .close:active{
    transform: scale(0.9);
  }

  .lightbox{
    padding: 15px;
  }

  .lightbox-img{
    max-width: 95vw;
    max-height: 90dvh;
    border-radius: 12px;
  }

  /* Image modal close button mobile fix */
  .imgClose{
    position: fixed !important;
    top: 10px !important;
    right: 10px !important;
    width: 50px !important;
    height: 50px !important;
    z-index: 10001 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
    font-size: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }
}
/* ===========================
   FEATURED PROJECTS SLIDER
   (Shows 3 cards at a time)
=========================== */
#support .container {
  /* Add padding on desktop to accommodate arrows positioned outside */
  padding-left: 10px;
  padding-right: 10px;
}

.projects-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  /* Explicitly allow arrows to extend outside on desktop */
  overflow: visible;
}

.projects-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.projects-track {
  display: flex;
  gap: 22px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Desktop: Show exactly 3 cards */
.projects-track .card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  max-width: calc((100% - 44px) / 3);
}

/* Arrow Buttons */
.projects-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  z-index: 100;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  color: #111;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  pointer-events: all;
}

.projects-arrow.left { 
  left: -60px; 
}

.projects-arrow.right { 
  right: -60px; 
}

.projects-arrow:hover:not(:disabled) {
  border-color: #111;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.projects-arrow:active:not(:disabled) {
  transform: translateY(-50%) scale(0.95);
}

.projects-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Tablet: Show 2 cards */
@media (max-width: 900px) {
  /* Remove desktop container padding on tablet */
  #support .container {
    padding-left: 4%;
    padding-right: 4%;
  }
  
  .projects-track .card {
    flex: 0 0 calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }
  
  .projects-arrow {
    /* Ensure arrows are always visible on tablet */
    display: flex !important;
    opacity: 1 !important;
    pointer-events: all !important;
  }
  
  .projects-arrow.left { 
    left: 8px; 
  }
  
  .projects-arrow.right { 
    right: 8px; 
  }
  
  .projects-slider-wrap {
    /* Override desktop overflow for tablet */
    overflow: hidden;
    padding: 0 4px;
  }
}

/* Mobile: Show 3 cards simultaneously */
@media (max-width: 600px) {
  /* Remove desktop container padding on mobile */
  #support .container {
    padding-left: 0%;
    padding-right: 0%;
  }
  
  .projects-track .card {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }

  .projects-track {
    gap: 16px;
  }

  .projects-arrow {
    width: 42px;
    height: 42px;
    font-size: 18px;
    /* Ensure arrows are always visible and accessible */
    display: flex !important;
    opacity: 1 !important;
    pointer-events: all !important;
  }

  .projects-arrow.left { 
    left: 8px; 
  }
  
  .projects-arrow.right { 
    right: 8px; 
  }
  
  .projects-slider-wrap {
    /* Override desktop overflow for mobile */
    overflow: hidden;
    padding: 0 4px;
  }
}

/* ===========================
   CLICKABLE PROJECT CARDS
=========================== */
/* Cards are now fully clickable anchor tags */
.projects-track .card {
  position: relative;
  cursor: pointer;
}

/* Keep link text styling */
.projects-track .card .link {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  color: #111;
  text-decoration: none;
  font-weight: 700;
  pointer-events: none;
}

.project-paragraph{
  line-height: 1.3;      /* ხაზებს შორის დაშორება */
  margin: 0 0 18px;      /* აბზაცებს შორის დაშორება */
}

.project-paragraph.eng{
  margin-top: 10px;      /* ქართულსა და ინგლისურს შორის დაშორება */
}

.project-paragraph.geo{
  font-size: 16px;
}

.project-paragraph.eng{
  font-size: 15px;
  opacity: 0.9;
}
/* =========================
   PRODUCT GALLERY (Modal)
========================= */

.product-gallery{
  position: relative;
  width: 100%;
}

.product-gallery #productImg{
  width: 100%;
  display: block;
  border-radius: 16px;
}

.gallery-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.gallery-arrow.left{ left: 12px; }
.gallery-arrow.right{ right: 12px; }

/* ✅ bigger thumbnails */
.product-thumbs{
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.product-thumb{
  width: 92px;      /* ✅ აქ აკონტროლებ ზომას */
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.85;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-thumb:hover{
  transform: scale(1.07);
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

.product-thumb.active{
  opacity: 1;
  border-color: #111;
}


.welcome-banner{
  padding-top: 90px;        /* header fixed-ის გამო */
  padding-bottom: 18px;
  background: #fff;
}

.welcome-banner p{
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
}
/* ===== CLOTH BANNER under header ===== */
.cloth-banner{
  margin-top: 0;
  width: 100%;
  min-height: 120px;
  height: auto;

  padding: 12px 16px;

  background-image: image-set(url("./images/linen.webp") type("image/webp"), url("./images/linen.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #fff;

  position: relative;
  overflow: visible; /* ტექსტი აღარ მოიჭრება */
}

/* soft overlay (lighter, text-friendly) */
.cloth-banner::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:1;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.12) 35%,
    rgba(0,0,0,0.00) 70%
  );
}

/* ===== CLOTH BANNER TEXT ===== */
.cloth-banner-text{
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;

  padding: 6px 0;

  font-family: "FiraGO", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Georgian text */
.cloth-banner-text .ka{
  font-weight: 700;
  font-size: clamp(16px, 4vw, 20px);
  margin-bottom: 4px;
  text-align: center;
}

/* English text */
.cloth-banner-text .en{
  font-weight: 500;
  font-size: clamp(14px, 3.5vw, 18px);
  line-height: 1.6;
}

/* ===== HERO SLIDER (legacy slide-bg support) ===== */

.hero-slides{
  position:absolute;
  inset:0;
}

.hero-slides .slide{
  position:absolute;
  inset:0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity:0;
  transition: opacity .35s ease;
  background-color: #fff;
}

.hero-slides .slide.active{
  opacity:1;
}

.hero-slider::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:80px;
  z-index:2;
  pointer-events:none;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0)
  );
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px){
  .cloth-banner{
    min-height: 140px;
    padding: 14px 10px;
  }
}

@media (max-width: 600px){
  .cloth-banner{
    min-height: 160px;
    padding: 14px 8px;
  }
}

/* ===== MORE PHOTOS ===== */
.morePhotosWrap{
  margin-top: 14px;
  display: flex;
  justify-content: center;
}


/* ✅ round button */
.morePhotosBtn{
  border: 1px solid rgba(0,0,0,0.20);
  background: #fff;
  cursor: pointer;

  padding: 10px 18px;
  border-radius: 999px;

  font-weight: 800;
  font-size: 14px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  transition: transform .18s ease, box-shadow .18s ease;
}

.morePhotosBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.14);
}

.morePhotosBtn .arrow{
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}

/* როცა გახსნილია - ისარი აიწევა */
.morePhotosBtn.open .arrow{
  transform: rotate(180deg);
}

.morePhotosRow{
  margin-top: 12px;
  display: flex;
  justify-content: center; /* ✅ ქვემოთ ცენტრში */
}
.preview-tabs{
  display:flex;
  gap:12px;
  margin:15px 0 25px;
}

.preview-btn{
  border:1px solid #000;
  padding:10px 18px;
  border-radius:25px;
  background:#fff;
  font-weight:600;
  cursor:pointer;
  position:relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  transform: translateY(0);
}

.preview-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.1);
  border-color: #111;
}

.preview-btn:active{
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  transition-duration: 0.1s;
}

.preview-btn.active{
  background:#000;
  color:#fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.15);
}

.preview-btn.active:hover{
  background:#111;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3), 0 2px 6px rgba(0,0,0,0.2);
}

/* Disable lift effect on touch devices for better mobile UX */
@media (hover: none) {
  .preview-btn:hover{
    transform: translateY(0);
  }
  .preview-btn.active:hover{
    transform: translateY(0);
  }
}

.home-shop-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  margin-bottom:20px;
}

/* მობილურზე home-shop-grid */
@media (max-width: 700px){
  .home-shop-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .home-card-img{
    height: 140px;
  }
}

@media (max-width: 420px){
  .home-shop-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .home-card-img{
    height: 120px;
  }
}

.home-card{
  border:1px solid #eee;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
}

.home-card-img{
  position:relative;
  height:230px;
}

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

.home-badge{
  position:absolute;
  top:12px;
  left:12px;
  padding:6px 12px;
  font-size:12px;
  font-weight:700;
  border-radius:20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15), 0 1px 3px rgba(0,0,0,0.08);
  transform: translateY(0) scale(1);
  z-index: 2;
}

.home-badge.sale{ 
  background:#000; 
  color:#fff; 
}

.home-badge.sold{ 
  background:#777; 
  color:#fff; 
}

/* Hover effects for badges on cards */
.home-card:hover .home-badge{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.15);
}

.home-badge.sale:hover{
  background:#111;
}

.home-badge.sold:hover{
  background:#888;
}

/* Disable hover effects on touch devices */
@media (hover: none) {
  .home-card:hover .home-badge{
    transform: translateY(0) scale(1);
  }
}

.home-card-info{
  padding:14px;
}

.home-price{
  font-weight:700;
  margin:8px 0;
}

.home-link{
  text-decoration:none;
  font-weight:600;
}

.home-shop-preview .btn{
  font-size: 18px;
  padding: 16px 22px;
}
.home-shop-preview .btn,
.home-shop-preview .btn:visited{
  color:#000;
  text-decoration: none;
}

.home-shop-preview .btn:hover{
  text-decoration: underline;
}

#support.section{
  padding-bottom: 20px !important;  /* დააკელი */
  margin-bottom: 0 !important;
}

#artworks {
  margin-top: 0px !important;
  padding-top: 0px !important;
}
.morePhotosRow{ display:none !important; }
/* ✅ Keep price + add to cart on first row, move More photos down */
.product-buy{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.product-buy .product-price{
  flex: 0 0 auto;
  order: 1;
}

.product-buy .status{
  order: 4;
  width: 100%;
}

.product-buy #addToCartBtn{
  margin-left: auto;
  flex: 0 0 auto;
  order: 2;
}

/* ✅ More photos ქვემოთ, შუაში */
.product-buy #morePhotosBtn{
  order: 3;
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

#artists a.btn{
  font-family: Arial, Helvetica, sans-serif !important; /* ✅ იგივე შრიფტი */
  font-size: 18px !important;                           /* შეგიძლია 15px-ც */
  font-weight: 700 !important;                          /* ზემოთასავით სქელი */
  color: #111 !important;

  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;

  text-decoration: none !important;
}

#artists a.btn:hover{
  text-decoration: underline !important;
}
/* 🔴 მხოლოდ SOLD ტექსტი (პირველი ელემენტი) */
.shop-item.sold .shop-meta > *:first-child {
  color: #e53935 !important;
  font-weight: 700;
}


.artists-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 20px auto;
  padding: 0 20px;
}

/* Artists page only - match Featured Artists visual scale */
.artists-grid .artist-avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  border: 2px solid rgba(0,0,0,0.06);
}

.artists-grid .artist-card h3 {
  font-size: 1rem; /* 16px */
}

.artists-grid .artist-style {
  font-size: 0.8125rem; /* 13px */
}

.artists-grid .flag-icon {
  width: 17px;
  height: 17px;
}

.artist-card{
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease;
}

.artist-card h3 {
  font-size: 1.125rem; /* 18px - subtle emphasis */
  font-weight: 600;
  margin: 0 0 6px 0;
  color: #111;
  line-height: 1.3;
}

.artist-card .artist-style {
  font-size: 0.9375rem; /* 15px - improved readability */
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.artist-card:hover{
  transform: translateY(-2px);
}

/* Artist Header Layout */
.artist-header {
  margin: 20px 0 32px 0;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.artist-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0,0,0,0.06);
  background-color: #f5f5f5;
  margin: 0 0 12px 0; /* Left-aligned */
}

.artist-info {
  width: 100%;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.artist-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.artist-name {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: #111;
}

/* Artist link styling (for inline links like Mzia Kashia in About page) */
.artist-link {
  color: #c9a66b; /* Soft beige/golden tone */
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(201, 166, 107, 0.3);
  padding-bottom: 1px;
}

.artist-link:hover {
  color: #b8935a; /* Darker on hover */
  text-decoration: none;
  border-bottom-color: #b8935a;
  transform: translateY(-1px);
}

.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.artist-style {
  margin: 0;
  font-size: 0.9375rem; /* 15px - base size, improved from 13px */
  color: #666;
  line-height: 1.4;
  text-align: center;
}

.hidden {
  display: none;
}

/* ABOUT SECTION LAYOUT */
/* About Button - Light Outline Style */
.about-toggle {
  background: transparent;
  color: #666;
  border: 1px solid #ddd;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.about-toggle:hover {
  border-color: #999;
  color: #333;
  background: #f9f9f9;
}

.about-toggle:active {
  background: #f0f0f0;
}

/* About Artist Content */
.about-artist {
  width: 100%;
  padding: 14px;
  background: #fafafa;
  border-radius: 12px;
  text-align: left;
  margin-top: 0;
  display: none;
}

.about-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  justify-content: flex-start;
}

.lang-switch {
  background: #e8e8e8;
  color: #666;
  border: none;
  padding: 5px 12px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.lang-switch.active,
.lang-switch:hover {
  background: #1a1a1a;
  color: #fff;
  opacity: 1;
}

/* Responsive: Artist Header Mobile */
@media (max-width: 768px) {
  .artist-header {
    margin: 16px 0 24px 0;
  }
  
  .artist-avatar {
    width: 75px;
    height: 75px;
    margin-bottom: 10px;
  }
  
  .artist-name {
    font-size: 18px;
  }
  
  .artist-title-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .about-artist {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .artist-avatar {
    width: 70px;
    height: 70px;
  }
  
  .artist-name {
    font-size: 17px;
  }
}

/* SUPPORT HERO */
.support-hero {
  height: 75dvh;
  background: url("./images/garden9.webp") center / cover no-repeat;
  position: relative;
  margin-top: 80px;
}

.support-hero-overlay {
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
}

.support-hero-content {
  color: #fff;
  max-width: 620px;
  margin-top: -190px;
}

.support-hero h1 {
  font-size: 44px;
  margin-bottom: 16px;
}

.support-hero p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
}

.support-hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
}

/* light outline button */
.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 22px;
  text-decoration: none;
}

.btn-outline-light:hover {
  background: #fff;
  color: #000;
}
/* SUPPORT INTRO */
.support-intro {
  max-width: 640px;
  margin-bottom: 40px;
}

/* SUPPORT OPTIONS */
.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.support-card {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.support-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
}

/* CONTACT FORM */
.support-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.support-form form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.support-form input,
.support-form textarea {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: inherit;
}

.support-form input:focus,
.support-form textarea:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.support-form button[type="submit"] {
  margin-top: 8px;
}

.support-form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form Status Messages */
.form-status {
  display: none;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.form-status a {
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}

.form-status a:hover {
  text-decoration: none;
}

.lang-switch {
  display: flex;
  gap: 8px;
  margin-left: auto; /* Push to right side */
  flex-shrink: 0; /* Prevent shrinking */
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 6px;

  background: #fff;
  border: none;
  border-radius: 22px;
  padding: 6px 10px;

  font-size: 12px;
  font-weight: 500;
  cursor: pointer;

  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

.lang-item img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-item span {
  letter-spacing: 0.5px;
}

.lang-item .arrow {
  font-style: normal;
  font-size: 14px;
  transform: translateX(0);
  transition: transform 0.25s ease;
  opacity: 0.6;
}

/* hover animation */
.lang-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.lang-item:hover .arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* active language */
.lang-item.active {
  background: #000;
  color: #fff;
}

.lang-item.active .arrow {
  opacity: 1;
}
/* ===== MOBILE FULLSCREEN IMAGE VIEWER ===== */
.mobile-image-viewer{
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 100000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-image-viewer.open{
  display: flex;
  opacity: 1;
}

.mobile-viewer-container{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Top bar with back and zoom buttons */
.mobile-viewer-top{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent);
  z-index: 10;
}

.mobile-viewer-back{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #111;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.mobile-viewer-back:active{
  transform: scale(0.95);
}

.mobile-viewer-zoom{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #111;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.mobile-viewer-zoom:active{
  transform: scale(0.95);
}

/* Main image area */
.mobile-viewer-image-container{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 15px 15px;
  overflow: hidden;
  position: relative;
}

.mobile-viewer-image{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  touch-action: none;
}

.mobile-viewer-image.zoomed{
  transform: scale(2);
  cursor: move;
}

/* Navigation arrows */
.mobile-viewer-arrows{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: none;
}

.mobile-viewer-arrow{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #111;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
  transition: transform 0.2s ease;
}

.mobile-viewer-arrow:active{
  transform: scale(0.95);
}

/* Bottom thumbnail panel */
.mobile-viewer-bottom{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.85);
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  max-height: 35dvh;
  overflow-y: auto;
}

.mobile-viewer-bottom.show{
  transform: translateY(0);
}

.mobile-viewer-thumbs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.mobile-viewer-thumb{
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  cursor: pointer;
  border: 3px solid transparent;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.mobile-viewer-thumb.active{
  border-color: #fff;
  opacity: 1;
  transform: scale(1.05);
}

.mobile-viewer-thumb:active{
  transform: scale(0.95);
}

/* Toggle button for thumbnails */
.mobile-viewer-toggle-thumbs{
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
  z-index: 11;
}

.mobile-viewer-toggle-thumbs:active{
  transform: translateX(-50%) scale(0.95);
}

.mobile-viewer-toggle-thumbs .arrow{
  font-size: 16px;
  transition: transform 0.3s ease;
}

.mobile-viewer-toggle-thumbs.open .arrow{
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  /* Product page mobile fixes */
  .product-left{
    padding: 10px;
    min-height: 60dvh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-left img,
  .product-gallery #productImg{
    max-height: 60dvh !important;
    height: auto !important;
    width: 100% !important;
    object-fit: contain !important;
    cursor: pointer !important;
  }

  .product-right{
    padding: 16px;
  }

  /* FIX: Language switcher mobile positioning */
  .lang-switch {
    position: absolute;
    top: 50%;
    right: 70px; /* Space for hamburger button */
    transform: translateY(-50%);
    margin-left: 0;
    gap: 6px;
    z-index: 100; /* Above nav elements but below modal */
  }

  .lang-item {
    padding: 8px;
    pointer-events: auto; /* Ensure touch works */
    touch-action: manipulation; /* Prevent zoom on double-tap */
  }

  .lang-item span {
    display: none; /* მხოლოდ დროშები მობილზე */
  }

  .lang-item img {
    width: 20px;
    height: 20px;
  }

  /* Prevent event conflicts on mobile */
  .desktop-nav a {
    pointer-events: auto;
    touch-action: manipulation;
  }
  
  /* Menu links only clickable when overlay is active */
  .menu-overlay.active .menu-link {
    pointer-events: auto;
    touch-action: manipulation;
  }

  /* Search bar and social icons: keep horizontal on mobile */
  .search-social-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .search-wrapper{
    flex: 1 1 auto;
    max-width: 65%;
    min-width: 140px;
  }

  .search-input{
    padding: 9px 32px 9px 14px;
    font-size: 12px;
  }

  .search-icon{
    right: 14px;
    font-size: 13px;
  }

  .social-icons{
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-shrink: 0;
  }

  .social-icons .soc{
    width: 32px;
    height: 32px;
  }

  .social-icons .soc svg{
    width: 15px;
    height: 15px;
  }

  .lang-switch {
    margin-left: auto;
    gap: 6px;
  }

  .lang-item span {
    display: none; /* მხოლოდ დროშები მობილზე */
  }

  .lang-item {
    padding: 8px; /* Slightly larger touch target */
  }

  .lang-item img {
    width: 20px;
    height: 20px;
  }

  /* Mobile auth UI adjustments */
  .user-info {
    gap: 6px;
  }

  .user-avatar {
    width: 28px;
    height: 28px;
  }

  .user-name {
    font-size: 12px;
    max-width: 80px;
  }

  .logout-btn {
    padding: 8px 10px;
    font-size: 12px;
  }

  .nav-btn {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .lang-switch {
    gap: 4px;
  }

  .lang-item {
    padding: 6px;
  }

  .lang-item img {
    width: 18px;
    height: 18px;
  }

  .lang-item .arrow {
    display: none; /* Hide arrow on very small screens */
  }

  /* Very small screens - compact auth UI */
  .user-name {
    display: none; /* Hide name on very small screens */
  }

  .user-info {
    gap: 8px;
  }
}
.news-title{
  font-weight: 800;
  display: block;
}

.news-content{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  display: block;
  margin-top: 10px;
}

/* გახსნილი მდგომარეობა */
.news-item.open .news-content{
  max-height: 500px; /* საკმარისად დიდი */
}

/* ისრის ანიმაცია */
.news-item .arrow{
  transition: transform 0.3s ease;
}

.news-item.open .arrow{
  transform: rotate(90deg);
}
.news-title{
  display: block;
}

.news-title .title-ka{
  display: block;
  font-weight: 800;
  color: #111;
}

.news-title .title-en{
  display: block;
  margin-top: 4px;        /* ქვემოთ ჩამოსწევს */
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.news-item:hover .news-title .title-ka,
.news-item:hover .news-title .title-en{
  color: #111;
}
.news-content p{
  margin: 0 0 12px;
  line-height: 1.6;
}

.news-content .para-ka{
  color: #111;
}

.news-content .para-en{
  color: #777;        /* ღია ფერი */
  font-size: 14px;    /* ოდნავ პატარა */
}
.brand-highlight{
  font-weight: 700;
  color: #111;
}

.artists-wrapper{
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1100px;
  margin: 20px auto;
}

.artists-track{
  display: flex;
  gap: 40px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.artist-card{
  flex: 0 0 220px;
  text-align: center;
}

.artist-arrow{
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  padding: 10px;
  color: #111;
  opacity: 0.6;
}

.artist-arrow:hover{
  opacity: 1;
}
/* =========================
   MOBILE MENU FIX
========================= */

@media (max-width: 768px) {

  .cloth-banner-text {
    font-size: 13px;
    line-height: 1.4;
    padding: 0 12px;
    transform: translateY(-6px);
  }

  .cloth-banner-text .ka,
  .cloth-banner-text .en {
    font-size: 13px;
  }

  .cloth-banner-text .en-wide {
    display: none; /* Hide long English text on mobile */
  }

  .menu-overlay {
    background: rgba(245,245,245,0.95);
  }

  .menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 100px;
    padding: 0 20px;
  }

  .menu-link,
  .menu-links a {
    font-size: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    font-weight: 600;
  }

  /* Artists რომ აღარ იყოს ლურჯი */
  .menu-links a {
    color: #111;
  }

  .menu-close {
    top: 20px;
    right: 20px;
    font-size: 36px;
  }

  .menu-social {
    margin-top: 30px;
    display: flex;
    gap: 18px;
  }

  .menu-social .soc {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .cloth-banner-text {
    font-size: 12px;
    line-height: 1.35;
    padding: 0 8px;
    transform: translateY(-4px);
  }

  .cloth-banner-text .ka,
  .cloth-banner-text .en {
    font-size: 12px;
  }

  .menu-link,
  .menu-links a {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
/* 🔥 FIX: overlays must not block clicks */
.hero-overlay {
  pointer-events: none;
}

/* Mobile menu overlay should block clicks ONLY when active */
.menu-overlay {
  pointer-events: none;
}

.menu-overlay.active {
  pointer-events: auto;
}

/* =========================
   PAYMENT DETAILS MODAL
========================= */
.payment-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 10000;
  padding: 20px;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
}

.payment-modal.open {
  display: flex;
}

.payment-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.payment-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.payment-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.payment-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
}

.payment-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 28px;
}

.payment-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.payment-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.payment-label {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.payment-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  background: #f9f9f9;
  font-family: 'Courier New', monospace;
  transition: all 0.2s ease;
}

.payment-input:focus {
  outline: none;
  border-color: #000;
  background: #fff;
}

.copy-btn {
  padding: 14px 18px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.copy-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.copy-btn:active {
  transform: scale(0.95);
}

.copy-btn.copied {
  background: #28a745;
  color: #fff;
  border-color: #28a745;
}

.copy-btn svg {
  flex-shrink: 0;
}

.payment-note {
  text-align: center;
  font-size: 15px;
  color: #666;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .payment-modal {
    padding: 16px;
  }

  .payment-modal-content {
    padding: 28px 20px;
    max-height: 90dvh;
    overflow-y: auto;
  }

  .payment-title {
    font-size: 22px;
  }

  .payment-input {
    font-size: 14px;
    padding: 12px 14px;
  }

  .copy-btn {
    padding: 12px 14px;
  }

  .copy-text {
    display: none;
  }

  .copy-btn {
    min-width: 48px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .payment-modal-content {
    padding: 24px 16px;
  }

  .payment-title {
    font-size: 20px;
  }

  .payment-input {
    font-size: 13px;
  }
}
/* ===================================
   MOBILE HORIZONTAL SCROLL FIX
   Prevent any sideways movement
=================================== */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative;
  }
  
  body > * {
    max-width: 100vw;
  }
  
  .container,
  .section,
  .hero-slider,
  .artists-grid,
  .shop-grid {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  /* Projects slider wrap manages its own overflow per breakpoint */
  .projects-slider-wrap {
    max-width: 100% !important;
    /* Overflow controlled by specific breakpoints, not here */
  }
  
  /* Ensure all images stay within bounds */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Lock sliders horizontally */
  .projects-slider,
  .shop-slider {
    overflow-x: hidden !important;
  }
  
  /* Prevent any element from creating horizontal scroll */
  * {
    max-width: 100vw;
  }
}
/* Shop header: title + filters + line art */
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

/* Filter buttons row */
.filter-tabs.with-art {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

/* Line art next to SALE / SOLD */
.shop-line-art {
  display: block;
  width: 280px;
  height: 70px;
  background-image: url("../images/line-hand.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  opacity: 0.85;
  flex-shrink: 0;
  
  margin-left: 30px;
  transform: translateY(-8px);
  
  /* Enhance visibility and sharpness */
  filter: contrast(1.4) brightness(0.75);
}

/* Mobile / Tablet */
@media (max-width: 900px) {
  .shop-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
  }

  .shop-line-art {
    width: 100%;
    max-width: 320px;
    height: 60px;
    margin-left: 0;
    transform: none;
    background-position: left center;
  }
}

/* Small Mobile - further reduce decorative image */
@media (max-width: 600px) {
  .shop-line-art {
    display: block !important;
    max-width: 200px;
    height: 45px;
    margin: 10px auto 0;
    opacity: 0.75;
    
    /* Maintain visibility on mobile */
    filter: contrast(1.5) brightness(0.7);
  }
  
  /* Ensure shop header is visible and centered on mobile */
  .shop-header .section-top h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
}

/* LOGIN WRAPPER */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE (FORM) */
.login-left {
  width: 100%;
  max-width: 420px;
}

/* RIGHT IMAGE */
.login-image {
  width: 340px;
  height: 240px;
  background: url("/images/login-art.webp") no-repeat center;
  background-size: contain;
  opacity: 0.9;
}

/* ===================== */
/* 📱 MOBILE VERSION */
/* ===================== */
@media (max-width: 768px) {
  .login-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .login-left {
    max-width: 100%;
  }

  .login-image {
    width: 260px;       /* პატარა ზომა მობილურზე */
    height: 160px;
    opacity: 1;
  }
}
/* Artists title + small art */
.artists-header {
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

/* Artists title */
.artists-header h2 {
  margin: 0;
}

/* Small decorative image on the right */
.artists-art {
  width: 320px;
  height: 80px;
  background-image: url("../images/artists-line.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  filter: brightness(0.6) contrast(1.3); /* ← აქ ამუქდება */
}

@media (max-width: 768px) {
  .artists-header {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .artists-art {
    width: 250px;
    height: 84px;
  }
}

/* ========================================
   ABOUT PAGE STYLES - RESPONSIVE DESKTOP & MOBILE
   ======================================== */

/* FOUNDER SECTION - TWO COLUMN LAYOUT */
.about-founder-section {
  padding: 120px 0 80px;
  background: #fafafa;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT COLUMN - Photo */
.founder-photo-column {
  position: sticky;
  top: 120px;
}

.founder-photo-wrapper {
  text-align: center;
}

/* Clickable founder photo link */
.founder-photo-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  -webkit-tap-highlight-color: rgba(201, 166, 107, 0.2); /* Mobile tap highlight */
}

.founder-photo-link:hover {
  transform: translateY(-3px);
}

.founder-photo-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  user-select: none; /* Prevent text selection on mobile tap */
  -webkit-user-select: none;
}

.founder-photo-link:hover .founder-photo-circle {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  opacity: 0.95;
}

/* Clickable founder name link */
.founder-name-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: rgba(201, 166, 107, 0.2); /* Mobile tap highlight */
}

.founder-name-below {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  letter-spacing: 2px;
  margin: 0;
  transition: all 0.3s ease;
  user-select: none; /* Prevent text selection on mobile tap */
  -webkit-user-select: none;
}

.founder-name-link:hover .founder-name-below {
  color: #c9a66b; /* Soft beige/golden on hover */
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #c9a66b;
  transform: translateY(-1px);
}

/* RIGHT COLUMN - Content */
.founder-content-column {
  padding-top: 20px;
}

.about-page-title {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin-bottom: 32px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.founder-bio {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 24px;
}

/* PLATFORM SECTION */
.about-platform-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-section-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
  text-align: center;
}

.about-section-text {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.platform-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.platform-feature {
  text-align: center;
  padding: 32px 24px;
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.platform-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.platform-feature .feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.platform-feature h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.platform-feature p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* MISSION & VISION SECTION */
.about-mission-section {
  padding: 80px 0;
  background: #fafafa;
}

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-column,
.vision-column {
  padding: 40px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.mission-title,
.vision-title {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 3px solid #111;
}

.mission-text,
.vision-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 992px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .founder-photo-column {
    position: relative;
    top: 0;
  }

  .founder-photo-circle {
    width: 220px;
    height: 220px;
  }

  .about-page-title {
    font-size: 38px;
    text-align: center;
  }

  .founder-bio {
    text-align: center;
  }

  .platform-features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-vision-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
  .about-founder-section {
    padding: 100px 0 60px;
  }

  .about-founder-grid {
    gap: 50px; /* Increased gap for better spacing between photo and content */
  }

  /* Ensure photo column is centered and well-spaced on mobile */
  .founder-photo-column {
    padding: 0 20px;
  }

  .founder-photo-wrapper {
    margin-bottom: 16px; /* Space between wrapper and content below */
  }

  /* Mobile-specific clickable photo link */
  .founder-photo-link {
    display: block;
    margin-bottom: 16px; /* Space between image and name */
  }

  /* Enhanced mobile tap feedback for photo */
  .founder-photo-link:active .founder-photo-circle {
    transform: scale(0.98);
    opacity: 0.9;
  }

  .founder-photo-circle {
    width: 180px;
    height: 180px;
    border-width: 4px;
    margin-bottom: 0; /* Remove bottom margin since link has spacing */
  }

  /* Mobile-specific clickable name link */
  .founder-name-link {
    display: block;
    margin-bottom: 20px; /* Space after name before next section */
    padding: 8px 16px; /* Increase tap area */
    border-radius: 8px;
    transition: all 0.2s ease;
  }

  /* Enhanced mobile tap feedback for name */
  .founder-name-link:active {
    background: rgba(201, 166, 107, 0.1);
    transform: scale(0.98);
  }

  .founder-name-below {
    font-size: 18px;
    letter-spacing: 1.5px;
    margin: 0;
  }

  /* Add visual spacing before "About" title on mobile */
  .founder-content-column {
    padding-top: 12px;
  }

  .about-page-title {
    font-size: 32px;
    margin-bottom: 28px; /* Increased space after title */
    margin-top: 0;
    padding-top: 0;
  }

  .founder-bio {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-platform-section {
    padding: 60px 0;
  }

  .about-section-title {
    font-size: 32px;
  }

  .about-section-text {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .platform-features-grid {
    gap: 24px;
  }

  .platform-feature {
    padding: 28px 20px;
  }

  .platform-feature .feature-icon {
    font-size: 40px;
  }

  .platform-feature h3 {
    font-size: 18px;
  }

  .platform-feature p {
    font-size: 14px;
  }

  .about-mission-section {
    padding: 60px 0;
  }

  .mission-column,
  .vision-column {
    padding: 32px 24px;
  }

  .mission-title,
  .vision-title {
    font-size: 26px;
  }

  .mission-text,
  .vision-text {
    font-size: 15px;
  }
}


/* OLD ABOUT PAGE STYLES - DEPRECATED - KEEPING FOR BACKWARDS COMPATIBILITY */
.language-switcher {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 999;
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.lang-btn {
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  background: transparent;
  color: #555;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 50px;
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  border-color: #111;
}

.lang-btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}

.about-founder-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.founder-avatar-wrapper {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-avatar-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-avatar-circle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.founder-full-name {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.founder-title {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  font-style: italic;
}

.founder-story-section {
  background: #ffffff;
}

.founder-story-content {
  max-width: 800px;
  margin: 0 auto;
}

/* About Hero Section */
.about-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.about-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.about-hero-subtitle {
  font-size: 18px;
  color: #555;
  font-style: italic;
  font-weight: 400;
}

/* About Sections */
.about-section {
  padding: 80px 0;
}

.about-section:nth-child(even) {
  background: #fafafa;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-content {
  position: relative;
}

/* Decorative Line */
.about-decorative-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #111 0%, #888 100%);
  margin-bottom: 24px;
}

/* Section Headings */
.about-heading {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

/* Founder Section */
.founder-section {
  background: #ffffff;
}

.founder-name {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.founder-story {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.founder-story em {
  font-style: italic;
  color: #555;
}

/* Platform Section */
.platform-section {
  background: #fafafa;
}

.platform-description {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.platform-description strong {
  font-weight: 700;
  color: #111;
}

.platform-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.feature-item {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.platform-unique {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  padding: 24px;
  background: #fff;
  border-left: 4px solid #111;
  border-radius: 4px;
}

.platform-unique strong {
  font-weight: 700;
  color: #111;
}

/* Mission & Vision Section */
.mission-section {
  background: #ffffff;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.mission-block,
.vision-block {
  padding: 32px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.block-title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #111;
}

.block-text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.mission-list,
.vision-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li,
.vision-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.mission-list li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #111;
  font-weight: bold;
}

.vision-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #111;
  font-weight: bold;
}

.mission-list li strong,
.vision-list li strong {
  font-weight: 700;
  color: #111;
}

/* Closing Message */
.closing-message {
  text-align: center;
  padding: 50px 40px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.closing-message p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}

.signature {
  margin-top: 32px;
}

.signature-text {
  font-size: 15px;
  font-style: italic;
  color: #555;
  margin-bottom: 8px;
}

.signature-name {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  /* Language Switcher - Mobile */
  .language-switcher {
    top: 90px;
    right: 16px;
    padding: 6px;
    gap: 6px;
  }

  .lang-btn {
    padding: 6px 12px;
    font-size: 12px;
    min-width: 45px;
  }

  /* Founder Hero - Mobile */
  .about-founder-hero {
    padding: 110px 0 50px;
  }

  .founder-avatar-circle {
    width: 140px;
    height: 140px;
    border-width: 3px;
  }

  .founder-full-name {
    font-size: 32px;
  }

  .founder-title {
    font-size: 16px;
  }

  /* About Hero - Mobile */
  .about-hero {
    padding: 120px 0 60px;
  }

  .about-hero-title {
    font-size: 32px;
  }

  .about-hero-subtitle {
    font-size: 16px;
  }

  /* Sections - Mobile */
  .about-section {
    padding: 60px 0;
  }

  .about-heading {
    font-size: 28px;
  }

  /* Platform Features - Mobile */
  .platform-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Mission/Vision Grid - Mobile */
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-block,
  .vision-block {
    padding: 24px;
  }

  .founder-name {
    font-size: 24px;
  }

  .founder-story,
  .platform-description,
  .block-text {
    font-size: 15px;
  }

  .closing-message {
    padding: 40px 24px;
  }

  .closing-message p {
    font-size: 15px;
  }

  .feature-icon {
    font-size: 36px;
  }

  .feature-item h4 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 13px;
  }
}

/* Tablet Responsive */
@media (max-width: 992px) and (min-width: 769px) {
  .platform-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .founder-avatar-circle {
    width: 160px;
    height: 160px;
  }

  .founder-full-name {
    font-size: 38px;
  }
}
/* =========================
   FORCE MOBILE SIZE – ARTISTS
========================= */
@media (max-width: 768px) {

  /* ONLY artists section */
  #artists .artist-avatar,
  #homeArtistsGrid .artist-avatar {
    width: 80px !important;
    height: 80px !important;
  }

  #artists .artist-card h3,
  #homeArtistsGrid .artist-card h3,
  #artists .artist-card h4,
  #homeArtistsGrid .artist-card h4 {
    font-size: 13px !important;
    line-height: 1.2;
  }

  #artists .artist-card p,
  #homeArtistsGrid .artist-card p {
    font-size: 11px !important;
  }

}
/* =========================
   MOBILE – REAL slider spacing FIX
========================= */
@media (max-width: 768px) {

  /* slider moving track */
  .projects-slider > div,
  .projects-slider-track,
  .swiper-wrapper {
    column-gap: 8px !important;
  }

  /* if flex */
  .projects-slider > div {
    display: flex !important;
  }

}
.wa-widget{
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 99999;
  font-family: Arial, sans-serif;
}

/* popup */
.wa-popup{
  width: 280px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  margin-bottom: 12px;
  overflow: hidden;
  display: none;
}

/* header */
.wa-header{
  background: #075E54;
  color: #fff;
  padding: 12px;
  display: flex;
  align-items: center;
}
.wa-avatar img{
  width: 34px;
  height: 34px;
}
.wa-title span{
  font-size: 12px;
  opacity: .8;
  display: block;
}
.wa-close{
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* body */
.wa-body{
  padding: 16px;
  font-size: 14px;
  color: #333;
}

/* button */
.wa-btn{
  display: block;
  background: #25D366;
  color: #fff;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-weight: bold;
}

/* floating whatsapp icon */
.wa-float{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-float img{
  width: 28px;
  height: 28px;
}




/* ============================================
   SKELETON LOADERS & UX STATES
   ============================================ */
@keyframes nv-shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}
.nv-skeleton {
  background: linear-gradient(90deg, #ececec 25%, #d8d8d8 50%, #ececec 75%);
  background-size: 1200px 100%;
  animation: nv-shimmer 1.4s infinite linear;
  border-radius: 3px;
}
.nv-skel-card { border-radius: 6px; overflow: hidden; }
.nv-skel-card .nv-skel-img  { display: block; width: 100%; padding-top: 75%; }
.nv-skel-card .nv-skel-body { padding: 10px; display: flex; flex-direction: column; gap: 7px; }
.nv-skel-card .nv-skel-line { height: 13px; }
.nv-skel-card .nv-skel-line.s  { width: 55%; }
.nv-skel-card .nv-skel-line.xs { width: 35%; }
.nv-skel-circle { border-radius: 50% !important; }
.nv-skel-text   { border-radius: 3px; }
.nv-empty { grid-column: 1 / -1; text-align: center; padding: 56px 20px; color: #aaa; }
.nv-empty p { margin: 12px 0 0; font-size: 15px; }
.nv-error { grid-column: 1 / -1; text-align: center; padding: 40px 20px; }
.nv-error p { margin: 0 0 14px; color: #c0392b; font-size: 15px; }
.nv-retry { cursor: pointer; background: none; border: 1px solid #c0392b; color: #c0392b; padding: 7px 18px; border-radius: 4px; font-size: 14px; transition: background .2s, color .2s; }
.nv-retry:hover { background: #c0392b; color: #fff; }
@keyframes nv-fadein { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.card { animation: nv-fadein .25s ease; }
/* LQIP blur-up — wrapper holds the blurred placeholder; img fades in on top */
.nv-img-wrap { display: block; overflow: hidden; background-size: cover; background-position: center; }
.nv-lqip { opacity: 0; transition: opacity .4s ease; will-change: opacity; }
.nv-lqip.nv-loaded { opacity: 1; }
/* Safe SVG defaults — prevent unstyled flash before external CSS loads */
svg { overflow: hidden; }
.social-icons svg { display: block; width: 18px; height: 18px; }
.menu-social svg { display: block; width: 22px; height: 22px; }
/* Respect user reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .nv-skeleton { animation: none; }
  .nv-lqip { transition: none; }
  .card { animation: none; }
}
