/*
 PLEASE AVOID USING THIS CSS FILE
 DO NOT USE IT UNTIL YOU KNOW!
*/

/* ============================================
   NEW DESIGN SYSTEM
   ============================================ */

/* ============================================
   SHARED VARIABLES (Theme Independent)
   ============================================ */
:root {
  /* Brand Colors - Consistent across all themes */
  --brand-primary: #00af66;
  --brand-dark: #1b232f;
  --brand-light: #fff;
  --brand-primary-light: #3dc583;
  --brand-primary-dark: #089150;
  --brand-primary-hover: #08974f;
  --brand-secondary: #2c3847;
  --brand-accent: #0ee17d;
  --brand-border-subtle: #00a7614d;

  /* Brand Colours Opacity */
  --brand-primary-opacity-5: rgba(0, 175, 102, 0.05);
  --brand-primary-opacity-30: rgba(0, 175, 102, 0.3);


  /* Pricing Variables - Theme Independent */
  --pricing-gradient-start: var(--brand-primary);
  --pricing-gradient-end: var(--brand-primary-light);
  --pricing-shadow-color: #0ab1634d;
  --pricing-shadow-hover: #0ab16366;
  --pricing-border-active: #0ab1634d;
  --pricing-border-inactive: #0ab16333;
  --pricing-text-gradient-start: var(--brand-primary-dark);
  --pricing-text-gradient-mid: var(--brand-primary);
  --pricing-text-gradient-end: var(--brand-primary-light);

  /* Glass Effect Variables - Theme Independent */
  --glass-bg-primary: #1b232f14;
  --glass-bg-secondary: #1b232f33;
  --glass-bg-tertiary: #1b232f0a;
  --glass-border-primary: #0ab1634d;
  --glass-border-secondary: #0ab16300;
  --glass-surface: #ffffff05;
  --glass-surface-hover: #ffffff17;
  --glass-surface-active: #ffffff26;
  --glass-overlay: #ffffff1a;
  --glass-overlay-strong: #fff3;

  /* Border Radius Scale */
  --radius: 0.625rem;
  --radius-xs: 5px;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 15px;
  --radius-xl: 20px;
  --radius-2xl: 30px;
}

/* ============================================
   DARK THEME (Default)
   ============================================ */
:root {
  --background: #080a0e;
  --foreground: #fbfbfb;
  --card: #080a0e;
  --card-foreground: #fbfbfb;
  --popover: #080a0e;
  --popover-foreground: #fbfbfb;
  --primary: #fbfbfb;
  --primary-foreground: #343434;
  --secondary: #444444;
  --secondary-foreground: #fbfbfb;
  --muted: #444444;
  --muted-foreground: #b5b5b5;
  --accent: #444444;
  --accent-foreground: #fbfbfb;
  --destructive: #991b1b;
  --destructive-foreground: #dc2626;
  --border: #444444;
  --input: #444444;
  --ring: #707070;
  --chart-1: #7c3aed;
  --chart-2: #059669;
  --chart-3: #ca8a04;
  --chart-4: #c026d3;
  --chart-5: #dc2626;
  --sidebar: #343434;
  --sidebar-foreground: #fbfbfb;
  --sidebar-primary: #7c3aed;
  --sidebar-primary-foreground: #fbfbfb;
  --sidebar-accent: #444444;
  --sidebar-accent-foreground: #fbfbfb;
  --sidebar-border: #444444;
  --sidebar-ring: #707070;
}

/* ============================================
   LIGHT THEME
   ============================================ */
.light_theme {
  --background: #ffffff;
  --foreground: #080a0e;
  --card: #ffffff;
  --card-foreground: #080a0e;
  --popover: #ffffff;
  --popover-foreground: #080a0e;
  --primary: #343434;
  --primary-foreground: #fbfbfb;
  --secondary: #f7f7f7;
  --secondary-foreground: #343434;
  --muted: #f7f7f7;
  --muted-foreground: #8e8e8e;
  --accent: #f7f7f7;
  --accent-foreground: #343434;
  --destructive: #dc2626;
  --destructive-foreground: #dc2626;
  --border: #ebebeb;
  --input: #ebebeb;
  --ring: #b5b5b5;
  --chart-1: #ea580c;
  --chart-2: #0891b2;
  --chart-3: #1e40af;
  --chart-4: #65a30d;
  --chart-5: #ca8a04;
  --sidebar: #fbfbfb;
  --sidebar-foreground: #080a0e;
  --sidebar-primary: #343434;
  --sidebar-primary-foreground: #fbfbfb;
  --sidebar-accent: #f7f7f7;
  --sidebar-accent-foreground: #343434;
  --sidebar-border: #ebebeb;
  --sidebar-ring: #b5b5b5;
}

@theme inline {
  --font-sans: 'Geist', 'Geist Fallback';
  --font-mono: 'Geist Mono', 'Geist Mono Fallback';
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
}

