:root {
  --sp-pink: #f5b6b0;
  --sp-pink-dark: #e8958d;
  --sp-bg: #fff;
  --sp-text: #333;
  --sp-shadow:       0 4px 20px rgba(245,182,176,0.35);
  --sp-shadow-hover: 0 8px 32px rgba(245,182,176,0.55);
  --sp-shadow-card:  0 2px 10px rgba(245,182,176,0.28);
  --sp-shadow-card-hover: 0 8px 28px rgba(245,182,176,0.48);
  --sp-radius: 6px;
}

body {
  background: linear-gradient(to bottom, #f5b6b0 0%, #f8bfba 14%, #fac9c5 30%, #fcddd9 50%, #feeeed 74%, #ffffff 100%) top/100% 560px no-repeat, #ffffff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

@keyframes spBgFlow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}

.sp-bubble {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.sp-bubble:nth-child(1) { width:300px; height:300px; top:-80px; left:-80px; background:rgba(225,140,130,0.22); animation:spFloat1 12s ease-in-out infinite; }
.sp-bubble:nth-child(2) { width:200px; height:200px; top:40%; right:-60px; background:rgba(225,140,130,0.18); animation:spFloat2 10s ease-in-out infinite reverse; }
.sp-bubble:nth-child(3) { width:150px; height:150px; bottom:10%; left:10%; background:rgba(225,140,130,0.15); animation:spFloat3 14s ease-in-out infinite; }
.sp-bubble:nth-child(4) { width:100px; height:100px; top:20%; left:30%; background:rgba(225,140,130,0.20); animation:spFloat1 16s ease-in-out infinite reverse; }
.sp-bubble:nth-child(5) { width:180px; height:180px; bottom:-50px; right:20%; background:rgba(225,140,130,0.17); animation:spFloat2 11s ease-in-out infinite; }

@keyframes spFloat1 {
  0%,100% { transform:translate(0,0) scale(1); }
  25%      { transform:translate(30px,-40px) scale(1.1); }
  50%      { transform:translate(-20px,20px) scale(0.95); }
  75%      { transform:translate(40px,10px) scale(1.05); }
}
@keyframes spFloat2 {
  0%,100% { transform:translate(0,0) scale(1); }
  33%      { transform:translate(-30px,-30px) scale(1.08); }
  66%      { transform:translate(20px,40px) scale(0.92); }
}
@keyframes spFloat3 {
  0%,100% { transform:translate(0,0) scale(1); }
  50%      { transform:translate(50px,-20px) scale(1.1); }
}

.sp-particle {
  position: fixed;
  width:4px; height:4px;
  background: rgba(232,149,141,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: spParticleFade 3s ease-in-out infinite;
}
.sp-particle:nth-child(6)  { top:15%; left:20%; animation-delay:0s; }
.sp-particle:nth-child(7)  { top:25%; left:70%; animation-delay:0.5s; }
.sp-particle:nth-child(8)  { top:60%; left:15%; animation-delay:1s; }
.sp-particle:nth-child(9)  { top:75%; left:80%; animation-delay:1.5s; }
.sp-particle:nth-child(10) { top:40%; left:50%; animation-delay:2s; }
.sp-particle:nth-child(11) { top:85%; left:40%; animation-delay:2.5s; }

@keyframes spParticleFade {
  0%,100% { opacity:0; transform:scale(0.5); }
  50%      { opacity:1; transform:scale(1.5); }
}

.sp-wave {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%; height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.3' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover;
  pointer-events: none;
  z-index: 0;
  animation: spWaveMove 6s ease-in-out infinite alternate;
}
@keyframes spWaveMove {
  0%   { transform:translateX(-20px); }
  100% { transform:translateX(20px); }
}

@media (max-width:480px) {
  .sp-bubble:nth-child(4), .sp-bubble:nth-child(5) { display:none; }
}

@keyframes spPageFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; }
}

.sp-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px 40px;
  box-sizing: border-box;
  font-family: sans-serif;
  animation: spPageFadeIn 0.7s ease forwards;
}

