/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 14 2026 | 11:22:06 */
/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* Fonts */
  --font-display: 'Clash Display', 'Arial Black', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
}

/* ============================================
   DARK MODE (DEFAULT) — Navy + Gold
   ============================================ */
:root, [data-theme="dark"] {
  --color-bg:             #111B2E;
  --color-surface:        #1B2A4A;
  --color-surface-2:      #243B5E;
  --color-surface-offset: #162340;
  --color-surface-dynamic: #2A4570;
  --color-divider:        #2E4A72;
  --color-border:         #35527A;

  --color-text:           #E8ECF2;
  --color-text-muted:     #8E9BB5;
  --color-text-faint:     #566B8A;
  --color-text-inverse:   #111B2E;

  --color-primary:        #D4A843;
  --color-primary-hover:  #E0B94F;
  --color-primary-active: #C49A38;
  --color-primary-highlight: #D4A84320;

  --color-warning:        #BB653B;
  --color-error:          #D16363;
  --color-success:        #6DAA45;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* System preference fallback */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #111B2E;
    --color-surface:        #1B2A4A;
    --color-surface-2:      #243B5E;
    --color-surface-offset: #162340;
    --color-surface-dynamic: #2A4570;
    --color-divider:        #2E4A72;
    --color-border:         #35527A;
    --color-text:           #E8ECF2;
    --color-text-muted:     #8E9BB5;
    --color-text-faint:     #566B8A;
    --color-text-inverse:   #111B2E;
    --color-primary:        #D4A843;
    --color-primary-hover:  #E0B94F;
    --color-primary-active: #C49A38;
    --color-primary-highlight: #D4A84320;
  }
}

/* ============================================
   LIGHT MODE
   ============================================ */
[data-theme="light"] {
  --color-bg:             #F4F2EE;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F9F8F5;
  --color-surface-offset: #EDE9E3;
  --color-surface-dynamic: #E2DED6;
  --color-divider:        #D4D0C8;
  --color-border:         #C8C2B8;

  --color-text:           #1B2A4A;
  --color-text-muted:     #5A6B85;
  --color-text-faint:     #8E9BB5;
  --color-text-inverse:   #F4F2EE;

  --color-primary:        #9A7520;
  --color-primary-hover:  #7D5F16;
  --color-primary-active: #6B5010;
  --color-primary-highlight: #9A752020;

  --color-warning:        #964219;
  --color-error:          #A12C44;
  --color-success:        #437A22;

  --shadow-sm: 0 1px 2px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 16px rgba(27, 42, 74, 0.1);
  --shadow-lg: 0 12px 40px rgba(27, 42, 74, 0.14);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary-hover);
}


body{
    background-color: #111b2e;
}
.header{
    background: #111b2e9e;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-divider);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header.elementor-sticky--effects{
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.header__logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    color: var(--color-text);
    flex-shrink: 0;
}
.header__logo svg {
    width: 40px;
    height: 40px;
}
.header__logo-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
	color: #fff;
}
.header__logo-text span {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--text-xs);
    letter-spacing: 0.08em;
    color: var(--color-primary);
    text-transform: uppercase;
}
.elementor-nav-menu a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color var(--transition-interactive);
}
.page-header{
	display: none;
}
.footer__brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-text);
}
.footer__brand-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--text-sm);
    letter-spacing: 0.04em;
    text-transform: uppercase;
	padding-left: 10px;
    color: #fff;
}
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--space-6);
    padding: var(--space-2) var(--space-4);
    border: 1px solid 
	color-mix(in srgb, var(--color-primary) 30%, transparent);
    border-radius: var(--radius-full);
    background: var(--color-primary-highlight);
	justify-content: center;
}
.hero__eyebrow svg {
    width: 16px;
    height: 16px;
    display: inline;
}
.hero__eyebrow p{
	margin-bottom: 0px;
}
.hero__title .highlight {
    color: var(--color-primary);
}
.btn--primary {
    border-radius: 10px;
	overflow: hidden;
}
.btn--primary:hover {
    background: var(--color-primary-hover);
    box-shadow: 0 0 24px 
	color-mix(in srgb, var(--color-primary) 30%, transparent);
    transform: translateY(-1px);
}

