/* ═══════════════════════════════════════════════════════════════
   Gstore Smart Picker  —  picker.css
   Glassmorphic, Apple-inspired horizontal picker experience
═══════════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ────────────────────────────────────────── */
.gs-picker-wrap {
  --gs-radius:        20px;
  --gs-gap:           10px;
  --gs-module-h:      380px;
  --gs-section-bg:    rgba(255, 255, 255, 0.18);
  --gs-border:        rgba(255, 255, 255, 0.45);
  --gs-shadow:        0 8px 40px rgba(60, 80, 160, 0.13);
  --gs-blue:          #5b7fff;
  --gs-blue-dark:     #3a5ce4;
  --gs-drum-h:        180px;
  --gs-drum-item-h:   52px;
  --gs-accent:        linear-gradient(135deg, #7c9fff 0%, #b57bff 100%);
  --gs-text:          #1d1d2e;
  --gs-text-soft:     rgba(29,29,46,0.55);
  --gs-locked-op:     0.42;
  font-family: 'TBC Contractica', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── LANGUAGE VISIBILITY ──────────────────────────────────────── */
.gs-picker-wrap .gs-lang-ka { display: none; }
.gs-picker-wrap[data-lang="ka"] .gs-lang-en,
html[lang^="ka"] .gs-picker-wrap .gs-lang-en,
.locale-ka .gs-picker-wrap .gs-lang-en  { display: none; }
.gs-picker-wrap[data-lang="ka"] .gs-lang-ka,
html[lang^="ka"] .gs-picker-wrap .gs-lang-ka,
.locale-ka .gs-picker-wrap .gs-lang-ka  { display: inline; }

/* ── WRAPPER ──────────────────────────────────────────────────── */
.gs-picker-wrap {
  position:   relative;
  width:      100%;
  max-width:  1200px;
  margin:     0 auto 32px;
  padding:    0 0 8px;
  box-sizing: border-box;
}

@keyframes gs-skeleton-shimmer {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* ── HEADER ───────────────────────────────────────────────────── */
.gs-picker-header {
  text-align:   center;
  font-size:    clamp(22px, 3vw, 34px);
  font-weight:  700;
  color:        var(--gs-text);
  margin:       0 0 10px;
  letter-spacing: -0.5px;
  line-height:  1.2;
}

/* ── BREADCRUMB ───────────────────────────────────────────────── */
.gs-picker-breadcrumb {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             6px;
  font-size:       13px;
  color:           var(--gs-text-soft);
  margin-bottom:   18px;
  flex-wrap:       wrap;
}
.gs-bc-item {
  padding:       3px 10px;
  border-radius: 999px;
  border:        1px solid transparent;
  transition:    all 0.25s;
  cursor:        default;
}
.gs-bc-item--active {
  color:            var(--gs-blue-dark);
  border-color:     var(--gs-blue);
  background:       rgba(91,127,255,0.09);
  font-weight:      600;
}
.gs-bc-item--done {
  color:        #34c759;
  border-color: rgba(52,199,89,0.4);
  background:   rgba(52,199,89,0.08);
}
.gs-bc-sep { opacity: 0.35; font-size: 11px; }

/* ── RESET BUTTON ─────────────────────────────────────────────── */
.gs-picker-reset {
  position:        absolute;
  top:             0;
  right:           0;
  display:         flex;
  align-items:     center;
  gap:             5px;
  font-size:       12px;
  color:           var(--gs-text-soft);
  background:      none;
  border:          1px solid rgba(0,0,0,0.1);
  border-radius:   999px;
  padding:         5px 12px;
  cursor:          pointer;
  transition:      all 0.2s;
  font-family:     inherit;
}
.gs-picker-reset:hover {
  color:       var(--gs-blue-dark);
  border-color: var(--gs-blue);
  background:  rgba(91,127,255,0.06);
}

/* ── OUTER CONTAINER (the big rounded rect) ──────────────────── */
.gs-picker-container {
  position:      relative;
  display:       flex;
  gap:           var(--gs-gap);
  align-items:   stretch;
  background:    rgba(220, 228, 255, 0.38);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border:        1px solid rgba(255,255,255,0.6);
  border-radius: var(--gs-radius);
  padding:       var(--gs-gap);
  box-shadow:
    0 20px 60px rgba(60,80,160,0.14),
    0 2px 8px   rgba(60,80,160,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);
  height:        var(--gs-module-h);
  min-height:    var(--gs-module-h);
  max-height:    var(--gs-module-h);
  box-sizing:    border-box;
  overflow:      hidden;
}

.gs-picker-wrap--booting .gs-picker-section {
  opacity:        0;
  pointer-events: none;
}

.gs-picker-container-skeleton {
  position:       absolute;
  inset:          var(--gs-gap);
  z-index:        9;
  display:        none;
  gap:            var(--gs-gap);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  pointer-events: none;
}
.gs-picker-wrap--booting .gs-picker-container-skeleton {
  display: grid;
}
.gs-skel-panel {
  position:       relative;
  border-radius:  calc(var(--gs-radius) - 6px);
  border:         1px solid rgba(255,255,255,0.72);
  background:     linear-gradient(180deg, rgba(255,255,255,0.55), rgba(244,248,255,0.5));
  box-shadow:     0 4px 16px rgba(60,80,160,0.08);
  overflow:       hidden;
  padding:        14px 12px;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            10px;
}
.gs-skel-panel::after {
  content:        '';
  position:       absolute;
  inset:          0;
  background:     linear-gradient(100deg, transparent 22%, rgba(255,255,255,0.75) 50%, transparent 78%);
  animation:      gs-skeleton-shimmer 1.45s ease-in-out infinite;
  pointer-events: none;
}
.gs-skel-line,
.gs-skel-drum,
.gs-skel-pill,
.gs-skel-grid,
.gs-skel-circle,
.gs-skel-btn {
  display:      block;
  border-radius: 999px;
  background:   rgba(189, 199, 228, 0.72);
}
.gs-skel-line { width: 78%; height: 14px; }
.gs-skel-line--sm { width: 62%; height: 12px; }
.gs-skel-line--md { width: 56%; height: 12px; }
.gs-skel-drum {
  width:        100%;
  height:       170px;
  border-radius: 16px;
}
.gs-skel-grid {
  width:        100%;
  height:       170px;
  border-radius: 16px;
}
.gs-skel-pill {
  width:        46px;
  height:       46px;
}
.gs-skel-circle {
  width:        98px;
  height:       98px;
  border-radius: 50%;
}
.gs-skel-btn {
  width:        100%;
  height:       36px;
  border-radius: 12px;
}

/* ── INDIVIDUAL SECTIONS ──────────────────────────────────────── */
.gs-picker-section {
  position:      relative;
  flex:          1 1 0;
  display:       flex;
  flex-direction: column;
  align-items:   center;
  background:    rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border:        1px solid rgba(255,255,255,0.55);
  border-radius: calc(var(--gs-radius) - 4px);
  padding:       18px 14px 16px;
  box-shadow:    0 2px 18px rgba(60,80,160,0.06);
  transition:    opacity 0.3s, transform 0.3s, box-shadow 0.3s;
  box-sizing:    border-box;
  overflow:      hidden;
  min-height:    0;
}

.gs-section-body {
  width:          100%;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  flex:           1 1 auto;
  min-height:     0;
  transition:     opacity 0.34s ease, transform 0.34s ease;
}

.gs-picker-section.is-loading {
  pointer-events: none;
}
.gs-picker-section.is-loading .gs-section-header,
.gs-picker-section.is-loading .gs-section-body,
.gs-picker-section.is-loading .gs-lock-btn,
.gs-picker-section.is-loading .gs-section-cover {
  opacity:        0;
  visibility:     hidden;
}
.gs-picker-section.is-loading::before {
  content:        '';
  position:       absolute;
  inset:          12px;
  border-radius:  16px;
  border:         1px solid rgba(255,255,255,0.74);
  background:     linear-gradient(180deg, rgba(255,255,255,0.58), rgba(243,247,255,0.52));
  box-shadow:     0 4px 16px rgba(60,80,160,0.08);
  z-index:        10;
}
.gs-picker-section.is-loading::after {
  content:        '';
  position:       absolute;
  inset:          12px;
  border-radius:  16px;
  background:     linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.78) 52%, transparent 80%);
  animation:      gs-skeleton-shimmer 1.25s ease-in-out infinite;
  z-index:        11;
}

/* Result section sizing */
.gs-picker-section--result {
  flex: 0.95 1 0;
  min-width: 170px;
}

@media (min-width: 1025px) {
  .gs-picker-section[data-section="1"] {
    flex: 0.92 1 0;
  }
  .gs-picker-section[data-section="2"] {
    flex: 0.92 1 0;
  }
  .gs-picker-section[data-section="3"] {
    flex: 1.08 1 0;
  }
  .gs-picker-section[data-section="4"] {
    flex: 1.08 1 0;
  }
  .gs-picker-section[data-section="3"] .gs-software-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Active section — slight lift */
.gs-picker-section--active {
  background:  rgba(255,255,255,0.45);
  box-shadow:
    0 4px 24px rgba(91,127,255,0.12),
    0 1px 4px  rgba(0,0,0,0.06);
}

/* Locked sections */
.gs-picker-section--locked {
  opacity:        1;
  pointer-events: auto;
  filter:         none;
  cursor:         not-allowed;
}

/* Confirmed sections */
.gs-picker-section--confirmed {
  background:  rgba(52,199,89,0.08);
  border-color: rgba(52,199,89,0.35);
  opacity:      1;
  pointer-events: auto;
}
.gs-picker-section--confirmed .gs-lock-btn {
  background:  rgba(52,199,89,0.15);
  border-color: rgba(52,199,89,0.5);
}
.gs-picker-section--confirmed .gs-lock-icon {
  stroke: #34c759;
}

.gs-lock-btn .gs-lock-icon-closed { display: none; }
.gs-picker-section--confirmed .gs-lock-btn .gs-lock-icon-open { display: none; }
.gs-picker-section--confirmed .gs-lock-btn .gs-lock-icon-closed { display: inline-flex; }

/* Locked cover state */
.gs-section-cover {
  position:       absolute;
  inset:          0;
  z-index:        4;
  display:        flex;
  align-items:    center;
  justify-content:center;
  text-align:     center;
  padding:        20px 14px;
  background:     linear-gradient(160deg, rgba(248,250,255,0.96), rgba(236,242,255,0.96));
  border-radius:  inherit;
  border:         1px solid rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity:        0;
  transform:      translateY(10px);
  pointer-events: none;
  transition:     opacity 0.34s ease, transform 0.34s ease;
}

.gs-section-cover-title {
  margin:         0;
  font-size:      15px;
  font-weight:    700;
  color:          var(--gs-text);
  line-height:    1.35;
}

.gs-picker-section--locked .gs-section-cover {
  opacity:        1;
  transform:      translateY(0);
}

/* ── SECTION HEADER ───────────────────────────────────────────── */
.gs-section-header {
  display:     flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap:         8px;
  width:       100%;
  margin-bottom: 14px;
  transition:  transform 0.34s ease, opacity 0.34s ease;
  position:    relative;
  z-index:     6;
}
.gs-section-head-left {
  display:     flex;
  align-items: flex-start;
  gap:         8px;
  min-width:   0;
}
.gs-section-head-title-wrap {
  min-width: 0;
}
.gs-section-head-meta {
  display: none;
}
.gs-mobile-summary {
  display: none;
}
.gs-lock-btn--header {
  display: none;
}
.gs-section-num {
  font-size:   10px;
  font-weight: 700;
  color:       var(--gs-blue);
  opacity:     0.6;
  margin-top:  3px;
  flex-shrink: 0;
}
.gs-section-header h3 {
  font-size:     14px;
  font-weight:   700;
  color:         var(--gs-text);
  margin:        0;
  line-height:   1.3;
}

.gs-picker-section--locked .gs-section-header {
  position:       absolute;
  inset:          0;
  width:          100%;
  margin:         0;
  justify-content:center;
  align-items:    center;
  text-align:     center;
  gap:            0;
  transform:      translateY(0);
}
.gs-picker-section--locked .gs-section-num { display: none; }
.gs-picker-section--locked .gs-section-header h3 {
  font-size:      15px;
  max-width:      90%;
  display:        none;
}
.gs-picker-section--locked .gs-section-body {
  opacity:        0;
  transform:      translateY(10px);
  pointer-events: none;
}
.gs-picker-section:not(.gs-picker-section--locked) .gs-section-cover {
  opacity:        0;
  transform:      translateY(8px);
}
.gs-picker-section:not(.gs-picker-section--locked) .gs-section-header {
  position:       relative;
}

/* ── DRUM SELECTOR ────────────────────────────────────────────── */
.gs-drum-wrap {
  position:   relative;
  width:      100%;
  height:     var(--gs-drum-h);
  border-radius: 14px;
  overflow:   hidden;
  flex:       1 1 auto;
}
.gs-drum-wrap--small {
  --gs-drum-h: 160px;
  --gs-drum-item-h: 44px;
  width: 90px;
}

.gs-drum {
  position:        absolute;
  left:            0;
  right:           0;
  top:             0;
  will-change:     transform;
  cursor:          grab;
  user-select:     none;
  -webkit-user-select: none;
  touch-action:    pan-y;
}
.gs-drum.is-grabbing { cursor: grabbing; }

/* Centre padding so the first/last item can scroll to centre */
.gs-drum::before,
.gs-drum::after {
  content:     '';
  display:     block;
  height:      calc((var(--gs-drum-h) - var(--gs-drum-item-h)) / 2);
}

/* Each drum row */
.gs-drum-item {
  height:       var(--gs-drum-item-h);
  display:      flex;
  align-items:  center;
  gap:          10px;
  padding:      0 14px;
  font-size:    14px;
  font-weight:  600;
  color:        var(--gs-text);
  border-radius: 12px;
  transition:   transform 0.15s, color 0.15s, opacity 0.15s;
  opacity:      0.45;
  transform:    scale(0.92);
  white-space:  nowrap;
  overflow:     hidden;
  text-overflow: ellipsis;
  max-width:    100%;
}
.gs-drum-item.is-selected {
  opacity:   1;
  transform: scale(0.92);
  color:     var(--gs-blue-dark);
  background: rgba(91,127,255,0.10);
}
.gs-drum-item--price {
  position:       relative;
  justify-content: center;
  font-size:       15px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}
.gs-drum-item--price.is-selected {
  transform: none;
  background: transparent;
}
.gs-drum-item--price.is-selected::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
  right: 10%;
  border-radius: 10px;
  background: rgba(91,127,255,0.10);
  pointer-events: none;
}
.gs-drum-icon {
  display:    flex;
  flex-shrink: 0;
  color:      var(--gs-blue);
}

/* Top/bottom fades */
.gs-drum-fade {
  position:   absolute;
  left:       0;
  right:      0;
  height:     55px;
  pointer-events: none;
  z-index:    2;
}
.gs-drum-fade--top {
  top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, transparent 100%);
}
.gs-drum-fade--bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.92) 0%, transparent 100%);
}

