@import url('plugins.css');
@import url('animations.css');
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
.site {min-height: 100vh;}
.grecaptcha-badge { visibility: hidden; }
.loader {z-index: 1033;}

/* site with top banner */
.site.banner-is-visible {
    padding-top: 50px;
}
.site.banner-is-visible .navbar.fixed-top {
    margin-top: 50px;
}

section[data-bg],
div[data-bg] {
	background-size: cover;
	background-position: center;
}

.bg-logo-element {
    background-image: url('../images/logo-element-big.svg');
    background-size: auto;
    background-position: center 40px;
    background-repeat: no-repeat;
}

/* preloader */
.fatade3d-loader {
    --size: 24px;
    --stroke-width: calc(var(--size) / 6);
    --color: currentColor;
    --animation-timing-function: linear;
    --animation-duration: 1s;
    position: absolute;
    width: var(--size);
    height: var(--size);
}

.fatade3d-loader::before,
.fatade3d-loader::after {
    content: '';
    position: absolute;
    transform: scaleY(1);
    animation: var(--animation-timing-function) var(--animation-duration) infinite fatade3d-loader-animation;
}

.fatade3d-loader::before {
    inset: 0;
    border-top: var(--stroke-width) solid var(--color);
    border-bottom: var(--stroke-width) solid var(--color);
}

.fatade3d-loader::after {
    top: calc(50% - var(--stroke-width) / 2);
    right: 0;
    left: 0;
    border-top: var(--stroke-width) solid var(--color);
    animation-delay: calc(var(--animation-duration) / 2);
}

/* sections title/headings */
.section-title {
    margin-bottom: 46px;
}
.section-title h3,
.section-title h4,
.section-title p {
    font-size: 1.5625rem;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 25px;
}
.section-title h1,
.section-title h2,
.page-header h1 {
    font-family: var(--bs-second-font);
    font-size: 2.1875rem;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.02em;
    text-wrap: balance;
    /* fără uppercase: sistemul PHOMI cere sentence case pe titluri (04.09.2026) */
    margin-bottom: 0;
}
.section-title span,
.section-title strong {color: var(--bs-danger);}
.section-title h2 strong,
.section-title h1 strong {font-weight: 800;}

/* page headings */
.page-header {
    padding-top: 124px;
    margin-bottom: 60px;
}
.page-header .h2 {
    font-size: 1.5rem;
}

/* 
 Modal
------------------------------------------------------*/
.modal .btn-close {
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background-color: var(--bs-danger);
    z-index: 9;
    top: 0;
    right: 0;
    left: auto;
    margin: -31px -31px 0 0;
    opacity: 1;
}

/*--------------------------------------------------------------
# TYPOGRAPHY
--------------------------------------------------------------*/
h3 {font-size: 24px;}

strong,
.fw-bolder {font-weight: 900 !important;}
.ff-secondary {font-family: var(--bs-second-font);}

