@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --main-bg: #f8f8f8;
  --glass-border: #fafafa;
  --btn-bg: #f41168;
  --black: #000000;
  --white: #ffffff;
}
body {
  overflow-x: hidden;
  font-family: "Urbanist", sans-serif;
  background-color: #f6f9ff !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
}
/* =========================
   TOP BAR
========================= */

/* =========================
   UPDATED WITH NEW ROOT COLORS
========================= */

.vt-topbar {
  position: relative;
  height: 62px;
  background: var(--main-bg);
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 38px;
  z-index: 10;
}

/* Animated Glow */

.vt-topbar-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.16), transparent 70%);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  animation: glowMove 6s ease-in-out infinite alternate;
}

@keyframes glowMove {
  0% {
    transform: translateX(-50%) scale(1);
  }
  100% {
    transform: translateX(-50%) scale(1.2);
  }
}

/* =========================
   SOCIAL ICONS
========================= */

.vt-left-icons {
  position: relative;
  display: flex;
  gap: 12px;
  z-index: 2;
}

.vt-left-icons a {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-decoration: none;
  font-size: 13px;
  transition: 0.35s ease;
  backdrop-filter: blur(10px);
}

.vt-left-icons a:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-4px) rotate(-6deg);
  box-shadow: var(--gold-shadow);
  border: none;
}

/* =========================
   MARQUEE
========================= */

.vt-marquee-wrap {
  position: absolute;
  left: 220px;
  right: 220px;
  overflow: hidden;
  white-space: nowrap;
}

.vt-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  animation: marquee 6s linear infinite;
}

.vt-marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vt-marquee-item i {
  color: var(--btn-bg);
  font-size: 14px;
}

.vt-marquee-item span {
  color: var(--black);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   RIGHT BUTTONS
========================= */

.vt-right-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.vt-action-btn {
  position: relative;
  height: 40px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--black);

  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: 0.35s ease;
  backdrop-filter: blur(10px);
}

.vt-action-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  left: -100%;
  top: 0;
  transition: 0.6s;
}

.vt-action-btn:hover::before {
  left: 100%;
}

.vt-action-btn:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-3px);
}

.vt-action-btn i {
  font-size: 14px;
}

.vt-action-btn span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
   Navbar
========================= */

.vt-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  padding: 5px 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);

  transition: 0.35s ease;
}

.vt-navbar.vt-scrolled {
  padding: 12px 0;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

/* Inner */

.vt-navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

@media (min-width: 992px) {
  .vt-navbar-wrapper {
    justify-content: center;
    position: relative;
    width: 100%;
  }

  .vt-navbar-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Logo */

.vt-logo img {
  max-width: 112px;
  display: block;
}

.vt-mobile-controls {
  display: none;
}

/* Wrapper */

.vt-navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}

@media (min-width: 992px) {
  .vt-navbar-wrapper {
    justify-content: center;
    position: relative;
  }

  .vt-navbar-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Menu */

.vt-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vt-menu-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--glass-bg);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 14px;
  transition: 0.35s ease;
  position: relative;
}

.vt-menu-link:hover {
  color: #f41168;
}

.vt-menu-link.active {
  color: var(--btn-bg);
}

/* Right Side */

.vt-navbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Search */

.vt-search-box {
  position: relative;
  width: 240px;
}

