@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "woodmart-font";
	src: url("//firuzeh.ae/wp-content/themes/woodmart/fonts/woodmart-font-1-400.woff2?v=7.4.3") format("woff2");
}

:root {
	--wd-header-banner-h: 40px;
	--wd-text-font: "Sen", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: #777777;
	--wd-text-font-size: 14px;
	--wd-title-font: "Sen", Arial, Helvetica, sans-serif;
	--wd-title-font-weight: 400;
	--wd-title-color: #242424;
	--wd-entities-title-font: "Sen", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 600;
	--wd-entities-title-color: #333333;
	--wd-entities-title-color-hover: rgb(51 51 51 / 65%);
	--wd-alternative-font: "Sen", Arial, Helvetica, sans-serif;
	--wd-widget-title-font: "Sen", 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: "Sen", Arial, Helvetica, sans-serif;
	--wd-header-el-font-weight: 700;
	--wd-header-el-transform: uppercase;
	--wd-header-el-font-size: 13px;
	--wd-primary-color: rgb(12,175,175);
	--wd-alternative-color: rgb(191,124,98);
	--wd-link-color: rgb(12,175,175);
	--wd-link-color-hover: rgb(82,175,175);
	--btn-default-bgcolor: rgb(12,175,175);
	--btn-default-bgcolor-hover: rgb(12,175,175);
	--btn-accented-bgcolor: rgb(12,175,175);
	--btn-accented-bgcolor-hover: rgb(12,175,175);
	--wd-form-brd-width: 2px;
	--notices-success-bg: #459647;
	--notices-success-color: #fff;
	--notices-warning-bg: #E0B252;
	--notices-warning-color: #fff;
}
.woodmart-woocommerce-layered-nav .wd-scroll-content {
	max-height: 223px;
}
div.wd-popup.wd-age-verify {
	max-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: rgb(12,175,175);
	background-image: none;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
div.wd-popup.wd-promo-popup {
	max-width: 820px;
}
.page-title-default {
	background-color: rgb(0,0,0);
	background-image: url(https://firuzeh.ae/wp-content/uploads/2024/04/3b6f5fa1-3509-4ce7-83a8-a596c7b531c5-min-scaled.jpeg);
	background-size: cover;
	background-position: center bottom;
}
.footer-container {
	background-color: rgb(17,17,17);
	background-image: none;
}
div.wd-popup.popup-quick-view {
	max-width: 920px;
}

@media (max-width: 1024px) {
	:root {
		--wd-header-banner-h: 40px;
	}

}
:root{
--wd-container-w: 1222px;
--wd-form-brd-radius: 0px;
--btn-default-color: #fff;
--btn-default-color-hover: #fff;
--btn-accented-color: #fff;
--btn-accented-color-hover: #fff;
--btn-default-brd-radius: 0px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-default-box-shadow-active: none;
--btn-default-bottom: 0px;
--btn-accented-bottom-active: -1px;
--btn-accented-brd-radius: 0px;
--btn-accented-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .15);
--btn-accented-box-shadow-hover: inset 0 -2px 0 rgba(0, 0, 0, .15);
--wd-brd-radius: 0px;
}

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


@media (min-width: 1025px) {
	/* Desktop only */
@media (min-width: 769px) {

    .order-now-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;

        padding: 12px 18px;
        font-size: 14px;

        /* "Hey, I'm here!" animation every 4 seconds */
        animation: heyAnimation 4s ease-in-out infinite;

        /* Glow */
        box-shadow:
            0 6px 18px rgba(0, 0, 0, 0.15),
            0 0 18px rgba(255, 140, 0, 0.25);

        transition: transform 0.3s ease;
    }

    /* Attention-grabbing movement every 4 seconds */
    @keyframes heyAnimation {
        0%, 80%, 100% {
            transform: scale(1) rotate(0deg);
        }

        83% {
            transform: scale(1.12) rotate(-5deg);
        }

        86% {
            transform: scale(1.12) rotate(5deg);
        }

        89% {
            transform: scale(1.12) rotate(-5deg);
        }

        92% {
            transform: scale(1.12) rotate(5deg);
        }

        95% {
            transform: scale(1.05);
        }
    }

    /* Hover effect */
    .order-now-btn:hover {
        transform: scale(1.08);
    }

    /* Remove shine completely */
    .order-now-btn::before {
        display: none !important;
        content: none !important;
    }

    /* Bigger 20% OFF badge */
    .order-now-btn::after {
        content: "20% OFF 1st ORDER";

        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);

        background: #ff3b30;
        color: #fff;

        font-size: 14px;
        font-weight: 800;

        padding: 7px 16px;

        border-radius: 30px;
        white-space: nowrap;

        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.2);

        animation: badgePulse 2s infinite;
    }

    /* Badge pulse */
    @keyframes badgePulse {
        0%, 100% {
            transform: translateX(-50%) scale(1);
        }

        50% {
            transform: translateX(-50%) scale(1.12);
        }
    }
}
}