/*--------------------------------------------------------------
# NAVBAR 
--------------------------------------------------------------*/
.navbar-brand {margin-right: 25px;}
.navbar-brand img {
	/* Logo-ul PHOMI + econiclay are raportul 3:1 (cel vechi Fatade3D era 7,4:1),
	   deci controlam inaltimea, nu latimea - altfel latimea fixa il face de doua
	   ori mai inalt si sparge navbar-ul. Spatiul util din navbar e 54px. */
	width: auto;
	height: 40px;
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar__top-tel a {
	font-size: 1.875rem;
	color: var(--primary-color);
	margin-right: 25px;
	text-decoration: none;
	position: relative;
	letter-spacing: 1px;
}
.navbar__top-tel img {
  width: 25px;
}
.navbar__top-tel img {
  -webkit-animation: pulse 2s ease-in;
  -moz-animation: pulse 2s ease-in;
  animation: pulse 0.4s ease-in;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Antetul fix are doua stari, comutate de assets/js/phomi-nav.js:
   - .scrolled (dupa ~56px derulati): padding si logo mai mici, ca sa lase
     mai mult ecran continutului - pe un laptop de 768px conteaza fiecare
     rand; bannerul promo se retrage odata cu el (mai jos);
   - .phomi-nav-hidden (derulare in jos, dupa hero): iese complet din ecran
     si revine la prima derulare in sus, la focus din tastatura sau cand are
     un meniu deschis. Ascunderea e doar transform, ca sa nu declanseze
     reflow, si exista NUMAI in starea ascunsa: un transform permanent ar
     face antetul bloc de continere pentru panoul de meniu mobil (position:
     fixed, responsive.css), care ar ramane prins in antet. */
.navbar.fixed-top {
    transition: transform .32s cubic-bezier(.2, .75, .25, 1), padding .28s ease, margin-top .28s ease, box-shadow .28s ease;
}
.navbar-brand img {
    transition: width .28s ease, height .28s ease;
}
.navbar.scrolled {
    background-color: var(--bs-white);
    box-shadow: 0 1px 0 rgba(8, 9, 9, .06), 0 10px 30px rgba(8, 9, 9, .08);
    padding-top: 14px;
    padding-bottom: 14px;
}
.navbar.scrolled .navbar-brand img {
    width: auto;
    height: 34px;
}
/* -60px in plus: pe mobil bara "Colectii" (dropdown--catalog) sta absolut sub
   antet, in afara cutiei lui, si ar ramane vizibila la -100% */
.navbar.fixed-top.phomi-nav-hidden {
    transform: translateY(calc(-100% - 60px));
    box-shadow: none;
}
/* bannerul promo pleaca la prima derulare; antetul urca in locul lui */
.banner-top.fixed-top {
    transition: transform .28s ease;
}
.phomi-nav-scrolled .banner-top.fixed-top {
    transform: translateY(-100%);
}
.site.banner-is-visible .navbar.fixed-top.scrolled {
    margin-top: 0;
}
@media (prefers-reduced-motion: reduce) {
    .navbar.fixed-top,
    .navbar-brand img,
    .banner-top.fixed-top { transition: none; }
}

.navbar-nav {
    align-items: center;
    /* sentence case: majusculele sunt rezervate eyebrow-urilor (04.09.2026) */
}
.navbar-nav .nav-link {
    white-space: nowrap;
}
.navbar-nav .nav-link.active {
    font-weight: 700;
}

.navbar-actions {margin-left: 6px;}
.navbar-actions .dropdown-toggle {
    background-color: var(--bs-white);
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: 20px center;
    display: flex;
    align-items: center;
    column-gap: 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    padding: 15px 20px 15px;
}
.navbar-actions .dropdown-toggle::after {
    content: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.45795L8 8.45795L15 1.45795' stroke='%23000000' stroke-width='2'/%3E%3C/svg%3E%0A");
    background-image: none;
    border: none;
    font-weight: 600;
    width: 14px;
}

.navbar-actions .dropdown-toggle:hover,
.navbar-actions .dropdown-toggle.show {
    border-color: var(--bs-white);
    background-color: var(--bs-danger);
    color: var(--bs-white);
}
.navbar-actions .dropdown-toggle:hover::after,
.navbar-actions .dropdown-toggle.show::after {filter: invert(1) brightness(100);}
.navbar-actions .dropdown-menu {
    line-height: 15px;
    left: auto;
    right: 0;
    min-width: 280px;
    padding: 3px 0 9px;
    animation: fadeInUp .2s ease-in forwards;
}
.navbar-actions .dropdown-menu li {
    padding: 0 10px;
    position: relative;
}
.navbar-actions .dropdown-menu li .icon {
    position: absolute;
    left: 22px;
}
.navbar-actions .dropdown-item {
    color: var(--bs-white);
    font-weight: 600;
    line-height: 20px;
    padding: 7px 0 7px 50px;
}
.navbar-actions .dropdown-menu li:not(:last-child) .dropdown-item {border-bottom: .3px solid rgba(255, 255, 255, 0.3);}
.navbar-actions .dropdown-menu li:last-child .dropdown-item {border-top: .3px solid rgba(255, 255, 255, 0.3);}
.navbar-actions .dropdown-item small {
    font-weight: 400;
    font-size: .625rem;
}
.navbar-actions .dropdown-item:hover,
.navbar-actions .dropdown-item:active {
    background-color: transparent;
    color: inherit;
}
.navbar-actions .dropdown-item.dropdown-item__working-hours {
    line-height: 15px;
    padding: 10px 10px 10px 60px;
}
.navbar-actions .dropdown-item:hover,
.navbar-actions .dropdown-item:focus {
    background-color: transparent;
}
.navbar-actions .dropdown-item.address {
    font-size: .625rem;
}

.navbar-nav {
    flex: 1;
    justify-content: center;
}
.wpml-ls-item {
    background-color: var(--bs-white);
    border: 1px solid #8A8A8E;
    border-radius: 30px;
    padding: 2px;
    min-width: 70px;
    height: 31px;
    margin-left: 20px;
    line-height: 27px;
    text-transform: uppercase;
}
.wpml-ls-item a {
    color: var(--bs-black);
    display: flex;
    padding: 0 !important;
    position: relative;
    line-height: 30px;
    justify-content: center;
}
.wpml-ls-item a::after {
    content: "";
	background-color: var(--bs-white);
    border-radius: 50%;
    border: 1px solid #8A8A8E;
    box-shadow: 0 3px 8px 0 rgba(0,0,0, .15);
    width: 27px;
    height: 27px;
    position: absolute;
    top: 1px;
	transition: all .3s ease-in-out;
}
.wpml-ls-item.wpml-ls-item-ro a::after {right: 2px;}
.wpml-ls-item.wpml-ls-item-ru a::after {left: 2px;}
.wpml-ls-legacy-list-horizontal a span {
    display: flex;
    flex-direction: row-reverse;
}

.wpml-ls-item.wpml-ls-item-ru .wpml-ls-native:before {
	content: 'RO';
	display: inline-block;
	margin-left: 9px;
}
.wpml-ls-item.wpml-ls-item-ro .wpml-ls-native:after {
	content: 'RU';
	display: inline-block;
	margin-right: 9px;
}
.wpml-ls-item.wpml-ls-item-ru .wpml-ls-link:focus::after {
    transform: translatex(36px);
    transition: all .3s ease-in-out;
}
.wpml-ls-item.wpml-ls-item-ro .wpml-ls-link:focus::after {
    transform: translatex(-36px);
    transition: all .3s ease-in-out;
}

/* user menu */
.navbar__user-menu .user-menu__item:not(:last-of-type) {border-right: 1px solid var(--bs-danger);}
.user-menu__item {
    line-height: 1;
    padding: 0 8px;
}

/* catalog */
.btn-catalog {
    display:  flex;
    align-items: center;
    column-gap: 7px;
    font-size: 1.0625rem;
    line-height: 1;
    letter-spacing: -0.43px;
    padding: 15px 20px
}
.btn-catalog::after {
    border: none;
    width: 12px;
    height: 6px;
    line-height: 0;
    content: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 0.999999' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.dropdown--catalog .dropdown-menu {
    left: auto;
    right: 0;
    margin-top: 10px;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    border: none;
    animation: fadeInUp .3s ease-in-out 0s 1 forwards;
}
.dropdown--catalog .dropdown-menu li:not(:last-child) {
    border-bottom: 0.33px solid rgba(84, 84, 86, 0.34)
}
.dropdown--catalog .submenu .dropdown-menu {
    background-color: #EBEBEB;
    margin-top: 0;
    margin-left: 0;
    animation-name: fadeInRight;
    max-height: 437px;
    overflow-y: auto;
}
.dropdown--catalog .dropdown-toggle-split::after {display: none;}
.dropdown--catalog .dropdown-toggle-split {
    background-color: transparent;
    border: none !important;
    box-shadow: none !important;
    outline: none;
    padding: 0 29px 0 0;
    width: 60px;
    text-align: right;
}
.dropdown--catalog .dropdown-toggle--prev {text-align: left;}
.dropdown-toggle-split svg {width: 12px;}
.dropdown--catalog .btn-group:hover > .dropdown-item,
.dropdown--catalog .btn-group:hover .dropdown-toggle-split {
    background-color: var(--bs-danger);
    color: var(--bs-white);
}
.dropdown--catalog .submenu .dropdown-header {
    font-size: 1.25rem;
    font-weight: 500;
}
.dropdown-toggle-split.dropdown-toggle--mobile {display: none;}

/* search form */
.navbar .search-form {
    position: absolute;
    top: -14px;
    right: 100%;
    margin-right: -44px;
    min-width: 564px;
    display: none;
    animation: fadeInUp .3s ease-in 0s 1 forwards;
}
.search-form > label {display: block;}
.search-form .search-field {
    border-radius: 12px;
    border: none;
    background: #E9E9EB;
    padding: 15px 12px 15px 48px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}
.navbar .search-form .search-field:focus {
    outline: 1px solid var(--bs-dark);
}
.navbar .search-form .search-submit {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0px;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.8925 16.9199L19.9727 20M19.0838 11.5811C19.0838 15.768 15.701 19.1622 11.5282 19.1622C7.35539 19.1622 3.97266 15.768 3.97266 11.5811C3.97266 7.39418 7.35539 4 11.5282 4C15.701 4 19.0838 7.39418 19.0838 11.5811Z' stroke='%233C3C43' stroke-opacity='0.6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    border: none;
    width: 24px;
    height: 24px;
    margin: 15px 0 0 12px;
}
.btn-trigger-search.active-search {
    position: relative;
    z-index: 3;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 9.00002L9 15M8.99997 9L14.9999 15' stroke='%233C3C43' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z' stroke='%233C3C43' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.btn-trigger-search.active-search svg {opacity: 0;}
input[type="search"]::-webkit-search-cancel-button {-webkit-appearance: none;}

.no-results .search-form {
    position: relative;
    overflow: hidden;
}
.no-results .search-form .search-submit {
    position: absolute;
    top: 0;
    right: 0;
    height: 54px;
    border: none;
    padding: 10px 30px;
    background-color: var(--bs-danger);
    color: var(--bs-white);
    transition: all .3s ease-in-out;
}
.no-results .search-form .search-submit:hover {
    background-color: var(--bs-black);
}

/* cart button */
.btn-cart {
    position: relative;
}
.btn-cart #cartCounter {
    position: absolute;
    top: -9px;
    right: -9px;
    background-color: var(--bs-danger);
    color: var(--bs-white);
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px 0 rgba(0,0,0, .15);
    transition: all .3s ease-in-out;
}

/*--------------------------------------------------------------
# PAGINATION
--------------------------------------------------------------*/
.pagination {
    margin-top: 40px;
    margin-bottom: 60px;
    align-items: center;
    justify-content: center;
}


/*------------------------------------------------------
 FOOTER
------------------------------------------------------*/
.site-footer {
    padding-top: 74px;
}
.site-footer__logo img {
    width: auto;
    height: 62px;
}
.site-footer h3 {
    /* era 30px/900/uppercase - concura cu titlurile de secțiune (04.09.2026) */
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: .02em;
    margin-bottom: 18px;
}
.footer-nav ul li {
    color: var(--bs-white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
}
.site-footer a {
    color: inherit;
    text-decoration: none;
}
.footer-nav li img {
    min-width: 30px;
    width: 30px;
    margin-right: 20px;
    transition: all .3s ease-in-out;
}
.footer-nav li a {
    display: flex;
    align-items: center;
}
.footer-nav li:hover img {
    transform: translateX(10px);
    transition: all .3s ease-in-out;
}
.site-footer__copyright {
    border-top: 1px solid rgba(255,255,255, .2);
    margin-top: 35px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 500;
}

/* social media quick connect */
.fatade-social-holder {
    left: auto;
    right: 0;
    bottom: 0;
    margin: 0 30px 30px;
}
.fatade-social-holder__trigger {
    width: 60px;
    height: 60px;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/icons/chat-button.svg');
    background-size: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bs-danger);
    border: 2px solid var(--bs-danger);
    cursor: pointer;
    transition: all .4s ease-in-out;
}
.fatade-social-holder__trigger .button--close-icon {
    opacity: 0;
    transition: all .4s ease-in-out;
}
.fatade-social-holder__buttons-body {
    position: absolute;
    bottom: 60px;
    right: 0;
    z-index: -3;
}
.fatade-social-holder__buttons-body .social-button {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    transition: all .3s ease-in;
    opacity: 0;
}
.fatade-social-holder__buttons-body .social-button__link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    margin: 0 5px 5px 5px;
}
.social-button--facebook {
    transform: translate(0, 225px);
}
.social-button--instagram {
    transform: translate(0, 170px);
}
.social-button--telegram {
    transform: translate(0, 115px);
}
.social-button--viber {
    transform: translate(0, 60px);
}

.social-button__link svg {
    width: 24px;
    height: 24px;
}
.social-button__title {
    background-color: var(--bs-white);
    border-radius: 14px;
    color: var(--primary-color);
    font-size: 12px;
    line-height: 14px;
    padding: 5px 10px;
    white-space: nowrap;
    opacity: 0;
    z-index: -1;
    animation: fadeOutRight .2s ease-out forwards;
}
.fatade-social-holder.is-open .fatade-social-holder__trigger {
    background-position: 100px;
    background-color: var(--bs-white);
    transition: all .4s ease-in-out;
}
.fatade-social-holder.is-open .fatade-social-holder__trigger .button--close-icon  {
    color: var(--bs-danger);
    opacity: 1;
    transition: all .4s ease-in-out;
}
.fatade-social-holder.is-open .social-button {
    transform: translate(0, 0);
    opacity: 1;
}
.fatade-social-holder.is-open .social-button--facebook {
    transition: all .4s ease-in;
}
.fatade-social-holder.is-open .social-button--instagram {
    transition: all .4s ease-in;
}
.fatade-social-holder.is-open .social-button--telegram {
    transition: all .4s ease-in;
}
.fatade-social-holder.is-open .social-button--viber {
    transition: all .4s ease-in;
}
.social-button:hover .social-button__title {animation: fadeInRight .4s ease-in 1 forwards;}
.fatade-social-holder.is-open .fatade-social-holder__buttons-body {z-index: 1;}

/*------------------------------------------------------ 
 Banner && Slide #1
------------------------------------------------------*/

/* showcase */
.fatade3d-showcase {
    font-size: 1rem;
    height: 100vh;
    padding-top: 171px;
    padding-bottom: 140px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 77.48%, #FFFFFF 85.31%);
}
.fatade3d-showcase::before,
.fatade3d-promo-product::before,
.cart-page-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/tables-stripes-bg.png');
    /* background-size: contain; */
    background-size: 55vw;
    background-repeat: repeat;
    opacity: .5;
    z-index: -1;
}
.fatade3d-showcase__cover {
    width: 50vw;
    min-height: 565px;
    object-fit: cover;
    object-position: 5% center;
}
.fatade3d-showcase__video-wrap {
    width: 50vw;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
}
.fatade3d-showcase__video-wrap--local {
    width: 44vw;
}
.fatade3d-showcase__video-wrap iframe,
.fatade3d-showcase__video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.fatade3d-showcase__video {
    background-color: var(--bs-black);
    object-fit: contain;
}
.fatade3d-showcase h1,
.fatade3d-showcase h2 {
    font-family: var(--bs-second-font);
    font-weight: 800;
    line-height: 3.375rem;
    text-transform: uppercase;
    margin-bottom: 39px;
}
.fatade3d-showcase h1 strong {
    color: var(--bs-danger);
    font-weight: 800;
}
.fatade3d-showcase p {margin-bottom: 57px;}