/* Centre selection line */
.gs-drum-selector-line {
  position:     absolute;
  left:         8px;
  right:        8px;
  top:          calc((var(--gs-drum-h) - var(--gs-drum-item-h)) / 2);
  height:       var(--gs-drum-item-h);
  border:       2px solid rgba(91,127,255,0.28);
  border-radius: 12px;
  pointer-events: none;
  z-index:      3;
  background:   rgba(91,127,255,0.04);
}

/* ── PRICE DRUMS LAYOUT ───────────────────────────────────────── */
.gs-price-drums {
  display:    flex;
  gap:        12px;
  width:      100%;
  flex:       1 1 auto;
  justify-content: center;
}
.gs-price-drum-group {
  display:       flex;
  flex-direction: column;
  align-items:   center;
  gap:           6px;
}
.gs-price-label {
  font-size:   11px;
  font-weight: 700;
  color:       var(--gs-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── LOCK BUTTON ──────────────────────────────────────────────── */
.gs-lock-btn {
  margin-top:  14px;
  width:       48px;
  height:      48px;
  border-radius: 50%;
  background:  rgba(255,255,255,0.55);
  border:      1.5px solid rgba(91,127,255,0.3);
  box-shadow:  0 4px 14px rgba(91,127,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display:     flex;
  align-items: center;
  justify-content: center;
  position:    relative;
  cursor:      pointer;
  transition:  all 0.22s;
  flex-shrink: 0;
}
.gs-lock-btn:disabled {
  opacity:  0.35;
  cursor:   not-allowed;
}
.gs-lock-btn:not(:disabled):hover {
  background:  rgba(91,127,255,0.14);
  border-color: var(--gs-blue);
  transform:   scale(1.07);
  box-shadow:  0 6px 20px rgba(91,127,255,0.2);
}
.gs-lock-btn:active { transform: scale(0.93); }
.gs-lock-icon { stroke: var(--gs-blue); transition: stroke 0.2s; }
.gs-lock-btn.is-shaking {
  animation: gs-lock-shake 0.42s ease;
}

@keyframes gs-lock-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

.gs-lock-ghost {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(91,127,255,0.24);
  border: 1px solid rgba(91,127,255,0.5);
  transform: translate(-50%, -50%) scale(0.3);
  pointer-events: none;
  z-index: 8;
  animation: gs-lock-ghost 0.5s ease-out forwards;
}

@keyframes gs-lock-ghost {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(10);
  }
}

/* ── SOFTWARE GRID (Apple Watch style) ───────────────────────── */
.gs-software-wrap {
  width:    100%;
  flex:     1 1 auto;
  min-height: 0;
  display:  flex;
  flex-direction: column;
  gap:      10px;
  overflow: hidden;
}
.gs-software-wrap.is-required {
  animation: gs-software-required-wrap 0.72s ease;
}
@keyframes gs-software-required-wrap {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}

/* Selected chips at top */
.gs-software-selected {
  display:    flex;
  flex-wrap:  nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap:        5px;
  min-height: 28px;
  max-height: 28px;
  width:      100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(91,127,255,0.25) transparent;
}
.gs-software-selected::-webkit-scrollbar { height: 4px; }
.gs-software-selected::-webkit-scrollbar-thumb {
  background: rgba(91,127,255,0.25);
  border-radius: 999px;
}
.gs-software-chip {
  display:      flex;
  flex:         0 0 auto;
  align-items:  center;
  justify-content: center;
  gap:          4px;
  background:   rgba(91,127,255,0.15);
  border:       1px solid rgba(91,127,255,0.35);
  border-radius: 8px;
  width:        24px;
  height:       24px;
  padding:      0;
  font-size:    10px;
  font-weight:  600;
  color:        var(--gs-blue-dark);
}
.gs-software-chip img {
  width:  16px;
  height: 16px;
  object-fit: contain;
  border-radius: 4px;
}
.gs-software-chip .gs-other-dots {
  width:         16px;
  height:        16px;
  border-radius: 4px;
  gap:           2px;
  background:    rgba(91,127,255,0.15);
}
.gs-software-chip .gs-other-dots span {
  width:         2.5px;
  height:        2.5px;
}
.gs-software-chip-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--gs-blue-dark);
}