@media (min-width: 577px) and (max-width: 767px) {
	.order-now-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;
    font-size: 14px;

    animation: floatMove 3s ease-in-out infinite;

    /* ✨ glow is back */
    box-shadow: 0 6px 18px rgba(0,0,0,0.15),
                0 0 18px rgba(255, 140, 0, 0.25);

    transition: all 0.25s ease;
}

/* Floating movement + wiggle */
@keyframes floatMove {
    0%, 70%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-4px);
    }

    75% {
        transform: translateY(0) rotate(-4deg);
    }

    80% {
        transform: translateY(0) rotate(4deg);
    }

    85% {
        transform: translateY(0) rotate(-4deg);
    }

    90% {
        transform: translateY(0) rotate(4deg);
    }

    95% {
        transform: translateY(0) rotate(0deg);
    }
}

/* hover */
.order-now-btn:hover {
    transform: scale(1.04);
}

/* ❌ SHINE REMOVED COMPLETELY */
.order-now-btn::before {
    display: none !important;
    content: none !important;
    animation: none !important;
}

/* badge stays */
.order-now-btn::after {
    content: "20% OFF 1st ORDER";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3b30;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    animation: badgePop 2s infinite;
}

/* badge animation */
@keyframes badgePop {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* mobile safety */
@media (max-width: 768px) {
    .order-now-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .order-now-btn::after {
        font-size: 8.5px;
        bottom: -18px;
    }
}
}

@media (max-width: 576px) {
	.order-now-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;
    font-size: 14px;

    animation: floatMove 3s ease-in-out infinite;

    /* ✨ glow is back */
    box-shadow: 0 6px 18px rgba(0,0,0,0.15),
                0 0 18px rgba(255, 140, 0, 0.25);

    transition: all 0.25s ease;
}

/* Floating movement + wiggle */
@keyframes floatMove {
    0%, 70%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-4px);
    }

    75% {
        transform: translateY(0) rotate(-4deg);
    }

    80% {
        transform: translateY(0) rotate(4deg);
    }

    85% {
        transform: translateY(0) rotate(-4deg);
    }

    90% {
        transform: translateY(0) rotate(4deg);
    }

    95% {
        transform: translateY(0) rotate(0deg);
    }
}

/* hover */
.order-now-btn:hover {
    transform: scale(1.04);
}

/* ❌ SHINE REMOVED COMPLETELY */
.order-now-btn::before {
    display: none !important;
    content: none !important;
    animation: none !important;
}

/* badge stays */
.order-now-btn::after {
    content: "20% OFF 1st ORDER";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3b30;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    white-space: nowrap;
    animation: badgePop 2s infinite;
}

/* badge animation */
@keyframes badgePop {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* mobile safety */
@media (max-width: 768px) {
    .order-now-btn {
        padding: 12px 16px;
        font-size: 13px;
    }

    .order-now-btn::after {
        font-size: 8.5px;
        bottom: -18px;
    }
}
}

