@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  /* ===== Colors ===== */
  --primary-color: #FF6B6B;
  --primary-light: #FFE1E1;

  --secondary-color: #9B5CFF;
  --secondary-light: #EBDFFF;

  --blue: #4DCCFF;
  --blue-light: #DBF5FF;

  --green: #B7F34D;
  --green-light: #EEFDD3;

  --pink: #FF8BCB;
  --pink-light: #FFE0F0;

  --orange: #FF9F45;
  --orange-light: #FFE8D3;

  --yellow: #FFD93D;
  --yellow-light: #FFF7D8;

  --firozy: #4EEDC8;

  --black-color: #262626;
  --white-color: #FFFFFF;

  --bg-light: #FFFDF9;
  --bg-off-white: #fbf3ea;

  --site-border: #E5E5E5;
  --site-border-dark: #A3A3A3;

  --label-color: #A3A3A3;

  /* ===== Typography ===== */
  --font-main: "Nunito", sans-serif;
  --heading-font: "Fredoka", sans-serif;

  --h1: 65px;
  --h2: 44px;
  --h3: 22px;

  --text-base: 18px;
  --text-small: 16px;

  --line-height: 1.5;
  --letter-spacing: -0.5px;

  /* ===== 8px Spacing System ===== */
  --space-0-5: 4px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;
  --space-9: 72px;
  --space-10: 80px;
  --space-11: 88px;
  --space-12: 96px;

  --header-height: 100px;

  /* ===== Shadows ===== */
  --shadow-main: 0 10px 15px rgba(0, 0, 0, .15);
  --shadow-sm: 0 6px 8px rgba(0, 0, 0, .10);



  /* ========================= CONTAINER MAX WIDTHS ========================= */
  --container-xs: 100%;
  --container-sm: 720px;
  /* mobile landscape / small tablets */
  --container-md: 960px;
  /* tablets */
  --container-lg: 1080px;
  /* laptops (your default) */
  --container-xl: 1280px;
  /* large laptops */
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
ul,
li,
form,
label,
nav,
ul,
button,
input {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

body {
  background: var(--white-color);
  font-family: var(--font-main);
  font-size: var(--text-base);
  overflow-x: hidden;
  line-height: var(--line-height);
  color: var(--white-color);
  width: 100%;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: var(--heading-font);
  font-weight: bold;
}

a,
a:focus,
a:hover {
  outline: none !important;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-section {
  padding-block: var(--space-12);
}

.site-section-medium, .site-section-lg.checkout-section {
  padding-block: var(--space-8);
}

ul {
  list-style-type: none;
}

.site-divider {
  margin-block: var(--space-2);
  width: 100%;
  height: 1px;
}

.index-1 {
  position: relative;
  z-index: 1;
}

.index-2 {
  position: relative;
  z-index: 2;
}

.index-5 {
  position: relative;
  z-index: 5;
}

.img-full {
  width: 100%;
  display: block;
}

.text-center-desk {
  text-align: center;
}

.font-head {
  font-family: var(--heading-font);
}

.font-main {
  font-family: var(--font-main);
}

.section-bg {
  background: url(../images/section-bg.jpg) no-repeat;
  background-size: cover;
}

.gradient-card {
  background: #FF0000;
  background: linear-gradient(180deg, rgba(255, 0, 0, 1) 0%, rgba(255, 0, 0, 0.26) 100%);
  padding: 1.5px;
}

.bg-gradient {
  background: #FF0000;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--black-color) 100%);
}

.for-mobile {
  display: none;
}

/* Typography */
/* h1, h2, h3, h4, h5, h6 {font-family: var(--font-main);font-weight: bold;} */
.site-title-h1 {
  font-size: var(--h1);
  line-height: 1;
}

.site-title-h2 {
  font-size: var(--h2);
  line-height: 1.2;
}

.site-title-h3 {
  font-size: var(--h3);
  line-height: 1.2;
  font-weight: 700;
}

.body-text {
  font-size: var(--text-base);
}

.small-text {
  font-size: var(--text-small);
}

.site-subtitle {
  font-size: 28px;
}

/* Typography */

.site-container {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--space-2);
}

.w-bold {
  font-weight: bold;
}



/* Site grid system */
.grid {
  display: grid;
}

.cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

@media(max-width:767px) {
  .cols-m-1 {
    grid-template-columns: repeat(1, 1fr);
  }

  .cols-m-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cols-m-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .m-wrap {
    flex-wrap: wrap;
  }

  .gap-m-1 {
    gap: 8px;
  }

  .gap-m-2 {
    gap: 16px;
  }

  .gap-m-3 {
    gap: 24px;
  }

  .gap-m-4 {
    gap: 32px;
  }

  .gap-m-5 {
    gap: 40px;
  }

  .gap-m-6 {
    gap: 48px;
  }

  .gap-m-8 {
    gap: 64px;
  }

  .gap-m-10 {
    gap: 80px;
  }
}

@media(min-width:768px) and (max-width:1023px) {
  .cols-t-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cols-t-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Site grid system */


/* Flex classes */
.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.inline-flex {
  display: inline-flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.self-start {
  align-self: flex-start;
}

.self-center {
  align-self: center;
}

.self-end {
  align-self: flex-end;
}

.self-stretch {
  align-self: stretch;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.gap-4 {
  gap: 32px;
}

.gap-5 {
  gap: 40px;
}

.gap-6 {
  gap: 48px;
}

.gap-8 {
  gap: 64px;
}

.gap-10 {
  gap: 80px;
}

.flex-1 {
  flex: 1;
}

.flex-2 {
  flex: 2;
}

.flex-3 {
  flex: 3;
}

.flex-4 {
  flex: 4;
}

.flex-5 {
  flex: 5;
}

.flex-6 {
  flex: 6;
}

.flex-7 {
  flex: 7;
}

.flex-8 {
  flex: 8;
}

@media(max-width:767px) {
  .flex-m-col {
    flex-direction: column;
  }

  .gap-m-1 {
    gap: 8px;
  }

  .gap-m-2 {
    gap: 16px;
  }

  .gap-m-3 {
    gap: 24px;
  }

  .gap-m-4 {
    gap: 32px;
  }

  .gap-m-5 {
    gap: 40px;
  }

  .gap-m-6 {
    gap: 48px;
  }

  .gap-m-8 {
    gap: 64px;
  }

  .gap-m-10 {
    gap: 80px;
  }
}

/* Flex classes */

/* Base zig-zag layout */
.zig-zag {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

/* Column roles */
.zig-media {
  flex: 5;
}

.zig-content {
  flex: 7;
}

/* Auto alternate for dynamic loop content */
.zig-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.zig-wrapper>.zig-zag:nth-child(even) {
  flex-direction: row-reverse;
}

.zig-wrapper>.zig-zag:nth-child(even) .zig-media {
  text-align: right;
}


/* Mobile behavior */
@media(max-width:767px) {

  .zig-zag,
  .zig-wrapper>.zig-zag:nth-child(even) {
    flex-direction: column;
    gap: 16px;
  }

  .zig-media {
    order: 1;
    flex: unset;
    width: 100%;
    text-align: center;
  }

  .zig-media img {
    max-width: 250px;
    margin: auto;
  }

  .zig-content {
    order: 2;
    flex: unset;
    width: 100%;
  }

  .zig-wrapper>.zig-zag:nth-child(even) .zig-media {
    text-align: center;
  }
}


/* Site spacings Margin & Padding */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 8px;
}

.m-2 {
  margin: 16px;
}

.m-3 {
  margin: 24px;
}

.m-4 {
  margin: 32px;
}

.m-5 {
  margin: 40px;
}

.m-6 {
  margin: 48px;
}

.m-7 {
  margin: 56px;
}

.m-8 {
  margin: 64px;
}

.m-9 {
  margin: 72px;
}

.m-10 {
  margin: 80px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mt-4 {
  margin-top: 32px;
}

.mt-5 {
  margin-top: 40px;
}

.mt-6 {
  margin-top: 48px;
}

.mt-7 {
  margin-top: 56px;
}

.mt-8 {
  margin-top: 64px;
}

.mt-9 {
  margin-top: 72px;
}

.mt-10 {
  margin-top: 80px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.mb-4 {
  margin-bottom: 32px;
}

.mb-5 {
  margin-bottom: 40px;
}

.mb-6 {
  margin-bottom: 48px;
}

.mb-7 {
  margin-bottom: 56px;
}

.mb-8 {
  margin-bottom: 64px;
}

.mb-9 {
  margin-bottom: 72px;
}

.mb-10 {
  margin-bottom: 80px;
}

.m-auto {
  margin: auto;
}

.mx-auto {
  margin-inline: auto;
}

.mx-0 {
  margin-inline: 0;
}

.mx-1 {
  margin-inline: 8px;
}

.mx-2 {
  margin-inline: 16px;
}

.mx-3 {
  margin-inline: 24px;
}

.mx-4 {
  margin-inline: 32px;
}

.mx-5 {
  margin-inline: 40px;
}

.mx-6 {
  margin-inline: 48px;
}

.mx-7 {
  margin-inline: 56px;
}

.mx-8 {
  margin-inline: 64px;
}

.mx-9 {
  margin-inline: 72px;
}

.mx-10 {
  margin-inline: 80px;
}

.my-0 {
  margin-block: 0;
}

.my-1 {
  margin-block: 8px;
}

.my-2 {
  margin-block: 16px;
}

.my-3 {
  margin-block: 24px;
}

.my-4 {
  margin-block: 32px;
}

.my-5 {
  margin-block: 40px;
}

.my-6 {
  margin-block: 48px;
}

.my-7 {
  margin-block: 56px;
}

.my-8 {
  margin-block: 64px;
}

.my-9 {
  margin-block: 72px;
}

.my-10 {
  margin-block: 80px;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 8px;
}

.p-2 {
  padding: 16px;
}

.p-3 {
  padding: 24px;
}

.p-4 {
  padding: 32px;
}

.p-5 {
  padding: 40px;
}

.p-6 {
  padding: 48px;
}

.p-7 {
  padding: 56px;
}

.p-8 {
  padding: 64px;
}

.p-9 {
  padding: 72px;
}

.p-10 {
  padding: 80px;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 8px;
}

.pt-2 {
  padding-top: 16px;
}

.pt-3 {
  padding-top: 24px;
}

.pt-4 {
  padding-top: 32px;
}

.pt-5 {
  padding-top: 40px;
}

.pt-6 {
  padding-top: 48px;
}

.pt-7 {
  padding-top: 56px;
}

.pt-8 {
  padding-top: 64px;
}

.pt-9 {
  padding-top: 72px;
}

.pt-10 {
  padding-top: 80px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 8px;
}

.pb-2 {
  padding-bottom: 16px;
}

.pb-3 {
  padding-bottom: 24px;
}

.pb-4 {
  padding-bottom: 32px;
}

.pb-5 {
  padding-bottom: 40px;
}

.pb-6 {
  padding-bottom: 48px;
}

.pb-7 {
  padding-bottom: 56px;
}

.pb-8 {
  padding-bottom: 64px;
}

.pb-9 {
  padding-bottom: 72px;
}

.pb-10 {
  padding-bottom: 80px;
}

.px-0 {
  padding-inline: 0;
}

.px-1 {
  padding-inline: 8px;
}

.px-2 {
  padding-inline: 16px;
}

.px-3 {
  padding-inline: 24px;
}

.px-4 {
  padding-inline: 32px;
}

.px-5 {
  padding-inline: 40px;
}

.px-6 {
  padding-inline: 48px;
}

.px-7 {
  padding-inline: 56px;
}

.px-8 {
  padding-inline: 64px;
}

.px-9 {
  padding-inline: 72px;
}

.px-10 {
  padding-inline: 80px;
}

.py-0 {
  padding-block: 0;
}

.py-1 {
  padding-block: 8px;
}

.py-2 {
  padding-block: 16px;
}

.py-3 {
  padding-block: 24px;
}

.py-4 {
  padding-block: 32px;
}

.py-5 {
  padding-block: 40px;
}

.py-6 {
  padding-block: 48px;
}

.py-7 {
  padding-block: 56px;
}

.py-8 {
  padding-block: 64px;
}

.py-9 {
  padding-block: 72px;
}

.py-10 {
  padding-block: 80px;
}

@media(max-width:767px) {
  .m-m-0 {
    margin: 0;
  }

  .m-m-1 {
    margin: 8px;
  }

  .m-m-2 {
    margin: 16px;
  }

  .m-m-3 {
    margin: 24px;
  }

  .m-m-4 {
    margin: 32px;
  }

  .m-m-5 {
    margin: 40px;
  }

  .mt-m-0 {
    margin-top: 0;
  }

  .mt-m-1 {
    margin-top: 8px;
  }

  .mt-m-2 {
    margin-top: 16px;
  }

  .mt-m-3 {
    margin-top: 24px;
  }

  .mt-m-4 {
    margin-top: 32px;
  }

  .mt-m-5 {
    margin-top: 40px;
  }

  .mb-m-0 {
    margin-bottom: 0;
  }

  .mb-m-1 {
    margin-bottom: 8px;
  }

  .mb-m-2 {
    margin-bottom: 16px;
  }

  .mb-m-3 {
    margin-bottom: 24px;
  }

  .mb-m-4 {
    margin-bottom: 32px;
  }

  .mb-m-5 {
    margin-bottom: 40px;
  }

  .mx-m-0 {
    margin-inline: 0;
  }

  .mx-m-1 {
    margin-inline: 8px;
  }

  .mx-m-2 {
    margin-inline: 16px;
  }

  .mx-m-3 {
    margin-inline: 24px;
  }

  .mx-m-4 {
    margin-inline: 32px;
  }

  .mx-m-5 {
    margin-inline: 40px;
  }

  .my-m-0 {
    margin-block: 0;
  }

  .my-m-1 {
    margin-block: 8px;
  }

  .my-m-2 {
    margin-block: 16px;
  }

  .my-m-3 {
    margin-block: 24px;
  }

  .my-m-4 {
    margin-block: 32px;
  }

  .my-m-5 {
    margin-block: 40px;
  }

  .p-m-0 {
    padding: 0;
  }

  .p-m-1 {
    padding: 8px;
  }

  .p-m-2 {
    padding: 16px;
  }

  .p-m-3 {
    padding: 24px;
  }

  .p-m-4 {
    padding: 32px;
  }

  .p-m-5 {
    padding: 40px;
  }

  .pt-m-0 {
    padding-top: 0;
  }

  .pt-m-1 {
    padding-top: 8px;
  }

  .pt-m-2 {
    padding-top: 16px;
  }

  .pt-m-3 {
    padding-top: 24px;
  }

  .pt-m-4 {
    padding-top: 32px;
  }

  .pt-m-5 {
    padding-top: 40px;
  }

  .pb-m-0 {
    padding-bottom: 0;
  }

  .pb-m-1 {
    padding-bottom: 8px;
  }

  .pb-m-2 {
    padding-bottom: 16px;
  }

  .pb-m-3 {
    padding-bottom: 24px;
  }

  .pb-m-4 {
    padding-bottom: 32px;
  }

  .pb-m-5 {
    padding-bottom: 40px;
  }

  .px-m-0 {
    padding-inline: 0;
  }

  .px-m-1 {
    padding-inline: 8px;
  }

  .px-m-2 {
    padding-inline: 16px;
  }

  .px-m-3 {
    padding-inline: 24px;
  }

  .px-m-4 {
    padding-inline: 32px;
  }

  .px-m-5 {
    padding-inline: 40px;
  }

  .py-m-0 {
    padding-block: 0;
  }

  .py-m-1 {
    padding-block: 8px;
  }

  .py-m-2 {
    padding-block: 16px;
  }

  .py-m-3 {
    padding-block: 24px;
  }

  .py-m-4 {
    padding-block: 32px;
  }

  .py-m-5 {
    padding-block: 40px;
  }
}

/* Site spacings Margin & Padding */

/* Site borders and radius */
.border-0 {
  border: 0;
}

.border-1 {
  border: 1px solid var(--site-border);
}

.border-2 {
  border: 2px solid var(--site-border);
}

.radius-0 {
  border-radius: 0;
}

.radius-0-5 {
  border-radius: var(--space-0-5);
}

.radius-1 {
  border-radius: var(--space-1);
}

.radius-2 {
  border-radius: var(--space-2);
}

.radius-3 {
  border-radius: var(--space-3);
}

.radius-4 {
  border-radius: var(--space-4);
}

.radius-5 {
  border-radius: var(--space-5);
}

.radius-6 {
  border-radius: var(--space-6);
}

.radius-7 {
  border-radius: var(--space-7);
}

.radius-8 {
  border-radius: var(--space-8);
}

.radius-9 {
  border-radius: var(--space-9);
}

.radius-10 {
  border-radius: var(--space-10);
}

.radius-11 {
  border-radius: var(--space-11);
}

.radius-12 {
  border-radius: var(--space-12);
}

.radius-full {
  border-radius: 100vmax;
}

@media(max-width:767px) {
  .radius-m-0 {
    border-radius: 0;
  }

  .radius-m-0-5 {
    border-radius: var(--space-0-5);
  }

  .radius-m-1 {
    border-radius: var(--space-1);
  }

  .radius-m-2 {
    border-radius: var(--space-2);
  }

  .radius-m-3 {
    border-radius: var(--space-3);
  }

  .radius-m-4 {
    border-radius: var(--space-4);
  }

  .radius-m-5 {
    border-radius: var(--space-5);
  }

  .radius-m-6 {
    border-radius: var(--space-6);
  }

  .radius-m-7 {
    border-radius: var(--space-7);
  }

  .radius-m-8 {
    border-radius: var(--space-8);
  }

  .radius-m-9 {
    border-radius: var(--space-9);
  }

  .radius-m-10 {
    border-radius: var(--space-10);
  }

  .radius-m-11 {
    border-radius: var(--space-11);
  }

  .radius-m-12 {
    border-radius: var(--space-12);
  }
}

/* Site borders and radius */


/* Site Colors */
.bg-primary {
  background: var(--primary-color);
}

.bg-primary-light {
  background: var(--primary-light);
}

.bg-secondary,
.inner-hero.bg-secondary {
  background: var(--secondary-color);
}

.bg-secondary-light {
  background: var(--secondary-light);
}

.bg-blue,
.inner-hero.bg-blue {
  background: var(--blue);
}

.bg-blue-light {
  background: var(--blue-light);
}

.bg-green {
  background: var(--green);
}

.bg-green-light {
  background: var(--green-light);
}

.bg-pink,
.site-hero.inner-hero.bg-pink {
  background: var(--pink);
}

.bg-pink-light {
  background: var(--pink-light);
}

.bg-orange {
  background: var(--orange);
}

.bg-orange-light {
  background: var(--orange-light);
}

.bg-black {
  background: var(--black-color);
}

.bg-white {
  background: var(--white-color);
}

.bg-light {
  background: var(--bg-light);
}

.bg-off-white {
  background: var(--bg-off-white);
}

.bg-yellow {
  background: var(--yellow) !important;
}

.bg-yellow-light {
  background: var(--yellow-light) !important;
}

.bg-firozy {
  background: #4EEDC8 !important
}

.bg-firozy-light {
  background: #DCFDF5 !important
}

.bg-none {
  background: transparent;
}


.text-primary {
  color: var(--primary-color);
}

.text-primary-light {
  color: var(--primary-light);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-secondary-light {
  color: var(--secondary-light);
}

.text-blue {
  color: var(--blue);
}

.text-blue-light {
  color: var(--blue-light);
}

.text-green {
  color: var(--green);
}

.text-green-light {
  color: var(--green-light);
}

.text-pink {
  color: var(--pink);
}

.text-pink-light {
  color: var(--pink-light);
}

.text-orange {
  color: var(--orange);
}

.text-orange-light {
  color: var(--orange-light);
}

.text-black {
  color: var(--black-color);
}

.text-white {
  color: var(--white-color);
}

.text-yellow {
  color: var(--yellow);
}

.text-firozy {
  color: var(--firozy);
}

.text-light {
  color: var(--bg-light);
}

.text-label {
  color: var(--label-color);
}

/* Site Colors */




/* ================== CSS Re-usable STYLE ================== */
.site-common-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.site-common-content .subtitle-text {
  margin-bottom: -15px;
}

.site-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: disc;
  padding-left: 20px;
}

.site-common-content .site-list {
  margin-top: -10px;
}

.site-btn {
  font-size: var(--text-base);
  padding: 16px 36px;
  border-radius: 100vmax;
  transition: all .5s;
  cursor: pointer;
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--primary-color);
  font-weight: 700;
}

.site-btn-outline {
  font-size: var(--text-base);
  padding: 13px 36px;
  border-radius: 100vmax;
  transition: all .4s;
  cursor: pointer;
  font-weight: 700;
  border: 3px solid var(--primary-color);
  color: var(--primary-color);
}

.site-big-cta {
  font-size: var(--text-base);
  padding: 20px 40px;
  border-radius: var(--space-2);
  transition: all .4s;
  display: inline-block;
  margin-top: 30px;
  cursor: pointer;
  font-weight: 500
}

.letter-sapcing {
  letter-spacing: var(--letter-spacing);
}

.site-btn:hover,
.site-btn-text:hover,
.site-btn-outline:hover {
  transform: translateY(-3px);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}


.site-card-wrap {
  display: flex;
  gap: 16px;
}

.site-card {
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-card .site-common-content {
  gap: 12px;
}

.site-card .site-common-content h3 {
  margin-bottom: -5px;
  line-height: 1.2;
}

.site-card .card-img {
  border-radius: 12px;
  width: 100%;
}

.site-card .card-btn {
  display: flex;
  gap: 5px;
  border-bottom: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--heading-font);
  display: inline-flex;
  align-self: flex-start;
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.site-card:has(.card-btn) {
  padding-bottom: 100px;
}

.site-tag {
  display: inline-flex;
  border: 1px solid var(--primary-color);
  border-radius: 100vmax;
  padding: 6px 24px;
  align-self: flex-start;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--heading-font);
  color: var(--primary-color);
}

.text-center .site-tag,
.text-center .site-btn {
  align-self: center;
}

/* Common CTA section Style */
.site-cta-section {
  padding-block: 20px;
}

/* .site-cta-section h2{font-size: 56px;font-weight: 400; color: var(--primary-color);line-height: 1.1;}
.site-cta-section p{ color: var(--primary-color);} */
.cta-wrap {
  display: flex;
  align-items: center;
}

/* Common CTA section Style */

/* Video player style */
.custom-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.custom-video-wrapper video {
  width: 100%;
  display: block;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  overflow: hidden;
}

.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  cursor: pointer;
  z-index: 5;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Video player style */

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 14px;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid #E9E9E9;
  background: #FFFFFF;
  color: var(--green-dark-color);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: all 0.25s ease;
  gap: 5px;
}

.page-number {
  width: 56px;
  padding: 0;
}

.page-number.active {
  background: var(--purple-dark-color);
  color: var(--white-color);
  border-color: transparent;
}

.page-btn:hover:not(.active) {
  border-color: var(--purple-dark-color);
  color: var(--purple-dark-color);
}

.icon {
  font-size: 22px;
  line-height: 1;
}

/* Pagination */

/* ================== CSS Re-usable STYLE ================== */


/* ================== Header Style ================== */
.site-top-bar {
  background: url(../images/top-bar.png) repeat-x;
  padding: 7px 10px 14px 10px;
}

.site-top-bar span {
  padding: 4px 16px;
}

.site-top-bar p {
  font-weight: bold;
  font-size: 16px;
}

.top-bar-btn {
  display: flex;
  border-bottom: 2px solid var(--white-color);
}

header {
  display: flex;
  align-items: center;
  padding-block: 20px;
  width: 100%;
  top: 35px;
  left: 0;
  background: var(--white-color);
}

.header-wrap {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-search {
  display: flex;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.site-menu>li {
  display: flex;
  align-items: center;
  opacity: 1 !important;
  position: relative;
}

.site-menu>li a {
  color: var(--black-color);
  font-size: var(--text-base);
  font-family: var(--font-main);
  font-weight: 600;
  padding-block: 10px;
  display: inline-block;
  transition: all .4s;
  letter-spacing: 0;
}

.site-menu>li:hover>a {
  color: var(--primary-color);
}

.site-menu>li:has(.site-sub-menu)::after {
  --menudrop-space: 20px;
  content: "\ea4e";
  font-family: 'remixicon';
  width: var(--menudrop-space);
  height: var(--menudrop-space);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  transition: all .4s;
  color: var(--white-color);
  transition: all .4s;
}

.site-menu>li:has(.site-sub-menu):hover:after {
  color: var(--white-color);
}

.site-logo img {
  display: block;
}

header .site-container,
header .site-container .header-wrap,
nav,
nav ul,
nav ul li {
  height: 100%;
}

nav {
  display: flex;
  align-items: center;
  margin-inline: auto;
}

.site-sub-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black-color);
  width: 130px;
  top: 40px;
  display: flex;
  flex-direction: column;
  padding: 2px 10px;
  opacity: 0;
  visibility: hidden;
  transition: all .4s;
  z-index: 9;
  height: initial;
  border-radius: 6px;
}

.site-sub-menu li a {
  color: var(--white-color);
  font-size: 14px;
  transition: all .4s;
  display: block;
  padding-block: 4px;
}

.site-sub-menu li a:hover {
  background: rgba(0, 0, 0, .10);
}

.site-menu li:hover .site-sub-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  display: none;
}

.mobile-menu-close {
  display: none;
}

/* ================== Header Style ================== */


/* ================== Hero Style ================== */
.site-hero {
  background: var(--bg-off-white);
  position: relative;
  padding-bottom: 150px;
}

.hero-bottom {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.hero-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5%;
}

.hero-left {
  position: absolute;
  left: -30px;
  bottom: -10px;
}

.hero-right {
  position: absolute;
  right: 6%;
  bottom: 23%;
  border-radius: 16px;
  width: 250px;
}

.hero-left-mid {
  position: absolute;
  left: 7%;
  top: 8%;
}

.hero-left-2 {
  position: absolute;
  left: 18%;
  bottom: 23%;
  border-radius: 10px;
  width: 185px;
}

.site-hero .site-common-content {
  max-width: 620px;
  margin: auto;
}

.site-hero .body-text {
  max-width: 490px;
  margin: auto;
}

.hero-tag {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--black-color);
  padding: 15px 30px;
  border-radius: 100vmax;
  background: var(--white-color);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .15);
  align-self: flex-start;
}

.hero-tag span {
  color: var(--secondary-color);
}

.main-hero .site-container {
  position: relative;
}

.hero-floating-icon {
  position: absolute;
}

.hand-icon {
  top: 15%;
  right: -5%;
  transform: translatey(0px);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-20px);
  }

  100% {
    transform: translatey(0px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(-20deg);
  }

  100% {
    transform: rotate(0);
  }
}

