<style>
/* =====================================================
   OSNOVNO
===================================================== */

.sk-wrap {
  color: #111;
  font-family: inherit;
  margin-top: -40px;
}

@media (max-width: 900px) {
  .sk-wrap {
    margin-top: -40px;
  }
}

.sk-toolbar {
  margin: 0 0 10px;
}

.sk-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.sk-subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: #666;
}

/* =====================================================
   LAYOUT
===================================================== */

.sk-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.sk-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  padding: 14px;
  background: #fff;
}

.sk-results {
  min-width: 0;
}

/* =====================================================
   FILTERI
===================================================== */

.sk-row {
  margin-bottom: 12px;
}

.sk-label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.sk-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sk-controls--stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* =====================================================
   CHIPOVI
===================================================== */

.sk-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  background: #fafafa;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.2;
}

.sk-chip input {
  margin: 0;
  accent-color: #111;
}

/* =====================================================
   ACCORDION
===================================================== */

.sk-accordion {
  min-width: 0;
  width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  margin-bottom: 0;
  overflow: hidden;
  background: #fff;
  grid-column: span 1;
  transition: grid-column 0.22s ease, box-shadow 0.22s ease;
}

.sk-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  height: 46px;
  padding: 0 38px 0 12px;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.sk-accordion summary::-webkit-details-marker {
  display: none;
}

.sk-accordion summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 18px;
  line-height: 1;
  color: #666;
}

.sk-accordion[open] summary::after {
  content: '−';
}

.sk-accordion-body {
  padding: 12px;
  border-top: 1px solid #efefef;
}

/* =====================================================
   RADIO OPCIJE
===================================================== */

.sk-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.3;
}

.sk-radio input {
  margin: 0;
}

/* =====================================================
   RESET DUGME
===================================================== */

.sk-bottom-actions {
  margin-top: 0;
  min-width: 0;
  width: 100%;
  grid-column: span 1;
}

.sk-actions {
  display: flex;
  height: 100%;
  width: 100%;
}

.sk-reset {
  width: 100%;
  min-height: 46px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.sk-reset:hover {
  opacity: 0.94;
}

/* =====================================================
   META INFO
===================================================== */

.sk-meta {
  margin: 2px 0 10px;
  font-size: 13px;
  color: #666;
}

#skMeta::after {
  content: " • Klikni na sliku i pogledaj slične primere";
  color: #999;
  font-weight: 400;
}

/* =====================================================
   FEATURED KUHINJA
===================================================== */

.sk-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  background: #fff;
}

.sk-featured-media {
  position: relative;
}

.sk-featured-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
  border-radius: 12px;
  background: #f3f3f3;
}

.sk-mobile-back--inside {
  display: none;
}

.sk-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sk-featured-title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
}

.sk-featured-meta {
  display: none;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.sk-featured-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 4px;
}

.sk-featured-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.sk-featured-btn-primary {
  background: #111;
  color: #fff;
}

.sk-featured-btn-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

/* =====================================================
   GRID
===================================================== */

.sk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sk-card-link {
  display: block;
  width: 100%;
  margin: 0;
  color: inherit;
  text-decoration: none;
}

.sk-card {
  display: block;
  overflow: hidden;
  border: 1px solid #ededed;
  border-radius: 16px;
  background: #fff;
  height: 100%;
  position: relative;
}

.sk-img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f6f6f6;
  transition: transform 0.25s ease;
}

.sk-masonry-col .sk-img {
  aspect-ratio: unset !important;
}

.sk-card-link:hover .sk-img {
  transform: scale(1.02);
}

.sk-body {
  display: none;
}

.sk-card-title {
  display: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: #1d1d1c;
}