.btn--primary.ghost:hover {
    background: transparent;
    box-shadow: 0 0 24px 
	color-mix(in srgb, var(--color-primary) 30%, transparent);
    transform: translateY(-1px);
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
.hero{
	z-index: -1;
	opacity: 0.25;
}


body .icm{
	display: none;
}
.icm, .ics{
	cursor: pointer;
}
.light .ics{
	display: none;
}
.light .icm{
	display: block;
}
body.light{
	background-color: #f4f2ee;
}
.light .header__logo-text{
	color: #1b2a4a;
}
.light .elementor-nav-menu a{
	color: #1b2a4a !important;
}
.light .elementor-nav-menu a:hover{
	color: #9a7520 !important;
}
.light .header__logo-text span {
    color: #9a7520;
}
.light{
	--color-primary:        #9a7520;
}
.light .header .tog svg{
	fill: #1b2a4a !important;
}
.light .icm .elementor-icon:hover svg{
		fill: #9a7520 !important;
}
.light .whlb{
	background-color: #fff !important;
}
.light .whlb *{
	color: #5a6b85 !important;
}
.light .whlb .footer__brand-name{
	color: #1b2a4a !important;
}
.light .whlb .elementor-heading-title{
	color: #1b2a4a !important;
}
.light .whlb.fotc*{
	color: #8e9bb5 !important;
}
.thesm p{
	margin-bottom: 0px;
}
.p-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), 
	color-mix(in srgb, var(--color-primary) 40%, transparent));
    opacity: 0;
    transition: opacity var(--transition-interactive);
	--border-transition: 0.3s;
}
.p-card:hover {
    border-color: 
	color-mix(in srgb, var(--color-primary) 40%, var(--color-divider));
    box-shadow: 0 0 30px 
	color-mix(in srgb, var(--color-primary) 8%, transparent);
    transform: translateY(-2px);
}
.p-card:hover::before{
    opacity: 1;
}
.nom p{
	margin-bottom: 0px;
}
.product-card__features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    flex-shrink: 0;
    position: absolute;
    left: 0;
    margin-top: 10px;
}
.product-card__features{
	padding-left: 20px;
}
.product-card__features li{
	display: inline-block;
	font-size: 14px;
}
.myp.p-card:before{
	display: none !important;
}
.leso h2{
	opacity: 0.15;
}
.about__card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: var(--space-8);
    right: var(--space-8);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}
