/* ============================
   Sodagi – Main Styles (New)
   ============================ */

/* ---------- Variables ---------- */
:root {
  --bg-dark: #111217;

  --primary: #c5965b;
  --primary-soft: #f2e2cc;

  --text-main: #ffffff;
  --text-muted: #d0d0da;

  --border-soft: rgba(255, 255, 255, 0.18);

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 10px;

  --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.6);
  --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.9);

  --container-width: 1180px;
  --transition-fast: 0.18s ease-out;
  --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* ============================
   GLOBAL BACKGROUND
   ============================ */

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;

  /* მთავარი ფოტო */
  background-image: url('../uploads/bg-main.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #000; /* fallback */

  /* ნაზი მოძრაობა */
  animation: bgMove 30s ease-in-out infinite alternate;
}

@keyframes bgMove {
  0% {
    background-position: center top;
  }
  50% {
    background-position: center center;
  }
  100% {
    background-position: center bottom;
  }
}

/* ============================
   Layout & Containers
   ============================ */

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

.section,
.section-light {
  padding: 64px 0;
  background: transparent;
}

/* “Glass” ბოქსები სექციებში */
.section > .container,
.section-light > .container {
  background: rgba(10, 10, 15, 0.45);
  border-radius: var(--radius-xl);
  padding: 26px 22px 30px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #f3f3f8;
}

.section-header {
  text-align: center;
  margin-bottom: 26px;
}

.section-header h2 {
  font-size: 26px;
  margin: 0 0 6px;
  color: #ffffff;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
}

/* ============================
   Header & Navigation
   ============================ */

/* HEADER – სუფთა თეთრი ლენტი Marya სტილში */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* UIkit Navbar Container - Blur effect */
.site-header .uk-navbar-container {
  background: transparent !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-header .uk-navbar-container > * {
  background: transparent;
}

/* Navbar links */
.site-header .uk-navbar-nav > li > a {
  color: #fff;
}

.site-header .uk-navbar-nav > li > a:hover,
.site-header .uk-navbar-nav > li.uk-open > a {
  color: #f5f5f5;
}

/* შიგნით მხოლოდ layout, ფონი აღარ აქვს */
.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  gap: 16px;

  background: transparent;  /* ყოველ შემთხვევისთვის */
}


.logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.logo-text {
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* main nav + dropdown */
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.main-nav > a {
  text-decoration: none;
  color: #e8e8f0;
  padding: 6px 0;
  position: relative;
}

.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: width var(--transition-fast);
}

.main-nav > a:hover::after {
  width: 100%;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;

  background: rgba(15, 15, 20, 0.94);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);

  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition:
    opacity 0.18s ease-out,
    transform 0.18s ease-out;
}

.dropdown-content a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  text-decoration: none;
  color: #e7e7ef;
  white-space: nowrap;
}

.dropdown-content a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--primary);
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  color: #e8e8f0;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header-phone:hover {
  color: var(--primary);
}

/* Login button in header */
.btn-ghost [uk-icon] {
  margin-right: 4px;
}

.btn-ghost[title] {
  padding: 9px 12px;
}

/* Cart icon in header */
.cart-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cart-icon-link:hover {
  background: #333333;
  color: #ffffff;
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: #111;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  border: 2px solid rgba(8, 8, 12, 0.9);
}

/* ============================
   Buttons
   ============================ */

.btn-primary,
.btn-ghost,
.btn-danger,
.btn-small {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.btn-primary {
  background: var(--primary);
  color: #111;
  box-shadow: 0 14px 40px rgba(0,0,0,0.75);
}

.btn-primary:hover {
  background: #b17f42;
  transform: translateY(-1px);
}

.btn-ghost {
  background: #000000;
  color: #ffffff;
  border-color: rgba(255,255,255,0.2);
}

.btn-ghost:hover {
  background: #333333;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-danger {
  background: #e66363;
  color: #fff;
}

.btn-danger:hover {
  background: #cf5151;
}

.btn-small {
  padding: 5px 12px;
  font-size: 12px;
}

/* ============================
   HERO
   ============================ */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: transparent;
}