/* Grid of tiles */
.gs-software-grid {
  display:   grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap:       7px;
  flex:      1 1 auto;
  min-height: 0;
  overflow-y: auto;
  max-height: none;
  padding:   4px 2px 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(91,127,255,0.25) transparent;
  align-content: start;
}
.gs-software-grid::-webkit-scrollbar { width: 4px; }
.gs-software-grid::-webkit-scrollbar-thumb { background: rgba(91,127,255,0.25); border-radius: 2px; }
.gs-software-grid.is-required .gs-sw-tile:not(.is-selected) {
  animation: gs-sw-remind 0.58s ease;
}
@keyframes gs-sw-remind {
  0%, 100% {
    transform: scale(1);
    border-color: rgba(255,255,255,0.7);
    box-shadow: none;
  }
  50% {
    transform: scale(1.05);
    border-color: rgba(91,127,255,0.6);
    box-shadow: 0 6px 18px rgba(91,127,255,0.22);
  }
}

/* Individual tile */
.gs-sw-tile {
  display:       flex;
  flex-direction: column;
  align-items:   center;
  gap:           4px;
  padding:       8px 4px 6px;
  background:    rgba(255,255,255,0.5);
  border:        1.5px solid rgba(255,255,255,0.7);
  border-radius: 14px;
  cursor:        pointer;
  transition:    transform 0.18s, box-shadow 0.18s, background 0.18s, border-color 0.18s;
  font-size:     10px;
  font-weight:   600;
  color:         var(--gs-text);
  text-align:    center;
  word-break:    break-word;
  line-height:   1.2;
  user-select:   none;
  -webkit-user-select: none;
}
.gs-sw-tile img {
  width:        32px;
  height:       32px;
  object-fit:   contain;
  border-radius: 8px;
  transition:   transform 0.18s;
}
.gs-other-dots {
  width:          32px;
  height:         32px;
  border-radius:  8px;
  background:     linear-gradient(135deg,#c8d2ff,#e0d0ff);
  display:        flex;
  align-items:    center;
  justify-content:center;
  gap:            3px;
}
.gs-other-dots span {
  width:          4px;
  height:         4px;
  border-radius:  50%;
  background:     #5b7fff;
}
.gs-sw-tile .gs-sw-name {
  font-size: 9px;
  opacity:   0.7;
  max-width: 52px;
  overflow:  hidden;
  text-overflow: ellipsis;
  white-space:   nowrap;
}
.gs-sw-tile:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(91,127,255,0.18);
  border-color: rgba(91,127,255,0.4);
  background:   rgba(255,255,255,0.8);
}
.gs-sw-tile:hover img {
  transform: scale(1.06);
}
.gs-sw-tile.is-selected {
  background:   rgba(91,127,255,0.14);
  border-color: var(--gs-blue);
  box-shadow:   0 4px 16px rgba(91,127,255,0.22);
  color:        var(--gs-blue-dark);
}
.gs-sw-tile.is-selected img { transform: scale(1.05); }