.sk-card::after {
  content: "Pogledaj slične";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.sk-card-link:hover .sk-card::after {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   EMPTY
===================================================== */

.sk-empty {
  padding: 16px;
  border: 1px dashed #ddd;
  border-radius: 14px;
  background: #fff;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (min-width: 901px) {
  .sk-accordion.is-open {
    grid-column: span 2;
  }
}

@media (max-width: 1100px) {
  .sk-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .sk-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
  }

  .sk-row {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .sk-accordion {
    min-width: 0;
    margin-bottom: 0;
    grid-column: span 1;
    transition: all 0.2s ease;
  }

  .sk-accordion.is-open {
    grid-column: span 2;
  }

  .sk-bottom-actions {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    margin-top: 0;
  }

  .sk-actions {
    width: 100%;
  }

  .sk-reset {
    width: 100%;
    font-size: 16px;
    margin-top: 0;
  }

  .sk-featured {
    grid-template-columns: 1fr;
  }

  .sk-featured-title {
    font-size: 18px !important;
  }

  .sk-wrap.is-detail-mode .sk-toolbar {
    display: none !important;
  }

  .sk-wrap.is-detail-mode .sk-panel {
    display: none !important;
  }

  .sk-wrap.is-detail-mode .sk-meta {
    display: block !important;
    margin: 0 0 10px;
  }

  .sk-wrap.is-detail-mode .sk-meta {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1c;
  }

  .sk-wrap.is-detail-mode .sk-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .sk-wrap.is-detail-mode .sk-bottom-actions {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
  }

  .sk-wrap.is-detail-mode .sk-actions {
    width: 100%;
  }

  .sk-wrap.is-detail-mode .sk-reset {
    width: 100%;
    margin-top: 0;
  }

  .sk-wrap.is-detail-mode .sk-featured {
    display: block;
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .sk-wrap.is-detail-mode .sk-featured-media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 78vh;
    aspect-ratio: auto;
    object-fit: contain;
    border-radius: 18px;
    background: #f3f3f3;
  }

  .sk-wrap.is-detail-mode .sk-featured-body {
    padding-top: 12px;
  }

  .sk-wrap.is-detail-mode .sk-featured-title {
    /*font-size: 20px !important;
    margin-bottom: 6px;*/
    display: none;
  }

  .sk-wrap.is-detail-mode .sk-featured-meta {
    font-size: 13px;
    line-height: 1.45;
  }

  /*.sk-wrap.is-detail-mode .sk-featured-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }*/ 
  .sk-wrap.is-detail-mode .sk-featured-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .sk-wrap.is-detail-mode .sk-featured-btn {
    width: 100%;
    min-width: 0;
    min-height: 32px;
    padding: 4px 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    border-radius: 8px;
  }
  .sk-wrap.is-detail-mode .sk-mobile-back--inside {
    display: inline-flex;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(17,17,17,0.72);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
}

@media (max-width: 650px) {
  .sk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .sk-featured-title {
    font-size: 12px;
  }
}






.sk-mobile-all--inside {
  display: none;
}

@media (max-width: 900px) {
  .sk-wrap.is-detail-mode .sk-mobile-all--inside {
    display: inline-flex;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    min-height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(17,17,17,0.72);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    white-space: nowrap;
  }
}
.sk-wrap.is-detail-mode .sk-featured-body {
  padding-top: 5px;
}

/* =====================================================
   DETAIL MODE: normalan redosled po relevantnosti
===================================================== */

/* =====================================================
   DETAIL MODE – sakrij ceo filter deo
===================================================== */

/* toolbar gore */
.sk-wrap.is-detail-mode .sk-toolbar {
  display: none !important;
}

/* ceo levi/filter blok */
.sk-wrap.is-detail-mode .sk-panel-wrap,
.sk-wrap.is-detail-mode .sk-panel {
  display: none !important;
}

/* layout ostaje, ali bez leve kolone */
.sk-wrap.is-detail-mode .sk-layout {
  display: block !important;
}

.sk-wrap.is-detail-mode .sk-results {
  width: 100% !important;
  max-width: none !important;
}
/* =====================================================
   MASONRY GRID (flex kolone — kao inspiracije)
===================================================== */

.sk-grid {
  display: flex !important;
  flex-wrap: nowrap !important;
  grid-template-columns: unset !important;
  gap: 14px;
  align-items: start;
}

.sk-masonry-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sk-masonry-col .sk-img {
  aspect-ratio: unset !important;
  height: auto !important;
  max-height: none !important;
  width: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.sk-img-wrap {
  display: block;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 650px) {
  .sk-grid {
    gap: 12px !important;
  }
  .sk-masonry-col {
    gap: 12px;
  }
}

/* =====================================================
   SK-FEATURED-H1 — dinamički naslov (kao inspiracije)
===================================================== */

.sk-featured-h1 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .sk-featured-h1 {
    margin: 6px 0 0;
    font-size: 15px;
  }
}

.sk-featured-h1-price {
  margin-left: 6px;
  font-size: 0.75em;
  font-weight: 400;
  color: #999;
}

@media (max-width: 900px) {
  .sk-featured-h1-price {
    font-size: 0.85em;
  }
}

@media (min-width: 901px) {
  .sk-featured-h1-price {
    display: none;
  }

  .ms-product-popup-title {
    display: none;
  }

  .ms-product-popup-meta {
    font-size: 20px;
    font-weight: 700;
    color: #111;
  }
}

/* =====================================================
   PRODUCT SPOT — kao inspiracije
===================================================== */

.sk-featured-btn--product-inquiry {
  text-transform: capitalize;
}


  .ms-product-point {
    position: absolute;
    width: 22px;
    height: 22px;
    border: 0;
    border-radius: 50%;
    background: #E19618;
    box-shadow: 0 0 0 4px rgba(225, 150, 24, 0.22);
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 20;
  }

  .ms-product-point::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #fff;
  }

  .ms-product-point--numbered {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ms-product-point--numbered::after {
    display: none;
  }

  .ms-product-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: none;
    padding: 0 0 env(safe-area-inset-bottom, 0);
  }

  .ms-product-popup.is-open {
    display: block;
  }

  .ms-product-popup-inner {
    background: #fff;
    border-radius: 20px 20px 0 0;
    padding: 20px 20px 28px;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.14);
    min-height: 50vh;
    display: flex;
    flex-direction: column;
  }

  .ms-product-popup-handle {
    width: 36px;
    height: 4px;
    background: #ddd;
    border-radius: 999px;
    margin: 0 auto 16px;
  }

  .ms-product-popup-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    background: #f3f3f3;
    flex-shrink: 0;
  }

  .ms-product-popup-body {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .ms-product-popup-info {
    flex: 1;
    min-width: 0;
  }

  .ms-product-popup-title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
    line-height: 1.3;
  }

  .ms-product-popup-meta {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
  }

  .ms-product-popup-dims {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .ms-product-popup-dims-label {
    font-weight: 700;
    color: #111;
  }

  .ms-product-popup-swatches {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
    margin-bottom: 14px;
  }

  .ms-popup-swatch-row {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }

  .ms-popup-swatch {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .ms-product-popup-options {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }

  .ms-popup-option-thumb-link {
    display: block;
    flex-shrink: 0;
  }

  .ms-popup-option-thumb {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    background: #f3f3f3;
  }

  .ms-product-popup-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
  }

  .ms-product-popup-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 7px 10px;
    border-radius: 10px;
    background: #111;
    color: #fff !important;
    text-decoration: none;
    font-family: inherit;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    min-height: 36px;
    line-height: 1.2;
  }

  .ms-product-popup-btn--scenes {
    background: #fff;
    color: #111 !important;
    border: 1.5px solid #111;
  }

  .ms-product-popup-btn:hover {
    background: #333 ;
  }

  .ms-product-popup-btn--scenes:hover {
    background: #000;
    color: #fff !important;
  }

  .sk-featured-btn--scenes-link:hover {
    background: #000 !important;
    color: #fff !important;
  }

  .ms-product-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 998;
    display: none;
  }

  .ms-product-popup-overlay.is-open {
    display: block;
  }

  @media (min-width: 901px) {
    .ms-product-popup {
      position: absolute;
      bottom: auto;
      left: auto;
      right: auto;
      top: 0;
      width: 240px;
      padding: 0;
    }

    .ms-product-popup-inner {
      border-radius: 14px;
      padding: 14px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.14);
      min-height: 0;
    }

    .ms-product-popup-handle {
      display: none;
    }

    .ms-product-popup-actions {
      margin-top: 10px;
    }

    #skProductInlinePanel {
      margin-top: 14px;
    }

    #skProductInlinePanel .ms-product-popup-inner {
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.10);
      border: 1px solid #e5e5e5;
      padding: 16px;
      min-height: 0;
    }

    #skProductInlinePanel .ms-product-popup-handle {
      display: none;
    }

    .ms-popup-option-thumb {
      width: 80px;
      height: 80px;
    }
  }

  .ms-product-popup-btn:hover {
    color: #fff;
  }
  /* =====================================================
     PRODUCT HOTSPOT — linija + label
  ===================================================== */

  .ms-product-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 19;
  }

  .ms-product-label {
    position: absolute;
    transform: translate(-50%, -100%);
    margin-top: -6px;
    background: rgba(17, 17, 17, 0.82);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    padding: 6px 12px;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    z-index: 22;
    letter-spacing: 0.01em;
  }

  .ms-product-label:hover {
    background: rgba(17, 17, 17, 0.95);
  }

  .ms-product-popup-mood {
    font-size: 11px;
    color: #aaa;
    margin-top: 3px;
    font-style: italic;
  }

  .ms-product-popup-tags {
    font-size: 11px;
    color: #999;
    margin: 0 0 12px;
    line-height: 1.5;
  }

  @media (min-width: 901px) {
    .ms-product-label,
    .ms-product-line {
      display: none;
    }
  }
