body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0f111a;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: auto !important; 
  object-fit: contain;
}

html {
  scroll-behavior: smooth;
}

header {
  position: sticky;
  top: 0;
  background: #0f111a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 1000;
}

header .logo {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px; 
  transition: all 0.3s ease;
}

header .logo::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #ff8c42;
  border-radius: 2px;
  transition: width 0.4s ease;
}

header .logo:hover::after {
  width: 100%;
}

.container {
    display: flex;
    flex-wrap: wrap; 
    width: 440px; 
    gap: 20px; 
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block; 
    width: 200px; 
}
.card {
    width: 100%;
    height: 220px; 
    background-color: black;
    border-radius: 12px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; 
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.card-link:hover .card {
    transform: translateY(-5px) scale(1.03); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); 
}
.card-image {
    width: 100%;
    height: 70%; 
    display: flex;
    background-color: black;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease; 
}

.card-link:hover .card-image img {
    transform: scale(1.1);
}
.card-content {
    padding: 10px 10px 5px; 
}
.card-content h3 {
    margin: 0;
    font-size: 1.1em;
    color: beige;
}

.about-card-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

/* --------------------------------------------------------------------------- */
.back-link {
  color: inherit;           
  text-decoration: none;    
  font-weight: 600;        
  transition: color 0.3s;
}

.back-link:hover {
  color: #ff8c42;           
}
.gallery-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  text-align: left;
  margin: 0 0 -280px 50px; 
  cursor: pointer;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.gallery-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff8c42;
  margin-top: 8px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.gallery-title:hover {
  transform: translateY(-5px);
}

.gallery-title:hover::after {
  width: 160px; 
}

.gallery-title.cloth:hover::after {
  width: 330px;
}


.brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 22px;
}
.brand .logo {
  width: 40px;
  height: 40px;
  background: #ff8c42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}
nav {
  display: flex;
  align-items: center;
  gap: 25px;
}
nav a {
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #ff8c42;
  left: 0;
  bottom: -5px;
  transition: 0.3s ease;
}
nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.lang-selector {
  position: relative;
  cursor: pointer;
}

.lang-selector span {
  font-size: 18px;
}

  .order-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  text-align: left;
  margin: 0 0 -280px 50px; 
  cursor: pointer;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.order-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  background-color: #ff8c42;
  margin-top: 8px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.order-title:hover {
  transform: translateY(-5px);
}

.order-title:hover::after {
  width: 300px; 
}

.lang-popup {
  display: none;
  position: absolute;
  top: 28px;
  right: 0;
  background: #1a1c2a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  min-width: 130px;
}

.lang-popup button {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 20px;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}
.lang-popup button:hover {
  background: #ff8c42;
}

header {
  position: sticky;
  top: 0;
  background: #0f111a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  z-index: 1000;
}

.sold-label {
  position: absolute;
  top: 10px;
  left: -35px;
  background: #ff3b3b;
  color: #fff;
  font-weight: 700;
  padding: 5px 50px;
  transform: rotate(-45deg);
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  pointer-events: none;
}

footer {
  background-color: #222; 
  padding: 15px 0;
  text-align: center;
}

.footer-socials {
  display: flex;
  justify-content: left;
  padding: 0px 0px 0px 40px;
  gap: 20px; 
}

.footer-socials .social-link img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s, opacity 0.3s;
}

.footer-socials .social-link:hover img {
  transform: scale(1.2); 
  opacity: 0.8;
}

.carousel-box {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
}

.carousel-box img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
}

.carousel-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.carousel-modal-img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  font-weight: bold;
}

.signature{
  margin-top: -100px;
}

.about {
  background: #0a0a0a;
  color: #f2f2f2;
  padding: 100px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
  max-width: 1200px;
  animation: fadeIn 1.2s ease forwards;
}

.about-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
}

.about-image img {
  width: 100%;
  cursor: pointer;
  height: auto;
  border-radius: 20px;
  transition: transform 0.7s ease;
}

.about-image img:hover {
  transform: scale(1.2);
}

.about-text {
  position: relative;
}