/* Parallax depth — subtle */
.gs-sw-tile:nth-child(3n+1)  { transform-origin: left center; }
.gs-sw-tile:nth-child(3n+2)  { transform-origin: center center; }
.gs-sw-tile:nth-child(3n)    { transform-origin: right center; }

/* ── SEARCH BUTTON ────────────────────────────────────────────── */
.gs-search-btn {
  position:     relative;
  width:        100px;
  height:       100px;
  border-radius: 50%;
  background:   #3713ec;
  border:       none;
  cursor:       pointer;
  display:      flex;
  flex-direction: column;
  align-items:  center;
  justify-content: center;
  gap:          4px;
  margin:       auto;
  flex:         0 0 auto;
  box-shadow:
    0 10px 32px rgba(91,127,255,0.4),
    0 2px 8px   rgba(91,127,255,0.2),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transition:   transform 0.22s, box-shadow 0.22s;
  -webkit-tap-highlight-color: transparent;
  max-height: 100px;
}
.gs-search-btn:hover {
  transform: scale(1.06);
  background: #2910c0;
  box-shadow:
    0 16px 40px rgba(91,127,255,0.5),
    0 4px 12px  rgba(91,127,255,0.25),
    inset 0 1px 0 rgba(255,255,255,0.4);
}
.gs-search-btn:active { transform: scale(0.94); }