.fatade3d-statistici {
    column-gap: 30px;
    font-size: .75rem;
    line-height: 1.1875rem;
    margin-bottom: 25px;
}
.fatade3d-statistici .item {margin-bottom: 25px;}
.fatade3d-statistici .item .icon {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}
.fatade3d-statistici .item h3 {
    font-size: 1.5625rem;
    line-height: 1.75rem;
    margin-bottom: 4px;
}

.fatade3d-showcase .fatade3d-banner__buttons {column-gap: 24px;}

.fatade3d-showcase__banner {
    margin-top: 98px;
    text-align: right;
    font-size: 1.125rem;
    line-height: 1;
    text-transform: uppercase;
    padding: 10px 0;
    transform: translateZ(0);
}
.fatade3d-showcase__banner a.stretched-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.fatade3d-showcase__banner p {
    white-space: nowrap;
    -webkit-animation: bannerTextAnimation 20s linear 0s infinite;
    animation: bannerTextAnimation 20s linear 0s infinite
}

/* banner */
.fatade3d-banner {
    color: var(--bs-black);
    padding-top: 187px;
    padding-bottom: 54px;
    min-height: 870px;
    height: 100vh;
    max-height: 900px;
}
.fatade3d-banner::after {
    content: "";
    background-color: var(--bs-danger);
    position: absolute;
    top: 0;
    right: 0;
    width: 32vw;
    height: 100%;
}
.fatade3d-banner h1 {
    color: var(--bs-black);
    font-family: var(--bs-second-font);
    font-size: 44px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.fatade3d-banner h2 {
    font-size: 1.875rem;
    line-height: 32px;
    margin-bottom: 8px;
}

.fatade3d-banner h1 span,
.fatade3d-banner h1 strong,
.fatade3d-banner h2 strong,
.fatade3d-banner h6 strong,
.fatade3d-banner p strong,
.fatade3d-banner h4 span {color: var(--bs-danger);}
.fatade3d-banner h1 strong,
.fatade3d-banner h2 strong,
.fatade3d-banner h4 span {font-weight: 800 !important;}

.fatade3d-banner h6,
.fatade3d-banner p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 60px;
}
.fatade3d-banner h6 strong,
.fatade3d-banner p strong {font-weight: inherit !important;}

