.vision-mission {
  padding: 55px 0px;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.vm-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.vm-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.vm-header span {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--muted);
}

.vm-header strong {
  font-size: 42px;
  color: var(--theme-color2);
}

.vm-header p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

/* GRID */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* CARD */
.vm-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px 35px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.vm-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.vm-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.vm-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* TEXT */
.vm-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.vm-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.vm-card ul {
  padding-left: 18px;
}

.vm-card li {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 10px;
}

/* VARIANTS */
.vm-card.vision {
  border-top: 5px solid var(--theme-color);
}

.vm-card.vision .vm-icon {
  background: var(--theme-color);
}

.vm-card.mission {
  border-top: 5px solid var(--theme-color2);
}

.vm-card.mission .vm-icon {
  background: var(--theme-color2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }

  .vm-header strong {
    font-size: 34px;
  }
}

.philosophy-play {
  padding: 55px 0px;
  background: #fff;
  font-family: "Poppins", sans-serif;
}


.pp-header h2 {
  text-align: center;
}

.pp-header h2 span {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--light-text);
}

.pp-header h2 strong {
  font-size: 42px;
  color: var(--theme-color2);
}

.pp-header p {
  font-size: 16px;
  color: var(--light-text);
  margin-top: 10px;
}

/* GRID */
.pp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.pp-card {
  padding: 35px 10px;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-icon svg {
  width: 34px;
  height: 34px;
}

/* TEXT */
.pp-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.pp-card ul {
  padding: 0;
  list-style: none;
}

.pp-card li {
  color: black;
  margin-bottom: 5px;
  max-width: 260px;
  margin: 0 auto;
  list-style: disc;
  text-align: left;
}

/* VARIANTS */
.pp-card.safety {
  background: rgba(176, 203, 31, 0.25);
}

.pp-card.safety .pp-icon {
  background: var(--theme-color);
  color: #fff;
}

.pp-card.development {
  background: rgba(120, 110, 230, 0.2);
}

.pp-card.development .pp-icon {
  background: #7a6ee6;
  color: #fff;
}

.pp-card.joy {
  background: rgba(229, 26, 75, 0.2);
}

.pp-card.joy .pp-icon {
  background: var(--theme-color2);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pp-grid {
    grid-template-columns: 1fr;
  }
}

.values-standards {
  padding-top: 100px;
  font-family: "Poppins", sans-serif;
  background: #fff;
}

.values-standards-inner {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* TITLES */
.section-title span {
  display: block;
  letter-spacing: 4px;
  font-size: 14px;
  color: var(--muted);
}

.section-title strong {
  font-size: 42px;
  color: var(--theme-color2);
}

/* VALUES */

.values-section,
.standards-section {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--theme-color2);
}

.values-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.value-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.value-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.value-content h4 {
  margin-bottom: 6px;
  font-size: 22px;
}

.value-content p {
  color: var(--muted);
  font-size: 15px;
}

/* ICON COLORS */
.creative {
  background: #ff7a7a;
}

.quality {
  background: #6e8b6e;
}

.growth {
  background: #f2b705;
}

.safety {
  background: #c17d3f;
}

.people {
  background: #5a5f7d;
}

.standard-box {
  margin-top: 10px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.standard-box h4 {
  display: inline-block;
  background: var(--theme-color2);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 12px;
}

.standard-box ul {
  padding-left: 18px;
}

.standard-box li {
  font-size: 16px;
  color: black;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .values-standards-inner {
    grid-template-columns: 1fr;
  }
}


.why-choose-toybie {
  background: #e51a4b;
  padding: 50px 0px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.wc-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.wc-header {
  max-width: 100%;
  color: white;
  width: 100%;
  text-align: center;
}

.wc-header h2 {
  color: white;
}

.wc-header span {
  display: block;
  letter-spacing: 4px;
  font-size: 14px;
  opacity: 0.85;
}

.wc-header strong {
  font-size: 44px;
  display: block;
}

.wc-header p {
  margin-top: 12px;
  opacity: 0.9;
}

/* GRID */
.wc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* ITEM */
.wc-item {
  display: flex;
  flex-direction: column;
}

.wc-icon {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.wc-icon img {
  width: 28px;
  height: 28px;
	filter: invert(1);
}

.wc-icon svg path {
  fill: white;
  stroke-width: 2;
}

.wc-item h4 {
  font-size: 18px;
  color: white;
}

.wc-item p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  color: white;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .wc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .wc-grid {
    grid-template-columns: 1fr;
  }

  .wc-header strong {
    font-size: 34px;
  }
}


.product-range .sec-title {
  text-align: center;
}


.product-range .sec-subtitle {
  max-width: 620px;
  margin: 12px auto 0;
  font-size: 15px;
  color: #555;
}


.product-range .pr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}


.product-range .pr-card {
  background: #fafafa;
  padding: 40px 36px;
  border-radius: 24px;
  border: 1px solid #eee;
  position: relative;
}

.product-range .pr-card.highlight {
  background: #fffdf6;
  border-color: var(--theme-color);
}


.product-range .pr-badge {
  display: inline-block;
  background: var(--theme-color2);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.333;
}

.product-range .pr-badge.green {
  background:  var(--theme-color);
  color: var(--title-color);
}

.product-range .pr-age {
  margin-bottom: 0px;
}

.product-range .pr-desc {
  line-height: 1.7;
  margin-bottom: 22px;
}

.product-range .pr-section {
  margin-top: 26px;
}

.product-range .pr-section h4 {
  font-size: 18px;
  color: var(--theme-color2);
  margin-bottom: 10px;
  text-transform: capitalize;
}

.product-range .pr-section ul {
  padding-left: 18px;
}

.product-range .pr-section li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .product-range .pr-grid {
    grid-template-columns: 1fr;
  }

  .product-range .sec-title {
    font-size: 34px;
  }
}

.work-production {
  background: #ffffff;
  padding-top: 55px;
}

.work-production .wp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.work-production .wp-title {
  font-size: 34px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.work-production .wp-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}


.work-production .wp-image-placeholder {
  background: #eaeaea;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  font-weight: 500;
  color: #888;
}


.work-production .wp-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0;
  mix-blend-mode: luminosity;
}