.gs-search-btn__icon,
.gs-search-btn__loader { color: #fff; display: flex; align-items: center; justify-content: center; }
.gs-search-btn__label {
  font-size:   10px;
  font-weight: 700;
  font-family: 'TBC Contractica CAPS', 'TBC Contractica', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: .35px;
  color:       rgba(255,255,255,0.9);
  text-align:  center;
  line-height: 1.2;
}

/* Loading state */
.gs-search-btn.is-loading .gs-search-btn__icon { display: none; }
.gs-search-btn:not(.is-loading) .gs-search-btn__loader { display: none; }

/* Spinner */
.gs-spinner {
  width:    36px;
  height:   36px;
  animation: gs-spin 0.8s linear infinite;
}
.gs-spinner circle {
  stroke:           rgba(255,255,255,0.9);
  stroke-dasharray: 80, 120;
  stroke-linecap:   round;
  animation:        gs-dash 1.5s ease-in-out infinite;
}
@keyframes gs-spin  { to { transform: rotate(360deg); } }
@keyframes gs-dash  {
  0%   { stroke-dasharray: 1, 150;  stroke-dashoffset: 0; }
  50%  { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

/* Playful scan animation */
.gs-search-btn.is-loading {
  animation: gs-scan-pulse 1.1s ease-in-out infinite alternate;
}
@keyframes gs-scan-pulse {
  from { box-shadow: 0 10px 32px rgba(91,127,255,0.4), 0 0 0 0   rgba(91,127,255,0.3); }
  to   { box-shadow: 0 16px 40px rgba(91,127,255,0.55), 0 0 0 18px rgba(91,127,255,0); }
}

/* ── RESULT SECTION ───────────────────────────────────────────── */
.gs-result-placeholder {
  flex:        1 1 auto;
  min-height:  0;
  display:     flex;
  align-items: center;
  justify-content: center;
}

.gs-result-skeleton {
  position:       relative;
  width:          100%;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            8px;
  flex:           0 1 auto;
  overflow:       hidden;
}
.gs-result-skeleton::after {
  content:        '';
  position:       absolute;
  inset:          0;
  background:     linear-gradient(100deg, transparent 18%, rgba(255,255,255,0.72) 50%, transparent 82%);
  animation:      gs-skeleton-shimmer 1.2s ease-in-out infinite;
  pointer-events: none;
}
.gs-result-skeleton__img,
.gs-result-skeleton__line {
  display:      block;
  background:   rgba(185, 196, 228, 0.72);
  border-radius: 12px;
}
.gs-result-skeleton__img {
  width:        100%;
  max-width:    124px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}
.gs-result-skeleton__line {
  width:        90%;
  height:       12px;
}
.gs-result-skeleton__line--title {
  width:        98%;
  height:       13px;
}
.gs-result-skeleton__line--price {
  width:        52%;
  height:       12px;
}

.gs-section-body--result {
  width: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: stretch;
  justify-content: stretch;
  gap: 8px;
  min-height: 0;
}


.gs-result-carousel {
  position:      relative;
  width:         100%;
  flex:          1 1 auto;
  min-height:    0;
  display:       flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items:   center;
  gap:           12px;
  animation:     gs-result-in 0.5s cubic-bezier(0.22,0.68,0,1.2);
  overflow:      hidden;
  border-radius: 14px;
  padding:       0 2px 2px;
  isolation:     isolate;
}
.gs-result-carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: transparent;
  pointer-events: none;
  z-index: -2;
}
.gs-result-carousel::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 80%;
  height: 44px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(180,184,205,0.36) 0%, rgba(180,184,205,0) 72%);
  pointer-events: none;
  z-index: -1;
}
@keyframes gs-result-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

