@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "woodmart-font";
	src: url("//iecf.ncec.gov.sa/wp-content/themes/woodmart/fonts/woodmart-font-1-400.woff2?v=8.3.9") format("woff2");
}

:root {
	--wd-text-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: #767676;
	--wd-text-font-size: 14px;
	--wd-title-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-title-font-weight: 600;
	--wd-title-color: #242424;
	--wd-entities-title-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 500;
	--wd-entities-title-color: #333333;
	--wd-entities-title-color-hover: rgb(51 51 51 / 65%);
	--wd-alternative-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-widget-title-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-widget-title-font-weight: 600;
	--wd-widget-title-transform: uppercase;
	--wd-widget-title-color: #333;
	--wd-widget-title-font-size: 16px;
	--wd-header-el-font: "Lato", Arial, Helvetica, sans-serif;
	--wd-header-el-font-weight: 700;
	--wd-header-el-transform: uppercase;
	--wd-header-el-font-size: 13px;
	--wd-otl-style: dotted;
	--wd-otl-width: 2px;
	--wd-primary-color: rgb(32,122,90);
	--wd-alternative-color: rgb(20,20,20);
	--btn-default-bgcolor: rgb(32,122,90);
	--btn-default-bgcolor-hover: rgb(254,249,231);
	--btn-accented-bgcolor: rgb(254,249,231);
	--btn-accented-bgcolor-hover: rgb(32,122,90);
	--wd-form-brd-width: 2px;
	--notices-success-bg: #459647;
	--notices-success-color: #fff;
	--notices-warning-bg: #E0B252;
	--notices-warning-color: #fff;
	--wd-link-color: #333333;
	--wd-link-color-hover: #242424;
}
.wd-age-verify-wrap {
	--wd-popup-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: #111111;
	background-image: none;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
}
.wd-promo-popup-wrap {
	--wd-popup-width: 800px;
}
:is(.woodmart-woocommerce-layered-nav, .wd-product-category-filter) .wd-scroll-content {
	max-height: 223px;
}
.wd-page-title .wd-page-title-bg img {
	object-fit: cover;
	object-position: center center;
}
.wd-footer {
	background-color: rgb(0,0,0);
	background-image: none;
}
.mfp-wrap.wd-popup-quick-view-wrap {
	--wd-popup-width: 920px;
}
:root{
--wd-container-w: 1025px;
--wd-form-brd-radius: 0px;
--btn-default-color: #fff;
--btn-default-color-hover: #333;
--btn-accented-color: #fff;
--btn-accented-color-hover: #fff;
--btn-default-brd-radius: 35px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-accented-brd-radius: 35px;
--btn-accented-box-shadow: none;
--btn-accented-box-shadow-hover: none;
--wd-brd-radius: 0px;
}