.about-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: -30px;
  width: 80px;
  height: 3px;
  background: #ff8c42;
  border-radius: 2px;
}

.about-text h2 {
  font-size: 2.8rem;
  color: #ff8c42;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 1px;
}

.about-text p {
  color: #d8d8d8;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
}

.about-btn {
  display: inline-block;
  background: #ff8c42;
  color: #111;
  padding: 12px 35px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.logo-lang {
  display: flex;
  align-items: center;
  gap: 15px; 
}


/* SECTION TITLE */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  text-align: left;
  margin: 0 0 40px 50px; 
  cursor: pointer;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.section-title::after {
  content: '';
  display: block;
  width: 460px;
  height: 3px;
  background-color: #ff8c42;
  margin-top: 8px;
  border-radius: 2px;
}

/* VIDEO GRID */
/* მთავარი კონტეინერი */
.video-grid {
  display: grid;
  /* კომპიუტერზე მინიმუმ 300px სიგანის ბლოკები, მაქსიმუმ რამდენიც დაეტევა */
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px; /* დაშორება ვიდეოებს შორის */
  padding: 20px;
  max-width: 1200px; /* რომ ძალიან არ გაიწელოს დიდ მონიტორზე */
  margin: 0 auto; /* ცენტრში მოქცევა */
}

/* ვიდეო ბარათის სტილი */
.video-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column; 
}

.video-card:hover {
  transform: translateY(-10px); 
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.video-title {
  padding: 15px;
  font-size: 1rem;
  color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  flex-grow: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(230, 126, 34, 0.8); 
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.3s;
    pointer-events: none; 
}

.video-card:hover .play-button {
    background: #e67e22;
    transform: translate(-50%, -50%) scale(1.1);
}

video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.video-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;  
  background: #000;
  overflow: hidden;
}

.video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  background: #000;
  display: block;
}

.video-title {
  padding: 3px 5px 7px;
  font-size: 18px;
  font-weight: 700;
  color: #222;
  text-align: center;
}

/* ........................................................................ */
.lang-selector {
  position: relative;
  cursor: pointer;
}

.lang-selector span {
  font-size: 18px;
}

.lang-selector span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-align: left;
  margin: 0 0 -80px 50px; 
  cursor: pointer;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.lang-selector span::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background-color: #ff8c42;
  margin-top: 8px;
  border-radius: 2px;
}

.painting-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  padding: 80px 50px;
  flex-wrap: wrap;
  position: relative;
}

.painting-image {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.painting-image img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}
.painting-section {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 80px 50px;
  align-items: flex-start;
  position: relative;
}

.painting-image {
  flex: 1 1 500px;
  max-width: 500px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  position: relative;
}

.painting-image img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.painting-view {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 0; 
  margin-left: 240px; 
  max-width: calc(100% - 240px);
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 40px;
  overflow-x: hidden; 
}

/* --- Carousel --- */
.carousel-box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 10px 0;
  overflow: hidden; 
}

.carousel-box img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;

  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.carousel-box img:hover {
  transform: none; 
  border-color: #007bff; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.4); 
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
}

.modal-content-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 85%;
  max-height: 90%;
  padding: 20px;
  border-radius: 18px;
}

.modal-img {
  max-width: 650px;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.8);
  transition: 0.3s ease;
}

.modal-img:hover {
  transform: scale(1.015);
}

/* --- Modal Info --- */
.modal-info {
  color: #fff;
  max-width: 65%;
  font-family: "Poppins", sans-serif;
  padding-right: 20px;
}

.modal-info h1 {
  font-size: 58px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -1px;
}

.modal-price {
  font-size: 50px;
  margin-bottom: 18px;
  opacity: 0.9;
}

.modal-info p {
  line-height: 1.7;
  margin-top: 10px;
  font-size: 22px;
  opacity: 0.9;
}

/* Close button */
.close {
  position: absolute;
  right: 35px;
  top: 25px;
  font-size: 48px;
  color: white;
  cursor: pointer;
  transition: 0.25s ease;
}

.close:hover {
  transform: scale(1.2);
  color: #ffdddd;
}