/* =====================================================
   SK-FEATURED-H1 — dinamički naslov iznad dugmića
===================================================== */

/* =====================================================
   FEATURED DUGMAD — kao inspiracije
===================================================== */

.sk-featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.sk-featured-btn {
  font-family: "Montserrat", sans-serif;
  border: none;
  cursor: pointer;
}

.sk-featured-btn-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.sk-featured-btn-secondary:hover {
  background: #111;
  color: #fff;
}

.sk-featured .sk-featured-btn-primary,
.sk-featured a.sk-featured-btn-primary {
  background: #E19618;
  border-color: #E19618;
  color: #fff;
}

.sk-featured .sk-featured-btn-primary:hover,
.sk-featured a.sk-featured-btn-primary:hover {
  background: #c97f10;
  border-color: #c97f10;
  color: #fff;
}

.sk-featured-btn--product-inquiry {
  text-transform: capitalize;
}

/* =====================================================
   DETAIL MODE DUGMAD — mobilni prikaz
===================================================== */

@media (max-width: 900px) {
  .sk-wrap.is-detail-mode .sk-featured-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
    margin-top: 8px;
  }

  .sk-wrap.is-detail-mode .sk-featured-btn {
    box-sizing: border-box;
    width: 100%;
    padding: 6px 4px;
    font-size: 14px;
    text-align: center;
    min-width: 0;
    line-height: 1.3;
    margin: 0;
  }
}