/* აღარ გვჭირდება საკუთარი ბექგრაუნდი – body already has one */
.hero-bg {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.hero-text-block {
  position: relative;
  max-width: 520px;
  border-radius: 26px;
  padding: 28px 30px;
  color: #ffffff;

  background: rgba(5,5,10,0.45); /* რბილი შავი */
  backdrop-filter: none !important; 
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}

/* box internal image */
.hero-text-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../uploads/box-photo.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;    /* ნაკლები ოპასითი = მკვეთრი ტექსტი */
  filter: blur(2px); /* ძალიან მცირე blur */
  z-index: -1;
}



.hero-kicker {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f5d0a0;
}



.hero-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #f3f3f3;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.hero-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}

.hero-stats strong {
  display: block;
  font-size: 20px;
  color: #ffffff;
}

/* კატეგორიების თეთრი strip */
.hero-thumb-strip {
  align-self: flex-start;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 18px;
  padding: 10px 16px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-thumb-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
}

.hero-thumb-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-thumb-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-decoration: none;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.18s ease-out, transform 0.18s ease-out;
}

.hero-thumb-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-thumb-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* ============================
   Product grid & cards
   ============================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.product-card {
  background: rgba(10, 10, 15, 0.8);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 60px rgba(0,0,0,0.85);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card a {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 75px rgba(0,0,0,0.95);
  border-color: rgba(255,255,255,0.3);
}

.product-image {
  width: 100%;
  padding-bottom: 68%;
  background-position: center;
  background-size: cover;
  background-color: #222;
}

.product-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-body h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #ffffff;
}

.product-category {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b0b0c0;
}

.product-desc {
  margin: 0 0 10px;
  font-size: 13px;
  color: #d0d0da;
  flex-grow: 0; /* Changed from 1 */
  min-height: auto; /* Changed from 40px */
  max-height: 52px; /* Limit height */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Max 2 lines */
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-weight: 600;
}

.product-link {
  font-size: 13px;
  color: var(--primary);
}

/* ============================
   Category Filter Buttons - Professional Scrollable
   ============================ */

.category-filters-wrapper {
  position: relative;
  margin-bottom: 30px;
  padding: 0 50px;
}

.category-filters-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.category-filters-scroll::-webkit-scrollbar {
  display: none;
}

.category-filter-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 24px;
  min-width: 140px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  background: rgba(255,255,255,0.06);
  color: #d0d0da;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.category-filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.category-filter-btn:hover::before {
  left: 100%;
}

.category-filter-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.category-filter-btn.active {
  background: linear-gradient(135deg, var(--primary), #d4a574);
  color: #000;
  border-color: var(--primary);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(197, 150, 91, 0.5);
  transform: translateY(-2px);
}

.category-filter-btn.active:hover {
  background: linear-gradient(135deg, var(--primary), #d4a574);
  color: #000;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(197, 150, 91, 0.6);
}

.category-icon {
  font-size: 32px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s ease;
}

.category-filter-btn:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-filter-btn.active .category-icon {
  transform: scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

.category-text {
  font-size: 13px;
  text-align: center;
  line-height: 1.3;
}

/* Scroll Navigation Buttons */
.category-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.9);
  border: 2px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  user-select: none;
}

.category-scroll-btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.category-scroll-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.category-scroll-left {
  left: 0;
}

.category-scroll-right {
  right: 0;
}

.category-scroll-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Responsive category filters */
@media (max-width: 768px) {
  .category-filters-wrapper {
    padding: 0 40px;
  }
  
  .category-filter-btn {
    min-width: 120px;
    padding: 16px 20px;
    gap: 8px;
  }
  
  .category-icon {
    font-size: 28px;
  }
  
  .category-text {
    font-size: 12px;
  }
  
  .category-scroll-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* ============================
   Features – რატომ Sodagi
   ============================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.feature-card {
  background: rgba(10, 10, 15, 0.55);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: #ffffff;
}

.feature-card p {
  margin: 0;
  font-size: 13px;
  color: #d5d5de;
}

/* ============================
   Category grid
   ============================ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 10, 15, 0.7);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.85);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 80px rgba(0,0,0,0.95);
}

.category-image {
  width: 100%;
  padding-bottom: 52%;
  background-size: cover;
  background-position: center;
  background-color: #222;
}

.category-body {
  padding: 12px 14px 14px;
}

.category-body h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #ffffff;
}

.category-body p {
  margin: 0;
  font-size: 13px;
  color: #d0d0da;
}

/* ============================
   Consultation section
   ============================ */

.consult-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.consult-text h2 {
  margin-top: 0;
  color: #ffffff;
}

.consult-text p {
  color: #d5d5e0;
}

.bullet-list {
  padding-left: 18px;
  margin: 10px 0 0;
  color: #d8d8e2;
}

.bullet-list li + li {
  margin-top: 6px;
}

.consult-form-box {
  background: rgba(10, 10, 15, 0.85);
  border-radius: 20px;
  padding: 18px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 24px 70px rgba(0,0,0,0.95);
}
l
/* ============================
   Forms
   ============================ */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.form-row label {
  font-weight: 500;
}

.form-row input,
.form-row textarea,
.form-row select {
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.28);
  padding: 9px 11px;
  font: inherit;
  outline: none;
  background: rgba(5,5,10,0.9);
  color: #f3f3ff;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #9a9ab0;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--primary);
}

.form-note {
  font-size: 12px;
  color: #b0b0c8;
}

.form-row-inline {
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

/* ============================
   Breadcrumbs
   ============================ */

.breadcrumbs {
  padding: 18px 16px 0;
  font-size: 13px;
  color: #b7bac5;
}

.breadcrumbs a {
  color: #e3e3ee;
  text-decoration: none;
}

/* ============================
   Product Detail Page
   ============================ */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}

.product-detail-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-color: #222;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.85);
}
.product-detail-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-color: #222;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.85);
}

