:root {
  --bg: white;
  --text: black;
  --card: silver;
  --accent: #0ea47a;
  --chip-bg: gray;
  --chip-text: white;
  --bk: black;
  --ct: black;
  --sv: white;
  --ks: black;
  --wh: white;
  --gr: #0ea47a;
  --gs: #0ea47a;
}

html[data-theme="dark"] {
  --bg: black;
  --text: white;
  --card: white;
  --accent: #0ea47a;
  --chip-bg: black;
  --chip-text: white;
  --bk: black;
  --gr: #0ea47a;
  --ct: white;
  --sv: black;
  --ks: #0ea47a;
  --wh: white;
  --gs: gray;
}

header{
  background-color: var(--bg);
}
body {
  background: var(--bg);
  color: var(--text);
}
.product {
  background: var(--bg);
  color: var(--text);
}

.search-btn {
  background-color: var(--accent);
  color: var(--text);
}
/* toggle button style */
.theme-toggle {
  width: 75px;
  height: 25px;
  border-radius: 30px;
  background: var(--card);
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
  margin-left: 40px;
  display: inline-block;
}
.theme-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.3s;
}
html[data-theme="dark"] .theme-toggle {
  background: var(--text);
}
html[data-theme="dark"] .theme-toggle::before {
  transform: translateX(25px);
}

/* 🌑 General Body Settings */
body {
  background: var(--bg);
  color: var(--text);
  text-align: center;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;

}

/* 🛒 Products Section - Container and Layout */
.products-container {

  position: relative;
  overflow: hidden;
  padding: 40px 0;
}
.products {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 30px;
  transition: all 0.3s ease;
  background-color: var(--bg);
}
.product {
  flex: 0 0 auto;
  width: 300px;
  background-color: var(--bg);
  color: var(--ct);
  border-radius: 15px;
  padding:  20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.product.hidden {
  display: none;
}
.product:hover {
  transform: translateY(-5px);
}
.color-box {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ⬅️➡️ Navigation Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--bk);
  color: white;
  border: none;
  font-size: 28px;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}
.arrow:hover {
  background-color: var(--gr);
  color: white;
}
.arrow-left {
  left: 10px;
}
.arrow-right {
  right: 10px;
}
.products-container.hidden {
  display: none;
}

/* 📦 Show All Products Button */
.show-products-btn {
  display: block;
  margin: 40px auto;
  padding: 12px 24px;
  font-size: 16px;
  background-color: var(--wh);
  color: var(--ct);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
}

/* 🎮 Product Carousel Slide Animation */
@keyframes slide {
  0% {opacity: 0;} 10% {opacity: 1;} 33% {opacity: 1;} 43% {opacity: 0;} 100% {opacity: 0;}
}

/* 📱 Responsive Product Styles */
@media (max-width: 1366px) {
  .product {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .arrow {
    font-size: 24px;
    padding: 10px 14px;
  }
  .products {
    flex-wrap: wrap;
    justify-content: center;
  }
  .product {
    width: 45%;
    margin-bottom: 20px;
  }
  .products-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .arrow-left, .arrow-right {
    order: 2;
    position: static;
    margin: 10px;
  }
}
@media (max-width: 480px) {
  .product {
    width: 90%;
  }
}

/* 🔍 Search Button and Hover Effects */

.search-btn {
  border-radius: 0 25px 25px 0;
  border: none;
  background-color: transparent;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-btn svg {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  display: block;
}


/* 🧱 Logo Strip Section */
.logo-strip {
  overflow: hidden;
  background-color: none;
  padding: 2px 0;
}
.logo-box {
  width: 160px;
  height: 80px;
  margin: 0 5px;
  border-radius: 10px;
  padding-left: 5px;
  padding-right: 5px;
  width: 100px;
}
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 1024px) {
  .logo-strip {
    display: flex;
  }
}

/* 🎥 Hero Image Slider Section */
.hero-slider {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
}
.hero-slider div {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: slide 15s infinite;
}
.hero-slider div:nth-child(1) {
  animation-delay: 0s;
}
.hero-slider div:nth-child(2) {
  animation-delay: 5s;
}
.hero-slider div:nth-child(3) {
  animation-delay: 10s;
}
.hero-slider img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 768px) {
  .hero-slider {
    height: 40vh;
  }
}