@layer base {
  * {
    border-color: var(--border);
    outline-color: var(--ring);
  }
  html body {
    background-color: var(--background) !important;
    color: var(--foreground) !important;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Button Utilities */
.btn-primary {
  font-size: 16px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  color: #ffffff;
  background-color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}

.btn-secondary {
  font-size: 16px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  color: var(--foreground);
  background-color: transparent;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-secondary:hover {
  color: #ffffff;
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn-large {
  font-size: 18px;
  padding: 12px 24px;
}

.btn-small {
  font-size: 14px;
  padding: 8px 16px;
}

.btn-full-width {
  width: 100%;
  display: block;
  text-align: center;
}

/* Form Input Utilities */
.form-input-base {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--background);
  color: var(--foreground);
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-input-base:focus {
  border-color: var(--brand-primary);
  outline: 2px solid var(--brand-primary);
  outline-offset: 0;
  box-shadow: 0 0 0 0.25rem rgba(10, 177, 99, 0.25);
}

.form-select-base {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  padding: 14px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--background);
  color: var(--foreground);
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwb2x5bGluZSBwb2ludHM9IjYgOSAxMiAxNSAxOCA5Ij48L3BvbHlsaW5lPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-select-base:focus {
  border-color: var(--brand-primary);
  outline: 2px solid var(--brand-primary);
  outline-offset: 0;
  box-shadow: 0 0 0 0.25rem rgba(10, 177, 99, 0.25);
}

/* Border Radius Utilities */
.rounded-xs { border-radius: var(--radius-xs); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }

/* Spacing Utilities */
.p-xs { padding: 5px; }
.p-sm { padding: 10px; }
.p-md { padding: 20px; }
.p-lg { padding: 30px; }
.p-xl { padding: 40px; }

.px-xs { padding-left: 5px; padding-right: 5px; }
.px-sm { padding-left: 10px; padding-right: 10px; }
.px-md { padding-left: 20px; padding-right: 20px; }
.px-lg { padding-left: 30px; padding-right: 30px; }

.py-xs { padding-top: 5px; padding-bottom: 5px; }
.py-sm { padding-top: 10px; padding-bottom: 10px; }
.py-md { padding-top: 20px; padding-bottom: 20px; }
.py-lg { padding-top: 30px; padding-bottom: 30px; }

.m-xs { margin: 5px; }
.m-sm { margin: 10px; }
.m-md { margin: 20px; }
.m-lg { margin: 30px; }
.m-xl { margin: 40px; }

.mx-xs { margin-left: 5px; margin-right: 5px; }
.mx-sm { margin-left: 10px; margin-right: 10px; }
.mx-md { margin-left: 20px; margin-right: 20px; }
.mx-lg { margin-left: 30px; margin-right: 30px; }

.my-xs { margin-top: 5px; margin-bottom: 5px; }
.my-sm { margin-top: 10px; margin-bottom: 10px; }
.my-md { margin-top: 20px; margin-bottom: 20px; }
.my-lg { margin-top: 30px; margin-bottom: 30px; }

/* Glass Box Utility */
.glass-box {
  background: var(--glass-bg-primary);
  border: 1px solid var(--glass-border-primary);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.glass-box:hover {
  background: var(--glass-bg-secondary);
  border-color: var(--glass-border-secondary);
  transform: translateY(-2px);
}

/* ============================================
   EXISTING THEME STYLES (PRESERVED)
   ============================================ */

:root {
    --wp--preset--font-family--body: 'Montserrat', sans-serif;
    --wp--preset--font-family--heading: 'Montserrat', sans-serif;
}
:root :where(.wp-block-comment-content),
:root :where(.wp-block-comment-date),
:root :where(.wp-block-group-is-layout-constrained) > *,
:root :where(.wp-block-group-is-layout-flow) > * {
	margin-top: 0;
}
.page-template-default.page .entry-content.wp-block-post-content.has-global-padding.is-layout-constrained.wp-block-post-content-is-layout-constrained {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6, p {
    color: var(--foreground);
}

.light_theme .banBtn.light .btnlink{color:var(--brand-primary)}
.light_theme .banBtn.light .btnlink:hover{color:#ffffff}
.light_theme .banBtn.light .btnlink.btnlink1{color:#ffffff}

.light_theme .banBtn .btnlink{color:var(--brand-primary)}
.light_theme .banBtn .btnlink.btnlink1{color:#ffffff}

.wp-block-navigation:not(.has-text-color) .wp-block-navigation__submenu-container {
    background: #111;
    margin-top: -5px;
    margin-left: -5px;
}

header.wp-block-template-part {
    position: relative;
    z-index: 40;
}


/* .collapse:not(.show){
	height: 100vh;
    width: 80vw;
} */

.collapse:not(.show) {
    height: 100vh;
    position: fixed;
    width: 80%;
    top: 10% !important;
    left: 0 !important;
}

.award-item {
    flex: 1;
    width: 324.5px;
    flex-basis: 324.5px;
    flex-shrink: 0;
    flex-grow: 0;
 }

.navbar-collapse{
	top: auto !important;
}

.navbar-toggler.showtoggle .icon-bar:nth-child(1) {
	transform: translateY(6px) rotate(45deg) !important;
}

.navbar-toggler.showtoggle .icon-bar:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg) !important;
}

.custom-header .wp-block-column nav ul li ul {
    background-color: transparent;
}

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

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

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


.custom-logo img.custom-logo {
    width: auto;
}

.column-wrapper {
    align-items: center !important;
	justify-content: space-between;
}

.header-nav ul{
	justify-content: center;
}

.login-butn a{
	font-weight: 700;
}

.login-butn a:hover {
    background-color: #000;
    color: #fff;
}

.light_theme .login-butn a {
    background: transparent;
    color: #171F29;
}

.light_theme .login-butn a:hover {
    color: #ffffff;
    background: var(--brand-primary);
}

.header-nav ul.wp-block-navigation__container > li::before{
    width: 0px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 20px;
    content: "";
    transition: all 0.3s;
}

.header-nav ul li:hover::before{
	width: 100%;
}

.header-nav ul li a {
    font-weight: 500;
	    font-size: 15px;
	padding: 20px 12px 20px 10px;
}

.header-nav ul li button.wp-block-navigation__submenu-icon {
    color: #00aa64;
	    margin: 0;
    position: absolute;
    right: -6px;
}

.header-nav ul li ul.wp-block-navigation__submenu-container {
    margin: 0px;
    width: 250px !important;
    padding: 0px;
    max-height: 600px !important;
    border-radius: var(--radius-md) !important;
    left: 0 !important;
    right: inherit !important;
    transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in !important;
    background: var(--brand-primary) ;
    border: none !important;
    box-shadow: 0px 4px 6px -2px #10182808;
    box-shadow: 0px 12px 16px -4px #10182814;
}

.header-nav ul li ul.wp-block-navigation__submenu-container li{
    color: #fff;
}

.header-nav ul li ul.wp-block-navigation__submenu-container li:hover {
    background-color: var(--brand-primary);
    transition: 0.5s ease-in-out all;
}

.header-nav ul li ul.wp-block-navigation__submenu-container li a{
    padding: 8px 15px;
}

.header-nav ul li ul.wp-block-navigation__submenu-container li:first-child{
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.header-nav ul li ul.wp-block-navigation__submenu-container li:last-child{
    border-radius: 0px 0px var(--radius-md) var(--radius-md);
}
nav.nav-mobile{
    margin-top: 11px;
}

nav.nav-mobile > ul{
    height: auto !important;

}
.nav-mobile li.wp-block-navigation-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.nav-mobile li.wp-block-navigation-item > a.wp-block-navigation-item__content{
    width: 90%;
}
.nav-mobile li.wp-block-navigation-item ul.wp-block-navigation__submenu-container{
    width:100%;
    position: relative;
    flex-grow: 1;
    padding-left: 4px;
    gap: 0;
}


header .wp-block-button__link:hover {
    color: #ffffff;
    background-color: #000000;
}

.light_theme header .wp-block-button__link {
    color: #1b232e;
    background-color: #ffffff;
}
.light_theme header .wp-block-button__link:hover {
    color: #ffffff;
    background-color: #00af66;
}

marquee.text-marquee {
    background: linear-gradient(180deg, #00af66 -45%, #00492b 150%);
    color: #fff;
    font-weight: 600;
}

.footer-main{
	position: relative;
	    /* clip-path: polygon(100% 14.8%, 100% 100%, 0 100%, 0 14.8%, 50% 0); */
/* 	    background: #242e3d; */
}

/* New From Input Style */
.woocommerce-input-wrapper input:focus {
  border-color: var(--brand-primary);
  outline-color: var(--brand-primary);
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    background-color: var(--background);
    border-color: var(--border);
    color: var(--foreground);
}

.devide2{width:100%;position: absolute;top:4px;left:0px;right: 0;background:linear-gradient(87deg,rgba(3,67,40,1) 0%,rgba(2,86,51,1) 25%,rgba(0,175,102,1) 50%,rgba(1,127,74,1) 68%,rgba(3,67,40,1) 100%);height:230px;clip-path:polygon(50% 0px,100% 66%,100% 67%,50% 12%,0 67%,0 66%); max-width: 100%;}

.articles_list li a:after {
	content: "\f061";
	font-family: "Font Awesome 5 Pro";
	font-weight: 900;
	margin-left: 5px;
	color: #00af66;
}


.footone .social-icon-wrapper figure {
    width: 47px;
    height: 47px;
    background: var(--brand-primary);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in-out all;
}

.footone .social-icon-wrapper {
    gap: 10px;
    justify-content: center;
}

.footone .social-icon-wrapper figure:hover{
    background-color: #000;
    transition: 0.3s ease-in-out all;
}

.footer-col nav.footer-nav ul li::before{
    content: "\f101";
    font-weight: 900;
    font-family: "Font Awesome 5 Pro";
    margin-right: 6px;
}

.footfour .newsletter-text {
    padding: 0;
    margin: 0px 0 -10px 0;
}

.tnp-subscription {
    margin: 0;
}

.tnp-subscription p {
    display: none;
}

.tnp-subscription form .tnp-field{
    margin: 0;
}

.tnp-subscription form .tnp-field label {
    display: none;
}

.tnp-subscription form .tnp-field input{
    width: 100%;
    background: #111720;
    padding: 0 20px;
    font-style: italic;
    height: 50px;
    border: 1px solid #111720;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 14px;
    -webkit-appearance: none;
    outline: none;
}

.light_theme .tnp-subscription form .tnp-field input {
    color: #111720;
    background: #ffffff;
}

.tnp-subscription form .tnp-field input[type="submit"]{
    background: #00af66;
    width: 100%;
    line-height: 50px;
    box-shadow: none;
    margin-top: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
	border: 2px solid #00af66;
    font-style: normal;
	    height: 54px;
}

.bottom{
	background: #242e3d;
	    display: flex;
    align-items: center;
}

.footer-col h4 {
    padding-bottom: 10px;
    line-height: 30px;
    width: 100%;
}

.footer-col nav ul li {
    font-weight: 400;
    line-height: 35px;
}

.footer-content {
	font-weight: 400;
	padding: 10px 0;
}

.copyright-text {
    font-weight: 500;
    padding: 0;
    line-height: 30px;
}

.copyright-text a {
    border-bottom: 1px solid;
}

.comments-area {
	margin-top: 30px;
}

.comments-area .wp-block-comments-title {
	margin-bottom: 30px;
}

.wp-block-comment-author-name a,
.wp-block-comment-edit-link a,
.wp-block-comment-reply-link a,
.wp-block-comment-date a {
	color: #FFFFFF;
}

.wp-block-comment-template li {
    padding-left: 30px;
}

.post-navigation-link-previous {
    text-align: left;
}

.post-navigation-link-next {
    text-align: right;
}

.rt-reading-time {
    display: none !important;
}

.light_theme .works_btmInnr .about_topSec h2,
.light_theme .works_btmInnr .about_topSec p,
.light_theme .works_btmInnr .about_btmSec p {
    color: #fff;
}

.bannerSec.inner_ban {
    width: 2000px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.cookies-per-purpose, .cookies-per-purpose a{
    color:#000 !important;
}


@media screen and (max-width: 1400px){
	.custom-header.wp-container-core-group-is-layout-2 > .alignwide {
		max-width: 1170px;
	}

	.custom-header .wp-block-column:nth-child(2) {
		flex-basis: 65% !important;
	}

	.custom-header .wp-block-column nav ul {
		justify-content: center !important;
	}

	.custom-header .wp-block-column nav ul li a {
	    padding: 10px 7px 10px;
	  }

	.custom-header .wp-block-column:nth-child(3) .login-butn a {
    padding-right: 22px !important;
    padding-left: 22px !important;
  }

	.header-nav ul li button.wp-block-navigation__submenu-icon {
		right: -12px !important;
	}

	.footer-main .main-footer-box {
		max-width: 1170px;
	}

	.footer-col nav ul li{
		font-size: 12px !important;
		line-height: 26px !important;
	}

	.footer-col nav ul li a {
		font-size: 12px;
		line-height: 16px;
	}

/* 	.footer-main {
		clip-path: polygon(100% 10.5%, 100% 100%, 0 100%, 0 10.5%, 50% 0) !important;
	} */

	.devide2 {
		clip-path: polygon(50% 0px, 100% 53%, 100% 53%, 50% 9%, 0 53%, 0 53%) !important;
	}

/* 	.footer-main:before {
		clip-path: polygon(100% 10.5%, 100% 100%, 0 100%, 0 10.5%, 50% 0) !important;
	} */
}

@media (max-width: 1000px) {
    .custom-header .wp-block-column nav ul {
        gap: 11px;
    }
}

@media screen and (min-width: 992px){
	.show-on-small-device {
		display: none !important;
	}
}

@media screen and (max-width: 991px){

    .wc_payment_methods > li {
        /* flex-wrap: nowrap !important; */
        padding: 0 10px;
    }
    .wc_payment_methods > li > label{
        /* flex-wrap: nowrap !important; */
        width: 88% !important;
    }
    .container .woocommerce-cart .wp-block-post-title{
        max-width:100%;
        margin-bottom:20px !important;
    }
    .wp-block-columns {
        flex-wrap: wrap !important;
    }

    .wp-block-column {
        flex: 0 0 100% !important;
    }

    .wp-block-woocommerce-product-meta {
        margin-bottom: 20px !important;
    }

    /* Home Page JoinBox Section Styling */
    .joinBox {
        min-height: auto;
    }
    .joinTxt {
        text-align: center;
    }
    .joinPic {
        display: none;
    }

    body.single-product .woocommerce.product .wc-pao-required-addon .form-row > div {
        flex: 1 0 30%;
    }
    body.single-product .wc-pao-required-addon .form-row label {
        font-size: 18px;
    }

    footer.footer-main .footone.wp-block-column {
        flex-basis: 100% !important;
        float: left;
        text-align: center;
        padding: 0 !important;
  }
  .wp-block-column {
    flex: 0 0 30.333% !important;
  }
	body.single-product .woocommerce.product .wc-pao-required-addon .form-row {
		flex-wrap: wrap;
		/* grid-template-columns: 1fr 1fr; */
	}
	.custom-container .wp-container-core-group-is-layout-1 {
		max-width: 750px;
		padding: 0 !important;
	}

    .footer-col h4 {
        text-align:center'
    }

    .footer-col strong {
        display: block;
        width: 100%;
    }

	.show-on-large-device {
		display: none !important;
	}

	button.navbar-toggler {
		border: none;
		background: none;
		margin-right: 0;
		background: #2C3748;
		width: 42px;
		height: 42px;
		padding: 11px;
		margin-right: 15px;
		border-radius: 100%;
		font-size: 1.25rem;
		line-height: 1;
		transition: box-shadow .15s ease-in-out;
		transition: all 0.5s ease-in-out;
	}
	.light_theme button.navbar-toggler {
	    background-color: #ffffff;
	    border: 1px solid #00af66;
	}

	button.navbar-toggler span.icon-bar {
		display: block;
		width: 100%;
		height: 2px;
		border-radius: 16px;
		background-color: #fff;
	}
	.light_theme button.navbar-toggler span.icon-bar {
	    background-color: #00af66;
	}

	button.navbar-toggler span.icon-bar + .icon-bar{
		margin-top: 5px;
	}

	.switch {
        top: -7px;
        width: 50px;
        height: 30px;
        margin: 0 15px 0 0 !important;
	}

	.switch .slider::before {
	    left: 0;
	    bottom: 5px;
	    width: 20px;
	    height: 20px;
	}

	.wp-block-columns.show-on-small-device .wp-block-column{
		flex-basis: 170px !important;
	}

	.column-wrapper .logo-wrapper .custom-logo img.custom-logo{
		width: 170px;
		margin-left: 15px;
	}

	.wp-block-columns.show-on-small-device .wp-block-column.toggle-wrapper {
	    flex: 1 !important;
	}

	/* .light_theme .navbar-collapse {
	    background-color: #00af66;
	} */

	.navbar-collapse ul.wp-block-navigation__container {
		display: block;
		padding-left: 0;
		margin-bottom: 0;
		list-style: none;
	}

	.navbar-collapse ul.wp-block-navigation__container li{
		color: #fff;
		font-size: 14px !important;
		line-height: 23px;
		font-weight: 500;
		margin-left: 0;
		background: no-repeat;
		width: 100%;
		text-align: start;
	}

	.navbar-collapse ul.wp-block-navigation__container li a{
		padding: 7px 15px;
		display: inline-block;
		position: relative;
		color: #fff;
		width: 100%;
	}

	.navbar-collapse ul.wp-block-navigation__container li button.wp-block-navigation__submenu-icon {
		margin-right: 5px;
		color: #00aa64;
		width: 14px;
		height: 14px;
	}

/* 	.footer-main{
		    clip-path: polygon(100% 5.5%, 100% 100%, 0 100%, 0 5.5%, 50% 0) !important;
		    padding-top: 75px !important;
	} */

	.devide2{
		height: 103px !important;
        top: 0px !important;
	}

/* 	.footer-main:before{
		clip-path: unset !important;
	} */

	.wp-container-core-group-is-layout-9 > :where(:not(.alignleft):not(.alignright):not(.alignfull)){
		max-width: 750px;
	}

	footer.footer-main .footone.wp-block-column {
        flex-basis: 100% !important;
    }

	.footer-col nav ul li {
		font-size: 12px !important;
		line-height: 28px !important;
	}

}

@media screen and (max-width: 500px){
	.column-wrapper .logo-wrapper .custom-logo img.custom-logo{
		margin-left: 15px;
	}

	button.navbar-toggler{
		margin-right: 5px;
	}

/* 	.footer-main {
		clip-path: polygon(100% 3%, 100% 100%, 0 100%, 0 3%, 50% 0) !important;
        padding-top: 45px !important;
    } */

	.devide2 {
        height: 95px !important;
        top: 0px !important;
    }

	.footone .social-icon-wrapper{
		margin-top: 20px !important;
		justify-content: flex-start !important;
	}


	.footone .social-icon-wrapper figure {
		width: 40px !important;
		height: 40px !important;
		padding: 0 !important;
		flex-basis: 40px;
	}

	.foottwo {
		margin: 20px 0 0 !important;
        border-bottom: 1px solid #ffffff40;
	}

	.footthree{
		margin: 10px 0 0px!important;
		border-bottom: 1px solid #ffffff40;
	}

	.foottwo h4, .footthree h4{
		position: relative;
	}

	.foottwo h4::before, .footthree h4::before{
		content: "\f107";
		font-family: "Font Awesome 5 Pro";
		font-weight: 900;
		position: absolute;
		right: 0px;
		width: 30px;
		height: 49px;
	}

	.footfour {
		text-align: center;
		margin-top: 30px !important;
	}

	.foottwo nav, .footthree nav {
		height: 0;
		display: none;
	}

	.foottwo.open nav, .footthree.open nav {
		display: block;
		height: auto;
	}



	.copyright-text{
		font-size: 13px !important;
	}
}

.light_theme .tnp-subscription form .tnp-field input[type="text"],
.light_theme .custom-header,
.light_theme footer .bottom {
	background: #fbfefd !important;
	clip-path: none;
}

.light_theme .footer-main {
    background: #fff !important;
}

.light_theme .custom-header .custom-logo-link,
.light_theme .footer-main .wp-image-65 {
	filter: invert(1);
}

.light_theme .blog_details .post_nav .wp-block-post-navigation-link a,
.light_theme .wp-block-comment-author-name a,
.light_theme .wp-block-comment-edit-link a,
.light_theme .wp-block-comment-reply-link a,
.light_theme .wp-block-comment-date a,
.light_theme .footer-main nav ul li a,
.light_theme .footer-main h4,
.light_theme footer p,
.light_theme .footer-main p {
	color: #031537 !important;
}

.wp-block-navigation__container > li > a:hover {
    color: #fff !important;
}

.light_theme .wp-block-navigation__container > li > a:hover {
    color: #00AA64 !important;
}

.wp-block-lazyblock-faqs:nth-last-child(1) {
    padding-bottom: 30px;
}

.wp-block-lazyblock-faqs .programSec .b2,
.wp-block-lazyblock-faqs .programSec .s1,
.wp-block-lazyblock-faqs .programSec .s2 {
    display: none;
}

.wp-block-lazyblock-faqs:nth-child(4) .programSec .s2 {
    display: block;
}

.wp-block-lazyblock-faqs:nth-last-child(1) .programSec .b2,
.wp-block-lazyblock-faqs:nth-last-child(1) .programSec .s1 {
    display: block;
}

.wc-block-breadcrumbs {
    color: #fff;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 6px;
    margin: 20px 0 !important;
    background-color: #141b25;
}

.wc-block-breadcrumbs a {
    font-weight: 700;
}

.light_theme .wc-block-breadcrumbs {
    background: linear-gradient(180deg,#00af66 -45%,#00492b 150%);
}

.woocommerce .woocommerce-breadcrumb {
    margin: 0;
}

.woocommerce-breadcrumb a {
    color: #00af66;
}

.light_theme .wc-block-breadcrumbs a {
    color: #ffffff;
    text-decoration: underline !important;
}

.woocommerce.wc-block-catalog-sorting select.orderby {
    color: #fff;
    border: none;
    outline: none;
    padding: 10px;
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    background-color: #141b25;
    outline: 1px solid #00af66;
    border-right: 10px solid transparent;
}

.light_theme .woocommerce.wc-block-catalog-sorting select.orderby {
    color: #1B232F;
    font-weight: 500;
    background: #fff;
    outline: 1px solid #1B232F;
}

.wp-block-woocommerce-product-template {
    padding-bottom: 30px;
}

.wc-block-product {
    width: 100%;
    background: #141b25;
    border: 1px solid #384455;
    border-radius: 15px;
    margin: 15px 0 0;
    padding: 10px;
}

.light_theme .wc-block-product {
    background: #fff;
    border: 1px solid #C6CDD9;
}

.wc-block-product .wc-block-components-product-image img {
    border-radius: 15px;
    border: none;
}

.wp-block-post-title a {
    color: #fff;
}

.light_theme .wp-block-post-title a {
    color: #1B232F;
    font-weight: 600;
}

.light_theme .wc-block-components-product-price {
    color: #1B232F;
    font-weight: 600;
}

.wc-block-components-product-button__button {
    border: 1px solid #00af66 !important;
}
.wc-block-components-product-button__button:hover {
    color: #fff;
    background-color: #00af66;
}
.light_theme .wc-block-components-product-button__button {
    color: #1B232F;
    background-color: #fff;
    border-color: #1B232F !important;
}
.light_theme .wc-block-components-product-button__button:hover {
    color: #fff;
    background-color: #00af66;
    border-color: #00af66 !important;
}

.wp-block-columns {
    gap: 20px;
}
.woocommerce-product-gallery__wrapper {
    overflow: hidden;
    border-radius: 15px;
}

.wc-block-components-sidebar-layout .wc-block-components-main,
.is-large .wc-block-checkout__sidebar{
    width: 50%;
}

.wp-block-post-title {
    color: var(--foreground);
    /* margin-top: 2rem !important;
    margin-bottom: 1rem; */
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.wc-block-components-product-price .woocommerce-Price-amount {
    font-size: 24px;
    font-weight: 600;
    margin: 10px 0;
    display: inline-block;
}

.wp-block-post-excerpt p {
    display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: auto !important;
  margin-bottom: 20px;
  padding: 0;
}

.wc-pao-addons-container {
    display: flex;
    flex-wrap: wrap;
}

.wc-pao-required-addon {
    flex: 0 0 30%;
}

.wc-pao-addon-id-1731006953 {
    flex: 0 0 100%;
    margin: 10px 0 !important;
}

.wc-pao-addon-heading {
    margin: 0;
    font-size: 26px;
}

.taxonomy-product_cat .wp-block-post-terms__prefix {
    color: #fff;
    margin-right: 10px;
}
.light_theme .taxonomy-product_cat .wp-block-post-terms__prefix {
    color: #000;
}

.taxonomy-product_cat a {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 3px 6px;
    border-radius: 6px;
    background-color: #00af66;
}

.comment-form-rating .stars a {
    color: #00af66;
}

.comment-form-comment textarea {
    color: #fff;
    outline: none;
    border-radius: 6px;
    background-color: transparent;
    border: 1px solid #00af66;
}
.light_theme .comment-form-comment textarea {
    color: #000;
}

.form-submit.wp-block-button {
    margin: 10px 0;
}

.form-submit input:hover {
    background-color: #00af66;
}

.light_theme .form-submit input {
    outline: none;
    background-color: #00af66;
}

/* Home Page BecomeSec New Styling */

.becomeIn {
    margin-bottom: -100px;
    padding-bottom: 200px;
}

.becomeIn .b2.tp2 {
    bottom: 0;
    z-index: 0;
}


@media(max-width: 767px) {
    .wc-block-product-template__responsive.columns-3 {
        grid-template-columns: repeat(auto-fill,minmax(max(150px,calc(50% - .83333em)),1fr));
    }

    /* Home Page BecomeSec New Styling */
    .becomeIn {
        margin-bottom: -60px;
        padding-bottom: 110px;
    }
}
@media(max-width: 575px) {
    .wp-block-post-title a {
        font-size: 16px;
    }

    .wc-block-product .wc-block-components-product-price .woocommerce-Price-amount {
        font-size: 20px;
    }

    .wc-block-components-product-button__button {
        padding: 5px;
    }

    .woocommerce-product-gallery {
        margin-bottom: 0 !important;
    }

    .wp-block-post-title {
        font-size: 26px;
    }

    .wc-pao-addon-heading {
        font-size: 20px;
    }

    .wc-pao-required-addon {
        flex: 0 0 50%;
    }

    .taxonomy-product_cat {
        display: flex;
        flex-wrap: wrap;
    }
}

/*---------- Blog Category Title ----------*/

.archive.category .wp-block-query-title {
    display: none;
}

/*---------- Why Choose Us Section New Styling ----------*/
.whyChosSec.tophead.remove-bg {
    clip-path: unset;
    padding-bottom: 80px;
}
.whyChosSec.tophead.remove-bg::before {
    display: none;
}

.whyChosSec.tophead.remove-bg > i {
    display: none;
}

.whyChosSec.tophead.remove-bg .needHlpBox {
    margin: 50px auto 0;
}

/*---------- Platform Demonstration Page New Styling ----------*/

.platTabRow {
    overflow-x: hidden;
}

.platTabRow .platTab .tab_box {
    border-radius: 5px 5px 0 0;
}

.platTabRow .platTab .actv .tab_box {
    background: #4D5C70;
}

.platTabRow .platTab li.actv a::before {
    height: 3px;
}

.platTabRow .platTabboxs {
    word-wrap: break-word;
}

/*---------- Platform Demonstration Page New Responsive ----------*/

@media (max-width: 767px) {
    .platTabRow .platTab li {
        width: auto;
        flex: 0 0 270px;
        flex-basis: calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

/*---------- Product Detail New Styling ----------*/

body.single-product .woocommerce.product .wp-block-columns .wp-block-column:nth-child(1),
body.single-product .woocommerce.product .wp-block-columns .wp-block-column .wp-block-post-title,
body.single-product .woocommerce.product .wp-block-columns .wp-block-column .wc-block-components-product-price,
body.single-product .woocommerce.product .wp-block-columns .wp-block-column .wp-block-post-excerpt,
body.single-product .woocommerce.product .wp-block-columns .wp-block-column .wp-block-woocommerce-product-meta,
body.single-product .woocommerce.product .wp-block-woocommerce-product-details {
    display: none;
}

body.single-product .woocommerce.product {
    overflow: clip;
    padding: 120px 0;
    position: relative;
}

body.single-product.light_theme .woocommerce.product::before,
body.single-product.light_theme .woocommerce.product::after {
    opacity: 0.2;
}

body.single-product .woocommerce.product > main {
    position: relative;
}

body.single-product .woocommerce.product > main::before {
    content: "";
    position: absolute;
    left: -200px;
    bottom: 150px;
    z-index: -1;
    width: 250px;
    height: 350px;
    filter: blur(150px);
}
body.single-product .woocommerce.product > main::after {
    content: "";
    position: absolute;
    right: -200px;
    bottom: -100px;
    z-index: -1;
    width: 200px;
    height: 300px;
    filter: blur(110px);
}

body.single-product .woocommerce.product .wc-block-breadcrumbs {
    display: none;
}

body.single-product .woocommerce.product main > .wp-block-columns {
    display: block;
}

body.single-product .woocommerce.product .wp-block-column form {
    display: block;
    margin: 0;
}

body.single-product .woocommerce.product .wc-pao-addons-container {
    display: grid;
    flex-direction: column;
}

body.single-product .woocommerce.product .wc-pao-addons-container .required-addons-wrapper,
body.single-product .woocommerce.product .wc-pao-addons-container .optional-addons-wrapper {
    background: #ffffff08;
    border: 1px solid #ffffff14;
    border-radius: 14px;
    transition: all .3s;
    box-shadow: 0 4px 24px #00000014;
    padding: 20px;
}
body.single-product.light_theme .woocommerce.product .wc-pao-addons-container .required-addons-wrapper,
body.single-product.light_theme .woocommerce.product .wc-pao-addons-container .optional-addons-wrapper {
    background-color: #E4ECF4;
}

body.single-product .woocommerce.product .wc-pao-addon-heading {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    position: relative;
}
body.light_theme.single-product .woocommerce.product .wc-pao-addon-heading,
body.light_theme.single-product .wc-pao-required-addon .wc-pao-addon-name{
    color: #1B232F;
}

body.single-product .woocommerce.product #product-addons-total {
    order: 3;
}

body.single-product .woocommerce.product #product-addons-total div.product-addon-totals ul li {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.7;
}

body.single-product .woocommerce.product #product-addons-total div.product-addon-totals ul li strong {
    font-weight: 700;
}

body.single-product #product-addons-total div.product-addon-totals ul li.wc-pao-subtotal-line {
    display: block;
    text-align: center;
    padding: 90px 0 0;
    position: relative;
    border-top: 2px solid #4C5768;
}
body.single-product #product-addons-total div.product-addon-totals ul li.wc-pao-subtotal-line::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 50%;
    width: 500px;
    height: 40px;
    max-width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50%);
    background-image: url(/wp-content/plugins/ftp-pricing-table/includes/images/Payment-Cards.webp);
}

body.single-product #product-addons-total div.product-addon-totals ul li.wc-pao-subtotal-line .price {
    padding: 0;
    font-size: 18px;
    font-weight: 700;
}
body.single-product #product-addons-total div.product-addon-totals ul li.wc-pao-subtotal-line .price span {
    font-size: 30px;
    font-weight: 800;
}

body.single-product .woocommerce.product .wc-pao-required-addon {
    margin-bottom: 20px;
}

body.single-product .wc-pao-required-addon .wc-pao-addon-name {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 10px;
}
body.single-product .wc-pao-required-addon .wc-pao-addon-name em {
    color: #00af66;
    font-style: normal;
    margin-left: -5px;
}
body.single-product .woocommerce.product .wc-pao-required-addon .form-row {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
body.single-product .woocommerce.product .wc-pao-required-addon .form-row .wc-pao-validation-notice {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
body.single-product .woocommerce.product .wc-pao-required-addon .form-row::after {
    display: none;
}
body.single-product .wc-pao-required-addon .form-row::before {
    display: none;
}
body.single-product .woocommerce.product .wc-pao-required-addon .form-row > div {
    flex: 1 1 20%;
}
body.single-product .wc-pao-required-addon .form-row input {
    display: none;
}
body.single-product .wc-pao-required-addon .form-row label {
    margin: 0;
    padding-block: .25rem;
    display: block;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border-radius: 8px;
    background-color: color-mix(in oklab, var(--background)50%,transparent);
}
body.single-product.light_theme .wc-pao-required-addon .form-row label {
    color: #1B232F;
    background-color: #ffffff;
}
body.single-product .wc-pao-required-addon .form-row  > div input[type=radio]:checked+label {
    color: #ffffff;
    background-color: var(--brand-primary);
}
body.single-product .woocommerce.product .wp-block-column .quantity {
    display: none;
}
body.single-product .woocommerce.product .wp-block-column .single_add_to_cart_button {
    width: 500px;
    margin: 0 auto;
    display: block;
    max-width: 100%;
    font-size: 18px;
    font-weight: 600;
    padding: 11px 5px;
    border-radius: 8px;
    background-color: var(--brand-primary);
    box-shadow: 20px 20px 50px #1B232F;
}
body.single-product.light_theme .woocommerce.product .wp-block-column .single_add_to_cart_button {
    box-shadow: 20px 20px 50px #cfcfcf;
}

body.single-product .page-title {
    font-weight: 700;
    margin-bottom: 16px;
}

body.single-product .page-title-para {
    padding-bottom: 30px;
    margin-bottom:30px;
    font-size: 16px;
}

body.single-product div.product-addon-totals {
    padding: 15px;
    background: var(--card);
    border-radius: calc(var(--radius) + 4px);
}

div.product-addon-totals {
    margin: 0;
}

body.light_theme.single-product div.product-addon-totals {
    color: #384455;
}

.main-footer-box{
  position: relative;
}
.footer-content {
  position: relative;
}
.bottom {
  position: relative;
}
.light_theme .tnp-subscription form .tnp-field input {
  border-color: #fff;
}

.custom-header .wp-block-column:nth-child(3) {
	flex-basis: 22% !important;
}

.custom-header .wp-block-column:nth-child(3) .wp-block-button {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
.switch { position: relative; transform: unset; margin-right: 10px; margin-bottom: 0 !important; flex: 0 0 53px; min-height: 28px;}
.switch input {border:none;outline:none;}

.light_theme .about_midTxt h4 {
    color: #171F29;
}

.works_midimg img {
    width: 474px;
    height: auto;
    max-width: 100%;
}

.wp-block-lazyblock-notice-alert {
    margin-bottom: 2rem !important;
}
body .wc-block-components-notice-banner,
body .wc-block-components-notice-banner.is-success,
body .wc-block-components-notice-banner.is-info,
body .wc-block-components-notice-banner.is-danger{
    background-color: #2C3748;
    border-color: #2C3748;
    color: white;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 20px;
    align-items: center;
    justify-content: center;
}
body .woocommerce-NoticeGroup .wc-block-components-notice-banner{
    color: #fff !important;

}

body .wc-block-components-notice-banner.is-error {
    background-color: #462e35 !important;
    border: 1px solid #e3534c !important;
}
body .wc-block-components-notice-banner.is-info:not(.woocommerce-form-coupon-toggle .is-info) {
    background-color: #FFA500 !important;
    border: 1px solid #e3534c !important;
}

body.woocommerce-page table.shop_table {
    width: 100%;
}

body .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .button,
body .wc-block-components-notice-banner>.wc-block-components-notice-banner__content .showcoupon{
    background: var(--brand-primary) !important;
    color: white !important;
    padding: 10px 20px !important;
    font-weight: 700;
    opacity: 1;
    min-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

body .wc-block-components-notice-banner > svg {
    display: none;
}

body .wc-block-components-notice-banner .wc-block-components-notice-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align:center;
}

body .wc-block-components-sidebar-layout .wc-block-components-main,
body .is-large .wc-block-checkout__sidebar {
    width: 100%;
}

.is-large .wc-block-checkout__sidebar {
    position: static !important;
    order: 2;
}

.wc-block-components-sidebar.wc-block-checkout__sidebar.wp-block-woocommerce-checkout-totals-block.is-large .wp-block-woocommerce-checkout-order-summary-block {
    border-radius: 30px;
    padding: 35px 15px 30px;
    background-color: #313C4C;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title {
    display: none;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-totals-wrapper:first-of-type {
    padding: 0;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
    order: 3;
}

.woocommerce-checkout main .woocommerce {
    max-width: 100%;
}

body .styled-box {
    background: #ffffff08;
    border: 1px solid #ffffff14;
    border-radius: 14px;
    transition: all .3s;
    box-shadow: 0 4px 24px #00000014;
}

body .styled-box p{
    padding:0;
}

body .styled-box:hover{
    background:#ffffff0f;
    border:1px solid #ffffff1f;
    transform:translateY(-2px);
    box-shadow:0 8px 32px #0000001f
}

body .checkout-card {
    background-color: var(--card);
}

body.light_theme .styled-box {
    color: #1B232F;
    background-color: #ffffff;
}

body .styled-box.order-placed {
    padding: 25px;
    font-size: 18px;
    border-radius: 30px;
    border: 1px solid #00af66;
    margin: 80px 0;
}

/*---------- Product Detail New Responsive ----------*/

@media (max-width: 575px) {
    body.single-product .woocommerce.product::before {
        width: 180px;
        height: 300px;
    }
    body.single-product .woocommerce.product::after {
        width: 180px;
        height: 240px;
    }
    body.single-product .woocommerce.product .wp-block-columns {
        border-radius: 20px;
        padding: 30px 20px 35px;
    }
    body.single-product .woocommerce.product .wc-pao-addons-container .required-addons-wrapper,
    body.single-product .woocommerce.product .wc-pao-addons-container .optional-addons-wrapper {
        border-radius: 10px;
        padding: 25px 10px 5px;
    }
    body.single-product .woocommerce.product .wc-pao-required-addon .form-row > div {
        flex: 0 0 calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }
    body.single-product .woocommerce.product .wc-pao-addon-heading {
        font-size: 20px;
        margin: 0 0 20px;
    }
    body.single-product .woocommerce.product .wc-pao-addon-heading::before {
        top: 4px;
        left: -21px;
        width: 5px;
        height: 20px;
    }
    body.single-product .wc-pao-required-addon .form-row label {
        padding: 4px;
        font-size: 12px;
        border-radius: 5.3px;
    }
    body.single-product .woocommerce.product #product-addons-total div.product-addon-totals ul li {
        margin: 0;
        border: none;
        font-size: 14px;
        margin-bottom: 6px;
    }
    body.single-product .woocommerce.product #product-addons-total div.product-addon-totals ul li .wc-pao-col1 {
        flex: 0 0 75%;
    }
}

/*---------- Checkout Page New Styling ----------*/

/* Make order review column sticky */
body.woocommerce-checkout .order-review-column,
body.woocommerce-order-pay .order-review-column {
    position: sticky;
    top: 20px;
    z-index: 10;
    align-self: flex-start;
    flex: 0 0 35%;
}

body.woocommerce-checkout .billing-payment-column,
body.woocommerce-order-pay .billing-payment-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 0 0 65%;
}

body.light_theme.woocommerce-checkout .woocommerce-form-coupon-toggle .checkout_coupon p {
    color: #ffffff;
}

body.woocommerce-checkout main,
body.woocommerce-order-pay main {
    padding: 0;
    max-width: 100%;
}

body.woocommerce-checkout .woocommerce form.checkout_coupon {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.08);
    border-image: initial;
    border-radius: 1rem;
    margin: 20px 10px;
    display: flex;
    align-items: center;
}
body.woocommerce-checkout .woocommerce form.checkout_coupon .form-row {
    margin-bottom: 0;
}
.woocommerce-page .woocommerce-form-coupon .button:hover {
    background: var(--brand-primary);
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .checkout_coupon p {
    font-size: 18px;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .checkout_coupon .form-row-first {
    width: 51.5%;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .checkout_coupon .form-row-first input {
    border: none;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px;
}

body.woocommerce-checkout .woocommerce-form-coupon-toggle .checkout_coupon .form-row-last button {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    background-color: #00af66;
}

.woocommerce-page table.shop_table td {
    padding: 0;
}

body.woocommerce-checkout .order-summary-section,
body.woocommerce-order-pay .order-summary-section {
    margin-bottom: 60px;
}

body.woocommerce-checkout #order_review,
body.woocommerce-checkout .billing-details-col,
body.woocommerce-checkout .container .styled-box .payment-method-div,
body.woocommerce-order-pay #order_review,
body.woocommerce-order-pay .container .styled-box .payment-method-div {
    padding: 20px;
}

body.light_theme.woocommerce-checkout .order-summary-section .order-summar,
body.light_theme.woocommerce-order-pay .order-summary-section .order-summar {
    box-shadow: 8px 8px 40px 0px #00000033;
}

body.woocommerce-checkout .order-summar table,
body.woocommerce-order-pay .order-summar table {
    display: block;
    font-size: 18px;
    border: none;
}

body.woocommerce-checkout .order-summar table tfoot,
body.woocommerce-order-pay .order-summar table tfoot {
    border-radius: 10px;
    background-color: var(--card);
    margin-top: 10px;
}
body.light_theme.woocommerce-checkout .order-summar table thead,
body.light_theme.woocommerce-checkout .order-summar table tfoot,
body.light_theme.woocommerce-order-pay .order-summar table thead,
body.light_theme.woocommerce-order-pay .order-summar table tfoot {
    background-color: #E8EDF3;
}

body.woocommerce-checkout .order-summar table tbody,
body.woocommerce-checkout .order-summar table tfoot,
body.woocommerce-order-pay .order-summar table tbody,
body.woocommerce-order-pay .order-summar table tfoot {
    display: block;
}

body.woocommerce-checkout .order-summar table tbody tr,
body.woocommerce-checkout .order-summar table tfoot tr,
body.woocommerce-order-pay .order-summar table tbody tr,
body.woocommerce-order-pay .order-summar table tfoot tr {
    display: flex;
    align-items: center;
    border-radius: 10px;
    justify-content: space-between;
}

body.woocommerce-checkout .order-summar table tbody tr td,
body.woocommerce-order-pay .order-summar table tbody tr td {
    flex: 1;
    border: none;
}

body.woocommerce-checkout .order-summar table thead tr th:nth-child(2),
body.woocommerce-checkout .order-summar table tbody tr td:nth-child(2),
body.woocommerce-order-pay .order-summar table thead tr th:nth-child(2),
body.woocommerce-order-pay .order-summar table tbody tr td:nth-child(2) {
    text-align: center;
}


body.woocommerce-checkout .order-summar table tfoot,
body.woocommerce-order-pay .order-summar table tfoot {
    padding: 1.1rem 1rem;
}

body.woocommerce-checkout .order-summar table tfoot tr td,
body.woocommerce-order-pay .order-summar table tfoot tr td {
    padding: 0;
    border: none;
    text-align: right;
}

body.woocommerce-checkout .order-summar table tfoot tr:nth-child(1) td,
body.woocommerce-order-pay .order-summar table tfoot tr:nth-child(1) td {
    padding-bottom: 5px;
}

body.woocommerce-checkout .order-summar table tfoot tr td.order-total-value,
body.woocommerce-order-pay .order-summar table tfoot tr td.order-total-value {
    color: #0BCF7D;
    font-weight: 900;
}

/* Cart Item Data Formatting - Alternative Line Break Fix */

.woocommerce td.product-name dl.variation:last-child {
    margin-top: 0.5em;
}

.woocommerce td.product-name dl.variation dt {
    display: block;
    margin: 0;
}

.woocommerce td.product-name dl.variation p {
    clear: both;
    padding-bottom: 10px;
}

body.woocommerce-checkout .wc-block-components-notice-banner {
    margin: auto;
    padding: 0;
    border: none;
    max-width: 80%;
    background-color: transparent;
}
body.woocommerce-checkout .wc-block-components-notice-banner__content {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

body.light_theme.woocommerce-checkout .wc-block-components-notice-banner .wc-block-components-notice-banner__content {
    color: #000000;
}

body.woocommerce-checkout .wc-block-components-notice-banner .wc-block-components-notice-banner__content a {
    padding: 0 !important;
    color: #0BCF7D !important;
    background: none !important;
    text-decoration: underline !important;
}

body.woocommerce-checkout .order-billing-section {
    position: relative;
}
body.light_theme.woocommerce-checkout .order-billing-section::before {
    background: #E7ECF2;
}

body.woocommerce-checkout .billing-payment-column h3,
body.woocommerce-checkout .order-review-column h3,
body.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper h3,
body.woocommerce-order-pay .billing-payment-column h3,
body.woocommerce-order-pay .order-review-column h3,
body.woocommerce-order-pay .payment-method-div .woocommerce-terms-and-conditions-wrapper h3 {
    font-size: 25px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
    border-radius: 30px;
    align-items: flex-end;
}
body.light_theme.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    background-color: #ffffff;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row label {
    line-height: 1;
    font-weight: 600;
}
body.light_theme.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row label {
    color: #1B232F;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row label abbr {
    color: #00af66;
    margin-left: -5px;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row label span {
    color: #ffffff;
    font-weight: 600;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row input:not([type="checkbox"]),
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row .select2-selection {
    width: 100%;
    /* outline: none; */
    font-size: 14px;
    font-weight: 400;
    border-radius: 8px;
}

.light_theme .select2-container .select2-dropdown {
    background: #E8EDF3;
    color: #000;
}

.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated input[type="email"],
.woocommerce form .form-row.woocommerce-validated input[type="number"],
.woocommerce form .form-row.woocommerce-validated select {
    border-color: var(--border);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="tel"],
.woocommerce form .form-row input[type="password"],
.woocommerce form .form-row input[type="number"],
.woocommerce form .form-row textarea {
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 12px 15px !important;
    border-radius: 8px !important;
    border: 1px solid var(--border) !important;
    background-color: var(--background) !important;
    color: var(--foreground) !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.woocommerce form .form-row select {
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 14px 15px !important;
    border-radius: 8px !important;
    border: 1px solid var(--border) !important;
    background-color: var(--background) !important;
    color: var(--foreground) !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row input:not([type="checkbox"]),
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row .select2-selection {
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    border-radius: 8px !important;
    border: 1px solid var(--border) !important;
}

body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row select {
    width: 100% !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    padding: 14px 15px !important;
    border-radius: 8px !important;
    border: 1px solid var(--border) !important;
}

.woocommerce form .form-row select,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row select {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwb2x5bGluZSBwb2ludHM9IjYgOSAxMiAxNSAxOCA5Ij48L3BvbHlsaW5lPjwvc3ZnPg==") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
}

/* ============================================
   ADDITIONAL SELECT FIELD FIXES
   ============================================ */

/* Force consistent border-radius on all select fields globally */
select,
select.form-control,
.woocommerce select,
.woocommerce-checkout select,
.wc-block-checkout select {
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* Ensure WooCommerce Blocks select fields also have consistent styling */
.wc-blocks-components-select .wc-blocks-components-select__select,
.wc-block-components-select select,
.wc-block-checkout select,
.wc-block-cart select {
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
}

/* Override any Bootstrap select styling that might interfere */
.form-select,
.custom-select {
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
}

/* Specific override for country/state dropdowns */
#billing_country,
#shipping_country,
#billing_state,
#shipping_state,
select[name*="country"],
select[name*="state"] {
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
}

.select2-container .select2-selection--single {
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
}

.select2-container .select2-selection {
    background-color: var(--background) !important;
}

/* ============================================
   ENHANCED FOCUS STYLING - FIXED VERSION
   ============================================ */

/* Primary focus rules - High specificity with fallbacks */
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row input[type="text"]:focus,
.woocommerce form .form-row input[type="email"]:focus,
.woocommerce form .form-row input[type="tel"]:focus,
.woocommerce form .form-row input[type="password"]:focus,
.woocommerce form .form-row input[type="number"]:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row.woocommerce-validated input.input-text:focus,
.woocommerce form .form-row.woocommerce-validated select:focus,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row input:focus,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row select:focus,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row .select2-selection:focus {
    border-color: var(--brand-primary, #0ab163) !important;
    outline: 2px solid var(--brand-primary, #0ab163) !important;
    outline-offset: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(10, 177, 99, 0.25) !important;
}

/* Bootstrap form-control override */
.form-control:focus,
.woocommerce .form-control:focus,
body .form-control:focus {
    border-color: var(--brand-primary, #0ab163) !important;
    outline: 2px solid var(--brand-primary, #0ab163) !important;
    outline-offset: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(10, 177, 99, 0.25) !important;
}

/* Generic input focus rules for broader coverage */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: var(--brand-primary, #0ab163) !important;
    outline: 2px solid var(--brand-primary, #0ab163) !important;
    outline-offset: 0 !important;
}

/* WooCommerce specific contexts */
.woocommerce input:focus,
.woocommerce select:focus,
.woocommerce textarea:focus,
.wc-block-checkout input:focus,
.wc-block-checkout select:focus,
.wc-block-cart input:focus,
.wc-block-cart select:focus {
    border-color: var(--brand-primary, #0ab163) !important;
    outline: 2px solid var(--brand-primary, #0ab163) !important;
    outline-offset: 0 !important;
}

/* Select2 dropdown focus handling */
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single.select2-selection--focused {
    border-color: var(--brand-primary, #0ab163) !important;
    outline: 2px solid var(--brand-primary, #0ab163) !important;
    outline-offset: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(10, 177, 99, 0.25) !important;
}

/* Light theme specific overrides */
.light_theme input:focus,
.light_theme select:focus,
.light_theme textarea:focus,
.light_theme .form-control:focus {
    border-color: var(--brand-primary, #0ab163) !important;
    outline: 2px solid var(--brand-primary, #0ab163) !important;
    outline-offset: 0 !important;
    box-shadow: 0 0 0 0.25rem rgba(10, 177, 99, 0.25) !important;
}

/* Accessibility - ensure focus is always visible */
*:focus {
    outline-style: solid !important;
}

/* Special handling for payment method radio buttons */
.wc_payment_methods input[type="radio"]:focus,
.payment_method_stripe input[type="radio"]:focus,
.payment_methods input[type="radio"]:focus {
    outline: 2px solid var(--brand-primary, #0ab163) !important;
    outline-offset: 2px !important;
}

/* Remove conflicting box-shadows that might interfere */
.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus {
    box-shadow: 0 0 0 0.25rem rgba(10, 177, 99, 0.25) !important;
}

body.light_theme.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row input,
body.light_theme.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row .select2-selection {
    color: #818D9F;
    background-color: #E8EDF3;
}
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row input::placeholder {
    color: #9EABBF;
    font-weight: 600;
}

body.light_theme.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #818D9F;
    font-weight: 600;
}

.woocommerce-page form .form-row .select2-container .select2-selection--single .select2-selection__rendered {
    background-color: var(--background);
    color: var(--foreground);
    border-radius: 6px;
}

.woocommerce-page .select2-container .select2-search--dropdown .select2-search__field {
    border-radius: 8px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
    background-color: var(--brand-primary);
}

.select2-container .select2-selection--single .select2-selection__arrow b {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJmZWF0aGVyIGZlYXRoZXItY2hldnJvbi1kb3duIj48cG9seWxpbmUgcG9pbnRzPSI2IDkgMTIgMTUgMTggOSI+PC9wb2x5bGluZT48L3N2Zz4=)
}

.select2-container .select2-dropdown {
    display: block;
    background: var(--background);
    color: #fff;
    border-radius: 8px;
}

input:-internal-autofill-selected {
    background-color: var(--background) !important;
}

body.woocommerce-checkout .payment-method-div h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
body.light_theme.woocommerce-checkout .payment-method-div h2 {
    color: #1B232F;
}

body.woocommerce-checkout .payment-method-div {
    padding: 25px;
    font-size: 18px;
}

body.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment {
    background: none !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
    text-align: left;
    padding: 1em;
    border-bottom: 1px solid rgba(104, 87, 125, .14);
    margin: 0;
    list-style: none outside;
}

body.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 !important;
    margin-bottom: 20px !important;
}

body.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods::before {
    display: none !important;
}

body.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods li {
    flex: 0 0 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 10px;
    min-height: 70px;
    padding: 20px;
}
body.light_theme.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods li {
    background-color: #E2E9F3;
}

body.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods li input {
    outline: none;
}

body.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods li label img {
    margin: 0 0 0 10px !important;
}

body.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods li label {
    font-weight: 600;
    margin-bottom: 0;
}
body.light_theme.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods li label {
    color: #424F60;
}

body.light_theme.woocommerce-checkout #payment .payment_box {
    background-color: #ffffff;
}
body.light_theme.woocommerce-checkout #payment .payment_box::before {
    border-bottom-color: #ffffff;
}

body.woocommerce-checkout .payment-method-div .place-order {
    padding: 0 !important;
}

body.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper {
    padding: 20px;
    font-size: 18px;
    border-radius: 15px;
}
body.light_theme.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper {
    background-color: #E2E9F3;
}

body.light_theme.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper h3 {
    color: #1B232F;
}

body.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper p {
    line-height: 1.4;
}
body.light_theme.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper p {
    color: #424F60;
}

body.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper a {
    color: #00a962;
}

body.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper .validate-required {
    padding: 0;
}

body.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper .validate-required label abbr {
    color: #00af66;
    margin-left: -5px;
}

body.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper .validate-required span {
    color: #ffffff;
    font-weight: 600;
}
body.light_theme.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper .validate-required span {
    color: #424F60;
}

body .woocommerce-checkout #payment div.payment_box {
    background-color: var(--card);
}

body .woocommerce-checkout #payment div.payment_box::before {
    border: 1em solid var(--background);
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}

body.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper .validate-required span a {
    color: #00a962;
}

body.woocommerce-checkout .order-place-button-section .accepted-cards img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

body.woocommerce-checkout .order-place-button-section #place_order {
    display: block;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 40px;
    border-radius: 8px;
    float: unset !important;
    width: 100%;
    background-color: var(--brand-primary);
    margin: 20px 0;
}

body.woocommerce-checkout .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    width: 1420px;
    max-width: 100%;
    padding: 0 12px;
    margin: 0 auto 30px;
}

body .woocommerce-NoticeGroup .wc-block-components-notice-banner {
    color: #F57777;
    position: relative;
    border-radius: 10px;
    border: 1px solid #E8554D !important;
    background-color: #E8554D33 !important;
    padding: 25.5px 16px 25.5px 75px !important;
}
.woocommerce-NoticeGroup .wc-block-components-notice-banner::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 15px;
    width: 50px;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/wp-content/uploads/2025/01/error-icon.png);
}

.container.new-layout-checkout {
    display: flex;
    gap: 20px;
}

/*---------- Checkout Page Responsive ----------*/

@media (min-width: 1400px) and (max-width: 1599px) {
    body.woocommerce-checkout .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
        width: 1370px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    body.woocommerce-checkout .woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
        width: 1170px;
    }
}

@media (max-width: 1024px) {
    .container.new-layout-checkout {
      display: flex;
      flex-direction: column-reverse;
      max-width: 100%;
    }
    .order-review-column {
        width: 100%;
      }
      .styled-box.order-summar {
        width: 100%;
      }
      .order-review-column {
        position: static !important;
        top: auto !important;
        z-index: auto !important;
      }
    }

@media(max-width: 725px) {
    body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .woocommerce-form-coupon p.form-row.form-row-first, .woocommerce-form-coupon p.form-row.form-row-last {
        width: 100%;
    }
    .woocommerce-page .woocommerce-form-coupon .button {
        width: 100% !important;
    }
}

@media (max-width: 575px) {
    .woocommerce-NoticeGroup .wc-block-components-notice-banner {
        padding: 15px 15px 15px 55px !important;
    }
    .woocommerce-NoticeGroup .wc-block-components-notice-banner::before {
        left: 15px;
        width: 30px;
        height: 30px;
    }

    .woocommerce-NoticeGroup .wc-block-components-notice-banner .wc-block-components-notice-banner__content {
        font-size: 14px;
    }

    body.woocommerce-checkout .new-layout-checkout,
    body.woocommerce-order-pay .new-layout-checkout {
        flex-direction: column-reverse;
        padding: 0;
    }

    body.woocommerce-checkout .billing-payment-column,
    body.woocommerce-order-pay .billing-payment-column {
        gap: 20px;
    }

    body.woocommerce-checkout .order-summary-section,
    body.woocommerce-order-pay .order-summary-section {
        margin-bottom: 30px;
    }

    body.woocommerce-checkout .container.styled-box,
    body.woocommerce-order-pay .container.styled-box {
        padding: 0;
    }

    body.woocommerce-checkout .order-summar table tbody tr td.product-name,
    body.woocommerce-order-pay .order-summar table tbody tr td.product-name {
        font-size: 14px;
    }

    body.woocommerce-checkout .payment-method-div .place-order,
    body.woocommerce-order-pay .payment-method-div .place-order {
        margin: 0;
    }
    body.woocommerce-checkout .payment-method-div,
    body.woocommerce-order-pay .payment-method-div {
        font-size: 16px;
        padding: 20px !important;
    }
    body.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods,
    body.woocommerce-order-pay .payment-method-div .woocommerce-checkout-payment .wc_payment_methods {
        margin-bottom: 5px !important;
    }
    body.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods li,
    body.woocommerce-order-pay .payment-method-div .woocommerce-checkout-payment .wc_payment_methods li {
        flex: 0 0 100%;
        height: 70px;
    }
    body.woocommerce-checkout .payment-method-div .woocommerce-checkout-payment .wc_payment_methods li label,
    body.woocommerce-order-pay .payment-method-div .woocommerce-checkout-payment .wc_payment_methods li label {
        line-height: 1.4;
    }
    body.woocommerce-checkout .payment-method-div .woocommerce-terms-and-conditions-wrapper p,
    body.woocommerce-order-pay .payment-method-div .woocommerce-terms-and-conditions-wrapper p {
        font-size: 16px;
    }
    .card-frame.frame--activated {
        width: 100%;
    }
}

/*---------- Cart Page New Styling ----------*/

body.woocommerce-cart .wp-block-post-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

body.woocommerce-cart .wc-block-cart {
    flex-direction: row-reverse;
}

body.woocommerce-cart .wc-block-cart .wc-block-cart__main {
    flex: 0 0 65%;
    padding-right: 0;
}

body.woocommerce-cart .wc-block-cart .wc-block-cart__main table tbody tr {
    outline: none;
}

body.woocommerce-cart .wc-block-cart .wc-block-cart__main .wc-block-cart-item__image {
    padding-left: 0;
}

body.woocommerce-cart .wc-block-cart .wc-block-cart__main .wc-block-cart-item__image a img,
body.woocommerce-cart .wc-block-cart .wc-block-cart__main .wc-block-cart-item__image img {
    border-radius: 8px;
}

body.woocommerce-cart .wc-block-cart .wc-block-cart__main .wc-block-components-product-name {
    font-weight: 600;
}

body.woocommerce-cart .wc-block-cart .wc-block-cart-item__wrap a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart-item__wrap a:hover {
    color: #08c26b;
}

body.woocommerce-cart .wc-block-cart .wc-block-formatted-money-amount,
body.woocommerce-cart .wc-block-cart .wc-block-cart-item__prices {
    font-weight: 600;
}

body.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar .wc-block-components-panel__button {
    outline: none;
}

body.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar .wc-block-components-totals-coupon__form input {
    outline: none;
}

body.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar .wc-block-components-totals-coupon__button[aria-disabled="true"] {
    opacity: 0.8;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar .wc-block-components-totals-coupon__button {
    transition: 0.3s;
    background-color: #00af66;
}
body.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar .wc-block-components-totals-coupon__button:hover {
    background-color: #000000;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block > h2:nth-child(3) {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 30px;
}

body.woocommerce-cart .wc-block-cart__sidebar {
    color: #ffffff;
}

body.woocommerce-cart .wc-block-grid__products .wc-block-grid__product a {
    color: #fff;
    font-size: 16px;
}

body.woocommerce-cart .wc-block-grid__products .wc-block-grid__product .price {
    font-size: 14px;
    font-weight: 600;
}

.woocommerce-checkout #payment ul.payment_methods li {
    height: auto;
    line-height: 1.2;
    padding-top: 20px !important;
    list-style: none;
    max-width: 100%;
}

.woocommerce td.product-name .wc-item-meta:last-child li {
    list-style: none;
    margin-bottom: 10px;
}


/*---------- Cart Page New Responsive ----------*/


@media(max-width: 725px) {

    body.woocommerce-cart .wc-block-cart .wc-block-cart__main {
        flex: 0 0 100%;
        padding-right: 10px;
    }
    body.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar .wc-block-components-totals-wrapper {
        padding: 15px;
    }
    body.woocommerce-cart .wc-block-cart .wc-block-cart__sidebar .wc-block-components-totals-wrapper:empty {
        padding: 0;
    }
}

/*---------- ThankYou Page Styling ----------*/

body.light_theme.woocommerce-order-received h3,
body.light_theme.woocommerce-order-received p {
    color: #000;
}
body.woocommerce-order-received .woocommerce-order-received-main {
    padding: 80px 0;
    overflow-x: clip;
    position: relative;
}
body.woocommerce-order-received .woocommerce-order-received-main::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 20%;
    height: 100%;
    min-width: 150px;
    background-size: contain;
    background-repeat: no-repeat;
}
body.woocommerce-order-received .woocommerce-order-received-main::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -12%;
    width: 250px;
    height: 420px;
    z-index: -1;
    background-size: cover;
    background-repeat: no-repeat;
}

body.woocommerce-order-received .woocommerce-order-received-main > .container::before {
    content: "";
    position: absolute;
    top: 50px;
    left: -400px;
    width: 497px;
    height: 597px;
    opacity: 0.7;
    filter: blur(200px);
}
body.woocommerce-order-received .woocommerce-order-received-main > .container::after {
    content: "";
    position: absolute;
    right: -400px;
    bottom: 0;
    z-index: -1;
    width: 497px;
    height: 597px;
    opacity: 0.7;
    filter: blur(200px);
}

/* Apply styled-box design consistent with checkout/order-pay */
body.woocommerce-order-received .order-placed {
    background: #ffffff08;
    border: 1px solid #ffffff14;
    border-radius: 2rem;
    transition: all .3s;
    box-shadow: 0 4px 24px #00000014;
    padding: 25px;
    font-size: 18px;
    margin: 80px 0;
}
body.woocommerce-order-received .order-placed:hover {
    background: #ffffff0f;
    border: 1px solid #ffffff1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px #0000001f;
}

/* Light theme support */
body.light_theme.woocommerce-order-received .order-placed {
    color: #1B232F;
    background-color: #ffffff;
    box-shadow: 8px 8px 40px 0px #00000033;
}

/* Thank you message with consistent typography */
body.woocommerce-order-received .thank-you-message {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border);
}

body.woocommerce-order-received .thank-you-message p {
    font-size: 60px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 16px;
}

body.woocommerce-order-received .thank-you-message:after {
    content: 'You should receive an order confirmation email shortly.';
    font-weight: 600;
    line-height: 1;
    padding: 0;
    font-size: 22px;
    padding-bottom: 30px;
    margin-bottom: 20px;
    display: block;
}

/* Section titles matching checkout styling */
body.woocommerce-order-received .sub-section-title {
    font-size: 25px !important;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: var(--foreground);
}

/* Order summary with styled-box design */
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary {
    background: #ffffff08;
    border: 1px solid #ffffff14;
    border-radius: 2rem;
    transition: all .3s;
    box-shadow: 0 4px 24px #00000014;
    margin: 20px 0;
    padding: 20px 30px;
}
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary:hover {
    background: #ffffff0f;
    border: 1px solid #ffffff1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px #0000001f;
}

body.light_theme.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary {
    background-color: #ffffff;
    box-shadow: 8px 8px 40px 0px #00000033;
}

body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary ul li {
    flex: 1;
    font-size: 20px;
    border-right: 2px solid var(--border);
    color: var(--foreground);
    list-style: none;
    padding-right: 10px;
}
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary ul li:nth-last-child(1) {
    border-right: none;
}

body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary li .wc-block-order-confirmation-summary-list-item__key {
    font-weight: 500;
    color: var(--foreground);
}

body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary li .wc-block-order-confirmation-summary-list-item__value {
    font-weight: 700;
    color: var(--foreground);
}

/* Downloads section with styled-box design */
body.woocommerce-order-received .wc-block-order-confirmation-downloads {
    margin: 5px 0 0;
}

body.woocommerce-order-received table {
    background: #ffffff08;
    border: 1px solid #ffffff14;
    border-radius: 2rem;
    transition: all .3s;
    box-shadow: 0 4px 24px #00000014;
    overflow: hidden;
}
body.woocommerce-order-received table:hover {
    background: #ffffff0f;
    border: 1px solid #ffffff1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px #0000001f;
}

body.light_theme.woocommerce-order-received table {
    background-color: #ffffff;
    box-shadow: 8px 8px 40px 0px #00000033;
}

/* Table styling consistent with checkout order summary */
body.woocommerce-order-received table thead {
    background-color: var(--card);
}
body.light_theme.woocommerce-order-received table thead {
    background-color: #E8EDF3;
}

body.woocommerce-order-received table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}
body.light_theme.woocommerce-order-received table tbody tr:nth-child(odd) {
    background-color: #f6f7f9;
}

body.woocommerce-order-received table.wc-block-order-confirmation-downloads__table thead tr th.download-file {
    width: 20%;
}

body.woocommerce-order-received table.wc-block-order-confirmation-downloads__table thead tr th,
body.woocommerce-order-received table.wc-block-order-confirmation-downloads__table tbody tr td {
    text-align: left;
    border-right: 2px solid var(--border);
    color: var(--foreground);
    font-size: 18px;
}
body.woocommerce-order-received table.wc-block-order-confirmation-downloads__table thead tr th:nth-last-child(1),
body.woocommerce-order-received table.wc-block-order-confirmation-downloads__table tbody tr td:nth-last-child(1) {
    border-right: none;
}

body.woocommerce-order-received table.wc-block-order-confirmation-downloads__table tbody tr td {
    font-size: 16px;
    font-weight: 500;
}

body.woocommerce-order-received table.wc-block-order-confirmation-downloads__table tbody tr td a {
    color: var(--foreground);
    text-transform: capitalize;
}

body.woocommerce-order-received table.wc-block-order-confirmation-downloads__table tbody tr td.download-file a {
    width: 150px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 8px;
    text-align: center;
    display: inline-block;
    background-color: var(--brand-primary);
    text-transform: capitalize;
    transition: 0.3s all;
}
body.woocommerce-order-received table.wc-block-order-confirmation-downloads__table tbody tr td.download-file a:hover {
    background-color: #000000;
}

/* Order totals with styled-box design */
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals {
    margin-top: 5px;
}

body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table thead tr th:nth-child(1),
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table tbody tr td:nth-child(1),
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table tfoot tr th {
    width: 47%;
    font-size: 20px;
    font-weight: 500;
    border-right: 2px solid var(--border);
    color: var(--foreground);
}
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table thead tr th:nth-last-child(1),
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table tbody tr td:nth-last-child(1),
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table tfoot tr td {
    font-size: 20px;
    font-weight: 800;
    color: var(--foreground);
}

.wc-item-meta li {
    list-style: none;
}

/* Totals footer with highlighted background */
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table tfoot {
    background-color: var(--card);
    border-radius: 10px;
}
body.light_theme.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table tfoot {
    background-color: #E8EDF3;
}

body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table tbody tr td a {
    color: var(--foreground);
    font-weight: 500;
}
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table tbody tr td strong {
    font-weight: 500;
}

/* Total amount in brand color */
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals table tfoot tr td.wc-block-order-confirmation-totals__total {
    color: #0BCF7D;
}

/* Order again button styling consistent with checkout */
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals-wrapper .order-again {
    padding: 20px 0 0;
    text-align: end;
}

body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals-wrapper .order-again a {
    font-size: 16px;
    font-weight: 700;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: var(--brand-primary);
    transition: 0.3s all;
    text-decoration: none;
}
body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-totals-wrapper .order-again a:hover {
    background-color: #000000;
}

/*---------- ThankYou Page Responsive ----------*/

@media(max-width: 575px) {
    body.woocommerce-order-received .order-placed {
        padding: 25px 12px 20px;
    }
    body.woocommerce-order-received .thank-you-message:before {
        width: 80px;
        height: 80px;
        background-size: cover !important;
    }
    body.woocommerce-order-received .thank-you-message p {
        font-size: 40px;
    }
    body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-downloads {
        overflow-x: auto;
    }
    body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary {
        padding: 20px 15px 15px;
    }
    body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary ul li {
        flex: 0 0 100%;
        border-right: none;
        padding-bottom: 10px;
        border-bottom: 2px solid #4F5D71;
    }
    body.woocommerce-order-received .wp-block-woocommerce-order-confirmation-summary ul li:nth-last-child(1) {
        border-right: none;
        border-bottom: none;
    }
    body.woocommerce-order-received .sub-section-title {
        margin: 40px 0 15px;
    }
}

/*---------- My Account Page Styling ----------*/

body.light_theme.woocommerce-account .woocommerce-MyAccount-content p,
body.light_theme.woocommerce-account .woocommerce-form-login p {
    color: #ffffff;
}

body.woocommerce-account .woocommerce {
    padding: 80px 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content,
body.woocommerce-account .woocommerce-form-login {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 20px;
    background-color: #2C3748;
    border: 1px solid #465364;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
}
body.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    display: block;
    border-radius: 10px;
    background-color: #00af66;
}

body.woocommerce-account .woocommerce-MyAccount-content a {
    color: #00af66;
    font-weight: 600;
}

body.woocommerce-account .woocommerce-MyAccount-content .edit-account input,
body.woocommerce-account .woocommerce-form-login input,
body.woocommerce-account .woocommerce-ResetPassword input {
    border-radius: 10px;
}

body.woocommerce-account .woocommerce-MyAccount-content .edit-account .woocommerce-Button {
    margin-left: 5px;
}

body.woocommerce-account .woocommerce-MyAccount-content .edit-account .woocommerce-Button,
body.woocommerce-account .woocommerce-form-login .woocommerce-button,
body.woocommerce-account .woocommerce-ResetPassword .woocommerce-Button {
    border-radius: 10px;
    transition: 0.3s all;
    background-color: #00af66;
}
body.woocommerce-account .woocommerce-MyAccount-content .edit-account .woocommerce-Button:hover,
body.woocommerce-account .woocommerce-form-login .woocommerce-button:hover,
body.woocommerce-account .woocommerce-ResetPassword .woocommerce-Button:hover {
    background-color: #000000;
}

body.woocommerce-account .woocommerce-form-login .woocommerce-LostPassword a {
    color: #00af66;
    font-weight: 600;
    margin-left: 5px;
}

.cmplz-cookiebanner p {
    color: #000000;
}

.light_theme .promiceSec .promiceTop .bLogo img {
    filter: brightness(0);
}

.woocommerce-error a {
    color: #0BCF7D !important;
}

/*---------- Payment Options Radio Align ----------*/

/* .woocommerce-page label {
    display: inline-flex !important;
    align-items: center;
} */

/*---------- Order Pay Page Specific Styling ----------*/

/* Order Pay Page - Hide Qty column (unique to order-pay) */
body.woocommerce-order-pay .shop_table thead tr th:nth-child(2),
body.woocommerce-order-pay .shop_table tbody tr td:nth-child(2) {
    display: none;
}

/* Order Pay Page - Style monetary values in green (unique styling) */
body.woocommerce-order-pay .shop_table tfoot tr td .woocommerce-Price-amount,
body.woocommerce-order-pay .shop_table tfoot tr td .amount,
body.woocommerce-order-pay .shop_table tbody tr td:nth-child(3) .woocommerce-Price-amount,
body.woocommerce-order-pay .shop_table tbody tr td:nth-child(3) .amount,
body.woocommerce-order-pay .shop_table tbody tr td.product-subtotal {
    color: #0BCF7D !important;
    font-weight: 700;
}

/* Order Pay Page - Reduce spacing in order summary */
body.woocommerce-order-pay .shop_table tfoot tr {
    line-height: 1.2;
}

body.woocommerce-order-pay .shop_table tfoot tr th,
body.woocommerce-order-pay .shop_table tfoot tr td {
    padding: 5px 0;
    font-size: 18px;
    border-top: none;
}

/* Order Pay Page - Format item metadata for proper line breaks */
body.woocommerce-order-pay .wc-item-meta li p {
    display: block;
    clear: left;
}

/* Order Pay Page - Hide klaviyo checkbox */
body.woocommerce-order-pay .kl_newsletter_checkbox_field {
    display: none;
}

.wp-block-navigation .wp-block-navigation-item__content {
    color: #abb6c1;
}