.like-thumb-icon {
  bottom: 30%;
  left: -5%;
  transform: rotate(0);
  animation: rotate 4s ease-in-out infinite;
}

.site-hero .site-title-h1 {
  line-height: 1.2;
}

.site-hero span.text-primary {
  position: relative;
}

.site-hero span.text-primary img {
  position: absolute;
  left: 46%;
  top: 63%;
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 1;
}

.site-hero span.text-primary label {
  position: relative;
  z-index: 2;
}

.site-hero span.text-secondary {
  position: relative;
}

.site-hero span.text-secondary img {
  position: absolute;
  bottom: -10px;
  right: 0;
}

/* ================== Hero Style ================== */


/* Web pages style */
.icon-card {
  padding: 12px;
  gap: 12px;
}

.icon-wrap {
  width: 64px;
  height: 64px;
  min-width: 64px;
}

.helping-kids {
  position: relative;
}

.helping-kids .site-common-content {
  width: 60%;
}

.helping-kids-media {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
}

/* Web pages style */


/* ================== Footer Style ================== */

/* ================== Footer Style ================== */





/* ── Categories Auto Scroll ── */
.categories-scroll-section {
  width: 100%;
  overflow: hidden;
  background: #fefaee;
  padding: var(--space-8) 0;
}

.categories-track-wrapper {
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.categories-track-wrapper:active {
  cursor: grabbing;
}

.categories-track {
  display: flex;
  gap: var(--space-2);
  width: max-content;
  padding: var(--space-2) var(--space-4);
  will-change: transform;
  position: relative;
  z-index: 2;
}

/* ── Card ── */
.category-card {
  flex-shrink: 0;
  width: 300px;
  background: var(--bg-off-white);
  border-radius: 16px;
  overflow: hidden;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.card-image img {
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease;
}

.category-card:hover .card-image img {
  transform: scale(1.04);
}

.card-label {
  font-size: var(--h3);
  color: var(--black-color);
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .category-card {
    width: 240px;
  }

  .card-label {
    font-size: 15px;
  }
}

.style-art-graphic {
  position: absolute;
  right: 3%;
  top: -35px;
  z-index: 1;
}

.diff-style-arts {
  position: relative;
}

.how-it-work {
  position: relative;
}

.how-work-graphic {
  position: absolute;
  bottom: 30px;
  left: 3vw;
  width: 400px;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-work-graphic video{width: 650px;}

.steps-wrap {
  display: flex;
  gap: 80px;
}

.steps-wrap .section-head {
  min-width: 260px;
}

.steps-grid {
  position: relative;
}

.arrow-top,
.arrow-bot {
  position: absolute;
}

.arrow-top {
  top: -80px;
  left: 15%;
}

.arrow-bot {
  bottom: -80px;
  right: 15%;
}

.access-wrap {
  display: flex;
  gap: 140px;
}

.access-wrap .site-common-content {
  max-width: 380px;
}

.testimonial-card {
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 12px;
  flex-direction: column;
}

.testimonial-card .testimonial-media {
  border-radius: 12px;
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-bottom: 8px;
}

.qoute-icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.site-footer {
  background: #171717;
  padding-top: 80px;
  color: #FAFAFA;
}

.site-footer a {
  color: #FAFAFA;
}

.footer-bottom {
  border-top: 1px solid var(--white-color);
  padding-block: 10px;
  margin-top: 40px;
}

.footer-gallary img {
  border-radius: 4px;
}

.cta-border-top {
  width: 100%;
  display: block;
  margin-bottom: -2px;
}

.cta-border-bot {
  width: 100%;
  display: block;
  margin-bottom: -20px;
}





.sq,
.why-parents-love,
.why-parents-love .section-head {
  position: relative;
}

.sq img {
  z-index: 1;
}

.sq label {
  z-index: 2;
  position: relative;
}

.sg1 {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.why-parents-love .section-head>img {
  position: absolute;
  top: -80px;
  left: 40px;
  width: 280px;
  height: auto;
}

.sq1 img {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.sq2 img {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.sq3 img {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.site-section:has(.diff-style-arts) {
  overflow: hidden;
}

.in-hero-left,
.in-hero-right {
  position: absolute;
  bottom: -4%;
}

.in-hero-left {
  left: -40px;
}

.in-hero-right {
  right: -40px;
}

.site-hero.inner-hero.bg-yellow {
  padding-bottom: 100px;
}

.zig-zag {
  position: relative;
}

.about-graphic {
  position: absolute;
}

.ag1 {
  top: -10%;
  right: -12%;
}

.ag2 {
  bottom: -15%;
  left: -12%;
}

.ag3 {
  bottom: -5%;
  right: -8%;
}

.t-media img {
  border-radius: 12px;
  display: block;
}

.trail-card {
  padding: 12px;
  border-radius: 12px;
}

.trail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trail-sidebar .trail-card {
  flex-direction: row !important;
  align-items: center;
}

.trail-sidebar .trail-card .t-media {
  min-width: 116px;
  max-width: 116px;
}

.free-trail-wrap {
  display: flex;
  gap: 20px;
}

.free-trail-wrap>.trail-card {
  flex: 8;
}

.free-trail-wrap .trail-sidebar {
  flex: 5;
}

.free-trail-wrap .trail-sidebar .trail-card {
  flex: initial;
}

.trail-form, .trail-form p {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.trail-form input[type="text"], .trail-form input[type="email"] {
  width: 366px;
  height: 60px;
  background: var(--white-color);
  border-radius: 100vmax;
  border: 1px solid var(--orange);
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 5px 5px 0 var(--orange);
}

.trail-form input[type="submit"] {
  margin-left: 8px;
  width: 200px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 100vmax;
  color: var(--white-color);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.trail-g {
  position: absolute;
  left: 0;
  bottom: -40px;
}

.site-section:has(.free-trail-wrap) {
  overflow: hidden;
}

.trail-mob-slider .swiper-wrapper {
  padding-bottom: 30px;
}

.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0px;
}

.swiper-pagination-bullet-active {
  background: var(--orange) !important;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
}

.contact-wrap {
  display: flex;
  gap: 80px;
  align-items: center;
}

.insta-grid {
  display: flex;
  gap: 6px;
}

.insta-grid img {
  border-radius: 12px;
}

.response-time {
  background: var(--green-light);
  border-radius: 16px;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: bold;
  gap: 6px;
}

.r-left {
  font-size: 28px;
}

.projects-grid .category-card {
  width: 100%;
}

.sup-g {
  position: absolute;
  bottom: 0;
  right: 0;
}

.why-parents-love:has(.projects-grid) .sg1 {
  top: 20%;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-date {
  font-size: 16px;
  color: #A3A3A3;
}

.blog-title {
  font-size: 24px;
  font-weight: bold;
}

.blog-link {
  font-weight: bold;
  border-bottom: 2px solid var(--primary-color);
  align-self: flex-start;
  margin-top: 8px;
}

.w-full {
  width: 100%;
}

.blog-feature {
  border-radius: 24px;
}

.why-parents-love.blog-details .sg1 {
  top: 100px;
  transform: initial;
}

.why-parents-love.blog-details .sup-g {
  width: 130px;
  bottom: auto;
  top: 48%
}

.blog-details .section-head {
  max-width: 920px;
}

.login-form {
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--site-border);
  background: var(--white-color);
}

.login-form input {
  width: 100%;
  height: 60px;
  border-radius: 100vmax;
  border: 1px solid var(--site-border);
  padding: 16px 20px;
  font-size: 18px;
}

.form-btn {
  border-radius: 100vmax;
  text-align: center;
  justify-content: center;
  color: var(--white-color);
  font-weight: bold;
  font-size: 18px;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.form-divider {
  text-align: center;
  margin-block: 15px;
  position: relative;
}

.form-divider::before,
.form-divider::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  height: 1px;
  background: var(--site-border-dark);
  content: "";
}

.form-divider::before {
  left: 0;
}

.form-divider::after {
  right: 0;
}

.login-left {
  position: absolute;
  left: 0;
  bottom: 60px;
}

.zig-wrapper:has(.login-form) .zig-media {
  position: relative;
}

.login-right-top {
  position: absolute;
  top: -104px;
  left: -70px;
}

.login-right-bot {
  position: absolute;
  right: -35px;
  bottom: -75px;
}

.payment-icon {
  max-width: 120px;
  margin: auto;
}

.membership-section {
  position: relative;
}

.membership-section .sg1 {
  top: 100px;
  transform: initial;
}

.mem1 {
  position: absolute;
  bottom: 40px;
  left: -20px;
}

.mem2 {
  position: absolute;
  bottom: 40px;
  right: 20px;
}

.plan-list {
  list-style-type: disc;
  padding-left: 24px;
}

.plan-price {
  color: var(--site-border-dark);
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: 18px;
}

.plan-card.monthly {
  border: 1px solid var(--secondary-color);
  box-shadow: 5px 5px 0 var(--secondary-color);
}

.plan-card.yearly {
  border: 2px solid var(--yellow);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .20);
  position: relative;
}

.plan-card.yearly .badge {
  background: var(--yellow);
  border-radius: 100vmax;
  padding: 9px 20px;
  position: absolute;
  right: 20px;
  top: -25px;
}

.plan-card.onetime {
  border: 1px solid var(--green);
  box-shadow: 5px 5px 0 var(--green);
}

.onetime .site-btn {
  margin-top: auto;
}

.plan-description {
  border: 1px solid #000;
}

.plan-icon-list li {
  display: flex;
  color: var(--black-color);
  font-size: var(--text-base);
  gap: 8px;
  align-items: flex-start;
}

.plan-icon-list li img {
  max-width: 30px;
  height: auto;
  display: block;
  margin-top: 2px;
}

.mpleft {
  position: absolute;
  left: 0;
  top: 100px;
}

.mpright {
  position: absolute;
  right: -40px;
  bottom: 20%;
}

.mem-right {
  position: absolute;
  right: -70px;
  bottom: 200px;
}

.primary-card {
  border: 1px solid var(--primary-color);
  box-shadow: 5px 5px 0 var(--primary-color);
}

.pd1 {
  position: absolute;
  right: 0;
  top: 0;
}

.pd2 {
  position: absolute;
  left: 0;
  top: 18%;
}

.pd3 {
  position: absolute;
  right: 0;
  bottom: 32%;
}

.filter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.custom-select {
  position: relative;
  width: 180px;
}

.custom-select select {
  width: 100%;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  color: var(--black-color);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  outline: none;
}

.custom-select::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  pointer-events: none;
  color: #262626;
  background: url(../images/dropdown.svg) no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
}


.products-wrap {
  display: flex;
  gap: var(--container-lg)var(--space-5);
  align-items: flex-start;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-card.secondary {
  background: var(--secondary-light);
}

.product-card.green {
  background: var(--green-light);
}

.product-card.orange {
  background: var(--orange-light);
}

.product-card.pink {
  background: var(--pink-light);
}

.product-card.yellow {
  background: var(--yellow-light);
}

.product-card.blue {
  background: var(--blue-light);
}


/* ── Filter Sidebar ── */
.filter-sidebar {
  width: 100%;
  height: 100%;
  max-width: 270px;
  background: var(--bg-light);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.filter-group {
  padding: var(--space-3) 0;
}

.filter-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-2);
  cursor: pointer;
}

.filter-group__title {
  font-weight: bold;
  font-size: var(--h3);
  color: var(--black-color);
  line-height: 1.2;
}

.filter-group__toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.filter-group__toggle[aria-expanded="false"] {
  transform: rotate(180deg);
}

.filter-group__body {
  overflow: hidden;
  transition: height 0.35s ease;
}

.filter-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
}

.filter-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--site-border);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  background: var(--bg-light);
}

.filter-checkbox input[type="checkbox"]:checked+.checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.filter-checkbox input[type="checkbox"]:checked+.checkmark::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid var(--bg-light);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.filter-checkbox__label {
  font-weight: 400;
  font-size: 17px;
  color: var(--black-color);
}

.filter-divider {
  width: 100%;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.filter-pill {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--site-border);
  background: var(--bg-light);
  font-weight: 400;
  font-size: 16px;
  color: #888;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.filter-pill:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-pill--active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-light);
  font-weight: 500;
}

.filter-pill--active:hover {
  color: var(--white-color);
}


.testimonial-info {
  display: flex;
  gap: 12px;
  align-items: center;
  align-self: flex-start;
  position: relative;
  width: 100%;
  padding-right: 50px;
}

.supply-cta {
  border-radius: 16px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.supply-cta h2, .home-cta h2 {
  max-width: 600px;
}

.supply-cta .site-btn, .home-cta .site-btn {
  background: var(--white-color);
  color: var(--black-color);
}

.why-parents-love:has(.supply-cta) .sg1 {
  top: 100px;
  transform: none;
}



/* ── Page Loader ── */
.site-loader {
  position: fixed;
  inset: 0;
  background: #fefaee;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  width: 140px;
  opacity: 0;
  transform: translateY(12px);
}

.loader-bar {
  width: 160px;
  height: 4px;
  background: #e8e0d0;
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: #fa4e26;
  border-radius: 99px;
}

/* ── Page Transition Overlay ── */
.page-overlay {
  position: fixed;
  inset: 0;
  background: #fefaee;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: #fefaee;
  z-index: 9998;
  opacity: 1;
  pointer-events: none;
}

.site-button {
  pointer-events: auto;
  cursor: pointer;
  background: var(--black-color);
  border: none;
  padding: 16px 36px;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  position: relative;
  display: inline-block;
  border-radius: 100vmax;
  overflow: hidden;
  color: var(--white-color);
}

.site-button.site-btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.site-button.site-btn-outline.button--hyperion:hover {
  background: var(--primary-color);
}

.site-button.site-btn-outline.button--hyperion:hover span {
  color: var(--white-color);
}

.site-button::before,
.site-button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.button--hyperion {
  border-radius: 100vmax;
}

.button--hyperion span {
  display: block;
  position: relative;
}

.button--hyperion>span {
  overflow: hidden;
}

.button--hyperion>span>span {
  overflow: hidden;
  /* mix-blend-mode: difference; */
}

.button--hyperion:hover>span>span {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

@keyframes MoveUpInitial {
  to {
    transform: translate3d(0, -105%, 0);
  }
}

@keyframes MoveUpEnd {
  from {
    transform: translate3d(0, 100%, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.button--hyperion.bg-primary::before {
  content: '';
  background: var(--primary-color);
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
  transform-origin: 100% 50%;
}

.button--hyperion:hover::before {
  transform: scale3d(0, 1, 1);
  transform-origin: 0% 50%;
}



/* ── Popup Overlay ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* ── Modal Box ── */
.popup-modal {
  background: var(--white-color);
  border-radius: 24px;
  padding: 40px;
  max-width: 1080px;
  width: 100%;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}

.popup-modal .site-title-h2 {
  max-width: 340px;
}

.popup-modal .trail-form input[type="submit"] {
  margin: 0;
  padding-inline: 24px;
}

.popup-modal .trail-form input[type="text"] {
  width: 100%;
  max-width: 335px;
}

.trail-form br,
span.wpcf7-spinner {
  display: none;
}



.popup-overlay.is-open .popup-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Close Button ── */
.popup-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #eee;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.2s ease, border-color 0.2s ease;
  line-height: 1;
  z-index: 99;
}

.popup-close:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

/* ── Inner Layout ── */
.popup-inner {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  justify-content: space-between;
}

/* ── Left Content ── */
.popup-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.popup-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #000;
  line-height: 1.2;
}

.popup-form {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.popup-form input[type="email"] {
  flex: 1;
  min-width: 180px;
  padding: 14px var(--space-4);
  border: 2px solid #f0c84a;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #333;
  outline: none;
  background: #fff;
}

.popup-form input[type="email"]::placeholder {
  color: #aaa;
}

.popup-form input[type="email"]:focus {
  border-color: #fa4e26;
}

.popup-btn {
  padding: 14px var(--space-6);
  background: #fa4e26;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.popup-btn:hover {
  background: #e03d17;
  transform: translateY(-1px);
}

/* ── Right Media ── */
.popup-media {
  width: 280px;
  flex-shrink: 0;
  position: relative;
}

.popup-media img:first-child {
  width: 100%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.popup-blob {
  position: absolute !important;
  bottom: -10px;
  right: -20px;
  width: 120px !important;
  border-radius: 0 !important;
  z-index: 0;
}


.workshop-head {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.workshop-info-card {
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--orange);
  box-shadow: 5px 5px 0 var(--orange);
  width: 350px;
}

.workshop-slider {
  flex: 1;
  padding-bottom: 20px !important;
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.workshop-list li {
  display: flex;
  align-items: center;
  color: var(--black-color);
  font-size: var(--text-base);
  gap: 6px;
}

.workshop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workshop-card-footer .site-title-h3 {
  font-family: var(--heading-font);
}

.workshop-info-card .site-divider {
  background: #171717;
  margin: 0;
}

.workshop-detail-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.workshop-row {
  display: flex;
  gap: 50px;
  align-items: center;
}

.ws-project-img {
  flex-shrink: 0;
}

.ws-project-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.workshop-row:nth-child(even) {
  flex-direction: row-reverse;
}

.workshop-projects {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ws-project-img img {
  display: block;
}

.faq-card {
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card ol {
  padding-left: 30px;
}

.faq-card ol li {
  color: var(--black-color);
}

.faq-card .site-title-h3 {
  font-family: var(--heading-font);
}

.faq-card.secondary {
  background: var(--secondary-light);
  border: 2px solid var(--secondary-color);
  box-shadow: 6px 6px 0 var(--secondary-color);
}

.faq-card.primary {
  background: var(--primary-light);
  border: 2px solid var(--primary-color);
  box-shadow: 6px 6px 0 var(--primary-color);
}

.faq-card.orange {
  background: var(--orange-light);
  border: 2px solid var(--orange);
  box-shadow: 6px 6px 0 var(--orange);
}

.faq-page .sg1 {
  top: 100px;
  transform: none;
}



/* ── Mobile ── */
@media (max-width: 640px) {
  .popup-modal {
    padding: 30px;
  }

  .popup-inner {
    flex-direction: column-reverse;
    gap: var(--space-4);
  }

  .popup-media {
    width: 200px;
  }

  .popup-title {
    font-size: 26px;
  }

  .popup-form {
    flex-direction: column;
  }

  .popup-btn {
    width: 100%;
    text-align: center;
  }
}


.woocommerce form .form-row label,
.checkout-wrapper.flex-row.gap-5,
.woocommerce {
  color: var(--black-color);
}

.order-summary-wrapper.flex-3 .site-list,
.promo-code-wrapper,
.promo-code-wrapper,
nav.woocommerce-breadcrumb {
  display: none;
}

p#wc-stripe-express-checkout-button-separator {
  margin: 0 !important;
}

p#billing_first_name_field,
p#billing_last_name_field {
  width: 100%;
}

.checkout-confirm.text-center {
  margin-bottom: 60px;
}

/* div#wc-stripe-express-checkout-element, p#wc-stripe-express-checkout-button-separator{display: none;} */

/* Menu style code */
.site-menu>li {
  position: relative;
}

.site-menu>li a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white-color);
  padding: 10px;
  border-radius: 10px;
  z-index: 99;
  height: auto;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
}

.header-wrap {
  transform: initial !important;
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu li a {
  padding: 10px;
  transition: all .5s;
}

.dropdown-menu li a:hover {
  background: #f7f7f7;
  color: var(--primary-color);
}

.site-menu>li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* Menu style code */

.video-card {
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  /* adjust as needed */
  padding: 0 !important;
  display: flex;
}

.plan-video {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.wpcf7 form .wpcf7-response-output {
  color: black;
}

.wpcf7-not-valid-tip {
  margin-top: 4px;
}


.supply-wrapper {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

/* Left Portrait Video */
.supply-video-card {
  flex: 0 0 280px;
  /* Change width as needed */
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 24px;
}

.supply-plan-video {
  width: 100%;
  height: 100%;
  display: block;
  /* object-fit: cover; */
}

/* Right CTA */
.supply-cta {
  flex: 1;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  text-align: center;
}



.wpcf7-not-valid-tip {
  position: absolute;
}

.wpcf7-response-output {
  display: none;
}

.trail-sidebar .trail-card {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 200ms ease;
}

.trail-sidebar .trail-card.is-active {
  border-color: currentColor;
}

.trail-sidebar .trail-card.bg-secondary-light.is-active {
  border-color: #8B5CF6;
  box-shadow: 5px 5px #8B5CF6;
}

.trail-sidebar .trail-card.bg-green-light.is-active {
  border-color: #7CC576;
  box-shadow: 5px 5px #7CC576;
}

.trail-sidebar .trail-card.bg-orange-light.is-active {
  border-color: #F5A25D;
  box-shadow: 5px 5px #F5A25D;
}

.trail-sidebar .trail-card.bg-pink-light.is-active {
  border-color: #F17EB8;
  box-shadow: 5px 5px #F17EB8;
}


.project-form {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 18px;
  align-items: stretch;
}

/*============================
CARD
=============================*/

.supply-card {
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-supplies {
  margin-bottom: 16px;
}

.supply-card.secondary {
  background: var(--secondary-light);
  border: 2px solid var(--secondary-color);
  box-shadow: 6px 6px 0 var(--secondary-color);
}

.supply-card.primary {
  background: var(--primary-light);
  border: 2px solid var(--primary-color);
  box-shadow: 6px 6px 0 var(--primary-color);
}

/* .supply-card {
        border: 3px solid var(--primary-color);
        background: #FDF0F0;
        border-radius: 18px;
        padding: 22px;
        min-height: 188px;
    } */

/* .tool-card {
        border-color: var(--secondary-color);
        background: #F1E9FF;
    } */

/*============================
LEGEND
=============================*/

.supply-card legend {
  padding: 0 8px 0 0;
  margin-bottom: 18px;
  font-size: 31px;
  font-weight: 700;
  color: #2d2d2d;
}

/*============================
GRID
=============================*/

.supplies-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 14px;
}

.tool-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 14px;
}

/*============================
CHECKBOX
=============================*/

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  color: #2d2d2d;
  font-weight: 700;
  pointer-events: none;
}

.check-item input {
  appearance: none;
  -webkit-appearance: none;

  width: 16px;
  height: 16px;

  border: 2px solid var(--primary-color);
  border-radius: 3px;
  background: #fff;

  flex-shrink: 0;
  margin-top: 3px;

  cursor: pointer;
  position: relative;

  transition: .2s;
}

.check-item input:hover {
  background: #fff7f7;
}

.check-item input:checked {
  background: var(--primary-color);
}

.check-item input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tool-card .check-item input {
  border-color: var(--secondary-color);
}

.tool-card .check-item input:checked {
  background: var(--secondary-color);
}

/* ===========================
   Supply Video Section
=========================== */

.supply-video-section {
  width: 100%;
}

.supply-video-wrapper {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;

  aspect-ratio: 1080 / 606;

  border-radius: 24px;
  overflow: hidden;

  background: #000;
}

.supply-video {
  width: 100%;
  height: 100%;
  display: block;
  /* object-fit: cover; */
}

.home-testimonial-slider{
    width:100%;
    overflow:hidden;
    padding-inline: 20px !important;
    margin-top: 40px;
}

.home-testimonial-slider .swiper-slide{
    height:auto;
}

.home-testimonial-slider .testimonial-card{
    height:100%;
}

.home-cta {
    display: flex;
    padding: 24px 40px;
    border-radius: 16px;
    align-items: center;
    justify-content: space-between;
}

.home-cta {
  padding: 24px 40px;
  border-radius: 16px;
}



.video-trail-card{
    border:2px solid transparent;
    border-radius:24px;
    overflow:hidden;
    transition:.3s ease;
    padding: 8px;
}

.video-trail-player{
    width:100%;
    display:block;
    border-radius:18px;
}

.video-trail-card .video-trail-player{
    height: 220px;
    object-fit: cover;
}

/* Purple */
.video-trail-card.vt-purple.is-active{
    border-color:#8B5CF6;
    box-shadow:5px 5px #8B5CF6;
}

/* Green */
.video-trail-card.vt-green.is-active{
    border-color:#7CC576;
    box-shadow:5px 5px #7CC576;
}

/* Orange */
.video-trail-card.vt-orange.is-active{
    border-color:#F5A25D;
    box-shadow:5px 5px #F5A25D;
}

/* Pink (future use) */
.video-trail-card.vt-pink.is-active{
    border-color:#F17EB8;
    box-shadow:5px 5px #F17EB8;
}

.video-trail-card p {
  font-weight: 700;
}

.swiper.workshop-slider .swiper-wrapper {
  padding-bottom: 20px !important;
}

.swiper.workshop-slider .swiper-wrapper img {
  width: 100%;
}

.swiper.workshop-slider .swiper-wrapper 

.workshop-row h2.site-title-h2.text-black, .ws-project-content h2 {
  font-size: 24px;
}
/* 
.workshop-card-footer.mt-3 {
  margin-top: 24px;
} */


.site-btn, .payment-icon {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.mob-arrow-top, .mob-arrow-bttm {
  position: absolute;
}

.mob-arrow-top {
  top: 20px;
}

.mob-arrow-bttm {
  top: 40px;
}

.account-dropdown {
  position: relative;
}

.account-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 10px;
  transition: .3s;
}

.account-toggle:hover {
  background: rgba(255, 255, 255, .08);
}

.account-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-user i {
  font-size: var(--text-base);
}

.account-arrow {
  transition: .3s;
  font-size: var(--text-base);
}

.account-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: max-content;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s;
  z-index: 999;
}

.account-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: #222;
  transition: .25s;
  font-weight: 600;
  font-size: 14px;
}

.account-menu a:hover {
  background: #f5f5f5;
  color: var(--primary-color);
}

.account-menu i {
  font-size: 18px;
}

.site-menu>li.for-mobile {
  display: none !important;
}

.products-cards .product-card img {
  height: 130px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.checkout-section .flex-row {
  display: flex;
}

.woocommerce-message {
    border-top-color: var(--primary-color);
}

.woocommerce-info {
    border-top-color: var(--primary-color);
}

.woocommerce-info::before, a.showlogin {
    color: var(--primary-color);
}

.checkbox input, input#rememberme {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #D4B483;
    background: #F9F2E8;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

 .checkbox input:checked,
 input#rememberme:checked {
     background-color: var(--primary-color);
     border: 2px solid var(--primary-color)
 }

 .filter-title {
     color: var(--primary-color);
 }

 .checkbox input:checked::after,
 input#rememberme:checked::after {
     content: '';
     position: absolute;
     top: 2px;
     left: 5px;
     width: 4px;
     height: 9px;
     border: solid var(--white-color);
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
 }

/* .checkout-section .site-container {
  max-width: 100%;
} */




.checkout-section .checkout-form-col {
  & {

    .select2-selection.select2-selection--single {
      display: block;
      width: 100% !important;
      height: var(--inpt-field-ht);
      padding: 12px 16px;
      font-family: var(--font-main);
      color: var(--black-color);
      font-size: var(--text-base);
      outline: none;
      border-radius: 8px;
      background-color: #F6F0E6 !important;
      background: #F6F0E6 !important;
    }

    .select2-selection__rendered {
      padding: initial !important;
      border: none !important;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    .login-alert {
      display: block;
      width: 100%;
      background: #F6F0E6;
      font-size: var(--text-base);
      font-family: var(--heading-font);
      color: var(--black-color) !important;
      height: 56px;
      padding: 16px 24px;
      border-radius: 8px;
      border: none !important;
    }

    input::placeholder {
      font-size: var(--text-base);
      font-family: var(--font-main);
      color: var(--primary-color);
    }

    input[type="submit"] {
      width: 100%;
      margin-top: 24px;
    }

    .login-alert {
      margin-bottom: 8px;
    }
  }
}

.order-summary-col .visual-product+.visual-product {
  border-top: 1px solid var(--black-color);
  margin-top: 16px;
  padding-top: 16px;
}

.cart-section .order-summary-col {
  position: sticky;
  top: 0;
  left: 0;
}

.checkout-section .instructions {
  padding-top: 24px;
  border-top: 1px solid var(--primary-color);
  margin-top: 24px;
}

.checkout-section .instructions {
    padding-top: 24px;
    border-top: 1px solid var(--primary-color);
    margin-top: 24px;
}

.promo-code-wrapper input[type="text"], .promo-code-wrapper input[type="text"]::placeholder {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-size: var(--text-base);
}

.promo-code-wrapper input[type="text"] {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--primary-color);
    height: 63px;
    background: none;
}

.cart-title, .checkout-section h3 {
    font-size: 28px;
    font-family: var(--heading-font) !important;
    font-weight: 500 !important;
    line-height: 1.2;
    text-transform: capitalize;
    /* text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25); */
    color: var(--primary-color) !important;
}

.woocommerce-shipping-fields span {
    color: var(--primary-color);
}

.woocommerce form .form-row {
    padding: 3px;
    margin: 0 0 6px;
}

.checkout-section .form-row label, :where(.woocommerce) .select2-container .select2-selection--single .select2-selection__rendered{
 color: var(--black-color);
}

.checkout-section .checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    cursor: pointer;
    font-size: var(--text-base);
    color: var(--black-color);
    margin-bottom: var(--space-1);
}

.shipping_address .form-field {
    margin-bottom: 16px;
}


.edit-btn {
    align-self: flex-end;
    font-size: 14px;
    color: var(--black-color);
    border-bottom: 3px solid var(--black-color);
    font-weight: 500;
    text-transform: uppercase;
}

.visual-product img {
    width: 110px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.order-summary-col .visual-product+.visual-product {
    border-top: 1px solid var(--primary-color);
    margin-top: 16px;
    padding-top: 16px;
}

.product-price-window, .order-summary-col .site-list {
    font-size: var(--text-base);
}

.woocommerce-Price-amount.amount {
  color: var(--primary-color) !important;
}

.order-summary-col .tagline h4 {
    color: var(--primary-color);
}

.order-divider {
    height: 1px;
    width: 100%;
    background: var(--primary-color);
}

.product-price-window {
    border-top: 1px solid var(--primary-color);
    margin-top: 32px;
    padding-top: 18px;
}

div#wc-stripe-payment-method-instructions-card {
    margin-block: 10px;
}

div#wc-stripe-payment-method-instructions-card a{
  color: var(--primary-color);
}

.visual-product-detail .body-text {
  display: none;
}

.visual-product .w-100 {
  width: 100%;
}

.woocommerce-form-login-toggle{
  display: none;
}

.p-PaymentAccordionButtonView, .woocommerce-message::before {
  color: var(--primary-color) !important;
}
.p-PaymentAccordionButtonIcon {
    fill: var(--primary-color) !important;
}

a.button.wc-forward {
background: var(--primary-color) !important;
color: var(--white-color) !important;
}

.woocommerce form .form-row .input-checkbox {
    display: inline-block;
}
/* Desktop Hover */
@media(min-width:992px) {

  .account-dropdown:hover .account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .account-dropdown:hover .account-arrow {
    transform: rotate(180deg);
  }

}

/* Mobile */

@media(max-width:991px) {



  .account-dropdown {
    width: 100%;
  }

  .account-toggle {
    width: max-content;
    justify-content: space-between;
    padding: 020px 0;
  }

  .account-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    border-radius: 0;
    transition: max-height .35s ease;
  }

  .account-dropdown.active .account-menu {
    max-height: 200px;
  }

  .account-dropdown.active .account-arrow {
    transform: rotate(180deg);
  }

}


.free-trail-img img{height: initial !important;}

.testimonial-card .body-text.text-black{padding-right: 50px;}
.workshop-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nivi-signature{width: 120px;}
.zig-wrapper>.zig-zag:has(.nivi-signature){flex-direction: row !important;margin-top: -60px;}
.creative-text{font-family: var(--heading-font) !important;font-weight: 600;}
.contact-insta img{width: 45px;height: 45px;}
.workshop-cover{height: 320px; object-fit: cover;width: 100%;}
.sp-top-left{position: absolute;top: 20px;left: 3vw;}
.sp-bottom{position: absolute;bottom: -50px;right: 3vw;}
.site-cta-section, .cta-border-top{position: relative;z-index: 9;}



/* WooCommerce Reset Password — Nivi's Art Studio */

.woocommerce-ResetPassword.lost_reset_password {
  max-width: 480px;
  margin: var(--space-8, 4rem) auto;
  padding: var(--space-6, 3rem) var(--space-5, 2.5rem);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.woocommerce-ResetPassword.lost_reset_password > p:first-child {
  font-size: 1rem;
  color: #333;
  margin-bottom: var(--space-5, 2.5rem);
}

/* kill WC's float-based half-width columns, stack instead */
.woocommerce-ResetPassword .woocommerce-form-row {
  float: none;
  width: 100%;
  margin: 0 0 var(--space-4, 2rem) 0;
}

.woocommerce-ResetPassword .form-row-first,
.woocommerce-ResetPassword .form-row-last {
  float: none;
  width: 100%;
}

.woocommerce-ResetPassword label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #000;
  margin-bottom: var(--space-1, 0.5rem);
}

.woocommerce-ResetPassword label .required {
  color: #FF6B6B;
}

.woocommerce-ResetPassword .woocommerce-Input {
  width: 100%;
  box-sizing: border-box;
  padding: var(--space-2, 1rem) var(--space-3, 1.5rem);
  padding-right: 44px; /* room for eye icon */
  border: 1.5px solid #e4e4e4;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.15s ease;
}

.woocommerce-ResetPassword .woocommerce-Input:focus {
  border-color: #9B5CFF;
  box-shadow: 0 0 0 3px rgba(155, 92, 255, 0.12);
}

/* position eye-toggle icon inside field */
.woocommerce-ResetPassword .form-row {
  position: relative;
}

.woocommerce-ResetPassword .show-password-input,
.woocommerce-ResetPassword .password-toggle-icon {
  position: absolute;
  right: var(--space-3, 1.5rem);
  top: 42px; /* below label, centered in input */
  cursor: pointer;
  color: #999;
}

.woocommerce-ResetPassword button[type="submit"],
.woocommerce-ResetPassword input[type="submit"],
.woocommerce-ResetPassword .woocommerce-Button {
  width: 100%;
  padding: var(--space-3, 1.5rem);
  background: #FF6B6B;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  margin-top: var(--space-2, 1rem);
}

.woocommerce-ResetPassword button[type="submit"]:hover,
.woocommerce-ResetPassword input[type="submit"]:hover {
  background: #ff5a52;
  transform: translateY(-1px);
}

/* page-level: give the whole content area breathing room */
.woocommerce-account .woocommerce {
  min-height: 60vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-6, 3rem) var(--space-3, 1.5rem);
}

@media (max-width: 600px) {
  .woocommerce-ResetPassword.lost_reset_password {
    margin: var(--space-4, 2rem) auto;
    padding: var(--space-4, 2rem) var(--space-3, 1.5rem);
    border-radius: 16px;
  }
}


/* WooCommerce Lost Password — full width field fix */

.woocommerce-ResetPassword.lost_reset_password .form-row {
  width: 100%;
}

.woocommerce-ResetPassword.lost_reset_password input.input-text,
.woocommerce-ResetPassword.lost_reset_password input#user_login,
.woocommerce-ResetPassword.lost_reset_password input[type="text"],
.woocommerce-ResetPassword.lost_reset_password input[type="email"] {
  width: 100%;
  box-sizing: border-box;
  padding: var(--space-2, 1rem) var(--space-3, 1.5rem);
  background: var(--bg-light);
  border: 1.5px solid #e4e4e4;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #000;
  outline: none;
  transition: border-color 0.15s ease;
  border: 1px solid var(--primary-color) !important;
}

.woocommerce-ResetPassword.lost_reset_password input.input-text:focus,
.woocommerce-ResetPassword.lost_reset_password input#user_login:focus {
  border-color: #9B5CFF;
  box-shadow: 0 0 0 3px rgba(155, 92, 255, 0.12);
}