/* --- Carousel Modal (Zoom) --- */
.carousel-modal {
  display: none;
  position: fixed;
  z-index: 2100;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(8px);
}

.carousel-modal-img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 55px;
  color: white;
  cursor: pointer;
}

.card-id {
  position: absolute;
  top: 5px;
  right: 5px; 
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff; 
  padding: 3px 7px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  pointer-events: none;
  z-index: 10;
  text-shadow: 0 0 2px rgba(0,0,0,0.8); 
}

.card {
    position: relative; 
}

/* ........................................................ */
.lang-popup {
  display: none;
  position: absolute;
  top: 28px;
  right: 0;
  background: #1a1c2a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
  min-width: 130px;
}

.lang-popup button {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 20px;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}

.lang-popup button:hover {
  background: #ff8c42;
}


.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}
.burger div {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 50px;
    gap: 30px;
    flex-wrap: wrap; 
    overflow: hidden; 
    min-height: 100vh; 
}

.hero-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover; 
    z-index: 0;
    opacity: 0.4;
}

.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-text, .hero-image-wrapper {
    position: relative;
    z-index: 1;
}

/* Hero ტექსტი */
.hero-text {
    max-width: 600px;
    animation: fadeInUp 1s ease forwards;
    flex-basis: 100%; 
    text-align: center;
}

.hero-text h1 {
    font-size: 52px;
    margin: 0 0 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 30px;
}

.href {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff8c42;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,140,66,0.4);
}
.hero-image-wrapper {
  flex-shrink: 0;
}
.hero-img {
  width: 450px;
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  animation: fadeIn 1s ease forwards;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px,1fr));
  gap: 30px;
  padding: 50px;
}
.card {
  position: relative;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card:hover img {
  transform: scale(1.05);
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  padding: 15px;
  text-align: center;
  opacity: 0;
  transition: 0.3s ease;
}
.card:hover .overlay { opacity: 1; }
.overlay h3 { margin:0; font-size:18px; }
.overlay p { margin:5px 0 0; font-weight:700; color:#ff8c42; }

footer {
  text-align: center;
  margin: 80px 0;
  color: #aaa;
  font-size: 14px;
}

.painting-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 50px;
  flex-wrap: wrap;
}
.painting-image {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: transform 0.4s ease;
}

.painting-image:hover {
  transform: scale(1.03);
}

.painting-image img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}
.painting-info {
  flex: 1 1 400px;
  max-width: 500px;
}
.painting-info h1 {
  font-size: 36px;
  margin-bottom: 10px;
}
.painting-info p {
  color: #ccc;
  line-height: 1.6;
}

#carousel-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 10000;
  flex-direction: column;
}

#carousel-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

#carousel-modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  z-index: 10001;
}

.price {
  color: #ff8c42;
  font-size: 22px;
  margin: 20px 0;
}
.buttons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
button {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.buy-btn {
  background: #ff8c42;
  color: #fff;
}
.buy-btn:hover {
  background: #ffb366;
}
.back-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.back-btn:hover {
  color: #ff8c42;
  border-color: #ff8c42;
}

.art-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(145deg, #000 0%, #111 100%); 
  padding: 35px 30px;
  border-radius: 20px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 198, 255, 0.15), 0 0 25px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  margin-left: auto;   
  margin-left: 50px; 
}

.art-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
}

.art-section h2 {
  font-size: 22px;
  margin-bottom: 8px;
  text-align: center;
}

.art-section p {
  font-size: 13px;
  color: #bbb;
  text-align: center;
  margin-bottom: 20px;
}

.painting {
  width: 220px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,198,255,0.2);
}

.painting:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,198,255,0.3);
}

.slider-container {
  margin-top: 20px;
  width: 100%;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  background: #333;
  outline: none;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.1);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00c6ff;
  border: 2px solid #00a1e0;
  cursor: pointer;
  transition: 0.2s, box-shadow 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 10px #00c6ff;
}

.img-box {
  width: 70%;
  display: flex;
  padding: 40px 0;
}

.img-box img{
  max-width: 400px;
}

