
  .mb-creator-photo-carousel {
    width: 100%;
    background: #f6f4ef;
    padding: 64px 20px;
    box-sizing: border-box;
  }

  .mb-cpc-inner {
    max-width: 1280px;
    margin: 0 auto;
  }

  .mb-cpc-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
  }

  .mb-cpc-head h2 {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.18;
    color: #1f1b16;
    font-weight: 800;
  }

  .mb-cpc-head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #6e675f;
  }

  .mb-cpc-slider {
    position: relative;
  }

  .mb-cpc-viewport {
    overflow: hidden;
    border-radius: 18px;
  }

  .mb-cpc-track {
    display: flex;
    gap: 18px;
    transition: transform 0.55s ease;
    will-change: transform;
  }

  .mb-cpc-item {
    flex: 0 0 calc((100% - 54px) / 4);
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 1px solid #e2ddd3;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    cursor: zoom-in;
    box-shadow: 0 10px 28px rgba(30, 24, 18, 0.08);
  }

  .mb-cpc-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
  }

  .mb-cpc-item:hover img {
    transform: scale(1.055);
  }

  .mb-cpc-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid rgba(31, 27, 22, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #2b251e;
    font-size: 30px;
    line-height: 36px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(30, 24, 18, 0.12);
  }

  .mb-cpc-prev {
    left: -18px;
  }

  .mb-cpc-next {
    right: -18px;
  }

  .mb-cpc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
  }

  .mb-cpc-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: #c9c0b2;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mb-cpc-dot.active {
    width: 26px;
    background: #7b5630;
  }

  .mb-cpc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(12, 10, 8, 0.86);
    box-sizing: border-box;
  }

  .mb-cpc-lightbox.active {
    display: flex;
  }

  .mb-cpc-lightbox img {
    max-width: min(92vw, 1180px);
    max-height: 84vh;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  }

  .mb-cpc-close {
    position: fixed;
    top: 22px;
    right: 24px;
    z-index: 100000;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 30px;
    line-height: 36px;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .mb-creator-photo-carousel {
      padding: 46px 14px;
    }

    .mb-cpc-head {
      margin-bottom: 24px;
    }

    .mb-cpc-head h2 {
      font-size: 25px;
    }

    .mb-cpc-head p {
      font-size: 14px;
    }

    .mb-cpc-track {
      gap: 12px;
    }

    .mb-cpc-item {
      flex: 0 0 calc((100% - 12px) / 2);
      border-radius: 13px;
      box-shadow: 0 8px 20px rgba(30, 24, 18, 0.08);
    }

    .mb-cpc-arrow {
      display: none;
    }

    .mb-cpc-lightbox {
      padding: 16px;
    }

    .mb-cpc-lightbox img {
      max-width: 94vw;
      max-height: 78vh;
    }
  }