/* 🔝 Header Section */
.site-header {
  height: 40px;
  background-color: var(--bg);
  color: white;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo img {
  height: 55px;
}

/* 🔍 Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  margin: 10px auto;
  flex: 1;
  max-width: 500px;
  border: 1px var(--bk);
}
.search-bar input {
  background-color: var(--card);
  border-radius: 25px 0 0 25px;
  border: none;
  width: 100%;
  height: 44px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
}
.search-btn {
  height: 44px;
  width: 50px;
  border-radius: 0 25px 25px 0;
  background-color: var(--gr);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-btn:hover{
  background-color: var(--bk);
  padding: 0 15px; 
  width: 60px; 
  height: 44px; 
  background-color: var(--gr); 
  border: none; 
  border-radius: 0px 20px 20px 0px; 
  display: flex; 
  align-items: center; 
  justify-content: center
}

/* 🌐 Language Switcher Flags */
.lang-switcher {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}
.lang-switcher button {
  background: none;
  border: none;
  cursor: pointer;
}
.lang-switcher img {
  height: 15px;
  width: 30px;
}

/* 📱 Responsive Header + Search + Language Switcher */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
  }
  .search-bar {
    margin: 10px 0;
    width: 100%;
  }
  .lang-switcher {
    justify-content: center;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
  }
  .search-bar {
    width: 100%;
    margin: 10px 0;
  }
  .lang-switcher {
    justify-content: center;
    margin-top: 10px;
  }
}

.gift-icon {

  position: absolute;
  top: -40px;
  right: -15px;
  width: 128px;
  height: 128px;
  z-index: 2;
}
.product-card {
  position: relative;
}

  .category-box {
    position: relative;
  }

  .subcategory-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bk);
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    z-index: 9999;
    white-space: nowrap;
  }

  .category-box:hover .subcategory-popup {
    display: block;
  }
  .subcategory-popup a {
    color: white;
    display: block;
    padding: 5px 10px;
    text-decoration: none;
  }

  .subcategory-popup a:hover {
    color: #0ea47a;
  }

  .category-container {
    position: relative;
    overflow: visible !important;
  }

  .category-wrapper {
    overflow: visible !important;
  }

  .scroll-wrapper {
    overflow: visible !important;
  }

/* սկզբում՝ միայն light-ը երևա */
.logo .logo-dark { display: none; }
.logo .logo-light { display: inline-block; }

/* չափը նույնացնենք, որ չցատկի */
.logo img { height: 55px; }

/* երբ theme-ը dark է, փոխիր տեսանելիությունը */
html[data-theme="dark"] .logo .logo-light { display: none !important; }
html[data-theme="dark"] .logo .logo-dark  { display: inline-block !important; }