.light .header{
	background: color-mix(in srgb, #f4f2ee 85%, transparent);
	border-bottom: 1px solid #d4d0c8;
}
.light .hero__title h1{
	color: #1b2a4a;
}
.light .hero-sec p{
	color: #5a6b85;
}
.light .ghost a{
	color: #5a6b85 !important;
}
.light .ghost a:hover{
	color: #1b2a4a !important;
	border: 1px solid #5a6b85 !important;
}
.light .highb .elementor-button{
	background: #9a7520 !important;
	color: #fff !important;
	border: 1px solid #9a7520 !important;
} 
.light .highb svg{
	fill: #fff !important;
}
.light .thsm:before{
	background-color: transparent !important;
}
.light .ourfr p{
	color: #9a7520 !important;
}
.light .gdivi .elementor-divider-separator{
	border-block-start: var(--divider-border-width) var(--divider-border-style) #9a7520 !important;
}
.light .thsmb svg{
	fill: #9a7520 !important;
}
.light .thesm:hover{
	border-color: #9a7520 !important;
}
.light .p-card::before {
    background: linear-gradient(90deg, #9a7520, color-mix(in srgb, #9a7520 40%, transparent));
}
.light .lightdarks .elementor-heading-title{
	color: #1b2a4a !important;
}

.light .lightdarks *{
	color: #5a6b85 !important;
}
.light .myp{
	background-color: #fff !important;
}
.light .nom{
	background-color: #9a7520 !important;
}
.light .nom p{
	color: #fff !important;
}
.thsmb p{
	margin-bottom: 0px;
}
.light .lessop{
	opacity: 0.15;
}
.light .counts .elementor-heading-title{
	color: #9a7520 !important;
}
.light .flag{
	border-color: #9a7520 !important;
}
.light .myp:hover{
	border-color: #9a7520 !important;
}
.light .trbsm{
	border-color: #d4d0c8 !important;
}
.light .trbsm:before{
	border-color: #d4d0c8 !important;
}
.light .abmi p{
	color: #5a6b85 !important;
}
.light .about h3{
	color: #1b2a4a  !important;
}
.light .about p{
	color: #5a6b85  !important;
}
.light .about__card{
	background-color: #fff !important;
}
.light .about__card{
	border-color: #d4d0c8 !important;
}
.light .about__card h4{
	color: #1b2a4a !important;
}
.light .role p{
	color: #9a7520 !important;
}
.light .about__card ul li span{
	color: #8e9bb5 !important;
}
.light .about__card svg{
	fill: #8e9bb5 !important;
}
.light .redy h2{
	color: #1b2a4a !important;
}
.light .redy p{
	color: #5a6b85 !important;
}
.light .elementor-counter-number, .light .elementor-counter-number-suffix{
	color: #9a7520 !important;
}
.mot .elementor-element{
	transition: none !important;
}
.elementor-menu-toggle {
    background-color: transparent;
}
.light .elementor-menu-toggle svg{
    fill: #1b2a4a !important;
}
.about__card.p-card:hover:before{
	opacity: 0;
}
.light .extra.nom p, .light .extra .elementor-button-text{
	color: #fff !important;
}
.light .card h4, .light .card h3{
	color: #1b2a4a !important;
}
.light .body-content ul {
    color: #5a6b85 !important;
}
.light .whitebg{
	background-color: #fff !important;
}
.light .whitebg:before{
	background-color: #fff !important;
}
.light .elementor-field-group .elementor-field:not(.elementor-select-wrapper) {
    background-color: #eee !important;
    border-color: #eee !important;
	color: #1b2a4a !important;
}
.light .elementor-button[type="submit"] {
    background-color: #9a7520 !important;
    color: #ffffff !important;
}
.light .greybg{
	background-color: #f4f2ee !important;
}
.light .ennow, .light .ennow:before{
	border-color: #d4d0c8 !important;
}
.light .contactm ul li span{
	color: #1b2a4a !important;
}
.light .contactm ul li span svg{
	fill: #1b2a4a !important;
}
.light .transbg.nom{
	background-color: transparent !important;
}
.light .dowh p{
	color: #5a6b85 !important;
}
.light .whitefaq details div{
	background-color: #f4f2ee !important;
}
.light .whitefaq details summary div{
	background-color: transparent !important;
}
.light .whitefaq .e-n-accordion-item .e-n-accordion-item-title-icon span>svg {
    fill: #5a6b85 !important;
}

.light .greybg.faq details div{
	background-color: #fff !important;
}
.light .greybg.faq details summary div{
	background-color: transparent !important;
	color: #5a6b85;
}
.light .greybg.faq .e-n-accordion-item .e-n-accordion-item-title-icon span>svg {
    fill: #5a6b85 !important;
}
.light .dis h4{
	color: #1b2a4a !important;
}
.light .dis ul li{
	color: #5a6b85;
}
.woocommerce-message {
    border-top-color: #d4a843 !important;
	font-family: "Satoshi regular", Sans-serif;
    font-size: 14px;
}
.woocommerce-message::before {
    color: #d4a843;
}
.woocommerce-message .button.wc-forward{
	display: none !important;
}
.woocommerce-error .button.wc-forwardP{
	display: none !important;
}
.woocommerce-customer-details address{
	font-size: 14px !important;
}
.woocommerce-order-details header h2{
	margin-bottom: 30px !important;
	margin-top: 30px !important;
}
.elementor-widget-woocommerce-purchase-summary .woocommerce .shop_table tbody td {
    color: #8e9bb5;
}
.light.woocommerce-order-received .whlb h2{
	color: #1b2a4a !important;
}




@media screen and (max-width: 1024px) {
	.mot .elementor-nav-menu__container.elementor-nav-menu--dropdown{
		        height: 100vh;
			width: 100vw;
			left: 0;
			position: fixed;
			top: 107px;
	}
	.elementor-sticky--effects .elementor-menu-toggle{
		margin-top: 13px;
		        margin-bottom: 15px;
	}
	.mot .elementor-nav-menu--dropdown li:last-of-type{
    border-style: solid;
    border-color: var(--e-global-color-7cae472);
    border-bottom-width: 1px;
}
	

	.mot ul{
		padding-left: 30px;
    	padding-right: 30px;
	}
	.mot .elementor-nav-menu--dropdown a {
        padding-bottom: 30px !important;
    }
	.light .elementor-nav-menu--dropdown {
    	background-color: #fff !important;
	}
	.light .mot .elementor-menu-toggle {
    	color: #9a7520 !important;
	}
	.mot .elementor-nav-menu--toggle{
		width: 32px !important;
		right: 35px !important;
		position: fixed !important;
		left: auto !important;
		top: 58px !important;
	}
	
}


@media screen and (max-width: 767px) {
	.header__logo-text span {
    	font-size: 9px;
	}
	.mot .elementor-nav-menu--dropdown a {
        padding-bottom: 15px !important;
    }
	    .elementor-menu-toggle {
        margin-right: 20px;
    }
.hero__eyebrow {
    font-size: 10px;
}
	    .mot .elementor-nav-menu--toggle {
        width: 60px !important;
        right: 0px !important;
		top: 13px !important;
    }
	.logged-in #wpadminbar{
		display: none !important;
	}
	    html {
        margin-top: 0px !important;
    }
	.mot .elementor-nav-menu__container.elementor-nav-menu--dropdown {
        top: 61px;
    }
	.header__logo-text {
    padding-top: 2px;
}
	
}