.work-production .wp-points {
  padding-left: 18px;
}

.work-production .wp-points li {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--title-color);
}

.work-production .wp-card {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid var(--theme-color2);
  ;
}


@media (max-width: 992px) {
  .work-production .wp-grid {
    grid-template-columns: 1fr;
  }

  .work-production .wp-title {
    font-size: 28px;
  }

  .work-production .wp-card {
    background: #fafafa;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid #eee;
  }

  .work-production .wp-image-placeholder {
    margin-bottom: 0;
  }
}


.safety-certifications {
  background: #ffffff;
}

.sc-header h2 span {
  color: #e51a4b;
}

.safety-certifications .sc-header h2 {
	text-align: center;
}

.sc-header p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.sc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.sc-card {
  background: #fafafa;
  border-radius: 22px;
  padding: 35px 30px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.sc-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.sc-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #e51a4b;
  margin-bottom: 20px;
  overflow: hidden;
}

/* TEXT */
.sc-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #222;
}

.sc-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sc-header h2 {
    font-size: 30px;
  }
}


















.pi-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* TITLES */
.pi-title {
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

/* LEFT PROCESS LIST */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.process-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.process-img {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  background: #f2f2f2;
  flex-shrink: 0;
	overflow:hidden;
}

.process-img img {
	width:100%;
	height:100%;
	object-fit:cover;
}

.process-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
  ;
}

.process-item p {
  font-size: 14px;
  line-height: 1.6;
}

/* RIGHT CONTENT */
.pi-desc {
  font-size: 14.5px;
  line-height: 1.9;
  ;
  margin-bottom: 18px;
}

.pi-subtitle {
  margin: 30px 0 15px;
  font-size: 16px;
}

.innovation-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.innovation-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 14px;
}

.innovation-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--theme-color);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