/* === Mobile-only menu button next to language selector === */
.menu-toggle{ display:none; flex-direction:column; gap:4px; padding:8px 10px; border:1px solid #2a2a2a;
  border-radius:8px; background:#111; cursor:pointer; }
.menu-toggle span{ width:22px; height:2px; background:#fff; display:block; }

/* Mobile dropdown menu styling */
nav.mobile-nav{ background: var(--bg); border-top:1px solid #222; }
nav.mobile-nav a{ display:block; color: var(--ct); text-decoration:none; padding:12px 16px; border-bottom:1px solid #111; }
nav.mobile-nav a:last-child{ border-bottom:none; }

/* Only show on small screens; desktop untouched */
@media (max-width: 600px){


  .language-switcher-mobile{ display:flex !important; align-items:center; gap:8px; }
  .menu-toggle{ display:flex; }
  nav.mobile-nav{ display:none; }
  nav.mobile-nav.active{ display:block; }
}
@media (min-width: 601px){
  .menu-toggle{ display:none !important; }
}



/* թաքցնել մոդի կոճակը փոքր էկրաններում */
@media (max-width: 600px){
  .theme-toggle,
  .theme-switch,
  #themeToggle {
    display: none !important;
  }
}

p{
  color: black;
}



summary::-webkit-details-marker {
  display: none; /* default սլաքը թաքցնում ենք */
}

summary::before {
  content: "⮟";
  margin-right: 5px;
  transition: transform 0.2s;
}

details[open] summary::before {
  transform: rotate(-90deg); /* բացվելուց պտտվում է */
}

summary {
  color: #0ea47a;
  display: flex;
  align-items: center;
  padding-left: 25px;  /* ամբողջ summary-ն աջ է գալիս */
  cursor: pointer;
}

details ul li{
  list-style-type: none; 
  text-align: left;
}

p .cat-link a{
  color: #0ea47a;

}


.cart-icon{ position:relative; display:inline-block; }
.cart-count{
  position:absolute; top:-6px; right:-8px;
  min-width:18px; height:18px; padding:0 4px;
  background: var(--accent); color:#fff;
  border-radius:999px; font-size:12px; line-height:18px;
  text-align:center; font-weight:700;
}


/* --- Search results spacing fixes (safe override) --- */
#searchResults { 
  padding: 0 !important;
  margin: 0 auto !important;
  display: none; /* hidden until we actually search */
}
#searchResults:empty { display: none; }

/* --- Add-to-cart toast --- */
#toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: rgba(14,164,122,0.95);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 10000;
  display: none;
}






/* =========================
   THEME COLORS (Քո կայքի գույները)
   ========================= */
:root{
  --theme-primary: #0ea57a;   /* փոխվում է վերևից */
  --theme-secondary: #12c3a2; /* փոխվում է վերևից */
}

/* =========================
   FEATURES STRIP (Ներքևի դիվերը)
   ========================= */
.features-strip{
  background: var(--bg);
  color: var(--text);
  padding:25px 0;
}

/* grid */

.features-grid{
    background: var(--bg);
   color: var(--text);
  max-width:1100px;
  margin:auto;
  padding:0 15px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* մեկ item */
.feature-item{
  margin-top: 10px;
  text-align:center;
  color:#fff;
}

/* կլոր icon container */
.feature-icon{
  width:140px;
  height:140px;
  margin:auto;
  border-radius:50%;
  background:linear-gradient(135deg,var(--theme-primary),var(--theme-secondary));
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  background-color: #0ea47a;
}

/* նկար icon */
.feature-icon img{
  width:60px;
  height:60px;
  object-fit:contain;

}

/* տեքստ */
.feature-text{
  background: var(--bg);
  color: var(--text);
  margin-top: 25px;
  font-size:15px;
  line-height:1.3;
}

/* =========================
   RESPONSIVE
   ========================= */
@media(max-width:900px){
  .features-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:480px){
  .features-grid{
    grid-template-columns:1fr;
  }
  .feature-icon{
    width:95px;
    height:95px;
  }
}


/*սքռոլ */





 .scroll-wrapper {
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
}

.scroll-button {
  background-color: #0ea47a;
  border: none;
  color: white;
  font-size: 20px;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
}

.category-wrapper {

  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  z-index: 1;
  flex: 1;
}

.category-wrapper::-webkit-scrollbar {
  display: none;
}

.category-container {
  display: flex;
  flex-wrap: nowrap;
  padding: 10px 0;
}

.category-box {
  width: 85px;
   background-color: var(--bg);
  color: var(--ct);
  border-radius: 0px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding:7px;
  margin: 1px;
  flex-shrink: 0;
  position: relative;
}

.category-box a {
  color: var(--ct);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-size: 11px;
  margin-bottom: 5px;
}

.image-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
}

.img-top,
.img-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  transition: opacity 0.3s ease;
}

.img-top {
  z-index: 2;
  opacity: 1;
}

.img-bottom {
  z-index: 1;
  opacity: 0;
}

.category-box:hover .img-top {
  opacity: 0;
}

.category-box:hover .img-bottom {
  opacity: 1;
}

.category-box:hover {
  background-color: #0ea47a;
  transform: scale(1.05);
}

.subcategory-list {
  display: none;
  flex-direction: column;
  background-color: var(--bg);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 5;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}

.subcategory-list a {
  padding: 8px 5px;
  font-size: 10px;
  color: var(--ct);
  text-decoration: none;
  transition: background-color 0.2s;
}

.subcategory-list a:hover {
  background-color: #0ea47a;
}

.category-box:hover .subcategory-list {
  display: flex;
}