.sp-title {
  font-family: 'Italiana', serif;
  font-size: 40px;
  text-align: center;
  color: var(--sp-text);
  margin-bottom: 30px;
  animation: spFadeUp 0.6s ease 0.1s both;
}

.sp-title-img {
  display: block;
  width: 640px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.sp-search-sticky {
  position: sticky;
  top: 0;
  padding: 14px 20px;
  z-index: 999;
  display: flex;
  justify-content: center;
  animation: spFadeUp 0.6s ease 0.3s both;
}
.sp-search-sticky.is-scrolled {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.sp-search-box {
  position: relative;
  width: 100%;
  max-width: 580px;
  z-index: 10;
}

.sp-search-box input {
  width: 100%;
  padding: 20px 64px 20px 28px;
  font-size: 16px;
  color: #333;
  background: #ffffff;
  border: 2px solid rgba(245,182,176,0.3);
  border-radius: 50px;
  outline: none;
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.68,-0.55,0.265,1.55);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,255,255,0.5) inset;
  -webkit-appearance: none;
}
.sp-search-box input::placeholder {
  color: #aaa;
  transition: all 0.3s ease;
}
.sp-search-box input:focus {
  border-color: #f5b6b0;
  box-shadow: 0 10px 40px rgba(245,182,176,0.4), 0 0 0 4px rgba(245,182,176,0.15), 0 0 0 1px rgba(255,255,255,0.8) inset;
  transform: translateY(-3px) scale(1.01);
}
.sp-search-box input:focus::placeholder { opacity:0.3; transform:translateX(20px); }

.sp-search-box input.sp-typing {
  border-color: #f5b6b0;
  animation: spTypingPulse 1.2s ease-in-out infinite alternate;
}
@keyframes spTypingPulse {
  0%   { box-shadow: 0 10px 35px rgba(245,182,176,0.3), 0 0 0 3px rgba(245,182,176,0.1); }
  100% { box-shadow: 0 10px 45px rgba(245,182,176,0.5), 0 0 0 5px rgba(245,182,176,0.2); }
}

.sp-search-box input.sp-shake { animation: spShake 0.5s ease; }
@keyframes spShake {
  0%,100% { transform:translateX(0); }
  15%,45%,75% { transform:translateX(-6px); }
  30%,60%,90% { transform:translateX(6px); }
}

.sp-search-btn {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  background: linear-gradient(135deg,#f5b6b0 0%,#e8a5a0 50%,#f5b6b0 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(0.68,-0.55,0.265,1.55);
  box-shadow: 0 5px 20px rgba(245,182,176,0.6);
  z-index: 3;
  animation: spBtnGradient 3s ease infinite;
}
@keyframes spBtnGradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.sp-search-btn svg {
  width:20px; height:20px;
  fill:#fff;
  stroke:#888;
  transition: all 0.3s ease;
}
.sp-search-btn:hover {
  transform: translateY(-50%) scale(1.15) rotate(10deg);
  box-shadow: 0 8px 30px rgba(245,182,176,0.8), 0 0 20px rgba(245,182,176,0.4);
}
.sp-search-btn:active { transform:translateY(-50%) scale(0.9); }
.sp-search-btn::after {
  content:'';
  position:absolute; top:50%; left:50%;
  width:0; height:0;
  background:rgba(255,255,255,0.4);
  border-radius:50%;
  transform:translate(-50%,-50%);
  transition: width 0.4s ease, height 0.4s ease;
  pointer-events:none;
}
.sp-search-btn:active::after { width:60px; height:60px; }

.sp-search-icon-right {
  position: absolute;
  top: 50%; right: 60px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 15px;
  pointer-events: auto;
  cursor: pointer;
  display: none;
  transition: color 0.2s;
  padding: 10px 6px;
}
.sp-search-icon-right:hover { color: #e8958d; }
.sp-search-icon-right.visible { display: block; }

.sp-search-icon-left { display: none; }

.sp-filter-bar { display: none; }

.sp-slide-section {
  margin-bottom: 50px;
  transition: opacity 0.3s;
  opacity: 0;
  animation: spFadeUp 0.6s ease 0.55s forwards;
}
.sp-slide-section + .sp-slide-section {
  animation-delay: 0.75s;
}
.sp-slide-section.hidden { display: none; }
.sp-title.hidden { display: none; }

.sp-slider-outer {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.sp-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--sp-pink-dark);
  cursor: pointer;
  box-shadow: var(--sp-shadow);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, background 0.2s, color 0.2s;
  pointer-events: none;
}
.sp-slider-outer:hover .sp-arrow { opacity: 1; pointer-events: auto; }
.sp-arrow:hover { background: var(--sp-pink); color: #fff; }
.sp-arrow-left  { left: 8px; }
.sp-arrow-right { right: 8px; }

.sp-slide1-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  padding: 10px 4px;
}

.sp-slide1-item {
  flex: 0 0 186px;
  width: 186px;
  height: 486px;
  border-radius: var(--sp-radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: width 0.35s cubic-bezier(.4,0,.2,1), flex-basis 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
  box-shadow: var(--sp-shadow);
}
.sp-slide1-item:hover {
  flex-basis: 286px;
  width: 286px;
  box-shadow: var(--sp-shadow-hover);
  z-index: 2;
}
.sp-slide1-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
  pointer-events: none;
}

.sp-slide2-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  padding: 10px 4px;
}