/* helper/description text below field */
.woocommerce-ResetPassword.lost_reset_password p.form-row + p,
.woocommerce-ResetPassword.lost_reset_password .form-row ~ p:not(.form-row) {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
  margin: var(--space-1, 0.5rem) 0 var(--space-4, 2rem) 0;
}
.woocommerce-ResetPassword button[type="submit"]{text-align: center !important;justify-content: center;}

article:has(.woocommerce-ResetPassword.lost_reset_password) h3{color: var(--black-color);}
/* WooCommerce Lost Password — reset-link-sent confirmation state */

.woocommerce-account .woocommerce-notices-wrapper,
.woocommerce-account .woocommerce > p {
  max-width: 480px;
  margin: 48px auto 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.woocommerce-notices-wrapper .woocommerce-message {
  list-style: none;
  margin: 0 auto 24px auto;
  padding: 20px 24px;
  background: #eefaf0;
  color: #1f6d33;
  border-radius: 14px;
  border-left: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.woocommerce-notices-wrapper .woocommerce-message::before {
  color: #4CAF50;
}

.woocommerce-account .woocommerce > p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  background: #fefaee;
  border-radius: 16px;
  padding: 24px;
}

@media (max-width: 600px) {
  .woocommerce-account .woocommerce-notices-wrapper,
  .woocommerce-account .woocommerce > p {
    margin-top: 24px;
    padding-left: 16px;
    padding-right: 16px;
  }
}



/* WooCommerce My Account — Nivi's Art Studio */

.woocommerce-account .woocommerce {
  max-width: 1100px;
  margin: var(--space-6, 3rem) auto;
  padding: 0 var(--space-3, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5, 2.5rem);
  align-items: flex-start;
}

/* ---------- Sidebar nav ---------- */

.woocommerce-MyAccount-navigation {
  flex: 0 0 240px;
  background: #fefaee;
  border-radius: 20px;
  padding: var(--space-3, 1.5rem);
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.woocommerce-MyAccount-navigation li {
  margin: 0 0 var(--space-1, 0.5rem) 0;
}

.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: var(--space-2, 1rem) var(--space-3, 1.5rem);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #000;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.woocommerce-MyAccount-navigation li a:hover {
  background: #fff;
  color: #9B5CFF;
}

.woocommerce-MyAccount-navigation li.is-active a {
  background: #FF6B6B;
  color: #fff;
}

/* .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: transparent;
  color: #FF6B6B;
} */

/* ---------- Content area ---------- */

.woocommerce-MyAccount-content {
  flex: 1 1 0%;
  min-width: 280px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: var(--space-5, 2.5rem);
}

.woocommerce-MyAccount-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 var(--space-2, 1rem) 0;
}