.fatade3d-banner__buttons {margin-bottom: 82px;}
.fatade3d-banner__buttons .btn {
    line-height: 38px;
    min-width: 270px;
    padding: 8px 16px;
}
.fatade3d-banner h4 {
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--bs-body-font-family);
    margin-bottom: 0;
}

.fatade3d-banner__mascota,
.fatade3d-banner__premiu {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}
.fatade3d-banner__mascota {
    opacity: 1;
    max-width: 730px;
    width: 40vw;
    /* max-width: 570px; */
    margin-right: 2%;
    z-index: 5;
}
.fatade3d-banner__premiu {
    max-width: 900px;
    margin-bottom: 70px;
    margin-right: 14%;
    mix-blend-mode: multiply;
}

.scroll-down {
    color: var(--bs-secondary);
    position: relative;
    text-decoration: none;
    font-size: 12px;
    line-height: normal;
    z-index: 99;
    row-gap: 4px;
    position: absolute;
    bottom: 40px;
}
.scroll-down svg {
    fill: #3C3C43;
    opacity: .6;
    animation: down 1.5s ease-in-out 0s infinite forwards;
}
.scroll-down:hover {color: var(--bs-black);}

/* Portofolio */
.fatade3d-portfolio {padding-top: 40px;}
.fatade3d-portfolio__group {
    padding-top: 58px;
}
.fatade3d-lucrare {
    color: var(--bs-secondary);
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 52px;
}
.fatade3d-lucrare__cover {
    background-color: #A4A4A4;
    margin-bottom: 15px;
}
.fatade3d-lucrare__cover img {
    width: 100%;
    height: 205px;
    object-fit: cover;
    opacity: .9;
    transition: all .3s ease-in-out;
}
.fatade3d-lucrare__cover .btn {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.41px;
    text-transform: none;
    padding: 13px 28px;
    margin: -25px 0 0 -82px;
    transform: translateY(200px);
}
.fatade3d-lucrare h3,
.fatade3d-lucrare h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.35px;
    margin-bottom: 5px;
}