.img-box a {
  display: block;
  padding: 18px;
  border: 1px solid #e5e5e5;
  max-width: 520px;
  transition: border-color .25s;
}

.img-box a:hover {
  border-color: #000;
}

.img-box a img {
  width: 100%;
  display: block;
  height: auto;
}


.info {
  margin-top: 15px;
  width: 100%;
  text-align: center;
}

.size, .price, .resolution {
  font-size: 16px;
  margin: 4px 0;
  color:black;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

  .order-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  text-align: left;
  margin: 0 0 -280px 50px; 
  cursor: pointer;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.order-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 3px;
  background-color: #ff8c42;
  margin-top: 8px;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.order-title:hover {
  transform: translateY(-5px);
}

.order-title:hover::after {
  width: 300px; 
}

 .art-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 100%;
  }

  .art-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222;
  }

  .art-section p {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
  }

  .painting {
    width: 250px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .slider-container {
    margin-top: 25px;
    width: 100%;
  }

  .order-btn:hover {
    transform: scale(1.05);
  }
  .art-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 100%;
  }

  .art-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #222;
  }

  .art-section p {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 25px;
  }

  .painting {
    width: 250px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .slider-container {
    margin-top: 25px;
    width: 100%;
  }

  input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: #ddd;
    outline: none;
    cursor: pointer;
  }

  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff7a18;
    border: 2px solid #ff5200;
    cursor: pointer;
    transition: 0.2s;
  }

  input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
  }

  .info {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }

  .size, .price {
    font-size: 18px;
    margin: 5px 0;
  }

  .price {
    font-weight: 700;
    color: #ff5200;
    font-size: 22px;
  }

  .order-btn {
    margin-top: 25px;
    padding: 12px 30px;
    background: #ff7a18;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
  }

  .order-btn:hover {
    background: #ff5200;
    transform: scale(1.05);
  }

.contact-section {
  padding: 80px 20px;
  background-color: #f8f8f8; 
  min-height: 500px;
  scroll-margin-top: 100px; 
}

.contact-section h2 {
  font-size: 2.5em;
  color: #333;
  margin-bottom: 10px;
  border-bottom: 3px solid #ff5722; 
  display: inline-block;
  padding-bottom: 5px;
}

.logoe {
  /* ეს კოდი გაზრდის ლოგოს ჰედერის სიმაღლეზე ისე, რომ არ გაწელოს ის */
  height: 100%; 
  width: auto;
  
  max-height: 50px; /* შეგიძლია ჰედერის სიმაღლეზე მეტიც მისცე */
  object-fit: contain;
  
  /* თუ გინდა რომ ლოგო "ამოვიდეს" ჰედერიდან და უფრო დიდი გამოჩნდეს: */
  left: -60px; /* პოზიცია დაარეგულირე სურვილისამებრ */
  transform: scale(1.5); /* ზრდის ზომას ვიზუალურად */
}
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap; 
}

/* --- Contact Info Box --- */
.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
}

.contact-info p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333;
}

.info-item i {
  font-size: 1.5em;
  margin-right: 15px;
  color: #ff5722; 
}

.info-item a {
  color: #ff5722;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-item a:hover {
  color: #e64a19;
}

.social-icons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.social-icons a img {
  width: 30px;
  height: 30px;
  opacity: 0.7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.form-group {
  margin-bottom: 20px;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #ff5722;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.1s ease;
}

.submit-btn:hover {
  background-color: #e64a19;
  transform: translateY(-2px);
}

.hero-video-desktop {
    display: block; 
}

.hero-video-mobile {
    display: none;
}

.contact-btn-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.contact-btn {
  padding: 10px 20px;
  background:  #e26010;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.contact-btn:hover {
  background:  #f46003;
  transform: translateY(-2px);
}

.order-section {
  padding: 80px 20px;
  background: #0f0f0f;
  color: #fff;
}

.order-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
}

.order-card {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(12px);
}

.preview {
  position: relative;
}

.preview img {
  width: 100%;
  border-radius: 12px;
}

.signature-badge {
  position: absolute;
  bottom: 52px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  padding: 6px 12px;
  font-size: 0.85rem;
  border-radius: 20px;
}