.woocommerce-MyAccount-content p strong {
  font-weight: 500;
  color: #000;
}

.woocommerce-MyAccount-content a {
  color: #9B5CFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(155, 92, 255, 0.3);
}

.woocommerce-MyAccount-content a:hover {
  color: #FF6B6B;
  border-color: rgba(255, 107, 107, 0.4);
}

/* ---------- Notices (success/error banners) ---------- */

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
  list-style: none;
  margin: 0 0 var(--space-4, 2rem) 0;
  padding: var(--space-3, 1.5rem) var(--space-4, 2rem);
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: var(--space-2, 1rem);
}

.woocommerce-notices-wrapper .woocommerce-message {
  background: #eefaf0;
  color: #1f6d33;
}

.woocommerce-notices-wrapper .woocommerce-message::before {
  color: #4CAF50;
}

.woocommerce-notices-wrapper .woocommerce-error {
  background: #fef0ee;
  color: #b83a2b;
  gap: 10px;
}

.woocommerce-notices-wrapper .woocommerce-error::before {
  color: #FF6B6B;
}

.woocommerce-notices-wrapper .woocommerce-info {
  background: #eef7fe;
  color: #1c6ba0;
}

.woocommerce-notices-wrapper .woocommerce-info::before {
  color: #4DCCFF;
}

/* ---------- Responsive ---------- */

@media (max-width: 782px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
    margin: var(--space-4, 2rem) auto;
  }

  .woocommerce-MyAccount-navigation {
    flex: 1 1 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1, 0.5rem);
  }

  .woocommerce-MyAccount-navigation li {
    margin: 0;
  }

  .woocommerce-MyAccount-content {
    width: 100%;
    box-sizing: border-box;
    padding: var(--space-4, 2rem);
  }
}



.home-kite{position: absolute;top: -100px;left: 25%;width: 150px;}
.kite-graphic{position: relative;z-index: 1;}

.contact-email-text{font-size: 24px; color: var(--black-color);display: flex;gap: 6px;}
.contact-email-text a{color: var(--black-color);}
.flex-row.justify-between:has(ul#shipping_method){display: none;}


header.woocommerce-Address-title.title{flex-direction: column;align-items: self-start;}

.woocommerce-error::before{position: initial;}
.u-column2.col-2.woocommerce-Address{display: none;}