.fatade3d-lucrare:hover img {
    opacity: .2;
    transition: all .3s ease-in-out;
}
.fatade3d-lucrare:hover .btn {transform: translateY(0);}

.portfolio-homes-slick,
.portfolio-allworks-slick {margin: 0 -15px;}
.portfolio-homes-slick .fatade3d-lucrare,
.portfolio-allworks-slick:not(.row) .fatade3d-lucrare {padding: 0 15px;}

.portfolio-allworks-slick,
.products-carousel__inner.slick,
#allPortfolioWorks,
#productsCarousel {
    min-height: 333px;
    position: relative;
}
.portfolio-allworks-slick .fatade3d-loader,
.products-carousel__inner.slick .fatade3d-loader,
#allPortfolioWorks .fatade3d-loader,
#productsCarousel .fatade3d-loader {
    top: 50%;
    left: 50%;
    transform: translate(-50%);
}

/* carousel buttons */
.carousel-buttons {
    justify-content: flex-end;
    column-gap: 26px;
}
.product-gallery .slick-arrow,
.carousel-buttons .slick-arrow {
    background-color: var(--bs-white);
    border-radius: 50%;
    border: 1px solid var(--bs-danger);
    color: var(--bs-danger);
    font-size: 0px;
    width: 57px;   
    height: 57px;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-gallery .slick-arrow svg,
.carousel-buttons .slick-arrow svg {
    width: 24px;
    height: 24px;
}
.product-gallery .slick-arrow:hover,
.product-gallery .slick-arrow:focus,    
.carousel-buttons .slick-arrow:hover,
.carousel-buttons .slick-arrow:focus {
    background-color: var(--bs-danger);
    color: var(--bs-white);
    transition: all .3s ease-in-out;
}



.portfolio-filters {
    color: var(--bs-secondary);
    padding-top: 45px;
}
.portfolio-filters__item {
    position: relative;
    overflow: hidden;
}
.portfolio-filters__item input[type="radio"] {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
}
.portfolio-filters__item span {
    display: block;
    color: inherit;
}
.portfolio-filters__item span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--bs-secondary);
    transform: scale(0);
    transform-origin: center;
    transition: all .3s ease-in-out;
}
.portfolio-filters__item input[type="radio"]:checked + span::after,
.portfolio-filters__item:hover span::after {
    transform: scale(1);
    transform-origin: center;
    transition: all .3s ease-in-out;
}