.vt-search-box input {
  width: 100%;
  height: 52px;
  border: none;
  outline: none;
  background: #fff;
  border-radius: 18px;
  padding: 0 50px 0 18px;
  font-size: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.vt-search-box input:focus {
  box-shadow:
    0 0 0 4px rgba(244, 17, 104, 0.1),
    0 8px 25px rgba(0, 0, 0, 0.06);
}

.vt-search-box i {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: #777;
  font-size: 14px;
}

/* Icons */

.vt-nav-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vt-icon-btn {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  font-size: 18px;
  position: relative;
  transition: 0.35s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.vt-icon-btn:hover {
  background: linear-gradient(135deg, #f41168, #ff5b95);
  color: #fff;
  transform: translateY(-3px);
}

/* Cart */

.vt-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Mobile Toggle */

.vt-mobile-toggle {
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background: #fff;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.vt-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 20px;
  transition: 0.3s ease;
}

/* Toggle Animation */

.vt-mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vt-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.vt-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Mobile Icons */
.vt-mobile-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 16px;
    text-decoration: none;
    position: relative;
}

.vt-mobile-cart-count {
    position: absolute;
    top: -5px;
    right: -6px;
    width: 18px;
    height: 18px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */

@media (max-width: 991px) {
  .vt-mobile-toggle {
    display: flex;
  }

  .vt-mobile-controls {
    display: flex;
    margin-left: auto;
    align-items: center;
  }

  .vt-mobile-icon,
  .vt-mobile-cart-count {
    display: flex;
  }

  .vt-logo {
    position: static;
    transform: none;
    z-index: auto;
  }

  .vt-navbar-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 24px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);

    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: 0.35s ease;
  }

  .vt-navbar-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .vt-menu {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .vt-menu li {
    width: 100%;
  }

  .vt-menu-link {
    width: 100%;
    justify-content: center;
  }

  .vt-navbar-right {
    width: 100%;
    flex-direction: column;
  }

  .vt-search-box {
    width: 100%;
  }
}

/* Hero Slider start */

.hero-slider {
  width: 100%;
  overflow: hidden;
}

.slider-item {
  position: relative;
}

.slider-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.vt-product-slider {
  margin: 0 -12px;
}

.vt-product-slider .slick-list {
  margin: 0 -12px;
}

.vt-product-slider .slick-slide {
  padding: 0 12px;
  box-sizing: border-box;
}

.vt-product-slider .slick-slide > div {
  height: 100%;
}

.vt-product-slider .slick-arrow {
  z-index: 2;
}

.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

.sbcategory-heading h2 {
  font-size: 56px;
  color: var(--black);
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.sbcategory-heading span {
  color: var(--btn-bg);
}
.sbcategory-heading p {
  color: #666666;
  font-weight: 400;
  font-size: 18px;
}

.vt-card {
  background: var(--glass-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  margin: 0;
  box-sizing: border-box;
  min-height: auto;
}

.vt-card:hover {
  transform: translateY(-5px);
}

.vt-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.card-img-top {
  width: 100%;
  height: auto;
  display: block;
}

.vt-card-body {
  padding: 16px;
  text-align: center;
}

.vt-card-body h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #666;
}

.vt-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--btn-bg);
  margin-bottom: 14px;
}

.vt-btns {
  display: flex;
  flex-direction: column;
  justify-content: center;
 
  gap: 10px;
  width: 100%;
}

.vt-btns a {
  flex: 1;
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.vt-btn-light {
  border: 1px solid #ddd;
  color: var(--black);
}

.vt-btn-light:hover {
  background: var(--black);
  color: var(--white);
}

.vt-btn-main {
  background: var(--btn-bg);
  color: var(--white);
}

.vt-btn-main:hover {
  background: var(--btn-bg);
  color: var(--white);
}
.peptide-hero {
  height: 500px;
  background:
    linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.8)),
    url("../images/bg-item.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.brand-name {
  color: var(--white);
  font-size: 36px;
  letter-spacing: 6px;
  font-weight: 400;
  padding-top: 40px;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}
.hero-content h1 {
  color: var(--btn-bg);
  font-size: 56px;
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 20px;
}
.hero-content p {
  color: var(--white);
  font-size: 18px;
  line-height: 1.9;
  max-width: 760px;
  margin: auto;
  font-weight: 500;
} /* Cards */
.hero-card {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: 0.4s ease;
  height: 100%;
}
.hero-card:hover {
  transform: translateY(-6px);
  border-color: rgba(241, 38, 120, 0.4);
}
.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--black);
  margin: auto auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--btn-bg);
  font-size: 22px;
}
.hero-card span {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
}
.our-product-heading h2 {
  font-size: 36px;
  color: var(--black);
  line-height: 30px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.our-product-heading span {
  color: var(--btn-bg);
}
.our-product-heading p {
  color: #666666;
  font-weight: 400;
  font-size: 18px;
}
.vt-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.vt-tab-btn {
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  background: #f5f5f5;
  cursor: pointer;
  font-weight: 600;
}

.vt-tab-btn.active {
  background: #f41168;
  color: #fff;
}

.vt-tab-content {
  display: none;
}

.vt-tab-content.active {
  display: block;
}
.vt-hidden {
  display: none;
}

.vt-load-btn {
  border: none;
  padding: 10px 26px;
  border-radius: 12px;
  background: #f41168;
  color: #fff;
  font-weight: 600;
}

.testing-content h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
}
.testing-content span {
  color: var(--btn-bg);
}

.testing-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #000000;
  font-weight: 400;
  margin-bottom: 22px;
}
.testing-image img{
  border-radius: 15px !important;
}

.quality-card {
  background: #fff;

  border-radius: 16px;

  padding: 22px 20px;

  display: flex;
  align-items: flex-start;

  gap: 18px;

  height: 100%;

  transition: 0.3s ease;

  border: 1px solid #eee;
}