.gs-result-carousel__track {
  position: relative;
  width: 100%;
  min-height: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  overflow: visible;
  z-index: 2;
  transform: scale(0.72);
  transform-origin: center center;
  touch-action: pan-y;
  cursor: grab;
}
.gs-result-card {
  position: absolute;
  width: 63%;
  max-width: 166px;
  min-height: 150px;
  border-radius: 18px;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  color: var(--gs-text);
  cursor: pointer;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
  will-change: transform, opacity, filter;
}
.gs-result-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  pointer-events: none;
  z-index: -1;
  transition: background 0.7s ease;
}
.gs-result-card.is-center {
  transform: translateX(0) scale(1) rotateY(0deg);
  z-index: 10;
  opacity: 1;
  filter: blur(0px);
}
.gs-result-card.is-left {
  transform: translateX(-66%) scale(0.72) rotateY(22deg);
  z-index: 5;
  opacity: 0.86;
  filter: blur(1.8px);
}
.gs-result-card.is-right {
  transform: translateX(66%) scale(0.72) rotateY(-22deg);
  z-index: 5;
  opacity: 0.86;
  filter: blur(1.8px);
}
.gs-result-card.is-hidden {
  transform: translateX(0) scale(0.72);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}
.gs-result-card.accent-0::before { background: linear-gradient(135deg, rgba(99,102,241,0.27), transparent 40%, rgba(99,102,241,0.13)); }
.gs-result-card.accent-1::before { background: linear-gradient(135deg, rgba(167,139,250,0.27), transparent 40%, rgba(167,139,250,0.13)); }
.gs-result-card.accent-2::before { background: linear-gradient(135deg, rgba(236,72,153,0.27), transparent 40%, rgba(236,72,153,0.13)); }