#unitSelect {
  padding: 8px 12px;      
  font-size: 16px;        
  border: 1px solid #ccc;  
  border-radius: 6px;     
  background-color: #fff; 
  color: #333;            
  outline: none;           
  cursor: pointer;         
  transition: all 0.2s ease; 
}

#unitSelect:hover {
  border-color: #888;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#unitSelect:focus {
  border-color: #555;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.2);
}

.size-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.size-control button {
  padding: 5px 12px;
  font-size: 16px;
  cursor: pointer;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: background 0.2s;
}

.size-control button:hover {
  background-color: #45a049;
}

.size-control input {
  width: 60px;
  text-align: center;
  font-size: 16px;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}


.controls h3 {
  margin-bottom: 20px;
}

input[type="range"] {
  width: 100%;
  margin: 15px 0;
}

.unit-toggle {
  margin: 15px 0;
}

.unit-toggle select {
  padding: 6px 10px;
}

.info-box {
  background: rgba(255,255,255,0.06);
  padding: 15px;
  border-radius: 10px;
  margin: 20px 0;
}

.price {
  font-size: 1.3rem;
  color: #ffd36a;
}

input[type="range"] {
  touch-action: none;
}


.order-btn {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background: linear-gradient(135deg, #ffd36a, #ff9f00);
  color: #000;
}

  @keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:1170px) {
  .hero-text{
    margin: auto;
  }

  .container{
    margin: auto;
  }

  .href{
    margin-top: -100px;
  }

}

@media screen and  (max-width: 1145px) {
  .gap{
  gap: 30px;
  display: grid;
}
 
}

@media (max-width: 992px) {

    .hero-video {
    object-fit: contain;
    background: black; 
  }

  .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
        object-fit: cover;
    }

    .about{
      display: grid;
      grid-template-columns: auto;
    }

    .painting-view {
        margin-left: 0;
        justify-content: center;
        padding: 0 20px; 
    }

    .modal-content-container {
        flex-direction: column; 
        gap: 20px;
        max-width: 90%; 
        margin: 5% auto;
        padding: 20px;
    }

    .modal-info {
        max-width: 100%;
        text-align: center;
        font-size: 20px; 
    }

    .modal-info h1 {
        font-size: 36px; 
    }

    .modal-price {
        font-size: 34px
    }

    .modal-info p {
        font-size: 15px; 
    }

    .modal-img {
        width: 100vw;
        height: 100vh;
        object-fit: cover; 
        display: block;
    }
    

    .carousel-box img {
        width: 90px; 
        height: 60px; 
    }


}

@media (max-width: 900px) {

    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 20px;
    }

    .about-text::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .painting-view {
        margin-left: 0;
        margin-top: -20px; 
        justify-content: center;
        max-width: 100%;
    }

    .hero {
        justify-content: center;
        padding: 60px 30px; 
    }

    .hero-text h1 {
        font-size: 42px; 
    }

    .hero-text p {
        font-size: 18px;
    }

    .href {
        flex-direction: column; 
        align-items: center;
        gap: 15px;
    }

    .cta-btn {
        width: 60%; 
        max-width: 300px; 
        text-align: center;
    }
}