.quality-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.quality-icon {
  width: 58px;
  height: 58px;

  min-width: 58px;

  border-radius: 14px;

    background: linear-gradient(135deg, #f12678, #f30064);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 22px;
}

.quality-card h4 {
  font-size: 22px;
  font-weight: 700;

  color: #111;

  margin-bottom: 8px;
}

.quality-card p {
  margin: 0;

  color: #666;

  line-height: 1.7;

  font-size: 15px;
}

.footer {
  background-color: var(--black);

  padding: 70px 0 30px;

  color: var(--white);
}

/* Logo */

.footer-logo img {
  max-width: 170px;
}

/* Text */

.footer-text {
  color: var(--white);

  font-size: 15px;

  line-height: 1.9;

  margin-bottom: 0;
}

/* Titles */

.footer-title {
  color: var(--white);

  font-size: 22px;

  font-weight: 700;

  margin-bottom: 20px;
}

/* Links */

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: var(--white);

  text-decoration: none;

  font-size: 15px;

  transition: 0.3s ease;
}

.footer-links li a:hover {
  color: var(--btn-bg);

  padding-left: 4px;
}

/* Contact */

.footer-contact p {
  color: var(--white);

  font-size: 15px;

  line-height: 1.8;

  margin-bottom: 10px;
}

.footer-contact strong {
  color: var(--white);
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  color: var(--white);

  font-size: 14px;
}

@media (max-width: 768px) {
  .vt-logo img {
    max-width: 75px;
    display: block;
  }
  .sbcategory-heading h2 {
    font-size: 32px;
     line-height: 34px;
   }
}


/* =========================
   Peptide Library
========================= */

.library-heading h2{
    font-size:60px;
    font-weight:700;
    color:var(--black);
    margin-bottom:0;
}

.library-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.library-categories{
    display:flex;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.library-btn{
    padding:8px 10px;
    border:1px solid var(--btn-bg);
    background:transparent;
    color:var(--black);
    border-radius:10px;
    font-size:16px;
    font-weight:500;
    transition:0.3s ease;
}

.library-btn.active,
.library-btn:hover{
    background:var(--btn-bg);
    color:#fff;
}

.library-sort select{
    width:200px;
    
    border:1px solid #1d2746;
    border-radius:8px;
    padding:8px 10px;
    outline:none;
    font-size:16px;
    cursor:pointer;
    background:#fff;
}

.library-search{
    max-width:400px;
    position:relative;
}

.library-search input{
    width:100%;
   
    border:1px solid #1d2746;
    border-radius:8px;
    padding:8px 200px 8px 20px;
    outline:none;
    font-size:16px;
    background:#fff;
}

.library-search button{
    position:absolute;
    top:50%;
    right:16px;
    transform:translateY(-50%);
    border:none;
    background:transparent;
    font-size:20px;
    color:#06133b;
}

/* =========================
   Responsive
========================= */





/* About us start */
  .about-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.9)),
    url("../images/thermometer.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  height: 400px;

  display: flex;
  justify-content: center;
  align-items: center;
}


.vt-subtitle {
  background: rgba(241, 38, 120, 0.1);
  color: #f12678;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.vt-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
}

.vt-desc {
  color: #777;
  max-width: 600px;
  margin: auto;
  margin-top: 12px;
}

.vt-commitment-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 28px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
  border: 1px solid #eee;
}

.vt-commitment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.vt-icon {
  width: 75px;
  height: 75px;
  margin: auto;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(255, 5, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vt-icon i {
  font-size: 30px;
  color: #f12678;
}

.vt-commitment-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #000000;
}

.vt-commitment-card p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 15px;
}
.value-grid {
  background: linear-gradient(135deg, #fff0f6, #ffffff);
}

.vt-badge {
  display: inline-block;
  background: rgba(241, 38, 120, 0.1);
  color: #f12678;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

.vt-heading {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.vt-text {
  font-size: 18px;
  color: #666;
  margin-top: 18px;
  margin-bottom: 30px;
}

.vt-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  background: #f12678;
  color: #fff;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.vt-btn-main:hover {
  background: #d91b68;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {

  .vt-heading {
    font-size: 36px;
  }

  .vt-text {
    font-size: 16px;
  }

}

/* About us finish */

@media(max-width:991px){

    .library-heading h2{
        font-size:42px;
    }

    .library-topbar{
        flex-direction:column;
        align-items:flex-start;
    }

}

@media(max-width:576px){

    .library-heading h2{
        font-size:34px;
    }

    .library-btn{
        padding:12px 18px;
        font-size:14px;
    }

    .library-search{
        max-width:100%;
    }

    .library-sort{
        width:100%;
    }

    .library-sort select{
        width:100%;
    }

}