@media (max-width: 768px) {
  .scroll-button {
    display: none !important;
  }

  .category-wrapper {
    overflow-x: hidden;
    justify-content: flex-start;
  }

  .category-container {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .category-box {
    display: none;
    width: 100% !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    background-color: #111;
    border-radius: 10px;
  }

  .image-wrapper {
    display: none;
  }

  .category-box a {

    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .subcategory-list {
    display: none !important;
    flex-direction: column;
    position: static;
    background-color: transparent;
    border-radius: 0;
  }

  .subcategory-list a {
    font-size: 14px;
    padding: 4px 0;
    color: #ccc;
    background-color: transparent;
  }

  .subcategory-list a:hover {
    color: #0ea47a;
    background-color: transparent;
  }
}
  
@media (max-width: 600px) {
  .site-header { 
    display: flex;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 10px 0;
  }
  .site-header .logo { 
    order: 1; width: 100%; display: flex; justify-content: center;
  }
  .site-header .logo img { height: 48px; }
  .site-header .search-bar { 
    order: 2; width: 92%; max-width: 520px; margin: 0 auto;
   margin-top: 8px;}
  .site-header .user-controls { 
    order: 3; width: 100%; display: flex; justify-content: center; gap: 16px;
  }
  .site-header .auth-bar {
    order: 4; width: 100%; display: flex; justify-content: center; gap: 12px; background: transparent !important; padding: 0 !important;
  }
  .site-header .lang-switcher { 
    order: 5; width: 100%; display: flex; justify-content: center; gap: 8px;
  }
}


@media (max-width: 600px) {
  .site-header { 
    height: auto !important;
    display: flex;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 10px 0;
  }
  .site-header .logo { 
    order: 1; width: 100%; display: flex; justify-content: center;
  }
  .site-header .logo img { height: 48px; }

  .site-header .search-bar { 
    order: 2; width: 92%; max-width: 520px; margin: 8px auto 0;
    display: flex !important; align-items: center;
  }
  .site-header .search-bar input {
    height: 44px !important; flex: 1; border-radius: 25px 0 0 25px;
  }
  .site-header .search-bar .search-btn {
    height: 44px !important; width: 50px; border-radius: 0 25px 25px 0;
  }

  .site-header .user-controls { 
    order: 3; width: 100%; display: flex; justify-content: center; gap: 16px;
  }
  .site-header .auth-bar {
    order: 4; width: 100%; display: flex; justify-content: center; gap: 12px; background: transparent !important; padding: 0 !important;
  }
  .site-header .lang-switcher { 
    order: 5; width: 100%; display: flex; justify-content: center; gap: 8px;
  }
}


/* Phone-only tweaks: show logout in controls, hide greeting, show dropdown */
.language-switcher-mobile select {
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #444;
  font-size: 14px;
}

@media (max-width: 600px) {
  .auth-bar { display: none !important; }          /* hide greeting/login row */
  .lang-switcher { display: none !important; }     /* hide flag icons */
  .language-switcher-mobile { 
    display: flex !important;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
  }
  .logout-mobile { display: inline-flex !important; }
}


/* Phone-only: fix orders, hide greeting, show dropdown */
.language-switcher-mobile select {
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #444;
  font-size: 14px;
}

@media (max-width: 600px) {
  .site-header {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 10px 0;
  }
  .site-header .logo { order: 1; width: 100%; display: flex; justify-content: center; }
  .site-header .search-bar { order: 2; width: 92%; max-width: 520px; margin: 0 auto; }
  .site-header .user-controls { order: 3; display: flex; justify-content: center; gap: 16px; width: 100%; }
  .auth-bar { display: none !important; }          /* hide greeting/login row */
  .lang-switcher { display: none !important; }     /* hide flag icons */
  .language-switcher-mobile { 
    order: 4; 
    display: flex !important;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
  }
  .logout-mobile { display: inline-flex !important; }
}


@media (max-width: 600px) {
  .site-header { display: flex; flex-direction: column !important; align-items: center; gap: 12px; padding: 10px 0; }
  .site-header .logo { order: 1; width: 100%; display: flex; justify-content: center; }
  .site-header .search-bar { order: 2; width: 92%; max-width: 520px; margin: 0 auto; display: flex !important; align-items: center; }
  .site-header .search-bar input { height: 44px !important; flex: 1; border-radius: 25px 0 0 25px; }
  .site-header .search-bar .search-btn { height: 44px !important; width: 50px; border-radius: 0 25px 25px 0; }
  .site-header .user-controls { order: 3; width: 100%; display: flex !important; justify-content: center; gap: 16px; }
  .auth-bar { display: none !important; }
  .lang-switcher { display: none !important; }
  .language-switcher-mobile { order: 4; display: flex !important; justify-content: center; width: 100%; }
  .logout-mobile { display: inline-flex !important; }
}

.logo-track{
  background-color: var(--bg);
}

.category-box{
  border-right: 2px solid  black;

  border-radius: 0;


}
.scroll-wrapper { justify-content: center; }            /* սլաք + wrapper */
#categoryWrapper { display: flex; justify-content: center; width: 100%; }
#categoryWrapper .category-container {
  margin: 0 auto;                                       /* թող բովանդակությունը կենտրոնանա */
  justify-content: center;                              /* flex items */
}


/*հարցում*/

/* =========================
   REQUEST FORM — FINAL FIX
   ========================= */

.harcum{
  width:100%;
  height: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:48px 16px;
  background:transparent;
  color:var(--text);
}

.harcum .glass-box{
  position:relative;
  z-index:1;
  width:100%;
  max-width:430px;
  padding:28px;
  border-radius:52px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:10px;
  box-sizing:border-box;

  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.48);
  backdrop-filter:blur(18px) saturate(140%);
  -webkit-backdrop-filter:blur(18px) saturate(140%);

  box-shadow:
    inset 1px 1px 1px rgba(255,255,255,0.85),
    inset -1px -1px 1px rgba(255,255,255,0.08),
    0 24px 40px -28px rgba(40,40,50,0.14),
    0 10px 18px -16px rgba(0,0,0,0.20);

  color:var(--text);
}