@media (max-width: 800px) {
    .hero-image-wrapper {
        max-width: 300px;
        height: 400px;
        left: 50%; 
        transform: translateX(-50%);
    }

    .hero-img {
        width: 100px;
        height: 100px;
        transform-origin: 0 50%;
    }

    .hero-text {
        text-align: center; 
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .video-grid {
        display: grid; 
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 10px;
        justify-items: center; 
    }

    .video-card {
        width: 100%;
        max-width: 350px; 
        margin: 0 auto; 
    }
    
    .video-title {
        text-align: center; 
    }

    .signature{
      max-width: 400px;
    }
}
@media(max-width: 768px) {
    nav {
        position: fixed;
        top: 0; 
        right: -100%;
        height: 100vh; 
        width: 70%; 
        max-width: 280px;
        gap: 20px;
        padding: 100px 20px;
        background:#0f111a;
        transition: right 0.5s ease;
        flex-direction: column;
        align-items: flex-start; 
    }

    .order-card {
    grid-template-columns: 1fr;
  }

    nav a {
        text-align: left; 
        color: white;
        width: 100%; 
    }

    .lang-selector {
        grid-column: unset; 
        justify-self: auto;
        margin-top: 15px; 
    }

    nav.active { 
        right:0;
    }

    .gallery {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 10px;
    }

    .burger { 
        display:flex;
    }

   .hero {
        padding: 50px 20px;
    }
    
    .hero-text h1 {
        font-size: 45px;
    }

    .hero-text p {
        font-size: 19px;
        margin-bottom: 20px;
        max-width: 500px;
    }

    .hero-title{
      max-width: 500px;
    }
    .cta-btn {
        width: 80%; 
        max-width: 350px;
    }

    .painting-info {
        max-width: 90%; 
        margin: auto;
        text-align: center;
    }

    .buttons { 
        justify-content: center;
    }

    .art-section {
        max-width: 300px;
        margin: auto;
    }

    .img-box{
      align-items: center;
      justify-content: center;
      margin: auto;
    }
    
    .gallery-title h2{
      justify-content: center;
      align-items: center;
      margin: auto;
      align-self: center;
      justify-items: center;
      justify-self: center;
    }

    .href{
      margin-top: -10px;
    }

  }

@media screen and (max-width:650px) {
  .modal-content-container {
      width: 100vw !important;
      height: 100vh !important;
      max-width: 100vw !important;
      max-height: 100vh !important;
      margin: 0;
      padding: 0;
      border-radius: 0; /* თუ გინდა */
  }

  .modal-img {
      width: 100vw;
      height: 100vh;
      object-fit: contain; /* არ ჭრის */
  }
}


@media (max-width: 600px) {

    .painting-view {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        max-width: 100%;
    }

    .carousel-box {
        justify-content: center;
    }

    .modal-content-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px; 
        max-height: 95vh; 
        overflow-y: auto; 
        margin-top: 15px;
    }

    .modal-info h1 {
        font-size: 28px; 
    }

    .modal-price {
        font-size: 26px; 
    }

    .modal-info p {
        font-size: 14px; 
    }

    .carousel-box img {
        width: 80px; 
        height: 55px; 
    }

    .container{
        flex-direction: column;
        align-items: center;
        align-self: center;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .submit-btn {
        padding: 12px;
        font-size: 1em;
    }

    .section-title::after{
      width: 400px;
    }

    .hero-text{
    max-width: 400px;
    }

    .signature{
      margin: auto;
      justify-content: center;
      justify-items: center;
      justify-self:center ;
      align-items: center;
      align-content: center;
      align-self: center;
      margin-top: -70px;
      margin-left: -100px;
    }

}
@media (max-width: 500px) {

    .about-text, 
  .about-text p, 
  .about-text h2 {
    max-width: 100%;
    width: 100%;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
    word-wrap: break-word !important;
  }

    .hero-image-wrapper {
        max-width: 250px; 
        height: 250px;
        left: 50%; 
        transform: translateX(-50%); 
    }

    .hero-img {
        width: 70px; 
        height: 70px; 
    }

    .hero {
        padding: 40px 15px;
    }
    
    .hero-text h1 {
        font-size: 30px; 
    }

    .hero-text p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-btn {
        width: 100%; 
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .painting-info h1,
    .modal-info h1 {
        font-size: 1.3rem;
    }

    .painting-info .price,
    .modal-info .modal-price {
        font-size: 1.1rem; 
    }

    .painting-info p,
    .modal-info p {
        font-size: 0.8rem;
    }

    .buttons button {
        flex: 1 1 100%;
    }

    .submit-btn {
        font-size: 0.9em;
    }
    .section-title::after{
      width: 300px;
    }
}

@media (max-width: 460px) {
    .hero-text h1 {
        font-size: 30px;
    }
    
    .hero-text p {
        font-size: 17px;
    }
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
}


@keyframes fadeInUp {
    0% {opacity:0; transform:translateY(20px);}
    100% {opacity:1; transform:translateY(0);}
}