/* Product Gallery Slider */
.product-detail .slider {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
  padding-bottom: 10px;
}

.product-detail .slider::-webkit-scrollbar {
  height: 6px;
}

.product-detail .slider::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}

.product-detail .slider::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
}

.product-detail .slider::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.5);
}

.product-detail .slider .slide {
  min-width: 150px;
  width: 150px;
  height: 150px;
  background-position: center;
  background-size: cover;
  background-color: #222;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.product-detail .slider .slide:hover {
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-detail-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail-info .product-category {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  font-weight: 600;
}

.product-detail-info h1 {
  margin: 0;
  font-size: 32px;
  color: #ffffff;
  line-height: 1.3;
}

.product-detail-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.product-detail-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #d0d0da;
  margin: 0;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.rating-stars .star {
  font-size: 18px;
  color: #666;
}

.rating-stars .star.filled {
  color: #ffc107;
}

.rating-value {
  font-weight: 600;
  color: #ffffff;
}

.rating-count {
  font-size: 14px;
  color: var(--text-muted);
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.product-actions .btn-primary,
.product-actions .btn-ghost {
  flex: 1;
  min-width: 160px;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

/* ============================
   Footer
   ============================ */

.site-footer {
  background: rgba(5, 5, 10, 0.96);
  color: #f9f9fb;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  padding: 26px 16px;
}

.footer-col h3,
.footer-col h4 {
  margin-top: 0;
  color: #ffffff;
}

.footer-col img {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-col a:hover img {
  opacity: 1;
}

.footer-col p,
.footer-col ul {
  font-size: 13px;
  color: #b7bac5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
}

.footer-col li + li {
  margin-top: 4px;
}

.footer-col a {
  color: #e3e3ee;
  text-decoration: none;
  font-size: 13px;
}

.footer-col a:hover {
  color: var(--primary-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 10px 0 14px;
  font-size: 12px;
  color: #7a7d87;
}

/* ============================
   Portfolio Preview (Homepage)
   ============================ */
.portfolio-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

/* ============================
   Portfolio Gallery (10 boxes)
   ============================ */
.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.portfolio-gallery-item {
  position: relative;
  background: rgba(10, 10, 15, 0.8);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 60px rgba(0,0,0,0.85);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
  aspect-ratio: 1;
  text-decoration: none;
  color: inherit;
  display: block;
}

.portfolio-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 75px rgba(0,0,0,0.95);
  border-color: rgba(255,255,255,0.3);
}

.portfolio-gallery-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-color: #222;
  transition: transform 0.3s ease-out;
}

.portfolio-gallery-item:hover .portfolio-gallery-image {
  transform: scale(1.05);
}

.portfolio-image-clickable {
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: relative;
}

.portfolio-image-clickable:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.portfolio-image-clickable::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}

.portfolio-image-clickable:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.portfolio-gallery-item .portfolio-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  padding: 10px 12px;
  font-size: 14px;
  text-align: center;
  border-radius: 0 0 18px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 500;
  transition: background 0.3s ease;
}

.portfolio-gallery-item:hover .portfolio-gallery-caption {
  background: rgba(0, 0, 0, 0.85);
}

.portfolio-preview-card {
  background: rgba(10, 10, 15, 0.8);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 60px rgba(0,0,0,0.85);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.portfolio-preview-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.portfolio-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 75px rgba(0,0,0,0.95);
  border-color: rgba(255,255,255,0.3);
}

.portfolio-preview-image {
  width: 100%;
  padding-bottom: 70%;
  background-position: center;
  background-size: cover;
  background-color: #222;
}

.portfolio-preview-body {
  padding: 12px 14px 14px;
}

.portfolio-preview-body h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #ffffff;
}