/* =====================================================
   PINTEREST LAYOUT — desktop, detail mode
   Image sticky left / body + grid right
===================================================== */
@media (min-width: 901px) {
  .sk-wrap.is-detail-mode .sk-results {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 16px;
    align-items: start;
  }

  /* Uklanja kutiju — djeca postaju direktni grid-itemi */
  .sk-wrap.is-detail-mode .sk-featured {
    display: contents !important;
  }

  /* Leva kolona: slika prostire se kroz sve redove */
  .sk-wrap.is-detail-mode .sk-featured-media {
    grid-column: 1;
    grid-row: 1 / -1;
  }

  /* Slika ostaje vidljiva dok skrolujes feed */
  .sk-wrap.is-detail-mode .sk-featured-media img {
    position: sticky;
    top: 16px;
    display: block;
    width: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    max-height: 80vh;
    border-radius: 16px;
    background: #f3f3f3;
  }

  /* Desna kolona: body (red 1) */
  .sk-wrap.is-detail-mode .sk-featured-body {
    grid-column: 2;
    grid-row: 1;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    padding: 14px;
  }

  /* Desna kolona: meta (red 2) */
  .sk-wrap.is-detail-mode .sk-meta {
    grid-column: 2;
    grid-row: 2;
  }

  /* Desna kolona: feed kartica (red 3) */
  .sk-wrap.is-detail-mode .sk-grid {
    grid-column: 2;
    grid-row: 3;
  }

  .sk-wrap.is-detail-mode .sk-empty {
    grid-column: 2;
    grid-row: 3;
  }

  /* Overflow kartice — puna sirina ispod slike */
  .sk-wrap.is-detail-mode #skGridFull {
    grid-column: 1 / -1;
    grid-row: 4;
    margin-top: 0;
  }
}

/* =====================================================
   SAVE DUGME — overlay na slici
===================================================== */

.sk-featured-save-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  padding: 6px 12px;
  border: none;
  border-radius: 999px;
  background: rgba(17,17,17,0.72);
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.sk-featured-save-btn:hover:not(.is-saved) {
  background: rgba(17,17,17,0.92);
}

.sk-featured-save-btn.is-saved {
  background: rgba(100,100,100,0.65);
  cursor: default;
}

@media (max-width: 900px) {
  .sk-featured-save-btn {
    top: auto;
    bottom: 10px;
    right: 10px;
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* =====================================================
   SAVE TOAST
===================================================== */

.sk-save-toast {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.sk-save-toast--in {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =====================================================
   SAVED PAGE — ukloni dugme na kartici
===================================================== */

.sk-saved-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(17,17,17,0.72);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  line-height: 1;
}

/* =====================================================
   SAVED PAGE — mini slike u featured panelu (desktop)
===================================================== */

.sk-saved-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.sk-saved-mini img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  transition: opacity 0.15s ease;
}

.sk-saved-mini img:hover {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .sk-saved-mini {
    display: none;
  }
}

.sk-saved-remove-btn:hover {
  background: #e53935;
}

.sk-featured-btn--saved-remove {
  background: #fff;
  color: #e53935;
  border: 1.5px solid #e53935;
  cursor: pointer;
  font-family: inherit;
}

.sk-featured-btn--saved-remove:hover {
  background: #e53935;
  color: #fff;
}
</style>