.harcum .glass-box::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(
    135deg,
    rgba(255,255,255,0.28),
    rgba(255,255,255,0.02) 42%,
    rgba(255,255,255,0.08) 72%,
    rgba(255,255,255,0.18)
  );
  mix-blend-mode:screen;
  pointer-events:none;
}

html[data-theme="dark"] .harcum .glass-box{
  background:rgba(255,255,255,0.05);
  border-color:rgba(255,255,255,0.22);
  box-shadow:
    inset 1px 1px 1px rgba(255,255,255,0.42),
    inset -1px -1px 1px rgba(255,255,255,0.03),
    0 28px 46px -24px rgba(0,0,0,0.42),
    0 18px 30px -20px rgba(255,255,255,0.02);
}

html[data-theme="dark"] .harcum .glass-box::before{
  background:linear-gradient(
    135deg,
    rgba(255,255,255,0.14),
    rgba(255,255,255,0.02) 42%,
    rgba(255,255,255,0.03) 72%,
    rgba(255,255,255,0.09)
  );
}

.harcum .glass-box > *{
  position:relative;
  z-index:1;
}

.harcum .glass-edge{
  display:block;
  width:72px;
  height:5px;
  border-radius:999px;
  background:rgba(255,255,255,0.75);
  box-shadow:0 4px 14px rgba(255,255,255,0.35);
  margin:0 0 6px;
}

.harcum .glass-box h3{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.15;
  text-align:left;
  color:var(--text);
}

html[data-theme="dark"] .harcum .glass-box h3{
  color:var(--text);
}

.harcum .glass-box label{
  display:block;
  margin-top:4px;
  font-size:14px;
  font-weight:700;
  line-height:1.3;
  text-align:left;
  color:var(--text);
  opacity:0.72;
}

.harcum .glass-box textarea,
.harcum .glass-box input,
.harcum .glass-box select{
  display:block;
  width:100%;
  margin:0;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.52);
  background:rgba(255,255,255,0.28);
  color:var(--text);
  font-size:15px;
  line-height:1.4;
  outline:none;
  box-sizing:border-box;
  appearance:none;
  -webkit-appearance:none;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:inset 1px 1px 1px rgba(255,255,255,0.5);
}

.harcum .glass-box select{
  padding-right:44px;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%232a2a2a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:18px;
}

html[data-theme="dark"] .harcum .glass-box select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23f4f5f8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
}

html[data-theme="dark"] .harcum .glass-box textarea,
html[data-theme="dark"] .harcum .glass-box input,
html[data-theme="dark"] .harcum .glass-box select{
  background:rgba(255,255,255,0.05);
  border-color:rgba(255,255,255,0.16);
  box-shadow:inset 1px 1px 1px rgba(255,255,255,0.08);
}

.harcum .glass-box textarea{
  resize:vertical;
  min-height:96px;
}

.harcum .glass-box textarea::placeholder,
.harcum .glass-box input::placeholder{
  color:rgba(80,85,95,0.7);
}

html[data-theme="dark"] .harcum .glass-box textarea::placeholder,
html[data-theme="dark"] .harcum .glass-box input::placeholder{
  color:rgba(230,232,238,0.5);
}

.harcum .glass-box select option{
  background:var(--bg);
  color:var(--text);
}