.sp-slide2-item {
  flex: 0 0 140px;
  width: 140px;
  height: 220px;
  border-radius: var(--sp-radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: width 0.35s cubic-bezier(.4,0,.2,1), flex-basis 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.3s;
  box-shadow: var(--sp-shadow);
}
.sp-slide2-item:hover {
  flex-basis: 200px;
  width: 200px;
  box-shadow: var(--sp-shadow-hover);
  z-index: 2;
}
.sp-slide2-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.sp-share-btn {
  position: absolute;
  bottom: 8px; right: 8px;
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(180, 100, 90, 0.85);
  font-size: 13px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  z-index: 5;
  border: none;
}
.sp-share-btn:hover {
  background: rgba(245, 182, 176, 0.75);
  color: #fff;
}

.sp-gallery-section {
  margin-top: 20px;
  opacity: 0;
  animation: spFadeUp 0.6s ease 0.95s forwards;
}

@keyframes spFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sp-pinterest-grid {
  columns: 4;
  column-gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1200px) { .sp-pinterest-grid { columns: 3; } }
@media (max-width: 768px)  { .sp-pinterest-grid { columns: 2; } }
@media (max-width: 480px)  { .sp-pinterest-grid { columns: 1; } }

.sp-pin {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--sp-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sp-shadow-card);
  cursor: pointer;
  background: #f9f0ef;
  transition: box-shadow 0.3s, transform 0.3s;
  display: block;
  opacity: 0;
  animation: spFadeUp 0.55s ease forwards;
}
.sp-pin img,
.sp-slide1-item img,
.sp-slide2-item img {
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

.sp-pin img {
  width: 100%; display: block;
  border-radius: var(--sp-radius);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sp-pin img.sp-img-loaded {
  opacity: 1;
}
.sp-pin:hover {
  box-shadow: var(--sp-shadow-card-hover);
  transform: translateY(-2px);
}
.sp-pin:hover .sp-share-btn,
.sp-pin:active .sp-share-btn,
.sp-slide1-item:hover .sp-share-btn,
.sp-slide1-item:active .sp-share-btn,
.sp-slide2-item:hover .sp-share-btn,
.sp-slide2-item:active .sp-share-btn { opacity: 1; }

.sp-load-more-wrap {
  text-align: center;
  margin: 36px 0 20px;
}
.sp-load-more-btn {
  padding: 12px 38px;
  border: 2px solid var(--sp-pink);
  background: transparent;
  border-radius: 30px;
  font-size: 15px;
  color: var(--sp-pink-dark);
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  font-family: sans-serif;
}
.sp-load-more-btn:hover {
  background: var(--sp-pink);
  color: #fff;
}

.sp-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.sp-modal-overlay.open { display: flex; }

.sp-modal-inner {
  position: relative;
  max-width: 90vw;
  max-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-modal-inner img {
  max-width: 90vw;
  max-height: 65vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(245,182,176,0.45);
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}

.sp-modal-close {
  position: fixed;
  top: 18px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 28px;
  cursor: pointer; z-index: 10001;
}

.sp-modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: #fff; font-size: 22px;
  width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.sp-modal-nav:hover { background: rgba(255,255,255,0.3); }
.sp-modal-prev { left: -52px; }
.sp-modal-next { right: -52px; }

.sp-modal-similar {
  margin-top: 20px;
  width: 90vw;
  max-width: 800px;
}
.sp-modal-similar-label {
  color: #ccc; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 10px; text-align: center;
}
.sp-modal-carousel-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.sp-car-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: none; color: #fff; font-size: 15px;
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 5;
}
.sp-car-arrow:hover { background: rgba(245,182,176,0.7); }
.sp-car-prev { left: 2px; }
.sp-car-next { right: 2px; }
.sp-modal-carousel {
  display: flex;
  gap: 10px;
  transition: transform 0.4s ease;
}
.sp-modal-carousel img {
  width: 120px; height: 160px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.sp-modal-carousel img:hover,
.sp-modal-carousel img.active { opacity: 1; transform: scale(1.05); }

@media (max-width: 768px) {
  .sp-title { font-size: 28px; }
  .sp-title-img { width: 340px; }
  .sp-search-sticky { top: 60px; padding: 8px 12px; }
  .sp-search-box { max-width: 92vw; }
  .sp-search-box input { font-size: 15px; padding: 17px 58px 17px 22px; }
  .sp-search-btn { width:42px; height:42px; right:6px; }
  .sp-search-btn svg { width:18px; height:18px; }
  .sp-search-icon-right { right: 56px; }
  .sp-slide1-item { flex-basis: 120px; width: 120px; height: 340px; }
  .sp-slide1-item:hover { flex-basis: 180px; width: 180px; }
  .sp-slide2-item { flex-basis: 100px; width: 100px; height: 160px; }
  .sp-slide2-item:hover { flex-basis: 150px; width: 150px; }
}
@media (max-width: 480px) {
  .sp-search-sticky { top: 56px; padding: 6px 10px; }
  .sp-search-box { max-width: 96vw; }
  .sp-search-box input { font-size: 14px; padding: 16px 52px 16px 20px; }
  .sp-search-btn { width:38px; height:38px; right:5px; }
  .sp-search-btn svg { width:16px; height:16px; }
  .sp-search-icon-right { right: 50px; }
  .sp-slide1-item { flex-basis: 90px; width: 90px; height: 260px; }
  .sp-slide1-item:hover { flex-basis: 140px; width: 140px; }
}

@media (max-width: 600px) {
  .sp-modal-inner { max-width: 100vw; max-height: 55vh; }
  .sp-modal-inner img { max-width: 100vw; max-height: 55vh; }
  .sp-modal-prev { left: 6px; }
  .sp-modal-next { right: 6px; }
  .sp-modal-nav { width: 34px; height: 34px; font-size: 16px; background: rgba(0,0,0,0.35); }
  .sp-modal-carousel img { width: 80px; height: 108px; }
  .sp-modal-carousel-wrap { padding: 0 36px; }
  .sp-car-arrow { width: 28px; height: 28px; font-size: 12px; }
}

@keyframes spIconPulse {
  0%   { box-shadow: 0 6px 24px rgba(245,182,176,0.7), 0 0 0 0 rgba(245,182,176,0.55); }
  65%  { box-shadow: 0 6px 24px rgba(245,182,176,0.7), 0 0 0 16px rgba(245,182,176,0); }
  100% { box-shadow: 0 6px 24px rgba(245,182,176,0.7), 0 0 0 0 rgba(245,182,176,0); }
}

@media (max-width: 768px) {
  .sp-search-sticky { display: none; }
}

@media (max-width: 768px) {
  .sp-section {
    padding-bottom: 96px;
  }

  .sp-search-sticky {
    position: fixed !important;
    top: auto !important;
    bottom: 24px;
    left: 16px;
    right: 16px;
    padding: 0;
    justify-content: flex-end;
    transform: none !important;
    animation: spMobileFade 0.45s ease 0.3s both !important;
  }
  @keyframes spMobileFade {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .sp-search-box {
    width: 100%;
    max-width: 100%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .sp-search-box input {
    transition: opacity 0.3s ease, box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  }

  .sp-search-box input:focus {
    transform: none;
  }

  .sp-search-btn {
    z-index: 20;
  }

  .sp-search-sticky.sp-collapsed .sp-search-box {
    width: 64px;
    overflow: hidden;
  }

  .sp-search-sticky.sp-collapsed .sp-search-box input {
    opacity: 0;
    pointer-events: none;
  }

  .sp-search-sticky.sp-collapsed #spSearchClear {
    display: none !important;
  }

  .sp-search-icon-right.visible ~ .sp-search-btn {
    display: none !important;
  }
  .sp-search-icon-right.visible {
    right: 8px;
    font-size: 19px;
    color: #e8958d;
  }

  .sp-search-sticky.sp-collapsed .sp-search-btn {
    width: 58px;
    height: 58px;
    right: 3px;
    animation: spIconPulse 2s ease-out infinite, spBtnGradient 3s ease infinite;
  }

  .sp-search-sticky.sp-collapsed .sp-search-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .sp-search-sticky {
    bottom: 20px;
    left: 12px;
    right: 12px;
  }

  .sp-search-sticky.sp-collapsed .sp-search-box {
    width: 56px;
  }

  .sp-search-sticky.sp-collapsed .sp-search-btn {
    width: 50px;
    height: 50px;
  }

  .sp-search-sticky.sp-collapsed .sp-search-btn svg {
    width: 21px;
    height: 21px;
  }
}

@keyframes spActSpin {
  to { transform: rotate(360deg); }
}
.sp-act-spinner {
  width: 17px;
  height: 17px;
  animation: spActSpin 0.7s linear infinite;
  display: block;
}

.sp-pin-actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.33);
  border-radius: var(--sp-radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  z-index: 5;
}


@media (hover: hover) {
  .sp-pin:hover .sp-pin-actions,
  .sp-slide1-item:hover .sp-pin-actions,
  .sp-slide2-item:hover .sp-pin-actions {
    opacity: 1;
    pointer-events: auto;
  }
  .sp-pin-actions {
    background: transparent;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 8px;
  }
  .sp-act-wpp {
    display: none !important;
  }
  .sp-act-share {
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(4px);
    color: rgba(180, 100, 90, 0.85);
    box-shadow: none;
  }
  .sp-act-share:hover {
    background: rgba(245, 182, 176, 0.75);
    color: #fff;
    box-shadow: none;
  }
  .sp-act-share svg {
    width: 12px;
    height: 12px;
  }
}

.sp-pin.sp-actions-active .sp-pin-actions,
.sp-slide1-item.sp-actions-active .sp-pin-actions,
.sp-slide2-item.sp-actions-active .sp-pin-actions {
  opacity: 1;
  pointer-events: auto;
}

.sp-act-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,182,176,0.80) 100%);
  color: #7a2e28;
  transition: transform 0.15s ease, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  -webkit-tap-highlight-color: transparent;
}

.sp-act-btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.sp-act-btn:hover svg {
  transform: scale(0.75);
}

.sp-act-btn:active {
  transform: scale(0.89);
}

@media (max-width: 768px) {
  .sp-act-btn {
    width: 52px;
    height: 52px;
  }
  .sp-act-btn svg {
    width: 24px;
    height: 24px;
  }
}

#spModalShareMenu {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(0, 0, 0, 0.33);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
#spModalShareMenu.active {
  opacity: 1;
  pointer-events: auto;
}