/* IMAGE PLACEHOLDER */
.innovation-img {
  width: 100%;
  height: 260px;
  border-radius: 22px;
  background: #f2f2f2;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pi-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}


.product-philosophy {
  width: 100%;
  background: #fff;
}

.product-philosophy .pp-card-inner {
  max-width: 350px;
  margin: 0 auto;
}

.product-philosophy .pp-card-inner img {
	    max-width: 100px;
    margin-bottom: 30px;
}

.product-philosophy .pp-main-card img {
		    max-width: 100px;
    margin-bottom: 30px;
}

.product-philosophy .pp-subtitle {
  letter-spacing: 6px;
  font-size: 14px;
}

.product-philosophy .pp-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.product-philosophy .pp-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product-philosophy .pp-card,
.product-philosophy .pp-main-card {
  border-radius: 18px;
  padding: 30px;
}

.product-philosophy .pp-main-card {
  background: linear-gradient(180deg, #ffedd5, #fff);
  text-align: center;
}

.product-philosophy .pp-card svg,
.product-philosophy .pp-main-card svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: #a16207;
  stroke-width: 3;
  margin-bottom: 20px;
}

.product-philosophy .pp-card h4,
.product-philosophy .pp-main-card h3 {
  margin-bottom: 10px;
}

/* COLOR VARIANTS */
.yellow {
  background: #fff7cc;
}

.peach {
  background: #ffe5d0;
}

.pink {
  background: #ffe4e6;
}

.lavender {
  background: #ede9fe;
}


@media (max-width: 900px) {
  .product-philosophy .pp-grid {
    grid-template-columns: 1fr;
  }

  .product-philosophy .pp-main-card {
    background: #ffedd5;
  }
}



.facts-sustainability {
  background: #ffffff;
}

.two-column-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.section-label {
  font-size: 13px;
  letter-spacing: 6px;
  color: #777;
}

.two-column-wrap .sub-title {
	display: inline-block;
}

/* FACTS */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.fact-box {
  border: 2px solid #e11d48;
  padding: 18px 20px;
  border-radius: 10px;
}

.fact-box h3 {
  font-size: 34px;
  margin-bottom: 6px;
}

.fact-box p {
  margin-bottom: 0;
}

/* SUSTAINABILITY */
.sub-title {
  margin-bottom: 10px;
}

.sustain-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.s-item {
  display: flex;
  gap: 18px;
}

.s-item h5 {
  margin-bottom: 0px;
}

.icon-placeholder {
  width: 60px;
  height: 60px;
  background: #e6f7ef;
  border-radius: 10px;
  flex-shrink: 0;
	overflow:hidden;
}

.icon-placeholder img {
	width:100%;
	height:100%;
	object-fit:cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .two-column-wrap {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

.network-global-section {
  background: #b0cb1f;
  color: black;
}

.network-global-section .network-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 60px;
}

.network-global-section .section-text {
  margin-bottom: 18px;
  color: black;
}

.network-col .sec-title span {
    color: #e11d48;
}

.network-global-section .section-subtitle {
  font-weight: 600;
  margin: 22px 0 10px;
  color: black;
  text-align: start;
}

.network-global-section .network-map img {
  width: 100%;
  max-width: 100%;
}

.network-map {
  display: flex;
  align-items: center;
}

/* Responsive */
@media (max-width: 992px) {
  .network-global-section .network-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .network-global-section .simple-list li {
    border-bottom: none;
    text-align: left;
  }
}

.lp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.lp-grid .sec-title {
	margin:0 !important;
}

/* Headings */
.lp-subtitle {
  color: #000;
  display: block;
  margin-bottom: 8px;
}

.lp-heading {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #e51a4b;
  margin-bottom: 20px;
}

.lp-desc {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  max-width: 420px;
}

/* Leadership cards */
.lp-cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.lp-card {
  flex: 1;
  background: #b0cb1f;
  padding: 16px;
  border-radius: 6px;
}


.lp-img-placeholder {
  width: 100%;
  height: 160px;
  background: rgba(255,255,255,0.4);
  border-radius: 4px;
  margin-bottom: 12px;
}

.lp-img-placeholder img {
	    height: 100%;
    width: 100%;
    object-fit: cover;
}


.lp-card h4 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
}


.lp-list {
  margin-top: 25px;
  padding-left: 18px;
}

.lp-list li {
  font-size: 15px;
  color: #000;
  margin-bottom: 12px;
}

.lp-list li::marker {
  color: #e51a4b;
}


.lp-big-img-placeholder {
  margin-top: 40px;
  width: 100%;
  height: 280px;
  background: #f2f2f2;
  border-radius: 8px;
}


@media (max-width: 992px) {
  .lp-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .lp-cards {
    flex-direction: column;
  }
}

.swiper::before,
.swiper::after,
.swiper-container::before,
.swiper-container::after {
  display: none !important;
  content: none !important;
}