.harcum .glass-box button{
  display:block;
  width:100%;
  margin-top:10px;
  padding:14px 18px;
  border:none;
  border-radius:999px;
  cursor:pointer;
  background:rgba(255,255,255,0.75);
  box-shadow:0 8px 22px rgba(0,0,0,0.12);
  font-size:14px;
  font-weight:700;
  color:var(--text);
  box-sizing:border-box;
}

html[data-theme="dark"] .harcum .glass-box button{
  background:rgba(255,255,255,0.08);
  color:#fff;
  border:1px solid rgba(255,255,255,0.12);
}

.harcum #requestResult{
  min-height:24px;
  margin-top:2px;
  font-size:14px;
  line-height:1.35;
  text-align:left;
  color:var(--text);
  opacity:0.72;
}

@media (max-width: 480px){
  .harcum{
    padding:24px 12px;
  }

  .harcum .glass-box{
    max-width:100%;
    border-radius:34px;
    padding:18px;
  }

  .harcum .glass-box h3{
    font-size:24px;
  }
}
.harcum .glass-box button:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(14,164,122,0.4);
}


.harcum .glass-box button {
  transition: 0.3s ease;
}
/* ================= FOOTER ================= */

.footer-pro{
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow: hidden;
}

/* անջատում ենք բոլոր effect-ները */
.footer-pro::before,
.footer-pro::after{
  content: none !important;
}
@keyframes footerLine{
  0%   { transform: translateX(-40%); }
  100% { transform: translateX(40%); }
}

.footer-pro__inner{
  background: var(--bg);
  color: var(--text);
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 22px 18px;

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 26px;

  font-size: 13.5px;
}

/* Make all three columns align nicely */
.footer-pro__left,
.footer-pro__links,
.footer-pro__right{
  display:flex;
  align-items:center;
}

/* LEFT */
.footer-pro__left{
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  min-width: 210px;
}

.footer-pro__brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text);
}

.logo-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: #0ea47a;
  box-shadow: 0 0 16px rgba(14,164,122,.55);
}

.footer-pro__meta{
  color: var(--text);
  opacity: 0.7;
  font-size: 12.5px;
}

/* CENTER LINKS */
.footer-pro__links{
  gap: 14px;
  flex-wrap: wrap;
  justify-content:center;
  text-align:center;
}

.footer-pro__links a{
  color: var(--text);
  text-decoration:none;
  transition: .25s;
  padding: 4px 2px;
  white-space: nowrap;
}

.footer-pro__links a:hover{
  color:#0ea47a;
}

.sep{
  width:4px;
  height:4px;
  border-radius:50%;
  background: rgba(14,164,122,.65);
  opacity:.75;
}

/* RIGHT (contact + social in one row) */
.footer-pro__right{
  gap: 16px;
  justify-content:flex-end;
  min-width: 280px;
}

.footer-pro__contact{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.contact-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding: 8px 14px;
  border-radius: 999px;

  border: 1px solid rgba(14,164,122,.25);
  background: rgba(255,255,255,.04);

  color: var(--text);
  text-decoration:none;

  font-weight: 700;
  font-size: 13px;
  transition: .25s;
  white-space: nowrap;
}

.contact-pill .icon{
  color:#0ea47a;
  font-weight:900;
}

.contact-pill:hover{
  border-color:#0ea47a;
  color: var(--text);
  box-shadow: 0 0 18px rgba(14,164,122,.18);
}

/* SOCIAL */
.footer-pro__social{
  display:flex;
  gap: 10px;
  align-items:center;
}

.soc{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;

  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);

  transition: .25s;
}

.soc img{
  width:20px;
  height:20px;
  display:block;
}

.soc:hover{
  border:1px solid #0ea47a;
  box-shadow: 0 0 15px rgba(14,164,122,.25);
}

/* MOBILE */
@media (max-width: 900px){
  .footer-pro__inner{
    flex-direction:column;
    text-align:center;
    gap: 18px;
  }

  .footer-pro__left{
    align-items:center;
    min-width: auto;
  }

  .footer-pro__right{
    flex-direction:column;
    min-width: auto;
  }

  .footer-pro__contact{
    justify-content:center;
  }
}



.paymet {
  width:100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.pay-item {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paymet .pay-item .pay-img {
  width: 150px !important;
  height: auto !important;
  max-width: 58px !important;
  min-width: 30px !important;
  display: block !important;
}