@media (min-width: 1025px) {
[data-vc-full-width]:not([data-vc-stretch-content]),
:is(.vc_section, .vc_row).wd-section-stretch {
padding-left: calc((100vw - 1025px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
padding-right: calc((100vw - 1025px - var(--wd-sticky-nav-w) - var(--wd-scroll-w)) / 2);
}
}


.wd-page-title {
background-color: #0a0a0a;
}

/* Parent container */
.center-image-wrap {
  display: flex;
  align-items: center;        /* vertical center */
  justify-content: center;    /* horizontal center */
  width: 100%;
  min-height: 100vh;
}

/* Image */
.center-image {
  max-width: 100%;
	width: 80rem;
  margin: 0 auto;
  height: auto;
  opacity: 0;
  transform: translateY(-100px) !important;
  animation: fadeInUp 0.5s ease-out forwards;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .center-image {
    max-width: 100%;
		width: 21rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.glossy-white {
  background: rgba(255, 255, 255, 0.55); /* transparent white */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.4);
}





/* ================================
   GLOBAL ANIMATION BASE
================================ */

.animate {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

/* ================================
   SPEED CLASSES
================================ */

.speed-fast {
  animation-duration: 0.4s;
}

.speed-normal {
  animation-duration: 0.7s;
}

.speed-slow {
  animation-duration: 1.2s;
}

/* Default speed */
.animate:not(.speed-fast):not(.speed-slow):not(.speed-normal) {
  animation-duration: 0.7s;
}

/* ================================
   DELAY CLASSES
================================ */

.delay-0    { animation-delay: 0s; }
.delay-100  { animation-delay: 0.1s; }
.delay-200  { animation-delay: 0.2s; }
.delay-300  { animation-delay: 0.3s; }
.delay-400  { animation-delay: 0.4s; }
.delay-500  { animation-delay: 0.5s; }
.delay-600  { animation-delay: 0.6s; }
.delay-700  { animation-delay: 0.7s; }
.delay-1000 { animation-delay: 1s; }
.delay-1500 { animation-delay: 1.5s; }
.delay-2000 { animation-delay: 2s; }

/* ================================
   FADE ANIMATIONS
================================ */

.fade-in {
  animation-name: fadeIn;
}

.fade-up {
  animation-name: fadeUp;
}

.fade-down {
  animation-name: fadeDown;
}

.fade-left {
  animation-name: fadeLeft;
}

.fade-right {
  animation-name: fadeRight;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ================================
   ZOOM ANIMATIONS
================================ */

.zoom-in {
  animation-name: zoomIn;
}

.zoom-out {
  animation-name: zoomOut;
}

@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOut {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ================================
   ROTATE ANIMATIONS
================================ */

.rotate-in {
  animation-name: rotateIn;
}

@keyframes rotateIn {
  from {
    transform: rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: rotate(0);
    opacity: 1;
  }
}

/* ================================
   BOUNCE
================================ */

.bounce-in {
  animation-name: bounceIn;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* ================================
   SLIDE ANIMATIONS
================================ */

.slide-left {
  animation-name: slideLeft;
}

.slide-right {
  animation-name: slideRight;
}

.slide-up {
  animation-name: slideUp;
}

.slide-down {
  animation-name: slideDown;
}

@keyframes slideLeft {
  from { transform: translateX(100px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
  from { transform: translateX(-100px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-100px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ================================
   ATTENTION / EFFECTS
================================ */

.shake {
  animation-name: shake;
}

.pulse {
  animation-name: pulse;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* ================================
   LOOPING
================================ */

.loop {
  animation-iteration-count: infinite;
}

.loop-2 { animation-iteration-count: 2; }
.loop-3 { animation-iteration-count: 3; }

/* ================================
   HOVER ANIMATIONS
================================ */

.hover-zoom:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}

.animate {
  animation-play-state: paused;
}


/* ================================
   SMOOTH / PREMIUM ANIMATIONS
================================ */

/* Soft Fade + Float */
.soft-fade {
  animation-name: softFade;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes softFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Elegant Scale */
.scale-smooth {
  animation-name: scaleSmooth;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleSmooth {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Blur Reveal */
.blur-in {
  animation-name: blurIn;
  animation-timing-function: ease-out;
}

@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

/* Float Up (Luxury Style) */
.float-up {
  animation-name: floatUp;
  animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth Flip */
.flip-smooth {
  animation-name: flipSmooth;
  animation-timing-function: ease-out;
  transform-style: preserve-3d;
}

@keyframes flipSmooth {
  from {
    opacity: 0;
    transform: rotateX(90deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0);
  }
}

/* Reveal From Bottom (Text) */
.reveal-text {
  overflow: hidden;
}

.reveal-text span {
  display: inline-block;
  animation: revealText 0.8s cubic-bezier(0.77,0,0.18,1) forwards;
}

@keyframes revealText {
  from {
    transform: translateY(120%);
  }
  to {
    transform: translateY(0);
  }
}

/* Parallax Entry */
.parallax-in {
  animation-name: parallaxIn;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes parallaxIn {
  from {
    opacity: 0;
    transform: translateY(60px) scale(1.05);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Glow Fade (Premium CTA) */
.glow-in {
  animation-name: glowIn;
}

@keyframes glowIn {
  from {
    opacity: 0;
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  to {
    opacity: 1;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  }
}

/* Luxury Slide */
.slide-smooth-left {
  animation-name: slideSmoothLeft;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideSmoothLeft {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-smooth-right {
  animation-name: slideSmoothRight;
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideSmoothRight {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Soft Drop */
.drop-in {
  animation-name: dropIn;
  animation-timing-function: cubic-bezier(.34,1.56,.64,1);
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



.wd-nav-header>li>a {
    font-size: 20px!important;

}