/* 🔷 Вся фиолетовая секция */
.seller-pro-section {
  background-image: url('/Images/CabBG.png');
  background-size: cover;
  background-position: center;
  border-radius: clamp(32px, 2.6vw, 43px);
  padding: clamp(68px, 5.4vw, 90px) clamp(60px, 5.4vw, 80px) clamp(60px, 5.4vw, 80px);
  font-family: 'Manrope';
  color: white;
  max-width: clamp(320px, 90vw, 1600px);
  margin: clamp(54px, 4.3vw, 72px) auto;
  box-sizing: border-box;
  position: relative;
}

/* 🔷 Надпись в правом верхнем углу */
.seller-pro-note {
  position: absolute;
  top: clamp(20px, 2vw, 28px);
right: clamp(30px, 2.8vw, 40px);
  font-size: clamp(9px, 0.8vw, 12px);
  color: #ccc;
  z-index: 10;
}

/* 🔷 Контейнер внутри капсулы */
.seller-pro-container {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(27px, 2.7vw, 36px);
  align-items: flex-start;
}

/* 🔷 Левая часть */
.seller-pro-left {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 🔷 Заголовок */
.seller-pro-title {
  font-size: clamp(25.2px, 3.24vw, 43.2px);
  font-weight: 800;
  margin-bottom: clamp(11px, 1vw, 14px);
  line-height: 1.2;
}

/* 🔷 Бейдж PRO */
.pro-placeholder {
  display: inline-block;
  width: clamp(58px, 5.4vw, 76px);
  height: clamp(43px, 4.5vw, 58px);
  margin-left: clamp(6px, 0.55vw, 9px);
  margin-top: clamp(19px, 1.8vw, 26px);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('/Images/PROicon1.png');
  vertical-align: middle;
}

/* 🔷 Подзаголовок */
.seller-pro-subtitle {
  font-size: clamp(14px, 1.2vw, 18px);
  color: #ffffff;
  margin-top: clamp(20px, 1.8vw, 27px);
  line-height: 1.6;
  font-weight: 200;
}

/* 🔷 Правая часть */

.seller-pro-right {
  flex: 1;
  min-width: clamp(280px, 25vw, 420px);  /* ⬅ увеличено */
  max-width: clamp(330px, 30vw, 500px);  /* ⬅ увеличено */
  position: relative;
}


/* 🔷 Серая карточка с фоном */
.seller-pro-image-box {
  position: relative;
  border-radius: clamp(16px, 1.8vw, 22px);
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.seller-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: clamp(16px, 1.8vw, 22px);
}

/* 🔷 Текст поверх картинки */
.overlay-text {
  position: absolute;
  top: clamp(13px, 1.3vw, 16px);
  left: clamp(13px, 1.8vw, 18px);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 500;
  color: #000;
  max-width: clamp(190px, 21vw, 250px);
  z-index: 2;
}

/* 🔷 Карточки снизу */
.seller-pro-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 1.8vw, 27px);
 margin-top: clamp(5.6px, 0.72vw, 8.8px);
}



/* 🔷 Общий стиль карточек */
.seller-pro-card {
  flex: 1 1 calc(33.333% - 20px);
  padding: clamp(8.8px, 1.04vw, 12.8px) clamp(15.4px, 1.82vw, 22.4px);  /* Было меньше — теперь все стороны, включая снизу, увеличены */
  border-radius: clamp(18px, 2vw, 28px); /* Увеличено */
  line-height: 1.6;
  box-sizing: border-box;
}

/* Светлая карточка */
.seller-pro-card.light {
  position: relative;
  color: white;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: clamp(13px, 1.1vw, 18px);
  
  box-sizing: border-box;
  overflow: hidden;
  z-index: 0;
}

/* Градиентная рамка */
.seller-pro-card.light::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 1;
}

/* Внутренний световой эффект */
.seller-pro-card.light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.07) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: inherit;
  z-index: 0;
}

/* Контент поверх */
.seller-pro-card.light * {
  position: relative;
  z-index: 2;
}

/* Тёмная карточка */
.seller-pro-card.dark {
  position: relative;
  color: white;
  background-color: #0e0e0e;
  overflow: hidden;
  border-radius: clamp(13px, 1.1vw, 18px);
  
  box-sizing: border-box;
  z-index: 0;
}

/* Градиентная рамка */
.seller-pro-card.dark::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.05) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 1;
}

/* Внутреннее световое пятно */
.seller-pro-card.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: inherit;
  z-index: 0;
}

/* Контент поверх */
.seller-pro-card.dark * {
  position: relative;
  z-index: 2;
}


/* Заголовки карточек */
.seller-pro-card h4 {
  font-size: clamp(18px, 1.98vw, 25.2px);
  font-weight: 400;
  margin-bottom: clamp(5px, 0.6vw, 7px);
}


/* Текст карточек */
.seller-pro-card p {
  font-weight: 200;
  font-size: clamp(12px, 1.04vw, 15px);
  margin-bottom: clamp(9px, 1vw, 15px);
}









/* === SELLER PRO: Адаптация под мобилу (до 768px) === */

@media (max-width: 768px) {
  .seller-pro-section {
    padding-left: clamp(8px, 4vw, 12px);
    padding-right: clamp(8px, 4vw, 12px);
  }

  .seller-pro-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .seller-pro-left,
  .seller-pro-right {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }

  .seller-pro-title {
    font-size: clamp(22px, 5.5vw, 30px);
  }

  .seller-pro-subtitle {
    font-size: clamp(14px, 4vw, 16px);
    margin-top: clamp(10px, 2vh, 20px);
  }

  .pro-placeholder {
    margin: clamp(12px, 2vh, 18px) auto 0 auto;
    display: block;
  }

  .seller-pro-right {
    margin-top: clamp(24px, 4vh, 40px);
  }

  .seller-pro-image-box {
    max-width: 340px;
    margin: 0 auto;
  }

  .seller-image {
    width: 100%;
    height: auto;
  }

  .seller-pro-cards {
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 3vh, 24px);
    margin-top: clamp(30px, 4vh, 40px);
  }

    .seller-pro-card {
    width: 100%;
    max-width: clamp(260px, 80vw, 320px); 
    margin: 0 auto;
  }

  .seller-pro-card h4 {
    font-size: 18px;
  }

  .seller-pro-card p {
    font-size: 14px;
  }

  .seller-pro-note {
    display: none !important;
  }
}