.gs-result-card__inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.85) 0%, rgba(240,240,248,0.75) 50%, rgba(255,255,255,0.8) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px rgba(100,100,140,0.12), 0 2px 8px rgba(100,100,140,0.06), inset 0 1px 0 rgba(255,255,255,0.9), inset 0 -1px 0 rgba(200,200,220,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px 10px;
  position: relative;
  transition:
    box-shadow 0.55s ease,
    border-color 0.55s ease,
    background 0.55s ease;
}
.gs-result-card__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: gs-result-shimmer 6s ease-in-out infinite;
  pointer-events: none;
  border-radius: 18px;
}
.gs-result-card__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 86px;
  aspect-ratio: 1 / 1;
  margin-bottom: 8px;
  position: relative;
}
.gs-result-card__img-wrap img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
  transition: transform .35s ease;
}
.gs-result-card.is-center .gs-result-card__img-wrap img {
  animation: gs-result-float 4.2s ease-in-out infinite;
}
.gs-result-card__text {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.gs-result-card__title {
  display: -webkit-box;
  width: 100%;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 700;
  color: #1a1a2e;
}
.gs-result-card__price {
  width: 100%;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
}
.gs-result-card__price del {
  color: #8f95a8;
  font-size: 12px;
}
.gs-result-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.gs-result-dot {
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  outline: none;
  padding: 0;
  width: 8px;
  height: 8px;
  background: rgba(180,180,200,0.5);
  border: 1px solid rgba(200,200,220,0.6);
}
.gs-result-dot.is-active {
  width: 10px;
  height: 10px;
  background: rgba(60,60,80,0.7);
  border: none;
  transform: scale(1.05);
}

@keyframes gs-result-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes gs-result-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.gs-result-no-results {
  flex:        1 1 auto;
  min-height:  0;
  display:     flex;
  align-items: center;
  justify-content: center;
  font-size:   12px;
  color:       var(--gs-text-soft);
  text-align:  center;
  line-height: 1.5;
}

/* ── ACTION BUTTONS ───────────────────────────────────────────── */
.gs-result-actions {
  display:       grid;
  grid-template-columns: 1fr 1fr;
  gap:           6px;
  width:         100%;
  margin-top:    auto;
  flex-shrink:   0;
  transition:    opacity 0.3s;
}
.gs-result-actions.gs-picker-section--locked {
  opacity:        var(--gs-locked-op);
  pointer-events: none;
}

.gs-action-btn {
  width:         100%;
  padding:       8px 8px;
  border-radius: 12px;
  font-size:     11px;
  font-weight:   700;
  font-family:   'TBC Contractica CAPS', 'TBC Contractica', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  cursor:        pointer;
  transition:    all 0.2s;
  border:        1.5px solid rgba(255,255,255,0.6);
  text-align:    center;
  background:    rgba(255,255,255,0.6);
  color:         var(--gs-text);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:    0 2px 10px rgba(0,0,0,0.06);
  white-space: nowrap;
}
.gs-action-btn:hover {
  transform:  translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
.gs-action-btn:active { transform: scale(0.96); }

.gs-action-btn--quicklook {
  background: rgba(255,255,255,0.75);
  color:      var(--gs-text);
}
.gs-action-btn--cart {
  background:   rgba(91,127,255,0.12);
  border-color: rgba(91,127,255,0.4);
  color:        var(--gs-blue-dark);
}
.gs-action-btn--cart:hover {
  background: rgba(91,127,255,0.22);
}
.gs-action-btn--buy {
  grid-column: 1 / -1;
  background:   #3713ec;
  border-color: transparent;
  color:        #fff;
  box-shadow:   0 4px 16px rgba(55, 19, 236, 0.28);
}
.gs-action-btn--buy:hover {
  background: #2910c0;
  box-shadow: 0 8px 24px rgba(55, 19, 236, 0.35);
  transform:  translateY(-2px);
}

/* Loading state for cart button */
.gs-action-btn.is-loading {
  opacity:    0.65;
  pointer-events: none;
}

/* ── QUICK LOOK MODAL ─────────────────────────────────────────── */
.gs-quicklook-modal {
  position:   fixed;
  inset:      0;
  z-index:    99999;
  display:    flex;
  align-items: center;
  justify-content: center;
  padding:    20px;
}
.gs-quicklook-modal .gs-lang-ka { display: none; }
html[lang^="ka"] .gs-quicklook-modal .gs-lang-en { display: none; }
html[lang^="ka"] .gs-quicklook-modal .gs-lang-ka { display: inline; }
.gs-quicklook-backdrop {
  position:   absolute;
  inset:      0;
  background: rgba(10,10,30,0.45);
  backdrop-filter:  blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor:     pointer;
}
.gs-quicklook-panel {
  position:      relative;
  z-index:       1;
  background:    rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-radius: 24px;
  border:        1px solid rgba(255,255,255,0.8);
  box-shadow:    0 32px 80px rgba(20,30,80,0.2);
  max-width:     760px;
  width:         100%;
  display:       grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  grid-template-areas:
    "title title"
    "image specs"
    "price cta";
  gap:           14px;
  padding:       22px;
  box-sizing:    border-box;
  animation:     gs-modal-in 0.35s cubic-bezier(0.22,0.68,0,1.15);
}
@keyframes gs-modal-in {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.gs-quicklook-close {
  position:   absolute;
  top:        14px;
  right:      14px;
  width:      32px;
  height:     32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  border:     none;
  cursor:     pointer;
  display:    flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gs-quicklook-close:hover { background: rgba(0,0,0,0.14); }

.gs-quicklook-img-wrap {
  grid-area:  image;
  height:     190px;
  background: #f4f6fb;
  border-radius: 16px;
  overflow:   hidden;
  display:    flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
  max-width: 220px;
}
.gs-quicklook-img-wrap img {
  width:      100%;
  height:     100%;
  object-fit: contain;
}
.gs-ql-title {
  grid-area:    title;
  font-size:   17px;
  font-weight: 700;
  color:       var(--gs-text);
  margin:      0;
  line-height: 1.3;
}
.gs-ql-desc {
  grid-area:   specs;
  font-size:   13px;
  color:       var(--gs-text-soft);
  margin:      0;
  line-height: 1.5;
  align-self: start;
  justify-self: center;
  width: 100%;
}
.gs-ql-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
  width: 100%;
}
.gs-ql-spec {
  border: 1px solid rgba(91, 127, 255, 0.16);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  padding: 5px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-height: 0;
  justify-content: center;
  text-align: center;
}
.gs-ql-spec small {
  font-size: 8px;
  color: rgba(29, 29, 46, 0.55);
  line-height: 1.1;
}
.gs-ql-spec strong {
  font-size: 9px;
  color: #1d1d2e;
  line-height: 1.2;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gs-ql-price {
  grid-area:    price;
  align-self:   center;
  justify-self: center;
  font-size:   20px;
  font-weight: 800;
  color:       var(--gs-blue-dark);
  margin:      0;
  text-align:  center;
}
.gs-ql-price del {
  font-size: 12px;
  color: #8f95a8;
  margin-right: 6px;
}
.gs-ql-price ins {
  text-decoration: none;
  color: #e53935;
}
.gs-ql-price ins .woocommerce-Price-amount,
.gs-ql-price ins .woocommerce-Price-currencySymbol {
  color: #e53935;
}
.gs-ql-link {
  grid-area:    cta;
  align-self:   center;
  justify-self: center;
  display:      inline-flex;
  align-items:  center;
  justify-content: center;
  width:        100%;
  max-width:    260px;
  margin-top:   0;
  padding:      10px 20px;
  background:   #3a6ff8;
  color:        #fff;
  border-radius: 12px;
  font-size:    13px;
  font-weight:  700;
  text-decoration: none;
  text-align:   center;
  transition:   transform 0.2s, box-shadow 0.2s;
  box-shadow:   0 4px 14px rgba(91,127,255,0.3);
}
.gs-ql-link:hover {
  background:  #2f5ee8;
  transform:  translateY(-2px);
  box-shadow: 0 8px 22px rgba(91,127,255,0.4);
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE — vertical stepper
═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px), (max-width: 1024px) and (orientation: portrait) {
  .gs-picker-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    column-gap: 0;
    align-items: center;
  }
  .gs-picker-breadcrumb {
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1px;
    width: auto;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 9.5px;
    margin-bottom: 8px;
    overflow: hidden;
  }
  .gs-bc-item {
    flex: 0 1 auto;
    max-width: 22vw;
    min-width: 0;
    padding: 2px 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }
  .gs-bc-sep {
    flex: 0 0 auto;
    font-size: 9px;
  }
  .gs-picker-header {
    grid-column: 1 / -1;
    min-width: 0;
    white-space: nowrap;
    text-align: center;
    font-size: clamp(12px, 4.2vw, 17px);
    line-height: 1.05;
    margin: 5px 0 10px;
    letter-spacing: -0.2px;
  }
  .gs-picker-reset {
    display: none;
  }

  .gs-picker-container {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items:    stretch;
    padding:        8px;
    gap:            6px;
    border-radius:  16px;
    height:         auto;
    min-height:     0;
    max-height:     none;
  }

  .gs-picker-container-skeleton {
    position: static;
    inset: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(150px, auto);
    padding: 0;
  }

  .gs-skel-panel {
    min-height: 150px;
  }

  .gs-picker-section--result {
    flex: 0 0 auto;
    min-width: 0;
  }
  .gs-picker-section--result.gs-mobile-open {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
  }

  .gs-picker-section {
    padding: 14px 12px;
    flex: 0 0 auto;
    width: 100%;
    min-width: 0;
  }
  .gs-picker-section .gs-section-header {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .gs-section-head-left {
    flex: 1 1 auto;
    min-width: 0;
  }
  .gs-section-head-meta {
    display: none;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
  }
  .gs-mobile-summary {
    display: none;
    max-width: 130px;
    padding: 2px 8px;
    min-height: 20px;
    border-radius: 999px;
    border: 1px solid rgba(91,127,255,0.28);
    background: rgba(91,127,255,0.1);
    color: var(--gs-blue-dark);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .gs-mobile-summary.has-value {
    display: inline-flex;
    align-items: center;
  }
  .gs-lock-btn--header {
    display: none;
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
  }
  .gs-lock-icon {
    width: 14px;
    height: 14px;
  }
  .gs-picker-section:not(.gs-picker-section--locked):not(.gs-mobile-open) .gs-section-head-meta {
    display: flex;
  }
  .gs-picker-section:not(.gs-picker-section--locked):not(.gs-mobile-open) .gs-lock-btn--header {
    display: inline-flex;
  }
  .gs-picker-section.gs-mobile-open .gs-section-header {
    margin-bottom: 0;
  }
  .gs-picker-section .gs-section-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.24s ease, transform 0.24s ease;
  }
  .gs-picker-section.gs-mobile-open .gs-section-body {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .gs-picker-section .gs-section-cover {
    display: none;
  }

  .gs-picker-section::before { content: none; }

  .gs-drum-wrap {
    --gs-drum-h: 150px;
  }
  .gs-drum-item.is-selected {
    transform: scale(0.95);
  }

  .gs-result-carousel__track {
    min-height: 136px;
    height: 136px;
    transform: scale(0.9);
  }
  .gs-result-card {
    width: 66%;
    max-width: 130px;
    min-height: 118px;
  }
  .gs-result-card.is-left {
    transform: translateX(-60%) scale(0.68) rotateY(20deg);
  }
  .gs-result-card.is-right {
    transform: translateX(60%) scale(0.68) rotateY(-20deg);
  }
  .gs-result-card__inner {
    padding: 9px 8px 8px;
  }
  .gs-result-card__img-wrap {
    max-width: 66px;
  }
  .gs-result-card__title { font-size: 9px; }
  .gs-result-card__price { font-size: 14px; }
  .gs-result-card__price del { font-size: 10px; }

  .gs-picker-section--locked .gs-section-header {
    position: relative;
    inset: auto;
    margin-bottom: 0;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 8px;
    transform: none;
  }
  .gs-picker-section--locked .gs-section-num {
    display: block;
    margin-top: 3px;
  }
  .gs-picker-section--locked .gs-section-header h3 {
    font-size: 14px;
    max-width: none;
    display: block;
  }

  .gs-search-btn {
    width:  100px;
    height: 100px;
  }

  .gs-quicklook-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas:
      "title"
      "image"
      "specs"
      "price"
      "cta";
    padding:        20px;
    gap:            16px;
  }
  .gs-quicklook-img-wrap {
    flex:   none;
    width:  100%;
    height: 220px;
  }
  .gs-ql-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
}

/* ══ TABLET (landscape) ──────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .gs-picker-section--result {
    flex: 0 0 160px;
  }
  .gs-picker-container {
    flex-wrap: wrap;
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .gs-picker-section {
    flex: 1 1 calc(50% - var(--gs-gap));
  }
  .gs-picker-section--result {
    flex: 1 1 100%;
  }
}

/* ── REDUCED MOTION ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .gs-picker-section,
  .gs-drum-item,
  .gs-sw-tile,
  .gs-search-btn,
  .gs-result-carousel,
  .gs-quicklook-panel { animation: none !important; transition: none !important; }
  .gs-spinner { animation: none !important; }
}