.portfolio-preview-category {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #b0b0c0;
}

/* ============================
   Cart & Checkout
   ============================ */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr 200px 120px 100px;
  gap: 16px;
  align-items: center;
  background: rgba(10, 10, 15, 0.8);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.18);
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: #222;
}

.cart-item-info h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #ffffff;
}

.cart-item-price {
  margin: 0;
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.cart-item-total {
  text-align: right;
  font-size: 16px;
  color: #ffffff;
}

.cart-summary {
  background: rgba(10, 10, 15, 0.8);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.18);
}

.cart-total {
  text-align: right;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.cart-total h3 {
  margin: 0;
  font-size: 24px;
  color: #ffffff;
}

.cart-total span {
  color: var(--primary);
}

.cart-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-state p {
  margin-bottom: 20px;
  font-size: 18px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: flex-start;
}

.checkout-summary h2 {
  margin-top: 0;
  color: #ffffff;
}

.cart-items-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.cart-summary-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgba(5, 5, 10, 0.6);
  border-radius: 12px;
}

.cart-summary-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-color: #222;
  flex-shrink: 0;
}

.cart-summary-info {
  flex: 1;
}

.cart-summary-info h4 {
  margin: 0 0 4px;
  font-size: 14px;
  color: #ffffff;
}

.cart-summary-info p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.cart-summary-price {
  font-weight: 600;
  color: var(--primary);
}

.checkout-total {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
  text-align: right;
}

.checkout-total h3 {
  margin: 0;
  font-size: 20px;
  color: #ffffff;
}

.checkout-total span {
  color: var(--primary);
}

.product-actions-inline {
  margin-top: 10px;
}

.product-actions-inline a {
  text-decoration: none;
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 900px) {
  .hero-content {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .hero-text-block {
    max-width: 100%;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .hero-text-block h1 {
    font-size: 28px;
  }

  .hero-thumb-strip {
    margin-top: 14px;
    width: 100%;
    align-self: stretch;
  }

  .hero-thumb-items {
    justify-content: space-between;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    display: none; /* მერე burger menu თუ გვინდა, აქედან დავიწყებთ */
  }

  .section > .container,
  .section-light > .container {
    border-radius: 18px;
    padding: 20px 16px 24px;
  }

  .consult-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .portfolio-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }

  .cart-item-quantity,
  .cart-item-total,
  .cart-item-remove {
    grid-column: 1 / -1;
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-detail {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .product-detail-info h1 {
    font-size: 24px;
  }

  .product-detail-price {
    font-size: 24px;
  }
}

/* Portfolio Slider Styles */
.uk-slider-items li {
  list-style: none;
}

.uk-slider-items .product-detail-image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-color: #222;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.85);
}

.uk-slider-nav.uk-dotnav > * > * {
  background: rgba(255,255,255,0.4);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.uk-slider-nav.uk-dotnav > .uk-active > * {
  background: #fff;
  width: 12px;
  height: 12px;
}

.uk-slider-nav.uk-dotnav > * > *:hover {
  background: rgba(255,255,255,0.7);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10001;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10002;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10002;
  user-select: none;
}

.lightbox-prev {
  left: -60px;
}

.lightbox-next {
  right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-caption {
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 80vw;
}

.lightbox-counter {
  position: absolute;
  top: -40px;
  left: 0;
  color: #fff;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
  
  .lightbox-counter {
    top: 10px;
    left: 10px;
  }
  
  .lightbox-image {
    max-height: 70vh;
  }
}