/* SHOP intro */
.fatade3d-shop-intro {
    margin-bottom: 140px;
    position: relative;
    z-index: 3;
}
.fatade3d-shop-intro .section-title { margin-bottom: 21px;}
.fatade3d-shop-list {
    font-size: 20px;
    font-weight: 600;
    line-height: 44px;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-top: 50px;
}
.fatade3d-shop-list a {
    text-decoration: none;
    color: var(--bs-black);
}
.fatade3d-shop-list li {
    background-image: url('../images/arrow-right.svg');
    background-size: 30px;
    background-position: 0 50%;
    background-repeat: no-repeat;
    padding-left: 45px;
    position: relative;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fatade3d-shop-list li:hover {
    background-position: 7px 50%;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fatade3d-shop-intro__mockup img {
    width: 1110px;
    margin-right: -50px;
    float: right;
}

/* SHOP cta */
.fatade3d-mesteri-cta {
    background-color: rgba(0,0,0, .85);
    margin-top: 0;
    height: 664px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.fatade3d-mesteri-cta__mester {
    position: absolute;
    bottom: 0;
    left: -90px;
    width: 815px;
}
.fatade3d-mesteri-cta .section-title {
    font-size: 1.5rem;
    line-height: 1;
    padding-top: 170px;
    padding-bottom: 170px;
    margin-bottom: 0;
}
.fatade3d-mesteri-cta .section-title h4,
.fatade3d-mesteri-cta .section-title p {
    font-size: 1.5rem;
    margin-bottom: 32px;
}
.fatade3d-mesteri-cta .section-title h2 {margin-bottom: 30px;}
.fatade3d-mesteri-cta .section-title p {margin-bottom: 60px;}

.fatade3d-mesteri-cta__cover,
.fatade3d-pasi-consultatie__cover,
.fatade3d-contact-forms__cover {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: .35;
    z-index: -1;
}


/* PARTNERS reviews */
.fatade3d-parteneri-reviews {
    padding-top: 138px;
    padding-bottom: 127px;
}
.fatade3d-parteneri-reviews .section-title {margin-bottom: 70px;}
.fatade3d-partner-review .media {
    /* background-size: contain; */
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 598px;
    height: 518px;
}
.media .btn-play {
    background-color: var(--bs-secondary);
    border-radius: 50%;
    color: var(--bs-white);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 106px;
    height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -53px 0 0 -53px;
    padding: 0;
    transition: all .3s ease-in-out;
}
.media .btn-play svg {
    fill: currentColor;
    width: 30px;
    height: 30px;
}
.media .btn-play:hover {
    background-color: var(--bs-secondary);
    opacity: .85;
}
.fatade3d-partner-review .text-content {
    color: var(--bs-secondary);
    font-size: 18px;
    line-height: 30px;
    padding: 98px 87px 57px 72px;
    display: flex;
    flex-direction: column;
}
.fatade3d-partner-review .text-content p {flex: 1;}
.fatade3d-partner-review .partner-name {
    font-size: 25px;
    line-height: 20px;
    margin-bottom: 16px;
}
.fatade3d-partner-review .partner-company {
    color: var(--bs-black);
    display: block;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 30px;
}
.fatade3d-partner-review .source {
    color: var(--bs-black);
    font-weight: 700;
    text-align: right;
}

/* Process steps */
.fatade3d-pasi-consultatie,
.fatade3d-contact-forms {
    background-color: rgba(0,0,0, .9);
    min-height: 421px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -110px;
    padding-top: 10px;
}

.fatade3d-pasi-consultatie {
    font-size: 16px;
    padding-top: 75px;
    padding-bottom: 98px;
}
.fatade3d-pasi-consultatie__machet {
    max-width: 125%;
    transform: translateY(10px);
    position: absolute;
    left: 0;
    top: 0;
}
.fatade3d-pasi-consultatie__expert {
    border-radius: 18px 18px 18px 18px;
    display: block;
    left: auto;
    margin: -3px auto -49px;
    max-width: 520px;
    object-fit: cover;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
}
.fatade3d-pasi-consultatie__items {margin-bottom: 16px;}
.fatade3d-pasi-consultatie .btn {min-width: 336px;}
.fatade3d-pasi-consultatie .step-item {
    align-items: baseline;
    line-height: 1.55;
    margin-bottom: 12px;
}
.fatade3d-pasi-consultatie .step-item .count {
    font-size: 8px;
    font-family: var(--bs-second-font);
    font-weight: 700;
    text-align: center;
    line-height: 19px;
    min-width: 19px;
    height: 19px;
    margin-right: 9px;
}

/* Prices */
.fatade3d-prices {
    padding-top: 125px;
    padding-bottom: 50px;
}
.fatade3d-prices .section-title {
    font-size: 20px;
    line-height: normal;
    margin-bottom: 82px;
}
.fatade3d-prices .section-title h2 {margin-bottom: 34px;}
.fatade3d-prices__card {
   height: calc(100% - 30px);
   margin-bottom: 30px;
   padding: 45px 26px 39px;
   transition: all .3s ease-in-out;
}
.fatade3d-prices__card .icon {margin-bottom: 20px;}
.fatade3d-prices__card .region {
    font-size: 29px;
    line-height: normal;
    margin-bottom: 30px;
}
.fatade3d-prices__card .localities {
    color: var(--bs-secondary);
    font-size: 16px;
    margin-bottom: 25px;
}
.fatade3d-prices__card .price {
    color: var(--bs-danger);
    font-size: 30px;
    line-height: normal;
    margin-bottom: 38px;
}
.fatade3d-prices__card .price small {font-size: 16px;}
.fatade3d-prices__card .btn {
    font-family: var(--bs-second-font);
    font-weight: 800;
}
.fatade3d-prices__card:hover,
.fatade3d-prices__card:hover .localities,
.fatade3d-prices__card:hover .price {color: var(--bs-white);}
.fatade3d-prices__card:hover svg {fill: var(--bs-white);}
.fatade3d-prices__card:hover {background-color: var(--bs-danger);}
.fatade3d-prices__card:hover .btn {
    background-color: var(--bs-white);
    color: var(--bs-danger);
}

/* TESTIMONIALS */
.fatade3d-testimonials {
    padding-top: 86px;
    padding-bottom: 68px;
}
.fatade3d-testimonials .section-title {margin-bottom: 82px;}
.testimonials-slick {margin: 0 -15px;}
.testimonials-slick .item {padding: 0 15px;}
.fatade3d-testimonials__card {margin-bottom: 24px;}
.fatade3d-testimonials__card .media {
    background-size: cover;
    background-position: center;
    height: 205px;
    margin-bottom: 14px;
}
.btn-play-ytb {
    background-image: url('../images/youtube-play.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 99px;
    height: 69px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -35px 0 0 -50px;
    transition: all .3s ease-in-out;
}
.fatade3d-testimonials__card h4 {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .35px;
    margin-bottom: 3px;
}
.fatade3d-testimonials__card span {
    color: var(--bs-secondary);
    font-size: 16px;
}
.fatade3d-testimonials__card:hover .btn-play-ytb {
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}

/* Contact section */
.fatade3d-contact-forms {
    padding-top: 153px;
    padding-bottom: 70px;
}
.contact-form-wrap {
    padding: 66px 40px 50px;
}
.contact-form-wrap {margin-bottom: 30px;}
.contact-form-wrap .count {
    display: block;
    font-size: 70px;
    line-height: normal;
    position: absolute;
    top: 0;
    left: 0;
    margin: -40px 0 0 40px;
}
.contact-form-wrap h3 {
    font-size: 29px;
    line-height: 44px;
    letter-spacing: -1px;
    margin-bottom: 71px;
}
.contact-form-wrap h3 span {color: var(--bs-danger);}

.form-group {
    margin-bottom: 15px;
    position: relative;
}
.form-control {
    background-color: var(--bs-black);
    border: 1px solid var(--bs-white);
    border-radius: 12px;
    height: 56px;
    color: var(--bs-white);
    font-size: 16px;
}
.form-control::placeholder,
.intl-tel-input .flag-container,
.wpcf7 form .wpcf7-response-output {color: var(--bs-white);}
.form-group input[type="submit"] {
    font-weight: 600;
    text-transform: uppercase;
    height: 70px;
    margin-top: 15px;

}
.form-group input[type="submit"]:hover {
    border-color: var(--bs-white);
}
.form-group .wpcf7-spinner {
    position: absolute;
    top: 0;
    right: 0;
}
.form-control:focus {
    background-color: var(--bs-black);
    box-shadow: none;
    color: var(--bs-white);
}
.intl-tel-input .country-list li.country {color: var(--bs-black);}

/*------------------------------------------------------ 
 Contacts Page
------------------------------------------------------*/
.page-template {position: relative;}
.page-template-contacts::before,
.error-404::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/tables-stripes-bg.png');
    background-size: 55vw;
    background-repeat: repeat;
    opacity: .5;
    z-index: -1;
}

.contacts-wrapper {
    font-size: 1.0625rem;
    line-height: 1.5625rem;
    letter-spacing: -0.43px;
    margin-bottom: 196px;
    overflow: hidden;
}
.contacts-wrapper__content {
    padding: 50px 50px 40px 64px;
}
.contacts-wrapper__content h4 {
    font-size: 1.25rem;
    line-height: 1.5625rem;
    letter-spacing: -0.43px;
}
.contacts-wrapper__content a {
    color: inherit;
    text-decoration: none;
}
.contacts-wrapper__intro {
    display: flex;
    flex-direction: column;
    row-gap: 13px;
    margin-bottom: 35px;
}
.contacts-wrapper__map {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.working-days {
    line-height: 1.875rem;
    margin-bottom: 0;
}
.working-days .day-name {
    font-size: 1.25rem;
    min-width: 40%;
}
.contact-wrapper__transport {
    align-items: center;
    justify-content: space-between;
}
.contact-wrapper__transport .transport-item__title {
    column-gap: 7px;
    margin-bottom: 8px;
}

/*------------------------------------------------------ 
 ERROR Page
------------------------------------------------------*/

/* NEWS section */
.section-blog__card-news {
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 75px;
}
.section-blog__card-news:hover {
    color: inherit;
    text-decoration: underline;
}
.section-blog__card-news img {
    height: 255px;
    width: 100%;
    object-fit: cover;
}
.card-news-text {padding: 15px;}
.card-news-text h5 {font-size: 14px;}
.card-news-text p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

/* Default template */
.wp-block-heading {
    font-family: var(--bs-second-font);
}


/*------------------------------------------------------ 
 Top banner
------------------------------------------------------*/
.banner-top {
    border: 0;
    border-radius: 0;
    font-size: 14px;
    padding: 13px;
}
.banner-top p {
    margin-bottom: 0;
}
.banner-top a {
    color: var(--bs-white);
    font-size: inherit;
}
.banner-top a:hover {
    color: var(--bs-white);
    text-decoration: none;
}

/* ==========================================================================
   Pagini de conținut (termeni, confidențialitate, returnare) — 04.09.2026
   Rândurile aveau ~170 de caractere (1296px la 16px), titlurile se lipeau unul
   de altul (margin-top: 0) și secțiunea n-avea ritm vertical.
   ========================================================================== */
.fatade3d-page-content {
	padding-top: var(--phomi-section-top);
	padding-bottom: var(--phomi-section-bottom);
}
.fatade3d-page-content .entry-content {
	max-width: 68ch;
}
.fatade3d-page-content .entry-content > h2 {
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	font-weight: 600;
	text-transform: none;
	margin-top: 2.5rem;
	margin-bottom: .75rem;
}
.fatade3d-page-content .entry-content > h2:first-child {
	margin-top: 0;
}
.fatade3d-page-content .entry-content > p,
.fatade3d-page-content .entry-content > ul,
.fatade3d-page-content .entry-content > ol {
	margin-bottom: 1rem;
	line-height: 1.65;
}
.fatade3d-page-content .entry-content > ul,
.fatade3d-page-content .entry-content > ol {
	padding-left: 1.25rem;
}
.fatade3d-page-content .entry-content li + li {
	margin-top: .35rem;
}

/* Introducerea paginilor de conținut: era .h2 pe toată lățimea (~108 caractere) */
.fatade3d-page-lead {
	max-width: 62ch;
	font-size: 1.125rem;
	line-height: 1.6;
	color: var(--phomi-text-muted);
	margin-bottom: 0;
}

/* Starea goală a portofoliului (0 lucrări) — 04.09.2026 */
.fatade3d-portfolio__empty {
	max-width: 46rem;
	padding: clamp(40px, 7vh, 72px) 0;
}
.fatade3d-portfolio__empty-eyebrow {
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--phomi-blue-ink);
	margin-bottom: 14px;
}
.fatade3d-portfolio__empty h2 {
	font-size: var(--phomi-h2-display);
	font-weight: 600;
	letter-spacing: -.02em;
	line-height: 1.08;
	text-wrap: balance;
	margin-bottom: 16px;
}
.fatade3d-portfolio__empty-lead {
	max-width: 52ch;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: var(--phomi-text-muted);
	margin-bottom: 28px;
}
.fatade3d-portfolio__empty-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Formularul de pe pagina de contacte (fallback când modulul e inactiv) — 04.09.2026 */
.fatade3d-contact-form {
	padding-top: var(--phomi-section-top);
	padding-bottom: var(--phomi-section-bottom);
	max-width: 46rem;
}
.fatade3d-contact-form__fallback p {
	max-width: 52ch;
	color: var(--phomi-text-muted);
	margin-bottom: 20px;
}
